Skip to content

Commit

Permalink
add more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yunjunz committed Aug 9, 2023
1 parent 6516cf1 commit cc239b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/mintpy/objects/stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -1191,7 +1191,10 @@ def get_sequential_closure_phase(self, box, conn, post_proc=None):
print(f'reading {ds_name} to compute closure phases')
phase = self.read(datasetName=ds_name, box=box, print_msg=False)

# apply spatial referencing to ARIA products
# apply spatial referencing (for ARIA only)
# to avoid the abnormal result as shown in https://github.com/insarlab/MintPy/pull/1063
# This may be caused by the phase stitching during product preparation via ARIA-tools,
# which could have broken the temporal consistency of the native unwrapped phase.
processor = self.metadata.get('mintpy.load.processor', 'isce')
if ds_name == 'unwrapPhase' and processor in ['aria']:
print(f'apply spatial referencing to {processor} products')
Expand Down

0 comments on commit cc239b2

Please sign in to comment.