Skip to content

Commit

Permalink
Consistency fixes for elevation
Browse files Browse the repository at this point in the history
  • Loading branch information
robbibt committed Dec 20, 2023
1 parent fb64d14 commit 6bcd20a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions intertidal/elevation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1348,14 +1348,14 @@ def elevation(
@click.option(
"--start_date",
type=str,
default="2020",
default="2019",
help="The start date of satellite data to load from the "
"datacube. This can be any date format accepted by datacube. ",
)
@click.option(
"--end_date",
type=str,
default="2022",
default="2021",
help="The end date of satellite data to load from the "
"datacube. This can be any date format accepted by datacube. ",
)
Expand Down Expand Up @@ -1495,7 +1495,7 @@ def intertidal_cli(
configure_s3_access(cloud_defaults=True, aws_unsigned=aws_unsigned)

# Create output folder. If it doesn't exist, create it
output_dir = f"data/interim/{study_area}/{start_date}-{end_date}-spearman"
output_dir = f"data/interim/{study_area}/{start_date}-{end_date}"
os.makedirs(output_dir, exist_ok=True)

try:
Expand Down

0 comments on commit 6bcd20a

Please sign in to comment.