Skip to content
Snippets Groups Projects
Commit 07a7d7ad authored by paul.tresson_ird.fr's avatar paul.tresson_ird.fr
Browse files

get unique name for merged files. Should potentially fix #45

parent 49281840
No related branches found
No related tags found
No related merge requests found
...@@ -514,6 +514,8 @@ class EncoderAlgorithm(IAMAPAlgorithm): ...@@ -514,6 +514,8 @@ class EncoderAlgorithm(IAMAPAlgorithm):
## will update if process is canceled by the user ## will update if process is canceled by the user
self.all_encoding_done = True self.all_encoding_done = True
merged_files_counter = 0
for current, sample in enumerate(dataloader): for current, sample in enumerate(dataloader):
if current <= last_batch_done: if current <= last_batch_done:
continue continue
...@@ -615,7 +617,8 @@ class EncoderAlgorithm(IAMAPAlgorithm): ...@@ -615,7 +617,8 @@ class EncoderAlgorithm(IAMAPAlgorithm):
] ]
all_tiles = [f for f in all_tiles if not f.startswith("merged")] all_tiles = [f for f in all_tiles if not f.startswith("merged")]
dst_path = Path(os.path.join(self.output_subdir, "merged_tmp.tif")) dst_path = Path(os.path.join(self.output_subdir, f"{merged_files_counter}_merged_tmp.tif"))
merged_files_counter += 1
try: try:
merge_tiles( merge_tiles(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment