From b168a54749669b29927854cd449995a5b8edae3f Mon Sep 17 00:00:00 2001 From: Daniel Wiesmann Date: Wed, 6 Dec 2023 10:52:41 +0000 Subject: [PATCH] Remove default for subset This is easy to forget and then run with subset without the intention to actually subset --- scripts/datacube.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/datacube.py b/scripts/datacube.py index c5684ef3..edfee36e 100755 --- a/scripts/datacube.py +++ b/scripts/datacube.py @@ -414,7 +414,7 @@ def convert_attrs_and_coords_objects_to_str(data): @click.option( "--subset", required=False, - default="1000,1000,2000,2000", + default=None, help="For debugging, subset x and y to this pixel window.", ) def main(index, subset, bucket):