Skip to content

Commit

Permalink
Dont short-circuit extra_reference_date change over
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie committed Sep 24, 2024
1 parent 9c69eb1 commit a77514f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dolphin/workflows/wrapped_phase.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,9 +282,9 @@ def create_ifgs(
ifg_file_list: list[Path] = []

secondary_dates = [get_dates(f)[0] for f in phase_linked_slcs]
if not contained_compressed_slcs:
# When no compressed SLCs were passed in to the config, we can directly pass
# options to `Network` and get the ifg list
if not contained_compressed_slcs and extra_reference_date is None:
# When no compressed SLCs/extra reference were passed in to the config,
# we can directly pass options to `Network` and get the ifg list
network = interferogram.Network(
slc_list=phase_linked_slcs,
reference_idx=interferogram_network.reference_idx,
Expand Down

0 comments on commit a77514f

Please sign in to comment.