Skip to main content
Speed traces give a direct comparison of lap performance between drivers. Overlay the speed profiles of two laps. The overlay shows where one driver is faster. It also shows braking points, acceleration zones, and top speeds. Speed traces comparison between two drivers

Loading the Session

Compare the fastest qualifying laps from the 2023 Spanish Grand Prix between Verstappen and Hamilton.

Selecting the Laps

Use the pick_drivers() and pick_fastest() methods to get each driver’s fastest lap.

Getting Telemetry with Distance

Telemetry data includes speed, throttle, brake, and more. The add_distance() method adds a cumulative distance column. Use this column to align the laps for comparison.

Plotting with Team Colors

Use tif1.plotting.get_team_color() to automatically fetch the correct team colors for visual consistency.

Analyzing the Traces

When examining speed traces, look for:
  • Braking zones: Sharp drops in speed indicate braking points. Earlier or later braking can reveal different driving styles or car characteristics.
  • Minimum corner speeds: The lowest point in each dip shows how much speed is carried through corners.
  • Acceleration: The steepness of the speed increase after corners indicates traction and power delivery.
  • Top speeds: Peak values on straights reveal engine power and drag levels.

Parameters

The native chart accepts the shared filters. The drivers list selects which fastest laps to overlay; the default is the top-2 finishers:

Complete Example

The whole workflow above is wrapped in a single native function:

Next Steps

  • Explore other telemetry channels like throttle and brake in the Telemetry Comparison
  • Learn about calculating time deltas between laps
  • Analyze gear shifts and RPM data for transmission insights
Last modified on September 3, 2026