π Rail transport
π§ Methodology
Our rail emission methodology currently supports :
- Europe with fuel type
ELECorDIESEL; if the fuel type is unknown, you can use theDEFAULTfuel type which is a mean average ofELECandDIESELfollowing the GLEC recommendations. - North America with fuel type
DIESEL. - Asia with fuel type
DIESEL.
In both cases, we use the GLEC recommended emission factors.
We use network distances (based on OpenRail Map) in conjunctions with our geocoder to compute point to point emissions. A sample query below π
{
"co2e": {
"total": 13362,
"wtt": 1572,
"ttw": 11790
},
"parameters": {
"mode": "RAIL",
"from": {
"locode": "FRMRS",
"coordinates": null
},
"to": {
"locode": "FRPAR",
"coordinates": null
},
"weight": 1000.0,
"fuel": "DEFAULT"
},
"properties": {
"dataType": "DEFAULT",
"distance": 785989,
"region": "Europe"
}
}curl --request GET 'https://api.searoutes.com/co2/v2/direct/rail?fromLocode=FRMRS&toLocode=FRPAR' \
--header 'x-api-key: <your_api_key_here>'Updated about 1 month ago