Skip to content

Commit c52fdf0

Browse files
committed
resolved conflicts
1 parent c1d3e80 commit c52fdf0

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

python/packages/nisar/workflows/insar.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ def run(cfg: dict, out_paths: dict, run_steps: dict):
5656
else:
5757
crossmul.run(cfg, out_paths['RIFG'], 'coarse')
5858

59+
# Run insar_filter only
60+
if run_steps['filter_interferogram'] and \
61+
cfg['processing']['filter_interferogram']['filter_type'] != 'no_filter':
62+
filter_interferogram.run(cfg, out_paths['RIFG'])
63+
5964
if run_steps['unwrap'] and 'RUNW' in out_paths:
6065
unwrap.run(cfg, out_paths['RIFG'], out_paths['RUNW'])
6166

tests/python/packages/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ set_tests_properties(test.python.pkg.nisar.workflows.resample_slc PROPERTIES
4848
DEPENDS test.python.pkg.nisar.workflows.geo2rdr)
4949
set_tests_properties(test.python.pkg.nisar.workflows.crossmul PROPERTIES
5050
DEPENDS test.python.pkg.nisar.workflows.resample_slc)
51+
set_tests_properties(test.python.pkg.nisar.workflows.filter_interferogram PROPERTIES
52+
DEPENDS test.python.pkg.nisar.workflows.crossmul)
5153
# using rdr2geo outputs as RUNW rasters to confirm geocode run
5254
# using RUNW HDF5 needed as a verifiable dummy RUNW input
5355
set_tests_properties(test.python.pkg.nisar.workflows.geocode_insar PROPERTIES

0 commit comments

Comments
 (0)