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
*`--probabilistic_climatology_hour_interval`: Hour interval to compute
55
57
probabilistic climatology. Default: 6
56
-
*`--add_land_region`: Add land-only evaluation. `land_sea_mask` must be in observation dataset.
58
+
*`--regions`: Comma delimited list of predefined regions to evaluate. "all" for all predefined regions.
59
+
*`--lsm_dataset`: Dataset containing land-sea-mask at same resolution of datasets to be evaluated. Required if region with land-sea-mask is picked. If None, defaults to observation dataset.
60
+
*`--compute_seeps`: Compute SEEPS for total_precipitation.
57
61
*`--eval_configs`: Comma-separated list of evaluation configs to run. See details below. Default: `deterministic`
58
62
*`--ensemble_dim`: Ensemble dimension name for ensemble metrics. Default: `number`.
59
63
*`--rename_variables`: Dictionary of variable to rename to standard names. E.g. {"2t": "2m_temperature"}
@@ -70,59 +74,8 @@ _Command options_:
70
74
*`--beam_runner`: Beam runner
71
75
*`--fanout`: Beam CombineFn fanout. Might be required for large dataset. Default: `None`
*`--frequency`: Frequency of the computed climatology. "hourly": Compute the climatology per day of year and hour of day. "daily": Compute the climatology per day of year.
171
126
*`--hour_interval`: Which intervals to compute hourly climatology for. Default: `1`
172
127
*`--window_size`: Window size in days to average over. Default: `61`
173
128
*`--start_year`: Inclusive start year of climatology. Default: `1990`
@@ -179,7 +134,7 @@ _Command options_:
179
134
*`--add_statistic_suffix`: Add suffix of statistic to variable name. Required for >1 statistic.
180
135
*`--method`: Computation method to use. "explicit": Stack years first, apply rolling and then compute weighted statistic over (year, rolling_window). "fast": Compute statistic over day-of-year first and then apply weighted smoothing. Mathematically equivalent for mean but different for nonlinear statistics. Default: `explicit`
181
136
*`--seeps_dry_threshold_mm`: Dict defining dry threshold for SEEPS quantile computation for each precipitation variable. In mm. Default: `"{'total_precipitation_24hr':0.25, 'total_precipitation_6hr':0.1}"`
182
-
*`--beam_runner`: Beam runner. Use `DirectRunner` for local execution.
137
+
*`--runner`: Beam runner. Use `DirectRunner` for local execution.
183
138
184
139
*Example*
185
140
@@ -203,9 +158,11 @@ Computes derived variables, adds them to the original dataset and saves it as a
*`--derived_variables`: (required) Comma delimited list of derived variables to compute. Default: `wind_speed,10m_wind_speed,total_precipitation_6hr,total_precipitation_24hr`
176
+
*`--derived_variables`: Comma delimited list of derived variables to compute. By default, tries to compute all derived variables.
177
+
*`--preexisting_variables_to_remove`: Comma delimited list of variables to remove from the source data, if they exist. This is useful to allow for overriding source dataset variables with derived variables of the same name.
220
178
*`--raw_tp_name`: Raw name of total precipitation variables. Use "total_precipitation_6hr" for backwards compatibility.
221
179
*`--rename_raw_tp_name`: Rename raw tp name to "total_precipitation".
180
+
*`--rename_variables`: Dictionary of variable to rename to standard names. E.g. {"2t":"2m_temperature"}
222
181
*`--working_chunks`: Chunk sizes overriding input chunks to use for computing aggregations e.g., "longitude=10,latitude=10". No need to add prediction_timedelta=-1, this is automatically added for aggregation variables. Default: `None`, i.e. input chunks
223
182
*`--rechunk_itemsize`: Itemsize for rechunking. Default: `4`
224
183
*`--max_mem_gb`: Max memory for rechunking in GB. Default: `1`
0 commit comments