CorneringAnalyzer - Circuit Session - Lime Rock MX-5
Corner-by-corner analysis with entry/apex/exit speeds, brake points, and time loss
Sample Data
| Attribute | Value |
|---|---|
| Source | garage61 |
| Category | circuit_lap |
| File | 01K451BYJ64G0T2GPQ44AKXC86 |
Available Channels: LongAccel, VertAccel, YawRate, abs_active, brake, clutch, drs_active, gear, lap_distance_pct, lat_accel, latitude, longitude, position_type, rpm, speed, speed_kph, speed_mph, steering, throttle, time, track_pct, yaw
Configuration
| Setting | Value |
|---|---|
| Slice Type | lap |
| Metadata Only | False |
| Required Channels | speed, distance, time |
When to Use
- User asks about specific corners or turns
- User wants to know where they're losing time
- User asks about corner entry, apex, or exit performance
- User asks about consistency through corners
Key Options
| Option | Description |
|---|---|
lap_selection | best (single best lap) |
sort_order | time_loss (biggest problems first) |
corner_names | Filter to specific corners (e.g., ['big_bend', 'turn_1']) |
Sample Output
Subjects Analyzed: 1
All Laps (Default)
Options: lap_selection=all
{
"metrics": [],
"corner_details": {},
"corner_analysis": {},
"best_corners": {},
"metadata": {
"title": "Corner-by-Corner Analysis",
"landmark_kind": "turn",
"corners_filtered": null,
"lap_selection": "all"
}
}
Best Lap Only
Options: lap_selection=best
{
"metrics": [],
"corner_details": {},
"corner_analysis": {},
"best_corners": {},
"metadata": {
"title": "Corner-by-Corner Analysis",
"landmark_kind": "turn",
"corners_filtered": null,
"lap_selection": "best"
}
}
Track Order
Options: sort_order=track_order
{
"metrics": [],
"corner_details": {},
"corner_analysis": {},
"best_corners": {},
"metadata": {
"title": "Corner-by-Corner Analysis",
"landmark_kind": "turn",
"corners_filtered": null,
"lap_selection": "all"
}
}
Example Calls
Where am I losing time at Spa
analyze(analyzers='cornering', track='Spa', lap_selection='best', sort_order='time_loss')
Analyzes best lap, ranks corners by time loss to show biggest opportunities
How consistent am I across all my laps in that session
analyze(analyzers='cornering', event='01H8SP4HK4', lap_selection='all')
Analyzes all laps to show consistency metrics (std dev, CV%) per corner
Show me my performance through Big Bend
analyze(analyzers='cornering', track='Lime Rock', corner_names=['big_bend'], sort_order='track_order')
Filters analysis to specific corner with sequential ordering
Generated from b4racing.analysis.analyzers.cornering.CorneringAnalyzer