Skip to content

Commit

Permalink
fix: --cutline is not required (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
blacha authored Dec 6, 2022
1 parent 13688d8 commit 9fcb901
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/standardise_validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ def main() -> None:
parser = argparse.ArgumentParser()
parser.add_argument("--preset", dest="preset", required=True)
parser.add_argument("--source", dest="source", nargs="+", required=True)
parser.add_argument("--cutline", dest="cutline", help="Optional cutline to cut imagery to", required=True)

parser.add_argument("--cutline", dest="cutline", help="Optional cutline to cut imagery to", required=False)
parser.add_argument("--scale", dest="scale", help="Tile grid scale to align output tile to", required=True)
parser.add_argument("--collection-id", dest="collection_id", help="Unique id for collection", required=True)
parser.add_argument(
Expand Down

0 comments on commit 9fcb901

Please sign in to comment.