Skip to content

Commit

Permalink
Add azimuth FM rate into azimuth timing correction LUT (#214)
Browse files Browse the repository at this point in the history
* restore previous code to add azimuth FM rate; version bump

* code cleanp

---------

Co-authored-by: Seongsu Jeong <[email protected]>
  • Loading branch information
seongsujeong and Seongsu Jeong authored Oct 13, 2023
1 parent bacf177 commit f879b2a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ RUN mkdir RAiDER &&\
python -m pip install ./RAiDER &&\
rm -rf RAiDER


# installing OPERA COMPASS
RUN python -m pip install ./COMPASS &&\
echo "conda activate COMPASS" >> /home/compass_user/.bashrc
Expand Down
4 changes: 1 addition & 3 deletions src/compass/utils/lut.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,7 @@ def cumulative_correction_luts(burst, dem_path, tec_path,
rg_lut_data += dry_los_tropo

# Invert signs to correct for convention
#az_lut_data = -(bistatic_delay.data + az_fm_mismatch.data)
az_lut_data = -bistatic_delay.data
# NOTE: Azimuth FM rate was turned off for OPERA production
az_lut_data = -(bistatic_delay.data + az_fm_mismatch.data)

rg_lut = isce3.core.LUT2d(bistatic_delay.x_start,
bistatic_delay.y_start,
Expand Down
1 change: 1 addition & 0 deletions src/compass/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# release history
Tag = collections.namedtuple('Tag', 'version date')
release_history = (
Tag('0.5.4', '2023-10-13'),
Tag('0.5.3', '2023-10-05'),
Tag('0.5.2', '2023-09-21'),
Tag('0.5.1', '2023-09-09'),
Expand Down

0 comments on commit f879b2a

Please sign in to comment.