Skip to content

Commit 9e0c0d3

Browse files
authored
Remove deprecated arguments
in the call of the steps method
1 parent 9974187 commit 9e0c0d3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

examples/run_ensemble_nowcast.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@
5353
ar_order = 2
5454
r_threshold = 0.1 # rain/no-rain threshold [mm/h]
5555
adjust_noise = True
56-
prob_matching = True
57-
precip_mask = True
5856
mask_method = "incremental" # sprog, obs or incremental
5957
conditional = False
6058
unit = "mm/h" # mm/h or dBZ
@@ -117,8 +115,7 @@
117115
bandpass_filter_method=bandpass_filter,
118116
noise_method=noise_method, noise_stddev_adj=adjust_noise,
119117
ar_order=ar_order, conditional=conditional,
120-
use_precip_mask=precip_mask, mask_method=mask_method,
121-
use_probmatching=prob_matching, seed=seed)
118+
mask_method=mask_method, seed=seed)
122119

123120
## if necessary, transform back all data
124121
R_fct, _ = transformer(R_fct, metadata, inverse=True)

0 commit comments

Comments
 (0)