gitextract_wmdc1yew/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── general-help.md │ └── workflows/ │ ├── dockerhub-cache-cleanup.yml │ ├── macos.yml │ ├── ubuntu.yml │ └── ubuntu_docker.yml ├── .gitignore ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── LICENSE.TXT ├── README.md ├── docker/ │ ├── README.md │ ├── pygmtsar.Dockerfile │ ├── pygmtsar.ubuntu2204.Dockerfile │ ├── requirements.json │ └── requirements.sh ├── notebooks/ │ └── dload.sh ├── pubs/ │ └── README.md ├── pygmtsar/ │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── pygmtsar/ │ │ ├── ASF.py │ │ ├── AWS.py │ │ ├── GMT.py │ │ ├── IO.py │ │ ├── MultiInstanceManager.py │ │ ├── NCubeVTK.py │ │ ├── PRM.py │ │ ├── PRM_gmtsar.py │ │ ├── S1.py │ │ ├── Stack.py │ │ ├── Stack_align.py │ │ ├── Stack_base.py │ │ ├── Stack_dem.py │ │ ├── Stack_detrend.py │ │ ├── Stack_export.py │ │ ├── Stack_geocode.py │ │ ├── Stack_incidence.py │ │ ├── Stack_landmask.py │ │ ├── Stack_lstsq.py │ │ ├── Stack_multilooking.py │ │ ├── Stack_orbits.py │ │ ├── Stack_phasediff.py │ │ ├── Stack_prm.py │ │ ├── Stack_ps.py │ │ ├── Stack_reframe.py │ │ ├── Stack_reframe_gmtsar.py │ │ ├── Stack_sbas.py │ │ ├── Stack_stl.py │ │ ├── Stack_tidal.py │ │ ├── Stack_topo.py │ │ ├── Stack_trans.py │ │ ├── Stack_trans_inv.py │ │ ├── Stack_unwrap.py │ │ ├── Stack_unwrap_snaphu.py │ │ ├── Tiles.py │ │ ├── XYZTiles.py │ │ ├── __init__.py │ │ ├── data/ │ │ │ ├── geoid_egm96_icgem.grd │ │ │ └── google_colab.sh │ │ ├── datagrid.py │ │ ├── tqdm_dask.py │ │ ├── tqdm_joblib.py │ │ └── utils.py │ └── setup.py ├── tests/ │ ├── goldenvalley.py │ ├── imperial_valley_2015.py │ ├── iran–iraq_earthquake_2017.py │ ├── kalkarindji_flooding_2024.py │ ├── la_cumbre_volcano_eruption_2020.py │ ├── lakesarez_landslides_2017.py │ ├── pico_do_fogo_volcano_eruption_2014.py │ ├── türkiye_earthquakes_2023.py │ └── türkiye_elevation_2019.py ├── todo/ │ ├── PRM.robust_trend2d.ipynb │ ├── baseline/ │ │ ├── S1_20201222_ALL_F2.LED │ │ ├── S1_20201222_ALL_F2.PRM │ │ ├── S1_20210103_ALL_F2.LED │ │ ├── S1_20210103_ALL_F2.PRM │ │ ├── SAT_baseline.sh │ │ └── baseline.v7.ipynb │ ├── branch_cut.ipynb │ ├── bursts_extraction_remote.ipynb │ ├── gmt_fft_2d.md │ ├── interp.ipynb │ ├── orbit/ │ │ ├── S1_20150521_ALL_F1.LED │ │ ├── S1_20150521_ALL_F1.extend.LED │ │ ├── hermite_c.c │ │ ├── read_orb_hermite.ipynb │ │ └── test_hermite_c.c │ ├── phasediff.md │ ├── phasediff_calc_drho.md │ ├── phasediff_spline_,evals_.md │ ├── phasefilt.ipynb │ ├── phasefilt_Goldstein.c │ ├── phasefilt_Goldstein.md │ ├── phasefilt_calc_corr.md │ ├── phasefilt_lazy.ipynb │ ├── phasefilt_make_wgt.md │ ├── pixel_decimator.py │ ├── test_gmt_fft_2d.c │ ├── test_gmt_fft_2d.py │ ├── test_gmt_ifft_2d.c │ ├── test_gmt_ifft_2d.py │ ├── test_hermite.py │ ├── test_hermite_interpolation.py │ ├── test_make_wgt.c │ ├── test_phasediff.c │ └── trans_dat.ipynb └── ui/ ├── Imperial_Valley_2015.html └── Imperial_Valley_2015_ipyleaflet.html