I want get elevation of point offline in my app I searched a lot but could not find anything for this.How can I do this?
We have a dem file and we may get altitude of point with coordinate (latitude and longitude)
I want get elevation of point offline in my app I searched a lot but could not find anything for this.How can I do this?
We have a dem file and we may get altitude of point with coordinate (latitude and longitude)
This library seems promising: https://github.com/komoot/batch-dem-reader
This Kotlin app also seems relevant: https://github.com/raynigon/raylevation
If none of the options give you what you need, you'll probably have to implement parsing the file yourself. For that, you can get inspiration from libraries written in other languages (e.g. https://github.com/tkrajina/srtm.py)