The correct lights off start time of a race & total time for race session #885
|
I am having trouble getting the correct lights off start time and subsequently the total time of a race session. Take 2026 China for example. The total time for ANT is 01:33:15.607. This is correctly shown from However, I also tried getting the start time from Summing up |
Replies: 1 comment
|
From what I can tell, the ~200–300 ms discrepancy is expected. The gap seems to come from cross-stream jitter ( |
From what I can tell, the ~200–300 ms discrepancy is expected.
session.results['Time']comes from the official FIA post-race results and should be the authoritative value, whilelaps['Time']is reconstructed from the live timing stream — the docs note it probably should have been named "SessionTime."The gap seems to come from cross-stream jitter (
session_start_timeandlaps['Time']originate from separate API feeds that aren't perfectly synchronized) and from Fast-F1's post-processing that refines lap timestamps by comparing sector triggers. Thetime_explanationdoc page mentions that reconstructed timestamps can't be verified to millisecond precision. For authoritative race time,sessio…