Update moisture_rnn.py
[notebooks.git] / fmda / params_data.yaml
blob6d376f05728080b1dad9169205c34040e04b253a
1 # File used to store parameters associated with data filters
2 # Assumed units: 
3 ## FM: percent from 0-100 (or more)
4 ## Rain: mm/hr
5 ## Wind: m/s, see https://www.metoffice.gov.uk/weather/guides/coast-and-sea/beaufort-scale
6 ## Solar Rad: W/m^2, see https://viirsland.gsfc.nasa.gov/PDF/VIIRS_DSRPAR_UserGuide_v1.2.pdf
7 ## Soil Moisture: % (fraction)
9 max_pct_na: 0.4 # maximum percentage of na values for a timeseries, greater than threshold drop the timeseries entirely
10 max_intp_time: 10 # maximum number of hours that will be interpolated 
11 zero_lag_threshold: 5 # number of hours where flagged if zero change in FMC content over that period
13 min_fm: 0.01 # minimum FMC value allowed
14 max_fm: 250 # maximum FMC value allowed
15 min_rain: 0 # minimum rain value allowed
16 max_rain: 100 # maximum rain value allowed, assuming mm/hr units
17 min_wind: 0 # minimum wind threshold value
18 max_wind: 35 # maximum wind threshold value, this corresponds to a hurricane
19 min_solar: 0 # minimum wind threshold value
20 max_solar: 1400 # maximum solar threshold value
21 min_soilm: 0 # minimum soil moisture threshold value
22 # max_soilm: 0 # minimum soil moisture threshold value, TODO: look up
28