Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 831 Bytes

ELEVATION.md

File metadata and controls

32 lines (20 loc) · 831 Bytes

90 meter resolution digital elevation model

Code Example

from openmeteopy import OpenMeteo
from openmeteopy.options import ElevationOptions 

# Latitude, Longitude for Rabat,Morocco
latitude = 32.864823
longitude = -11.325094

options = ElevationOptions(longitude,latitude)

mgr = OpenMeteo(options)

# Download data
meteo = mgr.get_pandas()

print(meteo)

Parameters

Options :

Parameter Format Required
latitude Floating point array Geographical WGS84 coordinates of the location. Multiple coordinates can be coma , separated. Up to 100 coordinates can be requested at once.
longitude Floating point array Geographical WGS84 coordinates of the location. Multiple coordinates can be coma , separated. Up to 100 coordinates can be requested at once.