Skip to content

Commit

Permalink
add spurt to install
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie committed Oct 12, 2024
1 parent 26fa88f commit e4f5ad1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
"snaphu>=0.4.0" \
"opera-utils>=0.4.1" \
git+https://github.com/isce-framework/tophu@main \
pip install git+https://github.com/isce-framework/spurt@main \
git+https://github.com/isce-framework/whirlwind@40defb38d2d6deca2819934788ebbc57e418e32d
pip install --no-deps .
- name: Install test dependencies
Expand Down
4 changes: 2 additions & 2 deletions src/dolphin/unwrap/_unwrap_3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import numpy as np
import rasterio as rio
from opera_utils import get_dates
from opera_utils import get_dates, sort_files_by_date
from rasterio.windows import Window
from scipy import ndimage, signal

Expand Down Expand Up @@ -87,7 +87,7 @@ def unwrap_spurt(
elif len(ifg_filenames) == len(g_time.links):
logger.info("Using pre-formed nearest 3 interferograms")
stack = IfgStackReader(
ifg_filenames=ifg_filenames,
ifg_filenames=sort_files_by_date(ifg_filenames)[0],
quality_file=temporal_coherence_file,
threshold=options.temporal_coherence_threshold,
)
Expand Down

0 comments on commit e4f5ad1

Please sign in to comment.