Skip to content
Snippets Groups Projects
Commit 40c88689 authored by Gaëlle USSEGLIO's avatar Gaëlle USSEGLIO
Browse files

BUG : Save cartesiean output as a single string for TSX/S1 mode in Ground chain

parent 7404040b
No related branches found
Tags 1.1.0_beta_2
2 merge requests!52Merge for v1.1.0,!47TSX/PAZ/TDX processing in python_src
......@@ -229,7 +229,7 @@ class ExecutorGroundOthers(ExecutorSingleImage):
self._outputs[str(GroundOutputKeys.CARTESIAN_ESTIMATION)] = cart_mean_path
# Extend tmp_list
self._all_files_list.extend(cart_mean_path)
self._all_files_list.append(cart_mean_path)
class ExecutorGroundTSX(ExecutorSingleImage):
......@@ -295,7 +295,7 @@ class ExecutorGroundTSX(ExecutorSingleImage):
self._outputs[str(GroundOutputKeys.CARTESIAN_ESTIMATION)] = cart_mean_path
# Extend tmp_list
self._all_files_list.extend(cart_mean_path)
self._all_files_list.append(cart_mean_path)
class ExecutorGroundS1IW(ExecutorSingleImage):
......@@ -392,7 +392,7 @@ class ExecutorGroundS1IW(ExecutorSingleImage):
dem_proj_list.append(dem_proj_path)
if cart_mean_path != "":
cart_mean_list .append(cart_mean_path)
cart_mean_list.append(cart_mean_path)
self._outputs[str(GroundOutputKeys.DEMPROJ)] = dem_proj_list
self._outputs[str(GroundOutputKeys.CARTESIAN_ESTIMATION)] = cart_mean_list
......
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