Skip to content

Commit

Permalink
fix error that was preventing file rtc_anf_gamma0_to_sigma0_file to b…
Browse files Browse the repository at this point in the history
…e mosaicked
  • Loading branch information
gshiroma committed Sep 6, 2023
1 parent 499f833 commit 34f351b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/rtc/rtc_s1.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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 = {}

Expand All @@ -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}

Expand Down

0 comments on commit 34f351b

Please sign in to comment.