Skip to content

Commit

Permalink
feat: change --location to --geographic-description
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfouquet committed Jan 16, 2024
1 parent 0d4f91d commit e7820bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/collection_from_items.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def main() -> None:
)
parser.add_argument("--gsd", dest="gsd", help="GSD of imagery Dataset", type=str, required=True)
parser.add_argument(
"--location", dest="location", help="Optional Location of dataset, e.g. Hutt City", type=str, required=False
"--geographic-description", dest="geographic_description", help="Optional Geographic Description of dataset, e.g. Hutt City", type=str, required=False
)
parser.add_argument(
"--start-date",
Expand Down Expand Up @@ -103,7 +103,7 @@ def main() -> None:
"start_datetime": arguments.start_date,
"end_datetime": arguments.end_date,
"lifecycle": arguments.lifecycle,
"geographic_description": arguments.location,
"geographic_description": arguments.geographic_description,
"event_name": arguments.event,
"historic_survey_number": arguments.historic_survey_number,
}
Expand Down

0 comments on commit e7820bd

Please sign in to comment.