gitextract_ml4uzp09/ ├── .coveragerc ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── build.yml ├── .gitignore ├── .pylintrc ├── Dockerfile ├── LICENSE ├── README.rst ├── __init__.py ├── docs/ │ ├── Makefile │ ├── algorithm.rst │ ├── aps.rst │ ├── authors.rst │ ├── conf.py │ ├── configuration.rst │ ├── contributing.rst │ ├── covariance.rst │ ├── demerror.rst │ ├── dependencies.rst │ ├── docker.rst │ ├── gamma.rst │ ├── gdal_python.rst │ ├── geometry.rst │ ├── history.rst │ ├── hpc.rst │ ├── ifgconstants.rst │ ├── index.rst │ ├── installation.rst │ ├── logger.rst │ ├── make.bat │ ├── modules.rst │ ├── mpiops.rst │ ├── mst.rst │ ├── orbital.rst │ ├── phase_closure.rst │ ├── prepifg_helper.rst │ ├── pyrate.conv2tif.rst │ ├── pyrate.correct.rst │ ├── pyrate.main.rst │ ├── pyrate.merge.rst │ ├── pyrate.prepifg.rst │ ├── ref_phs_est.rst │ ├── refpixel.rst │ ├── roipac.rst │ ├── scripts.rst │ ├── shared.rst │ ├── stack.rst │ ├── timeseries.rst │ ├── troubleshooting.rst │ ├── ubuntu.rst │ └── usage.rst ├── input_parameters.conf ├── pyrate/ │ ├── __init__.py │ ├── configuration.py │ ├── constants.py │ ├── conv2tif.py │ ├── core/ │ │ ├── .coveragerc │ │ ├── __init__.py │ │ ├── algorithm.py │ │ ├── aps.py │ │ ├── covariance.py │ │ ├── dem_error.py │ │ ├── gamma.py │ │ ├── gdal_python.py │ │ ├── geometry.py │ │ ├── ifgconstants.py │ │ ├── logger.py │ │ ├── mpiops.py │ │ ├── mst.py │ │ ├── orbital.py │ │ ├── phase_closure/ │ │ │ ├── __init__.py │ │ │ ├── closure_check.py │ │ │ ├── collect_loops.py │ │ │ ├── correct_phase.py │ │ │ ├── mst_closure.py │ │ │ ├── plot_closure.py │ │ │ └── sum_closure.py │ │ ├── prepifg_helper.py │ │ ├── ref_phs_est.py │ │ ├── refpixel.py │ │ ├── roipac.py │ │ ├── shared.py │ │ ├── stack.py │ │ └── timeseries.py │ ├── correct.py │ ├── default_parameters.py │ ├── main.py │ ├── merge.py │ └── prepifg.py ├── pytest.ini ├── requirements-dev.txt ├── requirements-plot.txt ├── requirements-test.txt ├── requirements.txt ├── scripts/ │ ├── apt_install.sh │ ├── ci_gdal_install.sh │ ├── ci_proj_install.sh │ ├── create_html_documentation.sh │ ├── gdal_calc_local.py │ ├── nci_install.sh │ ├── nci_load_modules.sh │ ├── nci_run_tests.sh │ ├── plot_ifgs.py │ └── prepifg.sh ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── common.py │ ├── conftest.py │ ├── phase_closure/ │ │ ├── __init__.py │ │ ├── common.py │ │ ├── conftest.py │ │ ├── test_closure_check.py │ │ ├── test_collect_loops.py │ │ ├── test_mst_closure.py │ │ ├── test_plot_closure.py │ │ └── test_sum_closure.py │ ├── test_algorithm.py │ ├── test_aps.py │ ├── test_constants.py │ ├── test_conv2tif.py │ ├── test_correct.py │ ├── test_covariance.py │ ├── test_data/ │ │ ├── cropA/ │ │ │ ├── baseline_30 │ │ │ ├── coherence_30 │ │ │ ├── coherence_stats/ │ │ │ │ ├── coh_mean.tif │ │ │ │ ├── coh_median.tif │ │ │ │ └── coh_std.tif │ │ │ ├── dem_error_result/ │ │ │ │ ├── 20180106-20180319_ifg_20_dem_error.npy │ │ │ │ ├── 20180130-20180412_ifg_20_dem_error.npy │ │ │ │ ├── 20180412-20180518_ifg_20_dem_error.npy │ │ │ │ └── dem_error.tif │ │ │ ├── geometry/ │ │ │ │ ├── 20180106-20180130_VV_8rlks_base.par │ │ │ │ ├── 20180106-20180130_VV_8rlks_bperp.par │ │ │ │ ├── 20180106-20180319_VV_8rlks_base.par │ │ │ │ ├── 20180106-20180319_VV_8rlks_bperp.par │ │ │ │ ├── 20180106-20180412_VV_8rlks_base.par │ │ │ │ ├── 20180106-20180412_VV_8rlks_bperp.par │ │ │ │ ├── 20180106-20180518_VV_8rlks_base.par │ │ │ │ ├── 20180106-20180518_VV_8rlks_bperp.par │ │ │ │ ├── 20180106_VV_8rlks_eqa_to_rdc.lt │ │ │ │ ├── 20180130-20180307_VV_8rlks_base.par │ │ │ │ ├── 20180130-20180307_VV_8rlks_bperp.par │ │ │ │ ├── 20180130-20180412_VV_8rlks_base.par │ │ │ │ ├── 20180130-20180412_VV_8rlks_bperp.par │ │ │ │ ├── 20180307-20180319_VV_8rlks_base.par │ │ │ │ ├── 20180307-20180319_VV_8rlks_bperp.par │ │ │ │ ├── 20180307-20180331_VV_8rlks_base.par │ │ │ │ ├── 20180307-20180331_VV_8rlks_bperp.par │ │ │ │ ├── 20180307-20180506_VV_8rlks_base.par │ │ │ │ ├── 20180307-20180506_VV_8rlks_bperp.par │ │ │ │ ├── 20180307-20180530_VV_8rlks_base.par │ │ │ │ ├── 20180307-20180530_VV_8rlks_bperp.par │ │ │ │ ├── 20180307-20180611_VV_8rlks_base.par │ │ │ │ ├── 20180307-20180611_VV_8rlks_bperp.par │ │ │ │ ├── 20180319-20180331_VV_8rlks_base.par │ │ │ │ ├── 20180319-20180331_VV_8rlks_bperp.par │ │ │ │ ├── 20180319-20180506_VV_8rlks_base.par │ │ │ │ ├── 20180319-20180506_VV_8rlks_bperp.par │ │ │ │ ├── 20180319-20180518_VV_8rlks_base.par │ │ │ │ ├── 20180319-20180518_VV_8rlks_bperp.par │ │ │ │ ├── 20180319-20180530_VV_8rlks_base.par │ │ │ │ ├── 20180319-20180530_VV_8rlks_bperp.par │ │ │ │ ├── 20180319-20180623_VV_8rlks_base.par │ │ │ │ ├── 20180319-20180623_VV_8rlks_bperp.par │ │ │ │ ├── 20180331-20180412_VV_8rlks_base.par │ │ │ │ ├── 20180331-20180412_VV_8rlks_bperp.par │ │ │ │ ├── 20180331-20180506_VV_8rlks_base.par │ │ │ │ ├── 20180331-20180506_VV_8rlks_bperp.par │ │ │ │ ├── 20180331-20180518_VV_8rlks_base.par │ │ │ │ ├── 20180331-20180518_VV_8rlks_bperp.par │ │ │ │ ├── 20180331-20180530_VV_8rlks_base.par │ │ │ │ ├── 20180331-20180530_VV_8rlks_bperp.par │ │ │ │ ├── 20180331-20180623_VV_8rlks_base.par │ │ │ │ ├── 20180331-20180623_VV_8rlks_bperp.par │ │ │ │ ├── 20180331-20180717_VV_8rlks_base.par │ │ │ │ ├── 20180331-20180717_VV_8rlks_bperp.par │ │ │ │ ├── 20180412-20180506_VV_8rlks_base.par │ │ │ │ ├── 20180412-20180506_VV_8rlks_bperp.par │ │ │ │ ├── 20180412-20180518_VV_8rlks_base.par │ │ │ │ ├── 20180412-20180518_VV_8rlks_bperp.par │ │ │ │ ├── 20180506-20180518_VV_8rlks_base.par │ │ │ │ ├── 20180506-20180518_VV_8rlks_bperp.par │ │ │ │ ├── 20180506-20180530_VV_8rlks_base.par │ │ │ │ ├── 20180506-20180530_VV_8rlks_bperp.par │ │ │ │ ├── 20180506-20180611_VV_8rlks_base.par │ │ │ │ ├── 20180506-20180611_VV_8rlks_bperp.par │ │ │ │ ├── 20180506-20180623_VV_8rlks_base.par │ │ │ │ ├── 20180506-20180623_VV_8rlks_bperp.par │ │ │ │ ├── 20180506-20180705_VV_8rlks_base.par │ │ │ │ ├── 20180506-20180705_VV_8rlks_bperp.par │ │ │ │ ├── 20180506-20180717_VV_8rlks_base.par │ │ │ │ └── 20180506-20180717_VV_8rlks_bperp.par │ │ │ ├── geotiffs/ │ │ │ │ ├── cropA_20180106-20180130_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180106-20180130_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180106-20180319_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180106-20180319_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180106-20180412_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180106-20180412_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180106-20180518_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180106-20180518_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180130-20180307_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180130-20180307_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180130-20180412_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180130-20180412_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180307-20180319_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180307-20180319_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180307-20180331_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180307-20180331_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180307-20180506_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180307-20180506_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180307-20180530_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180307-20180530_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180307-20180611_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180307-20180611_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180319-20180331_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180319-20180331_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180319-20180506_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180319-20180506_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180319-20180518_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180319-20180518_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180319-20180530_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180319-20180530_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180319-20180623_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180319-20180623_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180331-20180412_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180331-20180412_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180331-20180506_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180331-20180506_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180331-20180518_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180331-20180518_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180331-20180530_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180331-20180530_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180331-20180623_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180331-20180623_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180331-20180717_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180331-20180717_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180412-20180506_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180412-20180506_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180412-20180518_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180412-20180518_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180506-20180518_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180506-20180518_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180506-20180530_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180506-20180530_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180506-20180611_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180506-20180611_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180506-20180623_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180506-20180623_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180506-20180705_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180506-20180705_VV_8rlks_flat_eqa_cc.tif │ │ │ │ ├── cropA_20180506-20180717_VV_8rlks_eqa_unw.tif │ │ │ │ ├── cropA_20180506-20180717_VV_8rlks_flat_eqa_cc.tif │ │ │ │ └── cropA_T005A_dem.tif │ │ │ ├── headers/ │ │ │ │ ├── cropA_20180106_VV_8rlks_eqa_dem.par │ │ │ │ ├── r20180106_VV_8rlks_mli.par │ │ │ │ ├── r20180106_VV_slc.par │ │ │ │ ├── r20180130_VV_8rlks_mli.par │ │ │ │ ├── r20180130_VV_slc.par │ │ │ │ ├── r20180307_VV_8rlks_mli.par │ │ │ │ ├── r20180307_VV_slc.par │ │ │ │ ├── r20180319_VV_8rlks_mli.par │ │ │ │ ├── r20180319_VV_slc.par │ │ │ │ ├── r20180331_VV_8rlks_mli.par │ │ │ │ ├── r20180331_VV_slc.par │ │ │ │ ├── r20180412_VV_8rlks_mli.par │ │ │ │ ├── r20180412_VV_slc.par │ │ │ │ ├── r20180506_VV_8rlks_mli.par │ │ │ │ ├── r20180506_VV_slc.par │ │ │ │ ├── r20180518_VV_8rlks_mli.par │ │ │ │ ├── r20180518_VV_slc.par │ │ │ │ ├── r20180530_VV_8rlks_mli.par │ │ │ │ ├── r20180530_VV_slc.par │ │ │ │ ├── r20180611_VV_8rlks_mli.par │ │ │ │ ├── r20180611_VV_slc.par │ │ │ │ ├── r20180623_VV_8rlks_mli.par │ │ │ │ ├── r20180623_VV_slc.par │ │ │ │ ├── r20180705_VV_8rlks_mli.par │ │ │ │ ├── r20180705_VV_slc.par │ │ │ │ ├── r20180717_VV_8rlks_mli.par │ │ │ │ └── r20180717_VV_slc.par │ │ │ ├── headers_13 │ │ │ ├── ifg_30 │ │ │ └── pyrate_mexico_cropa.conf │ │ ├── cropB/ │ │ │ └── 20180106-20180130_ifg.tif │ │ ├── gamma/ │ │ │ ├── 16x20_20090713-20090817_VV_4rlks_utm.tif │ │ │ ├── 16x20_20090713-20090817_VV_4rlks_utm.unw │ │ │ ├── 20160114-20160126_base.par │ │ │ ├── 20160114-20160126_base_init.par │ │ │ ├── cropped_lookup_table.lt │ │ │ ├── dem16x20_subset_from_gamma.tif │ │ │ ├── dem16x20raw.dem │ │ │ ├── dem16x20raw.dem.par │ │ │ ├── r20090713_VV.slc.par │ │ │ └── r20090817_VV.slc.par │ │ ├── geotiffs/ │ │ │ ├── cropA_20180106-20180130_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180106-20180130_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180106-20180319_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180106-20180319_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180106-20180412_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180106-20180412_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180106-20180518_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180106-20180518_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180106_VV_8rlks_eqa_dem.par │ │ │ ├── cropA_20180130-20180307_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180130-20180307_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180130-20180412_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180130-20180412_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180307-20180319_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180307-20180319_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180307-20180331_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180307-20180331_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180307-20180506_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180307-20180506_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180307-20180530_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180307-20180530_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180307-20180611_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180307-20180611_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180319-20180331_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180319-20180331_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180319-20180506_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180319-20180506_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180319-20180518_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180319-20180518_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180319-20180530_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180319-20180530_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180319-20180623_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180319-20180623_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180331-20180412_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180331-20180412_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180331-20180506_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180331-20180506_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180331-20180518_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180331-20180518_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180331-20180530_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180331-20180530_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180331-20180623_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180331-20180623_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180331-20180717_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180331-20180717_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180412-20180506_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180412-20180506_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180412-20180518_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180412-20180518_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180506-20180518_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180506-20180518_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180506-20180530_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180506-20180530_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180506-20180611_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180506-20180611_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180506-20180623_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180506-20180623_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180506-20180705_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180506-20180705_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_20180506-20180717_VV_8rlks_eqa_unw.tif │ │ │ ├── cropA_20180506-20180717_VV_8rlks_flat_eqa_cc.tif │ │ │ ├── cropA_T005A_dem.tif │ │ │ ├── r20180106_VV_slc.par │ │ │ ├── r20180130_VV_slc.par │ │ │ ├── r20180307_VV_slc.par │ │ │ ├── r20180319_VV_slc.par │ │ │ ├── r20180331_VV_slc.par │ │ │ ├── r20180412_VV_slc.par │ │ │ ├── r20180506_VV_slc.par │ │ │ ├── r20180518_VV_slc.par │ │ │ ├── r20180530_VV_slc.par │ │ │ ├── r20180611_VV_slc.par │ │ │ ├── r20180623_VV_slc.par │ │ │ ├── r20180705_VV_slc.par │ │ │ └── r20180717_VV_slc.par │ │ ├── headers/ │ │ │ └── geo_060619-060828.unw.rsc │ │ ├── incidence/ │ │ │ └── 128x2.tif │ │ ├── prepifg/ │ │ │ ├── obs/ │ │ │ │ ├── geo_060619-061002.unw │ │ │ │ ├── geo_060619-061002.unw.rsc │ │ │ │ ├── geo_070326-070917.unw │ │ │ │ └── geo_070326-070917.unw.rsc │ │ │ └── tif/ │ │ │ ├── 0_1lksx_1lksy_4cr.tif │ │ │ ├── 1_1lksx_1lksy_4cr.tif │ │ │ ├── geo_060619-061002.tif │ │ │ ├── geo_060619-061002_unw.tif │ │ │ ├── geo_070326-070917.tif │ │ │ └── geo_070326-070917_unw.tif │ │ ├── small_test/ │ │ │ ├── coherence/ │ │ │ │ ├── 20060619-20061002_utm.unw.cc │ │ │ │ ├── 20060828-20061211_utm.unw.cc │ │ │ │ ├── 20061002-20070219_utm.unw.cc │ │ │ │ ├── 20061002-20070430_utm.unw.cc │ │ │ │ ├── 20061106-20061211_utm.unw.cc │ │ │ │ ├── 20061106-20070115_utm.unw.cc │ │ │ │ ├── 20061106-20070326_utm.unw.cc │ │ │ │ ├── 20061211-20070709_utm.unw.cc │ │ │ │ ├── 20061211-20070813_utm.unw.cc │ │ │ │ ├── 20070115-20070326_utm.unw.cc │ │ │ │ ├── 20070115-20070917_utm.unw.cc │ │ │ │ ├── 20070219-20070430_utm.unw.cc │ │ │ │ ├── 20070219-20070604_utm.unw.cc │ │ │ │ ├── 20070326-20070917_utm.unw.cc │ │ │ │ ├── 20070430-20070604_utm.unw.cc │ │ │ │ ├── 20070604-20070709_utm.unw.cc │ │ │ │ ├── 20070709-20070813_utm.unw.cc │ │ │ │ └── coherence_17 │ │ │ ├── conf/ │ │ │ │ ├── pyrate1.conf │ │ │ │ ├── pyrate2.conf │ │ │ │ ├── pyrate_gamma_test.conf │ │ │ │ └── pyrate_roipac_test.conf │ │ │ ├── dem/ │ │ │ │ └── roipac_test_trimmed.tif │ │ │ ├── gamma_obs/ │ │ │ │ ├── 20060619-20061002_base.par │ │ │ │ ├── 20060619-20061002_utm.unw │ │ │ │ ├── 20060619-20061002_utm_unw.tif.aux.xml │ │ │ │ ├── 20060619_slc.par │ │ │ │ ├── 20060619_utm.dem │ │ │ │ ├── 20060619_utm.inc │ │ │ │ ├── 20060619_utm.lv_theta │ │ │ │ ├── 20060619_utm_dem.par │ │ │ │ ├── 20060828-20061211_base.par │ │ │ │ ├── 20060828-20061211_utm.unw │ │ │ │ ├── 20060828_slc.par │ │ │ │ ├── 20061002-20070219_base.par │ │ │ │ ├── 20061002-20070219_utm.unw │ │ │ │ ├── 20061002-20070430_base.par │ │ │ │ ├── 20061002-20070430_utm.unw │ │ │ │ ├── 20061002_slc.par │ │ │ │ ├── 20061106-20061211_base.par │ │ │ │ ├── 20061106-20061211_utm.unw │ │ │ │ ├── 20061106-20070115_base.par │ │ │ │ ├── 20061106-20070115_utm.unw │ │ │ │ ├── 20061106-20070326_base.par │ │ │ │ ├── 20061106-20070326_utm.unw │ │ │ │ ├── 20061106_slc.par │ │ │ │ ├── 20061211-20070709_base.par │ │ │ │ ├── 20061211-20070709_utm.unw │ │ │ │ ├── 20061211-20070813_base.par │ │ │ │ ├── 20061211-20070813_utm.unw │ │ │ │ ├── 20061211_slc.par │ │ │ │ ├── 20070115-20070326_base.par │ │ │ │ ├── 20070115-20070326_utm.unw │ │ │ │ ├── 20070115-20070917_base.par │ │ │ │ ├── 20070115-20070917_utm.unw │ │ │ │ ├── 20070115_slc.par │ │ │ │ ├── 20070219-20070430_base.par │ │ │ │ ├── 20070219-20070430_utm.unw │ │ │ │ ├── 20070219-20070604_base.par │ │ │ │ ├── 20070219-20070604_utm.unw │ │ │ │ ├── 20070219_slc.par │ │ │ │ ├── 20070326-20070917_base.par │ │ │ │ ├── 20070326-20070917_utm.unw │ │ │ │ ├── 20070326_slc.par │ │ │ │ ├── 20070430-20070604_base.par │ │ │ │ ├── 20070430-20070604_utm.unw │ │ │ │ ├── 20070430_slc.par │ │ │ │ ├── 20070604-20070709_base.par │ │ │ │ ├── 20070604-20070709_utm.unw │ │ │ │ ├── 20070604_slc.par │ │ │ │ ├── 20070709-20070813_base.par │ │ │ │ ├── 20070709-20070813_utm.unw │ │ │ │ ├── 20070709_slc.par │ │ │ │ ├── 20070813_slc.par │ │ │ │ ├── 20070917_slc.par │ │ │ │ ├── bad_epochs_headers │ │ │ │ ├── bad_epochs_ifms_17 │ │ │ │ ├── baseline_17 │ │ │ │ ├── cropped_lookup_table.lt │ │ │ │ ├── headers │ │ │ │ ├── ifms_17 │ │ │ │ └── tif_17 │ │ │ ├── linrate/ │ │ │ │ ├── linear_error.npy │ │ │ │ ├── linear_intercept.npy │ │ │ │ ├── linear_rate.npy │ │ │ │ ├── linear_rsquared.npy │ │ │ │ ├── linear_samples.npy │ │ │ │ └── tscuml_0.npy │ │ │ ├── mst/ │ │ │ │ ├── mst_geo_060619-061002.csv │ │ │ │ ├── mst_geo_060828-061211.csv │ │ │ │ ├── mst_geo_061002-070219.csv │ │ │ │ ├── mst_geo_061002-070430.csv │ │ │ │ ├── mst_geo_061106-061211.csv │ │ │ │ ├── mst_geo_061106-070115.csv │ │ │ │ ├── mst_geo_061106-070326.csv │ │ │ │ ├── mst_geo_061211-070709.csv │ │ │ │ ├── mst_geo_061211-070813.csv │ │ │ │ ├── mst_geo_070115-070326.csv │ │ │ │ ├── mst_geo_070115-070917.csv │ │ │ │ ├── mst_geo_070219-070430.csv │ │ │ │ ├── mst_geo_070219-070604.csv │ │ │ │ ├── mst_geo_070326-070917.csv │ │ │ │ ├── mst_geo_070430-070604.csv │ │ │ │ ├── mst_geo_070604-070709.csv │ │ │ │ └── mst_geo_070709-070813.csv │ │ │ ├── orbital_error_correction/ │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_060619-061002.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_060828-061211.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_061002-070219.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_061002-070430.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_061106-061211.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_061106-070115.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_061106-070326.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_061211-070709.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_061211-070813.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_070115-070326.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_070115-070917.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_070219-070430.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_070219-070604.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_070326-070917.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_070430-070604.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_070604-070709.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method1_geo_070709-070813.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_060619-061002.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_060828-061211.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_061002-070219.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_061002-070430.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_061106-061211.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_061106-070115.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_061106-070326.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_061211-070709.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_061211-070813.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_070115-070326.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_070115-070917.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_070219-070430.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_070219-070604.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_070326-070917.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_070430-070604.unw.csv │ │ │ │ ├── ifg_orb_planar_1lks_method2_geo_070604-070709.unw.csv │ │ │ │ └── ifg_orb_planar_1lks_method2_geo_070709-070813.unw.csv │ │ │ ├── ref_phase_est/ │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_060619-061002.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_060828-061211.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_061002-070219.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_061002-070430.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_061106-061211.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_061106-070115.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_061106-070326.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_061211-070709.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_061211-070813.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_070115-070326.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_070115-070917.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_070219-070430.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_070219-070604.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_070326-070917.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_070430-070604.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_070604-070709.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_corrected_method2geo_070709-070813.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_060619-061002.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_060828-061211.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_061002-070219.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_061002-070430.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_061106-061211.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_061106-070115.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_061106-070326.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_061211-070709.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_061211-070813.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_070115-070326.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_070115-070917.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_070219-070430.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_070219-070604.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_070326-070917.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_070430-070604.unw.csv │ │ │ │ ├── ifg_orb_and_ref_phase_correctedgeo_070604-070709.unw.csv │ │ │ │ └── ifg_orb_and_ref_phase_correctedgeo_070709-070813.unw.csv │ │ │ ├── roipac_obs/ │ │ │ │ ├── bad_epochs_ifms_17 │ │ │ │ ├── geo_060619-061002.unw │ │ │ │ ├── geo_060619-061002.unw.rsc │ │ │ │ ├── geo_060828-061211.unw │ │ │ │ ├── geo_060828-061211.unw.rsc │ │ │ │ ├── geo_061002-070219.unw │ │ │ │ ├── geo_061002-070219.unw.rsc │ │ │ │ ├── geo_061002-070430.unw │ │ │ │ ├── geo_061002-070430.unw.rsc │ │ │ │ ├── geo_061106-061211.unw │ │ │ │ ├── geo_061106-061211.unw.rsc │ │ │ │ ├── geo_061106-070115.unw │ │ │ │ ├── geo_061106-070115.unw.rsc │ │ │ │ ├── geo_061106-070326.unw │ │ │ │ ├── geo_061106-070326.unw.rsc │ │ │ │ ├── geo_061211-070709.unw │ │ │ │ ├── geo_061211-070709.unw.rsc │ │ │ │ ├── geo_061211-070813.unw │ │ │ │ ├── geo_061211-070813.unw.rsc │ │ │ │ ├── geo_070115-070326.unw │ │ │ │ ├── geo_070115-070326.unw.rsc │ │ │ │ ├── geo_070115-070917.unw │ │ │ │ ├── geo_070115-070917.unw.rsc │ │ │ │ ├── geo_070219-070430.unw │ │ │ │ ├── geo_070219-070430.unw.rsc │ │ │ │ ├── geo_070219-070604.unw │ │ │ │ ├── geo_070219-070604.unw.rsc │ │ │ │ ├── geo_070326-070917.unw │ │ │ │ ├── geo_070326-070917.unw.rsc │ │ │ │ ├── geo_070430-070604.unw │ │ │ │ ├── geo_070430-070604.unw.rsc │ │ │ │ ├── geo_070604-070709.unw │ │ │ │ ├── geo_070604-070709.unw.rsc │ │ │ │ ├── geo_070709-070813.unw │ │ │ │ ├── geo_070709-070813.unw.rsc │ │ │ │ ├── headers │ │ │ │ ├── ifms_17 │ │ │ │ ├── roipac_test_trimmed.dem │ │ │ │ └── roipac_test_trimmed.dem.rsc │ │ │ ├── stackrate/ │ │ │ │ ├── coh_sta.csv │ │ │ │ ├── errormap.csv │ │ │ │ └── stackmap.csv │ │ │ ├── tif/ │ │ │ │ ├── geo_060619-061002_unw.tif │ │ │ │ ├── geo_060828-061211_unw.tif │ │ │ │ ├── geo_061002-070219_unw.tif │ │ │ │ ├── geo_061002-070430_unw.tif │ │ │ │ ├── geo_061106-061211_unw.tif │ │ │ │ ├── geo_061106-070115_unw.tif │ │ │ │ ├── geo_061106-070326_unw.tif │ │ │ │ ├── geo_061211-070709_unw.tif │ │ │ │ ├── geo_061211-070813_unw.tif │ │ │ │ ├── geo_070115-070326_unw.tif │ │ │ │ ├── geo_070115-070917_unw.tif │ │ │ │ ├── geo_070219-070430_unw.tif │ │ │ │ ├── geo_070219-070604_unw.tif │ │ │ │ ├── geo_070326-070917_unw.tif │ │ │ │ ├── geo_070430-070604_unw.tif │ │ │ │ ├── geo_070604-070709_unw.tif │ │ │ │ ├── geo_070709-070813_unw.tif │ │ │ │ └── ifms_17 │ │ │ ├── time_series/ │ │ │ │ ├── ts_cum_interp0_method1.csv │ │ │ │ ├── ts_cum_interp0_method2.csv │ │ │ │ ├── ts_error_interp0_method1.csv │ │ │ │ ├── ts_incr_interp0_method1.csv │ │ │ │ └── ts_incr_interp0_method2.csv │ │ │ └── vcm/ │ │ │ ├── alpha.csv │ │ │ └── vcmt.csv │ │ └── system/ │ │ ├── gamma/ │ │ │ ├── 20060619-20061002_base.par │ │ │ ├── 20060619-20061002_utm.unw │ │ │ ├── 20060619-20061002_utm_unw.tif │ │ │ ├── 20060619_slc.par │ │ │ ├── 20060619_utm.dem │ │ │ ├── 20060619_utm_dem.par │ │ │ ├── 20060619_utm_dem.tif │ │ │ ├── 20060828-20061211_base.par │ │ │ ├── 20060828-20061211_utm.unw │ │ │ ├── 20060828-20061211_utm_unw.tif │ │ │ ├── 20060828_slc.par │ │ │ ├── 20061002-20070219_base.par │ │ │ ├── 20061002-20070219_utm.unw │ │ │ ├── 20061002-20070219_utm_unw.tif │ │ │ ├── 20061002-20070430_base.par │ │ │ ├── 20061002-20070430_utm.unw │ │ │ ├── 20061002-20070430_utm_unw.tif │ │ │ ├── 20061002_slc.par │ │ │ ├── 20061106-20061211_base.par │ │ │ ├── 20061106-20061211_utm.unw │ │ │ ├── 20061106-20061211_utm_unw.tif │ │ │ ├── 20061106-20070115_base.par │ │ │ ├── 20061106-20070115_utm.unw │ │ │ ├── 20061106-20070115_utm_unw.tif │ │ │ ├── 20061106-20070326_base.par │ │ │ ├── 20061106-20070326_utm.unw │ │ │ ├── 20061106-20070326_utm_unw.tif │ │ │ ├── 20061106_slc.par │ │ │ ├── 20061211-20070709_base.par │ │ │ ├── 20061211-20070709_utm.unw │ │ │ ├── 20061211-20070709_utm_unw.tif │ │ │ ├── 20061211-20070813_base.par │ │ │ ├── 20061211-20070813_utm.unw │ │ │ ├── 20061211-20070813_utm_unw.tif │ │ │ ├── 20061211_slc.par │ │ │ ├── 20070115-20070326_base.par │ │ │ ├── 20070115-20070326_utm.unw │ │ │ ├── 20070115-20070326_utm_unw.tif │ │ │ ├── 20070115-20070917_base.par │ │ │ ├── 20070115-20070917_utm.unw │ │ │ ├── 20070115-20070917_utm_unw.tif │ │ │ ├── 20070115_slc.par │ │ │ ├── 20070219-20070430_base.par │ │ │ ├── 20070219-20070430_utm.unw │ │ │ ├── 20070219-20070430_utm_unw.tif │ │ │ ├── 20070219-20070604_base.par │ │ │ ├── 20070219-20070604_utm.unw │ │ │ ├── 20070219-20070604_utm_unw.tif │ │ │ ├── 20070219_slc.par │ │ │ ├── 20070326-20070917_base.par │ │ │ ├── 20070326-20070917_utm.unw │ │ │ ├── 20070326-20070917_utm_unw.tif │ │ │ ├── 20070326_slc.par │ │ │ ├── 20070430-20070604_base.par │ │ │ ├── 20070430-20070604_utm.unw │ │ │ ├── 20070430-20070604_utm_unw.tif │ │ │ ├── 20070430_slc.par │ │ │ ├── 20070604-20070709_base.par │ │ │ ├── 20070604-20070709_utm.unw │ │ │ ├── 20070604-20070709_utm_unw.tif │ │ │ ├── 20070604_slc.par │ │ │ ├── 20070709-20070813_base.par │ │ │ ├── 20070709-20070813_utm.unw │ │ │ ├── 20070709-20070813_utm_unw.tif │ │ │ ├── 20070709_slc.par │ │ │ ├── 20070813_slc.par │ │ │ ├── 20070917_slc.par │ │ │ ├── baseline_list.txt │ │ │ ├── cropped_lookup_table.lt │ │ │ ├── header_list.txt │ │ │ ├── input_parameters.conf │ │ │ └── interferogram_list.txt │ │ ├── geotiff/ │ │ │ ├── 20060619-20061002_base.par │ │ │ ├── 20060619-20061002_utm_unw.tif │ │ │ ├── 20060619_slc.par │ │ │ ├── 20060619_utm_dem.par │ │ │ ├── 20060619_utm_dem.tif │ │ │ ├── 20060828-20061211_base.par │ │ │ ├── 20060828-20061211_utm_unw.tif │ │ │ ├── 20060828_slc.par │ │ │ ├── 20061002-20070219_base.par │ │ │ ├── 20061002-20070219_utm_unw.tif │ │ │ ├── 20061002-20070430_base.par │ │ │ ├── 20061002-20070430_utm_unw.tif │ │ │ ├── 20061002_slc.par │ │ │ ├── 20061106-20061211_base.par │ │ │ ├── 20061106-20061211_utm_unw.tif │ │ │ ├── 20061106-20070115_base.par │ │ │ ├── 20061106-20070115_utm_unw.tif │ │ │ ├── 20061106-20070326_base.par │ │ │ ├── 20061106-20070326_utm_unw.tif │ │ │ ├── 20061106_slc.par │ │ │ ├── 20061211-20070709_base.par │ │ │ ├── 20061211-20070709_utm_unw.tif │ │ │ ├── 20061211-20070813_base.par │ │ │ ├── 20061211-20070813_utm_unw.tif │ │ │ ├── 20061211_slc.par │ │ │ ├── 20070115-20070326_base.par │ │ │ ├── 20070115-20070326_utm_unw.tif │ │ │ ├── 20070115-20070917_base.par │ │ │ ├── 20070115-20070917_utm_unw.tif │ │ │ ├── 20070115_slc.par │ │ │ ├── 20070219-20070430_base.par │ │ │ ├── 20070219-20070430_utm_unw.tif │ │ │ ├── 20070219-20070604_base.par │ │ │ ├── 20070219-20070604_utm_unw.tif │ │ │ ├── 20070219_slc.par │ │ │ ├── 20070326-20070917_base.par │ │ │ ├── 20070326-20070917_utm_unw.tif │ │ │ ├── 20070326_slc.par │ │ │ ├── 20070430-20070604_base.par │ │ │ ├── 20070430-20070604_utm_unw.tif │ │ │ ├── 20070430_slc.par │ │ │ ├── 20070604-20070709_base.par │ │ │ ├── 20070604-20070709_utm_unw.tif │ │ │ ├── 20070604_slc.par │ │ │ ├── 20070709-20070813_base.par │ │ │ ├── 20070709-20070813_utm_unw.tif │ │ │ ├── 20070709_slc.par │ │ │ ├── 20070813_slc.par │ │ │ ├── 20070917_slc.par │ │ │ ├── baseline_list.txt │ │ │ ├── header_list.txt │ │ │ ├── input_parameters.conf │ │ │ └── interferogram_list.txt │ │ └── roipac/ │ │ ├── dem/ │ │ │ ├── roipac_test_trimmed.dem │ │ │ └── roipac_test_trimmed.dem.rsc │ │ ├── header_list.txt │ │ ├── headers/ │ │ │ ├── geo_060619-061002.unw.rsc │ │ │ ├── geo_060828-061211.unw.rsc │ │ │ ├── geo_061002-070219.unw.rsc │ │ │ ├── geo_061002-070430.unw.rsc │ │ │ ├── geo_061106-061211.unw.rsc │ │ │ ├── geo_061106-070115.unw.rsc │ │ │ ├── geo_061106-070326.unw.rsc │ │ │ ├── geo_061211-070709.unw.rsc │ │ │ ├── geo_061211-070813.unw.rsc │ │ │ ├── geo_070115-070326.unw.rsc │ │ │ ├── geo_070115-070917.unw.rsc │ │ │ ├── geo_070219-070430.unw.rsc │ │ │ ├── geo_070219-070604.unw.rsc │ │ │ ├── geo_070326-070917.unw.rsc │ │ │ ├── geo_070430-070604.unw.rsc │ │ │ ├── geo_070604-070709.unw.rsc │ │ │ └── geo_070709-070813.unw.rsc │ │ ├── input_parameters.conf │ │ ├── interferogram_list.txt │ │ └── interferograms/ │ │ ├── geo_060619-061002.unw │ │ ├── geo_060619-061002.unw.rsc │ │ ├── geo_060619-061002_unw.tif │ │ ├── geo_060828-061211.unw │ │ ├── geo_060828-061211.unw.rsc │ │ ├── geo_060828-061211_unw.tif │ │ ├── geo_061002-070219.unw │ │ ├── geo_061002-070219.unw.rsc │ │ ├── geo_061002-070219_unw.tif │ │ ├── geo_061002-070430.unw │ │ ├── geo_061002-070430.unw.rsc │ │ ├── geo_061002-070430_unw.tif │ │ ├── geo_061106-061211.unw │ │ ├── geo_061106-061211.unw.rsc │ │ ├── geo_061106-061211_unw.tif │ │ ├── geo_061106-070115.unw │ │ ├── geo_061106-070115.unw.rsc │ │ ├── geo_061106-070115_unw.tif │ │ ├── geo_061106-070326.unw │ │ ├── geo_061106-070326.unw.rsc │ │ ├── geo_061106-070326_unw.tif │ │ ├── geo_061211-070709.unw │ │ ├── geo_061211-070709.unw.rsc │ │ ├── geo_061211-070709_unw.tif │ │ ├── geo_061211-070813.unw │ │ ├── geo_061211-070813.unw.rsc │ │ ├── geo_061211-070813_unw.tif │ │ ├── geo_070115-070326.unw │ │ ├── geo_070115-070326.unw.rsc │ │ ├── geo_070115-070326_unw.tif │ │ ├── geo_070115-070917.unw │ │ ├── geo_070115-070917.unw.rsc │ │ ├── geo_070115-070917_unw.tif │ │ ├── geo_070219-070430.unw │ │ ├── geo_070219-070430.unw.rsc │ │ ├── geo_070219-070430_unw.tif │ │ ├── geo_070219-070604.unw │ │ ├── geo_070219-070604.unw.rsc │ │ ├── geo_070219-070604_unw.tif │ │ ├── geo_070326-070917.unw │ │ ├── geo_070326-070917.unw.rsc │ │ ├── geo_070326-070917_unw.tif │ │ ├── geo_070430-070604.unw │ │ ├── geo_070430-070604.unw.rsc │ │ ├── geo_070430-070604_unw.tif │ │ ├── geo_070604-070709.unw │ │ ├── geo_070604-070709.unw.rsc │ │ ├── geo_070604-070709_unw.tif │ │ ├── geo_070709-070813.unw │ │ ├── geo_070709-070813.unw.rsc │ │ ├── geo_070709-070813_unw.tif │ │ └── roipac_test_trimmed_dem.tif │ ├── test_dem_error.py │ ├── test_gamma.py │ ├── test_gamma_vs_roipac.py │ ├── test_gdal_python.py │ ├── test_geometry.py │ ├── test_merge.py │ ├── test_mpi.py │ ├── test_mpi_vs_multiprocess_vs_single_process.py │ ├── test_mst.py │ ├── test_orbital.py │ ├── test_prepifg.py │ ├── test_prepifg_system_vs_python.py │ ├── test_pyrate.py │ ├── test_ref_phs_est.py │ ├── test_refpixel.py │ ├── test_roipac.py │ ├── test_shared.py │ ├── test_stackrate.py │ ├── test_system.py │ └── test_timeseries.py └── utils/ ├── .coveragerc ├── __init__.py ├── create_lv_theta.py ├── crop_ifgs.py ├── developer_hints.txt ├── docker_install.txt ├── gdaldem.py ├── list_creator.sh ├── make_tscuml_animation.py ├── plot_correction_files.py ├── plot_linear_rate_profile.py ├── plot_sbas_network.py ├── plot_time_series.py └── pyrate_pycallgraph.py