RelativeDistance in telemetry #490
Replies: 2 comments 5 replies
-
This was an intentional decision when implementing that method to compensate for slight integration errors. Have you tested what happens if you do use a fixed distance instead? I'm sure, you will get values that are smaller and values that are larger than 1.0. But I wouldn't call these errors in the data but rather slight inaccuracies. (Except in very rare cases where the distance would be off by something like 10%, for example) |
Beta Was this translation helpful? Give feedback.
-
As you pointed it out, I noticed 'RelativeDistance' highest value is almost always less than 1 when circuit length is used. Regarding circuit length, Multiviewer mentioned circuit length data is available in F1TV API. Do you plan on adding circuit length data to Fast-F1 Api or Ergast Api? To save your time, I can compile a list and share it here if you'd like. |
Beta Was this translation helpful? Give feedback.
-
Currently 'RelativeDistance' is calculated as
rel_dist = d.loc[:, 'Distance'] / d.loc[:, 'Distance'].iloc[-1]
, I think it would be more accurate to use Circuit length as denominator likerel_dist = d.loc[:, 'Distance'] / circuit_length
This has two advantages
Beta Was this translation helpful? Give feedback.
All reactions