OpenF1.Data
1.0.109
See the version list below for details.
dotnet add package OpenF1.Data --version 1.0.109
NuGet\Install-Package OpenF1.Data -Version 1.0.109
<PackageReference Include="OpenF1.Data" Version="1.0.109" />
paket add OpenF1.Data --version 1.0.109
#r "nuget: OpenF1.Data, 1.0.109"
// Install OpenF1.Data as a Cake Addin #addin nuget:?package=OpenF1.Data&version=1.0.109 // Install OpenF1.Data as a Cake Tool #tool nuget:?package=OpenF1.Data&version=1.0.109
open-f1
open-f1 is a open source F1 Live Timing client.
openf1-console
is a TUI application which uses OpenF1.Data
to show a Live Timing screen during sessions, and records the data for future session replays.
The OpenF1.Data
library is provided to facilitate connectivity with the F1 Live Timing data stream, and handle all the processing of the incoming data. It also allows for "simulated" streams, where previously recorded data streams can be played back to allow for easy development/testing.
Feature Highlights:
- Timing Tower showing for each driver:
- Live sector times, with colouring for personal/overall fastest
- Last & Best Lap
- Current tyre
- Age of current tyre
- Interval to driver in front
- Gap to leader
- Gap between a selected driver and all other drivers (useful for monitoring pit windows)
- Race Control messages including investigations, penalties, lap deletions, and weather
- Lap-by-lap Timing History to observe gaps over time
Table of Contents
- Inspiration
- Getting Started with
openf1-console
- Configuration
- Logging
- Live Timing Data Source
- Data Recording and Replay
- OpenF1 Console in Action
- Notice
Inspiration
This project is heavily inspired by the FastF1 project by theOehrly. They did a lot of the work understanding the SignalR stream coming from the F1 Live Timing service. Visit their project if you'd like to do any sort of data analysis on past F1 events, or gather live timing data using their module.
Getting Started with openf1-console
Installation
Install and run as a dotnet tool
openf1-console
is available as a dotnet
tool from NuGet, which means it can be installed system-wide simply by running:
# Install globally using the -g flag
dotnet tool install -g openf1-console
# Assuming the dotnet tools directory is on your path, simply execute openf1-console
openf1-console
This method is recommended as it is easy to keep the app updated using dotnet tool update -g openf1-console
.
Install and run the standalone executable
Standalone executables are attached to each GitHub release. Download the executable for your system OS/architecture and simply run it directly
# Download the latest executable (in this case for macos-arm64)
curl https://github.com/BrownKnight/open-f1/releases/latest/download/openf1-console-macos-arm64 -o ./openf1-console -L
# On MacOS, you'll likely need to sign the executable as otherwise it'll be blocked.
# WARNING: If you don't understand why this needs to be done, you probably shouldn't do this and instead use the NuGet based installation method above.
# Signing the executable yourself removes any integrity checks that signing usually provides.
codesign -s - ./openf1-console
# Execute openf1-console to start the TUI
./openf1-console
Run directly from Source
# Checkout the git repository
git clone git@github.com:BrownKnight/open-f1.git
# Run the console project with `dotnet run`
dotnet run --project OpenF1.Console/OpenF1.Console.csproj
Start Timing for a Live Session
- Start
openf1-console
as described above - Navigate to the <kbd>S</kbd>
Session
Screen - Start a Live Session with the <kbd>L</kbd>
Start Live Session
action. - Switch to the Timing Tower screen with the <kbd>T</kbd>
Timing Tower
action
During the session, streamed timing data will be written to ~/open-f1/data/<session-name>
. This will allow for future replays of this recorded data.
Start Timing for a Pre-recorded Session
Data for pre-recorded sessions should be stored in the ~/open-f1/data/<session-name>
directory. Sample data can be found in this repos Sample Data folder. To use this sample data, copy one of the folders to ~/open-f1/data
and then it will be visible in step 4 below.
- Start
openf1-console
as described above - Navigate to the <kbd>S</kbd>
Session
Screen - Start a Simulated Session with the <kbd>F</kbd>
Start Simulation
action. - Select the session to start using the Up/Down arrows, then pressing <kbd>Enter</kbd>
- Switch to the Timing Tower screen with the <kbd>T</kbd>
Timing Tower
action - Optionally skip forward in time a bit by decreasing the delay with <kbd>N</kbd> (or <kbd>⇧ Shift</kbd> + <kbd>←N/kbd> to decrease by 30 seconds).
Download a previous session data for replay
F1 provide static timing data files for already completed sessions. This data can be downloaded and converted into the same format openf1-console
uses to save live recorded data.
- List the available meetings for the chosen year with
openf1-console import <year> list
- Review the list of meetings returned from the command, and view the session inside the chosen meeting with
openf1-console import <year> list --meeting-key <meeting-key>
- Review the list of session, and select one to import:
openf1-console import <year> --meeting-key <meeting-key> --session-key <session-key>
During the Session
Managing Delay
All session data, whether live or pre-recorded, is sent to a Channel
that acts as a delayed-queue. After a short delay, data points are pulled from the queue and processed, leading to updates on the timing screens. The amount of this delay can be changed with the <kbd>M</kbd>/<kbd>N</kbd> Delay
actions whilst on the timing screens. When using openf1-console
during a live session, you may wish to increase this delay to around ~50 seconds (actual number may vary) to match with the broadcast delay and avoid being spoiled about upcoming action.
Simulated session start with a calculated delay equal to the amount of time between the start of the actual session and now. This means you can decrease the delay with the <kbd>N</kbd> Delay
action to fast-forward through the session.
Using the Cursor
There is a global cursor that is controlled with the <kbd>▼</kbd> Down (1)
and <kbd>▲</kbd> Up
actions. What this cursor does depends on the screen, for example is can be used in the Timing Tower screen to scroll through Race Control Messages, or to select a driver on the Tower to see comparative intervals.
Configuration
OpenF1 can be configured using a simple config.json
file, through the command line at startup, or using environment variables. JSON configuration will be loaded from ~/open-f1/config.json
.
JSON Path | Command Line | Environment Variable | Description |
---|---|---|---|
dataDirectory |
--data-directory |
OPENF1_DATADIRECTORY |
The directory in which JSON timing data is read or written from. |
verbose |
-v\|--verbose |
OPENF1_VERBOSE |
Whether verbose logging should be enabled. Default: false . Values: true or false . |
apiEnabled |
--with-api |
OPENF1_APIENABLED |
Whether the app should expose an API at http://localhost:61937. Default: false . Values: true or false . |
Logging
OpenF1.Data
writes logs using the standard ILogger
implementation. SignalR client logs are also passed to the standard ILoggerProvider
.
When running openf1-console
logs are available in two places:
- Logs are stored in memory and viewable the <kbd>L</kbd>
Logs
screen. Logs can be scrolled on this screen, and the minimum level of logs shown can be changed with the <kbd>M</kbd>Minimum Log Level
action. - Log files are written to
~/open-f1/logs
.
Default log level is set to Information
. More verbose logging can be enabled with the verbose
config option.
Live Timing Data Source
F1 live timing is streamed using SignalR 2
. The OpenF1.Data
simply connects to this endpoint, subscribes to the data feed, and listens for messages. It subscribes to the following "topics":
Heartbeat
ExtrapolatedClock
TopThree
TimingStats
TimingAppData
WeatherData
TrackStatus
DriverList
RaceControlMessages
SessionInfo
SessionData
LapCount
TimingData
CarData.z
Position.z
ChampionshipPrediction
TeamRadio
Data Recording and Replay
All events received by the live timing client will be written to the configured Data Directory
, see see Configuration for details. Files will be written to a subdirectory named using the current sessions name, e.g. ~/open-f1/data/Jeddah_Race/
. In this directory, two files will be written:
subscribe.txt
contains the data received at subscription time (i.e. when the live timing client connected to the stream)live.txt
contains an append-log of every message received in the stream
Both of these files are required for future simulations/replays. The IJsonTimingClient
supports loading these files and processing them in the same way live data would be. Data points will be replayed in real time, using a calculated delay.
OpenF1 Console in Action
Timing Tower during a Race
Monitor sector times and gaps, see recent race control messages, capture position changes, observe pit strategies, and more with the standard Timing Tower view.
Using a Cursor to Display Relative Gap for a Specific Driver
Use the cursor controlled by the <kbd>▼</kbd> Down (1)
and <kbd>▲</kbd> Up
actions in the <kbd>O</kbd> Timing Tower
screen to select a specific driver (in this case Norris) to see the relative interval between that driver and all other. This is useful for determining where a driver will fall to after a pit stop, or looking at pit windows during under cuts.
Additionally, the gap between the selected drivers and those around them over the last four laps will be displayed at the bottom of the screen. This allows you to easily see evolving gaps over time and evaluate how soon a driver may catch up or pull away.
Timing Tower during Practice/Qualifying
Monitor live/best sector times, gaps, tyres, and lap deletions easily with the specialized timing tower for non-race sessions.
Race Control Page
The Race Control
page shows all Race Control Messages for the session, along with other session data such as the Weather.
Using a Cursor to View Timing History by Lap
In the Timing by Lap
page, you can use the cursor controlled by the <kbd>▼</kbd> Down (1)
and <kbd>▲</kbd> Up
actions to view historical snapshots of the timing tower at the end of every lap. This view will show position changes during that lap, and relative changes in Gap and Interval. Scrolling through laps allows you to build a picture of how the race is unfolding.
Listen to and Transcribe Team Radio
Listen to team radio clips from anytime in the session, and use a local ML model (Whisper) to transcribe the audio on demand.
Notice
open-f1 is unofficial and are not associated in any way with the Formula 1 companies. F1, FORMULA ONE, FORMULA 1, FIA FORMULA ONE WORLD CHAMPIONSHIP, GRAND PRIX and related marks are trade marks of Formula One Licensing B.V.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- AutoMapper (>= 12.0.0)
- AutoMapper.Collection (>= 9.0.0)
- AutoMapper.Extensions.Microsoft.DependencyInjection (>= 12.0.0)
- FFMpegCore (>= 5.1.0)
- Microsoft.AspNet.SignalR.Client (>= 2.4.3)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Hosting (>= 8.0.0)
- Microsoft.Extensions.Logging (>= 8.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 8.0.0)
- Whisper.net (>= 1.5.0)
- Whisper.net.Runtime (>= 1.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.124 | 81 | 9/26/2024 |
1.0.123 | 73 | 9/26/2024 |
1.0.121 | 83 | 9/26/2024 |
1.0.118 | 119 | 9/15/2024 |
1.0.114 | 110 | 7/17/2024 |
1.0.109 | 93 | 7/6/2024 |
1.0.87 | 96 | 6/29/2024 |
1.0.82 | 97 | 6/22/2024 |
1.0.78 | 96 | 6/22/2024 |
1.0.77 | 95 | 6/22/2024 |
1.0.49 | 89 | 5/19/2024 |
1.0.34 | 91 | 5/9/2024 |
1.0.32-g14cd2d38df | 72 | 5/9/2024 |
1.0.31-g9c7dd7acba | 70 | 5/9/2024 |
1.0.30-gcd1d18cc4f | 75 | 5/9/2024 |
1.0.29-g9a42a11fbc | 76 | 5/9/2024 |
1.0.28-g184c7383a1 | 72 | 5/9/2024 |
1.0.26 | 92 | 5/7/2024 |
1.0.25 | 92 | 5/7/2024 |
1.0.24 | 101 | 5/5/2024 |
1.0.23 | 107 | 5/4/2024 |
1.0.20 | 108 | 5/4/2024 |
1.0.14 | 93 | 5/3/2024 |
1.0.12 | 103 | 4/29/2024 |
1.0.11 | 123 | 3/28/2024 |
1.0.10 | 109 | 3/28/2024 |
1.0.9 | 116 | 3/28/2024 |
1.0.8 | 100 | 3/28/2024 |
1.0.7 | 105 | 3/28/2024 |
1.0.6 | 118 | 3/28/2024 |