Skip to content

Commit

Permalink
Update theropoda.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vieiramesquita authored Jun 28, 2024
1 parent ab5dc84 commit 45b23ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions theropoda.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,9 +492,9 @@ def run(asset,id_field,output_name,colab_folder):

parser = argparse.ArgumentParser(description='Toolkit created to extract Time Series information from Sentinel 2 stored in Earth Engine, perform gap filling and trend analysis image.')

parser.add_argument('--asset', required=True, help='The asset name or path')
parser.add_argument('--id_field', required=True, help='The ID field name')
parser.add_argument('--output_name', required=True, help='The output file name')
parser.add_argument('--asset', type=str, required=True, help='The asset name or path')
parser.add_argument('--id_field', type=str, required=True, help='The ID field name')
parser.add_argument('--output_name', type=str, required=True, help='The output file name')

args = parser.parse_args()

Expand Down

0 comments on commit 45b23ed

Please sign in to comment.