Organization Philosophy
The archive follows a logical hierarchy from broadest to most specific:- Navigate chronologically through F1 history (1950-present)
- Access all data for a specific season
- Drill down to individual race weekends
- Find specific data types (results, qualifying, lap times, etc.)
Directory Hierarchy
Each year directory contains:- Season-level files: Championship standings and race calendar
- Race directories: Individual folders for each Grand Prix
Season-Level Files
At the year level (e.g.,2024/):
events.json- Calendar of all races in the seasondriverPoints.json- Final driver championship standingsteamPoints.json- Final constructor championship standings
Race-Level Files
Each race directory (e.g.,2024/australian-grand-prix/) contains:
event_info.json- Race weekend schedule and circuit informationresults.json- Race results with positions, times, and pointsquali_results.json- Qualifying results for all sessions (Q1, Q2, Q3)laptimes.json- Lap-by-lap timing data for all driverspitstops.json- Pit stop data including duration and lap numberdriverPoints.json- Driver standings after this raceteamPoints.json- Constructor standings after this racesprint_results.json- Sprint race results (only for sprint weekends)
Data Consistency
All data files follow consistent schemas based on the Ergast API format:- Data is stored in JSON format
- Each file contains metadata headers (
MRDatawrapper) - Driver and constructor information uses consistent IDs across all files
- Times are stored in ISO 8601 format
- Coordinates use decimal degrees for circuit locations
Navigating the Archive
By Time Period
Start at a year directory to explore a complete season:By Race Weekend
Drill into a race directory for complete weekend data:By Data Type
Access the same data type across multiple races:- Compare qualifying performance:
*/*/quali_results.json - Track championship progression:
*/driverPoints.json - Analyze pit strategies:
*/*/pitstops.json
Historical Coverage
The archive spans from 1950 (the first F1 World Championship) to the present day:- Early years (1950s-1990s) have fewer data types due to limited historical records
- Modern seasons (2000s+) include comprehensive data
- Lap times and pit stops become available from 1996 onwards
- Sprint races appear from 2021 onwards
Use Cases
This structure supports various analytical workflows:Season Analysis
Season Analysis
Access
events.json and championship standings files to analyze season-long trends, championship battles, and calendar changes over time.Race Comparison
Race Comparison
Compare the same Grand Prix across different years by navigating to the same race name in different year directories.
Driver Performance
Driver Performance
Track a driver’s qualifying and race results by searching for their
driverId across multiple results.json and quali_results.json files.Strategy Analysis
Strategy Analysis
Use
pitstops.json and laptimes.json to analyze tire strategies, pit stop efficiency, and stint performance.Next Steps
Directory Layout
Explore the detailed file and folder structure
JSON Schemas
Learn about the structure of each data file