- 2,541
- Netherlands
- Denur; GTP_Denur
If the track editor offers the possibility to enter detailed track coordinates with elevation, then Google Maps offers the tools to get the exact elevation (in meters) of any existing location (GPS coordinates) on Earth. It does this through Google Maps Elevation Web Services, which hosts a number of options.
But it will be a tedious task to map an entire existing track like Spa Francorchamps. This for the first corner (La Source):
The following example requests the elevation for Denver, Colorado, the "Mile High City" in the JSON format:
input:
_http://maps.google.com/maps/api/elevation/json?locations=39.7391536,-104.9847034&sensor=false
result file:
{
"status": "OK",
"results": [ {
"location": {
"lat": 39.7391536,
"lng": -104.9847034
},
"elevation": 1608.8402100
} ]
}
But it will be a tedious task to map an entire existing track like Spa Francorchamps. This for the first corner (La Source):
{
"status": "OK",
"results": [ {
"location": {
"lat": 50.4463510,
"lng": 5.9636860
},
"elevation": 426.4454041
} ]
}