erDiagram
FUEL_READING {
}
FLIGHT {
}
AIRPORT {
}
TRAJECTORY_POSITION {
}
FUEL_READING }|--|| FLIGHT : has
FLIGHT }o--|{ AIRPORT : has
FLIGHT ||--|{ TRAJECTORY_POSITION : has
Data
We provide the following (logical) data sets:
- flights list information
- (portions of) trajectories for the flights in the list
- fuel burnt/flown for one or more intervals in each flight
- airport coordinates
In an ER diagram
The temporal extent of the datasets covers the period Apr - Oct 2025, split as follows:
- flights for Apr - Aug 2025: training dataset (3.1GiB)
- flights for Sep 2025: phase 1 submission / ranking
- flights for (maybe Sep and) Oct 2025: phase 2 submission / final ranking
The dataset for final ranking will be completely hidden to participating teams; we will only provide fuel_final_submission.parquet to be filled with the prediction of the relevant model.
Fuel Burnt/Flown
We collected fuel information (via Open-Source Intelligence (OSINT)) for flights between April and September 2025.
Dataset:
fuel_train.parquet: for trainingfuel_rank_submission.parquet: for submission (fuel_kgvalues set to0[zero])fuel_final_submission.parquet: for final ranking (fuel_kgvalues set to0[zero])
The columns of the fuel flown/burnt dataset are (d_ stands for delta):
idx: row idflight_id: a unique identifier of the flight in the flight liststart: a time instant (Coordinated Universal Time (UTC))end: a time instant (UTC)fuel_kg: fuel burnt between start and end
Flight list
Dataset:
flightlist_train.parquet: for trainingflightlist_rank.parquet: for rankingflightlist_final.parquet: the flight list of the additional flights of the final phase.
The following is the list of columns in the flight list dataset:
flight_id: a unique identifier for the flightflight_date: the date of the flighttakeoff: the UTC timestamp of the take-off timeorigin_icao: the International Civil Aviation Organization (ICAO) code of the Aerodrome of DEParture (ADEP), the origin of the flightorigin_name: the name of ADEPlanded: the UTC timestamp of the landing timedestination_icao: the ICAO code of the Aerodrome of DEStination (ADES), the destination of the flightdestination_name: the name of ADEPaircraft_type: the ICAO aircraft type code of the aircraft carrying out the flight
Trajectories
Dataset:
flights_train/<flight_id>.parquet: for trainingflights_rank/<flight_id>.parquet: for rankiningflights_final/<flight_id>.parquet: the flight trajectories of the additional flights of the final phase.
We have trajectory files for each flight with fuel flow segments. These are (mainly) Automatic Dependent Surveillance–Broadcast (ADS-B) position reports for the flights in the flight list as available in OpenSky Network historical database. These flight trajectories are possibly incomplete, i.e. they can lack portions. We have augmented these trajectories with positional information coming from ACARS; the source column would categorize the origin of the data, either adsb or acars.
Each trajectory is described by (units in square brackets)
flight_id: an identifier for the flight (details in the flight list dataset), i.e.prc770822360timestamp: timestamp for the position report [UTC]longitude: longitude in Decimal degrees (DD) in [-180, 180] rangelatitude: latitude in DD in [-90, 90] rangealtitude: altitude [ft]groundspeed: ground speed [knots, kt]track: track angle in DDvertical_rate: vertical rate of climb/descent [ft/min]mach: the Mach number (fromsource=acars)typecode: the ICAO aircraft type, i.e.A21Nfor the Airbus A321neoTAS: True AirSpeed (fromsource=acars) [kt]CAS: Calibrated AirSpeed (fromsource=acars) [kt]source: the origin of the information; it can beadsboracars
Airports
Dataset: apt.parquet
The airports dataset provides complementary positions as follows:
Additional and/or External data
The use of additional and/or external dataset is permitted if open data and documented.
How to access the datasets
Last year’s challenge website has some instructions about how to use Minio to access OpenSky buckets at
https://ansperformance.eu/study/data-challenge/dc2024/data.html#using-minio-client
List of Acronyms
ADEP: Aerodrome of DEParture
ADES: Aerodrome of DEStination
ADS-B: Automatic Dependent Surveillance–Broadcast
DD: Decimal degrees
ICAO: International Civil Aviation Organization
UTC: Coordinated Universal Time