Skip to content

Commit

Permalink
add meteo_var to nearest knmi evaporation
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrakenhoff committed Oct 15, 2024
1 parent a95cc1d commit 060a0b9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pastastore/extensions/hpd.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ def download_nearest_knmi_precipitation(
def download_nearest_knmi_evaporation(
self,
oseries: str,
meteo_var: str = "EV24",
tmin: Optional[TimeType] = None,
tmax: Optional[TimeType] = None,
unit_multiplier: float = 1e-3,
Expand All @@ -464,6 +465,9 @@ def download_nearest_knmi_evaporation(
----------
oseries : str
download nearest evaporation information for this observation well
meteo_var : str, optional
variable to download, by default "EV24", valid options are:
["EV24", "penman", "hargreaves", "makkink"].
tmin : TimeType
start time
tmax : TimeType
Expand All @@ -480,7 +484,7 @@ def download_nearest_knmi_evaporation(
"""
self.download_nearest_knmi_meteo(
oseries=oseries,
meteo_var="EV24",
meteo_var=meteo_var,
kind="evap",
tmin=tmin,
tmax=tmax,
Expand Down

0 comments on commit 060a0b9

Please sign in to comment.