TelemetryOverlayAnalyzer
Telemetry overlay chart with speed, throttle, brake over distance
Configuration
- Metadata Only: False
When to Use
- User asks to 'show me telemetry' or 'visualize my data'
- User wants to see detailed technique through specific corner
- User mentions wanting to see brake points or throttle application
- User wants to compare telemetry across laps
Options
corner_filter: Filter to specific corner name (e.g., 'big_bend')show_brake_points: Show brake point markers on chart (default: False)compare_laps: List of lap numbers to overlay for comparison (e.g., [5, 8, 12])channels: Telemetry channels to display (default: ['speed', 'throttle', 'brake'])
Examples
Example 1
User Query: Show me telemetry for Big Bend in that Lime Rock session
Call:
analyze(analyzers='telemetry_overlay', event='01H8SP4HK4', corner_filter='big_bend', show_brake_points=True)
Explanation: Displays telemetry filtered to Big Bend corner with brake point markers
Example 2
User Query: Compare my telemetry on laps 5 and 8
Call:
analyze(analyzers='telemetry_overlay', event='01H8SP4HK4', compare_laps=[5, 8])
Explanation: Overlays telemetry from both laps for direct comparison
Example 3
User Query: Show me my best lap telemetry
Call:
analyze(analyzers='telemetry_overlay', event='01H8SP4HK4')
Explanation: Displays telemetry from the best lap (default behavior)