From b661bb5f073b8405045a10af42987473f2c5ccd6 Mon Sep 17 00:00:00 2001 From: Raffaele Gaetano <raffaele.gaetano@cirad.fr> Date: Tue, 21 Mar 2023 17:54:27 +0100 Subject: [PATCH] FIX: typo. --- moringa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moringa.py b/moringa.py index e20905f..1eaefba 100755 --- a/moringa.py +++ b/moringa.py @@ -52,7 +52,7 @@ def main(args): formatter_class=argparse.ArgumentDefaultsHelpFormatter) prepr.add_argument("in_folder", type=str, help="Path to the folder containing (de-zipped) S2 images.") prepr.add_argument("out_folder", type=str, help="Path to the folder in which preprocessed stacks will be stored.") - prepr.add_argument("--output_dates_file", type=str, default=None, help="Path to the text file containing output dates for temporal interpolation.") + prepr.add_argument("--output_dates_file", type=str, default=None, help="Path to the text file containing output dates for temporal interpolation.") prepr.add_argument("--roi", type=str, default=None, help="Path to the ROI vector file.") prepr.add_argument("--coregister_to", type=str, default=None, help="Path to a reference image to which the stacks must be coregistered.") prepr.add_argument("--coregister_to_band", type=int, nargs='?', default=1, help="Band of reference image used for co-registration.") -- GitLab