Skip to content

Commit

Permalink
Update satromo_processor.py
Browse files Browse the repository at this point in the history
removed  the tif  extension in NDVI Export
  • Loading branch information
davidoesch committed Dec 20, 2023
1 parent f685dea commit 011d435
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions satromo_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ def process_NDVI_MAX(roi):

# Generate the filename
filename = config.PRODUCT_NDVI_MAX['prefix'] + \
'_' + timestamp + '_10m.tif'
'_' + timestamp + '_10m'
print(filename)

# Check if there is at least 1 scene to be defined (if minimal scene count is required) TODO: is this necessary?
Expand Down Expand Up @@ -808,7 +808,7 @@ def process_NDVI_MAX_TOA(roi):
current_date_str = datetime.datetime.today().strftime('%Y-%m-%d')

# For debugging
current_date_str = "2023-11-01"
current_date_str = "2023-10-31"
print("*****************************\n")
print("using a manual set Date: "+current_date_str)
print("*****************************\n")
Expand All @@ -818,7 +818,7 @@ def process_NDVI_MAX_TOA(roi):
roi = ee.Geometry.Rectangle(config.ROI_RECTANGLE)
step0_product_dict = get_step0_dict()
print(step0_product_dict)

collections_ready_for_processors = step0_main(
step0_product_dict, current_date_str)
print(collections_ready_for_processors)
Expand Down

0 comments on commit 011d435

Please sign in to comment.