Part of the Staging family.
Lineage
Overview
0 tests guard this model - 0 generic, 0 singular.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
High-frequency car telemetry (~10 Hz) from FastF1, one row per sample.
| Property | Value |
|---|---|
| Layer | staging |
| Family | Staging |
| Contract enforced | No |
| Column | Type | Nullable | Tests | Description |
|---|---|---|---|---|
telemetry_id | varchar | Yes | Composite key {season}{race_id}{driver_id}_{lap_number} (not unique; many samples per lap). | |
race_year | integer | Yes | Season year. | |
race_id | varchar | Yes | Numeric FastF1 event id cast to string. | |
driver_id | varchar | Yes | FastF1 three-letter driver code. | |
lap_number | integer | Yes | Lap index the sample belongs to. | |
distance_m | double | Yes | Distance along the lap from start/finish (m); samples filtered to 0–6500 m. | |
session_time_s | double | Yes | Session clock of the sample (s), from the FastF1 SessionTime nanosecond field. Present so that (race, driver, lap, distance_m, session_time_s) is a total order: distance_m alone ties on 982,303 car-channel samples (a stationary car keeps sampling while distance does not advance), which made any LAG/LEAD ordered on distance alone pick an arbitrary neighbour. Unique across all 59.5M samples, zero nulls. | |
speed_kph | double | Yes | Instantaneous car speed (kph). | |
throttle_pct | double | Yes | Throttle application (0–100%). | |
brake_applied | boolean | Yes | TRUE when the brake pedal was applied at the sample. | |
rpm | double | Yes | Engine speed (revolutions per minute). | |
n_gear | integer | Yes | Selected gear (0 = neutral). | |
drs_active | boolean | Yes | TRUE when DRS was open/active (FastF1 codes 10/12/14). | |
source_channel | varchar | Yes | FastF1 sample provenance (‘car’ = true channel cadence; ‘pos’/‘interpolation’ = forward-filled). |