Skip to content

Commit 0f19598

Browse files
committed
Update: Gaussian filter choices
1 parent 719a780 commit 0f19598

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ will print a detailed usage message to the screen:
9090
--engine-writer {h5netcdf,netcdf4,zarr}
9191
specify the engine used to write the target product
9292
file. (default: None)
93-
--gaussian-filter {0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0}
93+
--gaussian-filter GAUSSIAN_FILTER
9494
specify the full width at half maximum (pixels) of
9595
a lateral Gaussian filter applied to the forecast.
9696
If not specified no filter is applied. (default:

wqf/parser.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ def _add_options(parser):
118118
help="specify the full width at half maximum (pixels) of "
119119
"a lateral Gaussian filter applied to the forecast. "
120120
"If not specified no filter is applied.",
121-
choices=[0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0],
122121
type=float,
123122
required=False,
124123
dest="gaussian_filter",

wqf/val/mov.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ def generate_figures(args):
176176
help="specify the full width at half maximum (pixels) of "
177177
"a lateral Gaussian filter applied to the forecast. "
178178
"If not specified no filter is applied.",
179-
choices=[0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0],
180179
type=float,
181180
required=False,
182181
dest="fwhm",

0 commit comments

Comments
 (0)