From 34f351b56b8a19320a1b9b17add2b1fa63d02c7d Mon Sep 17 00:00:00 2001 From: "Gustavo H. X. Shiroma" Date: Tue, 5 Sep 2023 19:52:45 -0700 Subject: [PATCH] fix error that was preventing file rtc_anf_gamma0_to_sigma0_file to be mosaicked --- src/rtc/rtc_s1.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/rtc/rtc_s1.py b/src/rtc/rtc_s1.py index 292d6f3f..d30a9fc2 100755 --- a/src/rtc/rtc_s1.py +++ b/src/rtc/rtc_s1.py @@ -375,7 +375,8 @@ def run_parallel(cfg: RunConfig, logfile_path, flag_logger_full_format): save_incidence_angle = geocode_namespace.save_incidence_angle save_local_inc_angle = geocode_namespace.save_local_inc_angle save_projection_angle = geocode_namespace.save_projection_angle - save_rtc_anf_projection_angle = geocode_namespace.save_rtc_anf_projection_angle + save_rtc_anf_projection_angle = \ + geocode_namespace.save_rtc_anf_projection_angle save_range_slope = geocode_namespace.save_range_slope save_nlooks = geocode_namespace.save_nlooks @@ -811,7 +812,7 @@ def run_parallel(cfg: RunConfig, logfile_path, flag_logger_full_format): if save_rtc_anf_gamma0_to_sigma0: output_metadata_dict[ LAYER_NAME_RTC_ANF_GAMMA0_TO_SIGMA0][1].append( - rtc_anf_file) + rtc_anf_gamma0_to_sigma0_file) radar_grid_file_dict = {} @@ -821,7 +822,8 @@ def run_parallel(cfg: RunConfig, logfile_path, flag_logger_full_format): LAYER_NAME_INCIDENCE_ANGLE: save_incidence_angle, LAYER_NAME_LOCAL_INCIDENCE_ANGLE: save_local_inc_angle, LAYER_NAME_PROJECTION_ANGLE: save_projection_angle, - LAYER_NAME_RTC_ANF_PROJECTION_ANGLE: save_rtc_anf_projection_angle, + LAYER_NAME_RTC_ANF_PROJECTION_ANGLE: + save_rtc_anf_projection_angle, LAYER_NAME_RANGE_SLOPE: save_range_slope, LAYER_NAME_DEM: save_dem}