Skip to content

Commit

Permalink
resync 'label date' func in CLI calls
Browse files Browse the repository at this point in the history
  • Loading branch information
erialC-P committed Aug 22, 2024
1 parent e6d647a commit 79ee6c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notebooks/Intertidal_CLI.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -372,11 +372,11 @@
"]\n",
"\n",
"for tile in study_area_list:\n",
" for start_date, end_date in epoch_list:\n",
" print(start_date, end_date)\n",
" for start_date, label_date, end_date in epoch_list:\n",
" print(start_date, label_date, end_date)\n",
" print(tile)\n",
" try:\n",
" !python -m intertidal.elevation --study_area {tile} --start_date {start_date} --end_date {end_date} --modelled_freq {modelled_freq} {exposure_offsets} {output_auxiliaries} --tide_model {tide_model} --tide_model_dir {tide_model_dir}\n",
" !python -m intertidal.elevation --study_area {tile} --start_date {start_date} --end_date {end_date} --label_date {label_date} --modelled_freq {modelled_freq} {exposure_offsets} {output_auxiliaries} --tide_model {tide_model} --tide_model_dir {tide_model_dir}\n",
" except:\n",
" pass"
]
Expand Down

0 comments on commit 79ee6c1

Please sign in to comment.