Skip to content

Commit

Permalink
[frb] bugfix: sign error a correction on range has inverse sign on el…
Browse files Browse the repository at this point in the history
…evation ....

(cherry picked from commit cbc9a6d)
  • Loading branch information
shendric committed Sep 26, 2022
1 parent af9bc74 commit eeb4434
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysiral/frb.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def execute_procstep(self, l1b: Level1bData, l2: Level2Data) -> npt.NDArray:
# Step 3: Set high peakiness (lead)
range_correction[pp > 0.33] = 0.25

l2.elev[:] += range_correction
l2.elev[:] -= range_correction
l2.set_auxiliary_parameter("pp_rc", "pp_range_correction", range_correction)

return error_status
Expand Down

0 comments on commit eeb4434

Please sign in to comment.