Skip to content

Commit

Permalink
making image and json path in rabbit message relative to first two of…
Browse files Browse the repository at this point in the history
… cog
  • Loading branch information
asaxton committed Aug 15, 2024
1 parent 040f1a0 commit 123d7c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions downloader/CM_B_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ def run(self):
maparea_data_file_name=my_cog_id+".map_data.json"

# here we have the actual paths for the files we're going to (potentially) download
tif_filename_with_path=os.path.join(external_data_path,tif_data_file_name)
maparea_filename_with_path=os.path.join(external_data_path,maparea_data_file_name)
tif_filename_with_path=os.path.join(relative_file_location,tif_data_file_name)
maparea_filename_with_path=os.path.join(relative_file_location,maparea_data_file_name)

# if the incoming message specified a maparea file, get it
if maparea_file_URL:
Expand Down

0 comments on commit 123d7c1

Please sign in to comment.