You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds drive_id support for FSD insights with a 7-day bookend lookup and focused attribution, while filtering negligible fidget drives so they do not steal sparse counter deltas. Updates drive detail and list UI to use the drive-scoped hook and omit unknown FSD badges.
Copy file name to clipboardExpand all lines: internal/api/fsd/drive_aggregate.go
+51-2Lines changed: 51 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,11 @@ const (
19
19
maxObservatoryTimelineEvents=200
20
20
maxObservatoryCommuteStories=8
21
21
minObservatoryCommuteDrives=2
22
-
observatoryHonesty="Every kilometre here is a reset-safe counter change, not an FSD engagement segment. Unknown and ambiguous distance are shown instead of guessed."
22
+
// Tesla will not emit SelfDrivingMilesSinceReset below a 1 mile wire
23
+
// delta. Sub-0.1 mi "drives" are pull-in / GPS fidget and must not steal
24
+
// overlap from a real commute sitting one minute later.
25
+
minFSDAttributionDistanceM=160.9344
26
+
observatoryHonesty="Every kilometre here is a reset-safe counter change, not an FSD engagement segment. Unknown and ambiguous distance are shown instead of guessed."
0 commit comments