Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
da95af1
sm r3.4
Sep 19, 2023
3a8e2ec
merge R4.0.2beta-1
Mar 11, 2024
b6cfbbb
change the SM commit id for R4.0.2
May 23, 2024
f764f2f
merge upstream develop branch
Jun 4, 2024
a920ae6
Merge remote-tracking branch 'upstream/develop' into develop
Jun 5, 2024
1d28fae
Merge remote-tracking branch 'upstream/develop' into develop
Jun 13, 2024
84f3874
Merge remote-tracking branch 'upstream/develop' into develop
Aug 12, 2024
2bb897a
Merge remote-tracking branch 'upstream/develop' into develop
Sep 14, 2024
da76f88
Merge branch 'develop' of https://github-fn.jpl.nasa.gov/isce-3/isce …
Oct 2, 2024
6313217
Merge branch 'develop' of https://github-fn.jpl.nasa.gov/isce-3/isce …
Oct 9, 2024
ce2b301
Merge branch 'develop' of https://github-fn.jpl.nasa.gov/isce-3/isce …
Oct 15, 2024
8394511
Merge branch 'develop' of https://github-fn.jpl.nasa.gov/isce-3/isce …
Oct 24, 2024
72645bd
Merge branch 'develop' of https://github-fn.jpl.nasa.gov/isce-3/isce …
Oct 29, 2024
6f93fd3
Merge branch 'develop' of https://github-fn.jpl.nasa.gov/isce-3/isce …
Dec 9, 2024
eebd988
Merge branch 'develop' of https://github-fn.jpl.nasa.gov/isce-3/isce …
Jan 21, 2025
9b108ce
Merge branch 'develop' of https://github-fn.jpl.nasa.gov/isce-3/isce …
Jan 29, 2025
b1c78f7
Merge branch 'develop' of https://github-fn.jpl.nasa.gov/isce-3/isce …
Mar 18, 2025
e46f53f
Merge branch 'develop' of https://github-fn.jpl.nasa.gov/isce-3/isce …
Apr 10, 2025
54d6ab4
Merge branch 'develop' of https://github-fn.jpl.nasa.gov/isce-3/isce …
May 12, 2025
73b6b9b
Merge branch 'develop' of https://github-fn.jpl.nasa.gov/isce-3/isce …
Jun 10, 2025
2eb1387
Merge branch 'develop' of https://github.com/isce-framework/isce3 int…
Sep 30, 2025
e97e4f8
update the InSAR writer to use the correct pol
Nov 12, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/packages/nisar/products/insar/GOFF_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def add_grids_to_hdf5(self):
for layer in proc_cfg["offsets_product"]
if layer.startswith("layer")]

for freq, pol_list, _ in get_cfg_freq_pols(self.cfg):
for freq, _, pol_list in get_cfg_freq_pols(self.cfg):
# add the common fields such as listofpolarizations, pixeloffset,
# and centerfrequency
grids_freq_group_name = \
Expand Down
4 changes: 3 additions & 1 deletion python/packages/nisar/products/insar/GUNW_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def add_grids_to_hdf5(self):
grids_val = "projection"

# Only add the common fields such as list of polarizations, pixel offsets, and center frequency
for freq, pol_list, _ in get_cfg_freq_pols(self.cfg):
for freq, pol_list, offset_pol_list in get_cfg_freq_pols(self.cfg):
# Create the swath group
grids_freq_group_name = (
f"{self.group_paths.GridsPath}/frequency{freq}"
Expand Down Expand Up @@ -364,6 +364,8 @@ def add_grids_to_hdf5(self):
yds=yds,
)

# Polarization in offset
for pol in offset_pol_list:
pixeloffsets_pol_name = f"{pixeloffsets_group_name}/{pol}"
pixeloffsets_pol_group = self.require_group(
pixeloffsets_pol_name
Expand Down
4 changes: 2 additions & 2 deletions python/packages/nisar/products/insar/InSAR_L1_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def _add_datasets_to_pixel_offset_group(self):
Add datasets to pixel offsets group
"""
pcfg = self.cfg['processing']
for freq, pol_list, _ in get_cfg_freq_pols(self.cfg):
for freq, _, offset_pol_list in get_cfg_freq_pols(self.cfg):
# create the swath group
swaths_freq_group_name = \
f"{self.group_paths.SwathsPath}/frequency{freq}"
Expand All @@ -301,7 +301,7 @@ def _add_datasets_to_pixel_offset_group(self):
off_shape = get_pixel_offsets_dataset_shape(self.cfg, freq)

# add the interferogram and pixelOffsets groups to the polarization group
for pol in pol_list:
for pol in offset_pol_list:

offset_pol_group_name = (
f"{swaths_freq_group_name}/pixelOffsets/{pol}"
Expand Down
4 changes: 2 additions & 2 deletions python/packages/nisar/products/insar/ROFF_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def _add_datasets_to_pixel_offset_group(self):
# Add the ROFF specified datasets to the pixelOffset products
proc_cfg = self.cfg["processing"]

for freq, pol_list, _ in get_cfg_freq_pols(self.cfg):
for freq, _, offset_pol_list in get_cfg_freq_pols(self.cfg):
swaths_freq_group_name = (
f"{self.group_paths.SwathsPath}/frequency{freq}"
)
Expand Down Expand Up @@ -336,7 +336,7 @@ def _add_datasets_to_pixel_offset_group(self):
self.add_list_of_layers(swaths_freq_group)

# add the polarization dataset to pixelOffsets
for pol in pol_list:
for pol in offset_pol_list:
offset_pol_group_name = \
f"{swaths_freq_group_name}/pixelOffsets/{pol}"
pixeloffsets_pol_group = \
Expand Down