Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sar_pipeline/pipelines/isce3_rtc/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
@click.option(
"--s3-project-folder",
required=True,
type=str,
type=click.Path(file_okay=False, path_type=Path),
help="project folder in the s3 bucket",
)
@click.option(
Expand Down Expand Up @@ -692,7 +692,7 @@ def get_data_for_scene_and_make_run_config(
@click.option(
"--s3-project-folder",
required=True,
type=str,
type=click.Path(file_okay=False, path_type=Path),
help="The folder within the bucket to upload the files. Note the "
"final path follows the patter in the description of this function.",
)
Expand Down Expand Up @@ -998,14 +998,14 @@ def make_rtc_opera_stac_and_upload_bursts(
@click.option(
"--s3-product-folder-1",
required=False,
type=str,
type=click.Path(file_okay=False, path_type=Path),
help="Path to the folder in s3 containing the first burst outputs from RTC/opera to compare."
" Ensure AWS_ACCESS_KEY_ID, AWS_ACCESS_KEY_SECRET, AWS_DEFAULT_REGION environment variables set if required.",
)
@click.option(
"--s3-product-folder-2",
required=False,
type=str,
type=click.Path(file_okay=False, path_type=Path),
help="Path to the folder in s3 containing the second burst outputs from RTC/opera to compare."
"Ensure AWS_ACCESS_KEY_ID, AWS_ACCESS_KEY_SECRET, AWS_DEFAULT_REGION environment variables set if required.",
)
Expand Down
Loading