GET /carbon/flight
Reiknaðu the CO2 emissions for a specific flight route by providing origin and destination hnit. Uses great-circle distance and aviation emission factors to estimate the kolefnisspor in kilograms of CO2. Gagnlegt fyrir travel booking forrit that display environmental impact, carbon offset calculators, and corporate travel sustainability reporting. Styður hvaða tvo staði sem er á jörðinni.
from_lat
nauðsynlegt
Origin lat
from_lon
nauðsynlegt
Origin lon
to_lat
nauðsynlegt
Dest lat
to_lon
nauðsynlegt
Dest lon
| Nafn | Nauðsynlegt | Sjálfgefið | Lýsing |
|---|---|---|---|
from_lat |
Já | - | Origin lat |
from_lon |
Já | - | Origin lon |
to_lat |
Já | - | Dest lat |
to_lon |
Já | - | Dest lon |
curl "https://nordapi.ee/api/v1/carbon/flight?from_lat=59.9&from_lon=10.7&to_lat=40.7&to_lon=-74"
curl "https://nordapi.ee/api/v1/carbon/flight?from_lat=59.9&from_lon=10.7&to_lat=40.7&to_lon=-74"
curl "https://nordapi.ee/api/v1/carbon/flight?from_lat=51.47&from_lon=-0.46&to_lat=35.76&to_lon=140.39"
curl "https://nordapi.ee/api/v1/carbon/flight?from_lat=59.65&from_lon=17.92&to_lat=52.56&to_lon=13.29"
{
"data": {
"co2_per_person_kg": 1153.1,
"distance_km": 5913.0,
"flight_type": "long_haul",
"passengers": 1,
"total_co2_kg": 1153.1,
"train_equivalent_co2_kg": 242.5,
"trees_to_offset": 53.0
},
"success": true
}