Skip to content
Open
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d1c4d7f
disable polarimetric symmetrization by default
gshiroma Jul 3, 2025
0ef09a8
Merge branch 'isce-framework:develop' into develop
gshiroma Jul 9, 2025
2ac2694
revert changes to `symmetrize_cross_pol_channels`
gshiroma Jul 22, 2025
05d7fda
Update GCOV and GSLC specification XMLs
gshiroma Jul 22, 2025
749058d
Revert changes to the GCOV and GSLC specification XMLs
gshiroma Jul 23, 2025
fc8ac53
Merge branch 'isce-framework:develop' into develop
gshiroma Jul 24, 2025
064d073
Merge branch 'isce-framework:develop' into develop
gshiroma Aug 7, 2025
22464ef
Merge branch 'isce-framework:develop' into develop
gshiroma Aug 7, 2025
a75e7f1
Merge branch 'isce-framework:develop' into develop
gshiroma Aug 11, 2025
ab21d36
Merge branch 'isce-framework:develop' into develop
gshiroma Aug 12, 2025
d61d489
Merge branch 'isce-framework:develop' into develop
gshiroma Aug 18, 2025
0af53dd
Merge branch 'isce-framework:develop' into develop
gshiroma Aug 20, 2025
d454e6a
Merge branch 'isce-framework:develop' into develop
gshiroma Aug 21, 2025
6e7e9d1
Merge branch 'isce-framework:develop' into develop
gshiroma Aug 28, 2025
dd80c38
Merge branch 'isce-framework:develop' into develop
gshiroma Aug 29, 2025
63853b2
Merge branch 'isce-framework:develop' into develop
gshiroma Aug 29, 2025
7c7272f
Merge branch 'isce-framework:develop' into develop
gshiroma Sep 2, 2025
dd18a84
Merge branch 'isce-framework:develop' into develop
gshiroma Sep 17, 2025
d43ca22
Merge branch 'isce-framework:develop' into develop
gshiroma Oct 6, 2025
c62d750
Merge branch 'isce-framework:develop' into develop
gshiroma Oct 29, 2025
5922bbf
Merge branch 'isce-framework:develop' into develop
gshiroma Nov 6, 2025
9cc7088
Merge branch 'isce-framework:develop' into develop
gshiroma Dec 15, 2025
c207327
Merge branch 'isce-framework:develop' into develop
gshiroma Jan 10, 2026
b37c144
Merge branch 'isce-framework:develop' into develop
gshiroma Mar 11, 2026
d155f8e
fix GCOV metadata path for SSAR instrument
gshiroma Mar 16, 2026
688bb84
fix GCOV metadata path for SSAR instrument
gshiroma Mar 16, 2026
bf0bf32
Merge branch 'isce-framework:develop' into process_ssar_data
gshiroma Apr 5, 2026
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
6 changes: 4 additions & 2 deletions python/packages/nisar/workflows/gcov.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,8 @@ def _run(cfg, raster_scratch_dir):
'rg_correction': {},
}

rslc = SLC(hdf5file=input_hdf5)

for frequency, input_pol_list in freq_pols.items():

# do no processing if no polarizations specified for current frequency
Expand Down Expand Up @@ -576,7 +578,7 @@ def _run(cfg, raster_scratch_dir):
timing_corrections_dict['rg_correction'][frequency] = rg_correction
optional_geo_kwargs['slant_range_correction'] = rg_correction

root_ds = f'/science/LSAR/GCOV/grids/frequency{frequency}'
root_ds = f'{rslc.RootPath}/GCOV/grids/frequency{frequency}'

optional_geo_kwargs['geogrid_upsampling'] = geogrid_upsampling
optional_geo_kwargs['abs_cal_factor'] = abs_cal_factor
Expand Down Expand Up @@ -630,7 +632,7 @@ def _run(cfg, raster_scratch_dir):
length=int(radar_grid_cubes_geogrid.length),
epsg=radar_grid_cubes_geogrid.epsg)

cube_group_name = '/science/LSAR/GCOV/metadata/radarGrid'
cube_group_name = f'{rslc.RootPath}/GCOV/metadata/radarGrid'
native_doppler = slc.getDopplerCentroid()
'''
The native-Doppler LUT bounds error is turned off to
Expand Down
Loading