E.g. Mt. Everest @ 27.9881° N, 86.9250° E
https://www.freemaptools.com/elevation-finder.htm gives 8840m
My own implementation of SRTM lookup gives 8840m
https://openrouteservice.org/dev/#/api-docs/elevation/point/get gives 8794
curl --include \
--header "Content-Type: application/json; charset=utf-8" \
--header "Accept: application/json, application/geo+json, application/gpx+xml, img/png; charset=utf-8" \
'https://api.openrouteservice.org/elevation/point?api_key=...geometry=86.9250,27.9881'
Similarly for other points I have tried. Surely there is something wrong with my usage but I can’t seem to find the problem.
Any pointers appreciated!