Flight: Base Empreinte 🇫🇷
💡 High-Level Description:
Base Empreinte, managed by ADEME, is a comprehensive environmental impact database combining data from Base Carbone and Base IMPACTS. For air travel, Base Empreinte® offers emissions data that reflect aircraft size, fuel type, and other parameters crucial for accurate carbon footprint assessments.
The methodology considers the radiative forcing index (RFI) to account for the broader climate impact of aviation emissions beyond CO2. This ensures that businesses and travelers receive comprehensive environmental insights into their air travel.
Sample API Request
{
"expand": [
"items"
],
"items": [
{
"type": "flight",
"methodology": "BASE-EMPREINTE",
"external_reference": "test_1",
"number_of_travelers": 1,
"origin": "FRA",
"destination": "JFK",
"aircraft_size": "under_220_seats",
"radiative_forcing_index": true
}
]
}
API request items
"type": "flight"
(required)"methodology": "BASE-EMPREINTE"
(required)"external_reference"
: A unique identifier that helps you link the resulting emissions to the requested item. Especially useful if multiple items are requested since SQUAKE cannot guarantee to keep the same order. The maximum length is 128 characters."number_of_travelers"
: Minimum value is1
. The default value is1
."origin"
: SQUAKE will try to resolve theorigin
/destination
regardless of its format. Ideally, for addresses use the Post standard, for airports use IATA/ICAO code (format:^[A-Z]{3,4}$
, e.g."MUC"
), for other locations used in trade and transportation use UN/LOCODE codes (format:^[A-Z]{2}\W?[A-Z2-9]{3}$
, e.g."DEHAM"
). You can also pass lat/long (format:^[-+]?\d{1,3}\.\d{1,10}\s?,\s?[-+]?\d{1,3}\.\d{1,10}$
, e.g."+40.712,-74.006"
)."destination"
: SQUAKE will try to resolve theorigin
/destination
regardless of its format. Ideally, for addresses use the Post standard, for airports use IATA/ICAO code (format:^[A-Z]{3,4}$
, e.g."MUC"
), for other locations used in trade and transportation use UN/LOCODE codes (format:^[A-Z]{2}\W?[A-Z2-9]{3}$
, e.g."DEHAM"
). You can also pass lat/long (format:^[-+]?\d{1,3}\.\d{1,10}\s?,\s?[-+]?\d{1,3}\.\d{1,10}$
, e.g."+40.712,-74.006"
)."distance_in_km"
: Prioritized overorigin
anddestination
. If you don't have adistance_in_km
, you can useorigin
anddestination
and the distance will be automatically resolved. If you pass bothdistance_in_km
andorigin
/destination
, thendistance_in_km
will be used."aircraft_size"
: Supports values likeunder_220_seats
,under_50_seats
,under_50_seats_jet
, or defaults to average if not passed."sustainable_fuels"
: Indicates the usage of sustainable fuels. This lowers the computed emissions in SQUAKE but is not part of the current official emissions frameworks."radiative_forcing_index"
: Defaults totrue
."carbon_reduction_percentage_of_total"
: The percentage of emissions reduction through the usage of sustainable fuel. The minimum value is0
, and the maximum value is1
. Default value is0
.Default Values
"radiative_forcing_index": true
Sample API Response
{
"carbon_quantity": 632000,
"carbon_unit": "gram",
"items": [
{
"carbon_quantity": 632000,
"carbon_unit": "gram",
"external_reference": "test_1",
"type": "flight",
"methodology": "BASE-EMPREINTE",
"distance": 6320.0,
"distance_unit": "kilometer"
}
]
}
Bibliography
ADEME. (2025). Base Empreinte - Données d’impacts environnementaux. Retrieved from https://www.ademe.fr/base-empreinte
ADEME. (2024). Base Carbone Methodological Guide. Retrieved from https://www.ademe.fr/base-carbone
ADEME. (2023). Documentation on aviation emission factors. Available via official ADEME publications.
Eurocontrol (2022). Aircraft performance and fuel consumption statistics.
Last updated
Was this helpful?