pyele
is a Python module for fetching and processing digital elevation model (DEM) data from the Geospatial Information Authority of Japan (GSI).This module is based on https://maps.gsi.go.jp/development/elevation.html
You can install pyele
with pip:
pip3 install git+https://github.com/archlabjp/pyele.git
You can use pyele to get the elevation of a specific latitude and longitude:
import pyele
lat = 35.681167
lng = 139.767052
elevation = pyele.get_elevation(lat, lng)
print(elevation)
This project is licensed under the terms of the MIT license. See the LICENSE file for details.