You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simulated river discharge at 5 km resolution from 1984 up to 7 months forecast
Code Example :
#from openmeteo_py.Daily.Marine import Marine as Dailyfromopenmeteo_pyimportOWmanagerfromopenmeteo_py.Daily.DailyFloodimportDailyFloodfromopenmeteo_py.Options.FloodOptionsimportFloodOptions# Latitude, Longitude longitude=59.906296latitude=10.74408daily=DailyFlood()
options=FloodOptions(longitude,latitude)
#notice that we had to give the value "None" for the hourly parameter,otherwise you'll be filling the hourly parameter instead of the daily one,which will raise an error.mgr=OWmanager(options,OWmanager.flood,None,daily.all())
# Download datameteo=mgr.get_data()
print(meteo)