From 30fdee797e25ff1bb0bda4703e4c0c03c27b6abd Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Tue, 24 Oct 2023 12:30:17 -0800 Subject: [PATCH] Fix another typo --- src/asf_tools/hydrosar/flood_map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asf_tools/hydrosar/flood_map.py b/src/asf_tools/hydrosar/flood_map.py index 5cfb3e67..0b47cac6 100644 --- a/src/asf_tools/hydrosar/flood_map.py +++ b/src/asf_tools/hydrosar/flood_map.py @@ -315,7 +315,7 @@ def _get_cli(interface: Literal['hyp3', 'main']) -> argparse.ArgumentParser: parser.add_argument('--minimization-metric', type=str, default='ts', choices=['fmi', 'ts'], help='Evaluation method to minimize when using the iterative estimator. ' 'Options include a Fowlkes-Mallows index (fmi) or a threat score (ts).') - parser.add_argument('--iterative-minimum-size', type=int, default=0, + parser.add_argument('--iterative-min-size', type=int, default=0, help='Minimum size of a connected waterbody in pixels for calculating flood depths with the ' 'iterative estimator. Waterbodies smaller than this wll be skipped.')