├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── build.yml ├── .gitignore ├── .pylintrc ├── Dockerfile ├── LICENSE ├── README.rst ├── __init__.py ├── docs ├── Makefile ├── PyRate_logo.png ├── PyRate_logo_50.png ├── PyRate_plot_screenshot.png ├── _build │ └── html │ │ └── 404.html ├── _templates │ └── layout.html ├── 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 ├── logo.png ├── make.bat ├── modules.rst ├── mpiops.rst ├── mst.rst ├── orbital.rst ├── phase_closure.rst ├── phase_closure_images │ ├── closure_loops_iteration_1_fig_0.png │ ├── closure_loops_iteration_2_fig_0.png │ ├── ifg-phase-plot-1-after.png │ └── ifg-phase-plot-1-before.png ├── 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 │ │ ├── prepifg_output │ │ │ ├── ifg_mm_geo_060619-061002.unw.csv │ │ │ ├── ifg_mm_geo_060828-061211.unw.csv │ │ │ ├── ifg_mm_geo_061002-070219.unw.csv │ │ │ ├── ifg_mm_geo_061002-070430.unw.csv │ │ │ ├── ifg_mm_geo_061106-061211.unw.csv │ │ │ ├── ifg_mm_geo_061106-070115.unw.csv │ │ │ ├── ifg_mm_geo_061106-070326.unw.csv │ │ │ ├── ifg_mm_geo_061211-070709.unw.csv │ │ │ ├── ifg_mm_geo_061211-070813.unw.csv │ │ │ ├── ifg_mm_geo_070115-070326.unw.csv │ │ │ ├── ifg_mm_geo_070115-070917.unw.csv │ │ │ ├── ifg_mm_geo_070219-070430.unw.csv │ │ │ ├── ifg_mm_geo_070219-070604.unw.csv │ │ │ ├── ifg_mm_geo_070326-070917.unw.csv │ │ │ ├── ifg_mm_geo_070430-070604.unw.csv │ │ │ ├── ifg_mm_geo_070604-070709.unw.csv │ │ │ ├── ifg_mm_geo_070709-070813.unw.csv │ │ │ ├── ifg_rad_geo_060619-061002.unw.csv │ │ │ ├── ifg_rad_geo_060828-061211.unw.csv │ │ │ ├── ifg_rad_geo_061002-070219.unw.csv │ │ │ ├── ifg_rad_geo_061002-070430.unw.csv │ │ │ ├── ifg_rad_geo_061106-061211.unw.csv │ │ │ ├── ifg_rad_geo_061106-070115.unw.csv │ │ │ ├── ifg_rad_geo_061106-070326.unw.csv │ │ │ ├── ifg_rad_geo_061211-070709.unw.csv │ │ │ ├── ifg_rad_geo_061211-070813.unw.csv │ │ │ ├── ifg_rad_geo_070115-070326.unw.csv │ │ │ ├── ifg_rad_geo_070115-070917.unw.csv │ │ │ ├── ifg_rad_geo_070219-070430.unw.csv │ │ │ ├── ifg_rad_geo_070219-070604.unw.csv │ │ │ ├── ifg_rad_geo_070326-070917.unw.csv │ │ │ ├── ifg_rad_geo_070430-070604.unw.csv │ │ │ ├── ifg_rad_geo_070604-070709.unw.csv │ │ │ └── ifg_rad_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 /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/__init__.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- 1 | # Minimal makefile for Sphinx documentation 2 | # 3 | 4 | # You can set these variables from the command line. 5 | SPHINXOPTS = 6 | SPHINXBUILD = sphinx-build 7 | SPHINXPROJ = PyRate 8 | SOURCEDIR = . 9 | BUILDDIR = _build 10 | 11 | # Put it first so that "make" without argument is like "make help". 12 | help: 13 | @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 14 | 15 | .PHONY: help Makefile 16 | 17 | # Catch-all target: route all unknown targets to Sphinx using the new 18 | # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). 19 | %: Makefile 20 | @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 21 | 22 | -------------------------------------------------------------------------------- /docs/PyRate_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/docs/PyRate_logo.png -------------------------------------------------------------------------------- /docs/PyRate_logo_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/docs/PyRate_logo_50.png -------------------------------------------------------------------------------- /docs/PyRate_plot_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/docs/PyRate_plot_screenshot.png -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- 1 | {% extends "!layout.html" %} 2 | {% block menu %} 3 |
  • Home
  • 4 | {{ super() }} 5 | {% endblock %} 6 | 7 | {% block footer %} 8 |

    placeHolderText

    9 | 10 | {{ super() }} 11 | {% endblock %} -------------------------------------------------------------------------------- /docs/algorithm.rst: -------------------------------------------------------------------------------- 1 | Algorithm Module 2 | ================ 3 | 4 | .. automodule:: pyrate.core.algorithm 5 | :members: -------------------------------------------------------------------------------- /docs/aps.rst: -------------------------------------------------------------------------------- 1 | Atmospheric Phase Screen Module 2 | =============================== 3 | 4 | .. automodule:: pyrate.core.aps 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- 1 | Configuration Module 2 | ==================== 3 | 4 | .. automodule:: pyrate.configuration 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/covariance.rst: -------------------------------------------------------------------------------- 1 | Covariance Module 2 | ===================== 3 | 4 | .. automodule:: pyrate.core.covariance 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/demerror.rst: -------------------------------------------------------------------------------- 1 | DEM Error Correction Module 2 | =========================== 3 | 4 | .. automodule:: pyrate.core.dem_error 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/gamma.rst: -------------------------------------------------------------------------------- 1 | GAMMA Module 2 | ============ 3 | 4 | .. automodule:: pyrate.core.gamma 5 | :members: -------------------------------------------------------------------------------- /docs/gdal_python.rst: -------------------------------------------------------------------------------- 1 | GDAL-Python Bindings Module 2 | =========================== 3 | 4 | .. automodule:: pyrate.core.gdal_python 5 | :members: -------------------------------------------------------------------------------- /docs/geometry.rst: -------------------------------------------------------------------------------- 1 | Geometry Module 2 | =============== 3 | 4 | .. automodule:: pyrate.core.geometry 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/ifgconstants.rst: -------------------------------------------------------------------------------- 1 | Ifgconstants Module 2 | =================== 3 | 4 | .. automodule:: pyrate.core.ifgconstants 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/logger.rst: -------------------------------------------------------------------------------- 1 | Logging Module 2 | ============== 3 | 4 | .. automodule:: pyrate.core.logger 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/docs/logo.png -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- 1 | PyRate Modules 2 | ============== 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | algorithm 8 | aps 9 | configuration 10 | covariance 11 | demerror 12 | gamma 13 | geometry 14 | gdal_python 15 | ifgconstants 16 | logger 17 | mpiops 18 | mst 19 | orbital 20 | phase_closure 21 | prepifg_helper 22 | ref_phs_est 23 | refpixel 24 | roipac 25 | shared 26 | stack 27 | timeseries 28 | -------------------------------------------------------------------------------- /docs/mpiops.rst: -------------------------------------------------------------------------------- 1 | MPI operations Module 2 | ===================== 3 | 4 | .. automodule:: pyrate.core.mpiops 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/mst.rst: -------------------------------------------------------------------------------- 1 | Minimum Spanning Tree Module 2 | ============================ 3 | 4 | .. automodule:: pyrate.core.mst 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/orbital.rst: -------------------------------------------------------------------------------- 1 | Orbital Error Correction Module 2 | =============================== 3 | 4 | .. automodule:: pyrate.core.orbital 5 | :members: -------------------------------------------------------------------------------- /docs/phase_closure_images/closure_loops_iteration_1_fig_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/docs/phase_closure_images/closure_loops_iteration_1_fig_0.png -------------------------------------------------------------------------------- /docs/phase_closure_images/closure_loops_iteration_2_fig_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/docs/phase_closure_images/closure_loops_iteration_2_fig_0.png -------------------------------------------------------------------------------- /docs/phase_closure_images/ifg-phase-plot-1-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/docs/phase_closure_images/ifg-phase-plot-1-after.png -------------------------------------------------------------------------------- /docs/phase_closure_images/ifg-phase-plot-1-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/docs/phase_closure_images/ifg-phase-plot-1-before.png -------------------------------------------------------------------------------- /docs/prepifg_helper.rst: -------------------------------------------------------------------------------- 1 | Prepifg Helper Module 2 | ===================== 3 | 4 | .. automodule:: pyrate.core.prepifg_helper 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/pyrate.conv2tif.rst: -------------------------------------------------------------------------------- 1 | PyRate Conv2tif Script 2 | ====================== 3 | 4 | .. automodule:: pyrate.conv2tif 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/pyrate.correct.rst: -------------------------------------------------------------------------------- 1 | PyRate Correct Script 2 | ======================== 3 | 4 | .. automodule:: pyrate.correct 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/pyrate.main.rst: -------------------------------------------------------------------------------- 1 | PyRate Main Script 2 | ================== 3 | 4 | .. automodule:: pyrate.main 5 | 6 | .. rubric:: Functions 7 | .. autosummary:: 8 | 9 | conv2tif 10 | prepifg 11 | correct 12 | timeseries 13 | stack 14 | merge 15 | -------------------------------------------------------------------------------- /docs/pyrate.merge.rst: -------------------------------------------------------------------------------- 1 | PyRate Merge Script 2 | =================== 3 | 4 | .. automodule:: pyrate.merge 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/pyrate.prepifg.rst: -------------------------------------------------------------------------------- 1 | PyRate Prepifg Script 2 | ========================= 3 | 4 | .. automodule:: pyrate.prepifg 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/ref_phs_est.rst: -------------------------------------------------------------------------------- 1 | Reference Phase Calculation Module 2 | ================================== 3 | 4 | .. automodule:: pyrate.core.ref_phs_est 5 | :members: -------------------------------------------------------------------------------- /docs/refpixel.rst: -------------------------------------------------------------------------------- 1 | Reference Pixel Calculation Module 2 | ================================== 3 | 4 | .. automodule:: pyrate.core.refpixel 5 | :members: -------------------------------------------------------------------------------- /docs/roipac.rst: -------------------------------------------------------------------------------- 1 | ROI_PAC Module 2 | ============== 3 | 4 | .. automodule:: pyrate.core.roipac 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/scripts.rst: -------------------------------------------------------------------------------- 1 | PyRate Scripts 2 | ============== 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | pyrate.conv2tif 8 | pyrate.prepifg 9 | pyrate.correct 10 | pyrate.merge 11 | pyrate.main 12 | -------------------------------------------------------------------------------- /docs/shared.rst: -------------------------------------------------------------------------------- 1 | Shared Module 2 | ============= 3 | 4 | .. automodule:: pyrate.core.shared 5 | :members: -------------------------------------------------------------------------------- /docs/stack.rst: -------------------------------------------------------------------------------- 1 | Stacking Module 2 | =============== 3 | 4 | .. automodule:: pyrate.core.stack 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/timeseries.rst: -------------------------------------------------------------------------------- 1 | Time Series Module 2 | ================== 3 | 4 | .. automodule:: pyrate.core.timeseries 5 | :members: -------------------------------------------------------------------------------- /docs/ubuntu.rst: -------------------------------------------------------------------------------- 1 | Linux 2 | ^^^^^ 3 | 4 | These instructions have been tested using Ubuntu 18.04. If using another 5 | Linux distribution, you will have to install packages equivalent to those 6 | listed in ``PyRate/scripts/apt_install.sh``. 7 | 8 | Clone the repository, install required packages and install `PyRate`: 9 | 10 | :: 11 | 12 | git clone git@github.com:GeoscienceAustralia/PyRate.git 13 | ./PyRate/scripts/apt_install.sh 14 | 15 | # Add GDAL includes to C/CPLUS paths before building Python GDAL bindings. 16 | export C_INCLUDE_PATH=$C_INCLUDE_PATH:/usr/include/gdal 17 | export CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:/usr/include/gdal 18 | 19 | python3 setup.py install 20 | 21 | These commands will compile the executable program ``pyrate``. 22 | -------------------------------------------------------------------------------- /pyrate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/pyrate/__init__.py -------------------------------------------------------------------------------- /pyrate/core/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | plugins = Cython.Coverage 3 | source = pyrate 4 | omit = aps.py 5 | branch = True 6 | 7 | [report] 8 | exclude_lines = 9 | pragma: no cover 10 | def __repr__ 11 | raise AssertionError 12 | raise NotImplementedError 13 | if __name__ == .__main__.: -------------------------------------------------------------------------------- /pyrate/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/pyrate/core/__init__.py -------------------------------------------------------------------------------- /pyrate/core/phase_closure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/pyrate/core/phase_closure/__init__.py -------------------------------------------------------------------------------- /pyrate/core/phase_closure/correct_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/pyrate/core/phase_closure/correct_phase.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | filterwarnings = 3 | ignore::DeprecationWarning 4 | 5 | markers = 6 | slow: marks tests as slow (deselect with '-m "not slow"') 7 | mpi: marks tests that require mpi (deselect with '-m "not mpi"') 8 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | ghp-import==0.5.5 2 | sphinx==3.0.3 3 | sphinx_rtd_theme==0.4.3 4 | sphinxcontrib-programoutput==0.16 5 | recommonmark==0.6.0 6 | m2r2 7 | mpi4py==3.0.3 8 | matplotlib 9 | ipython 10 | setuptools 11 | twine 12 | wheel 13 | pylint 14 | pytest 15 | -------------------------------------------------------------------------------- /requirements-plot.txt: -------------------------------------------------------------------------------- 1 | rasterio 2 | matplotlib 3 | statsmodels 4 | xarray 5 | pylab 6 | -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest-cov==2.8.1 2 | coverage==5.1 3 | codecov==2.1.0 4 | tox==3.15.0 5 | pytest==5.4.2 6 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | GDAL 2 | joblib==1.0.0 3 | mpi4py==3.0.3 4 | networkx==2.5 5 | numpy==1.19.4 6 | pyproj==3.0.0 7 | scipy==1.5.4 8 | numexpr==2.7.2 9 | nptyping==1.4.0 10 | -------------------------------------------------------------------------------- /scripts/apt_install.sh: -------------------------------------------------------------------------------- 1 | echo "This script will install packages required by PyRate. Continue?" 2 | select yn in "Yes" "No"; do 3 | case $yn in 4 | Yes ) break;; 5 | No ) exit;; 6 | esac 7 | done 8 | 9 | # OS package requirements for Ubuntu 18.04 10 | sudo apt-get update 11 | sudo apt-get -y install \ 12 | gdal-bin \ 13 | libgdal-dev \ 14 | openmpi-bin \ 15 | libopenmpi-dev 16 | 17 | -------------------------------------------------------------------------------- /scripts/ci_proj_install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | # Create build dir if not exists 5 | if [ ! -d "$PROJBUILD" ]; then 6 | mkdir $PROJBUILD; 7 | fi 8 | 9 | if [ ! -d "$PROJINST" ]; then 10 | mkdir $PROJINST; 11 | fi 12 | 13 | ls -l $PROJINST 14 | 15 | echo "PROJ VERSION: $PROJVERSION" 16 | 17 | if [ ! -d "$PROJINST/gdal-$GDALVERSION/share/proj" ]; then 18 | cd $PROJBUILD 19 | wget -q https://download.osgeo.org/proj/proj-$PROJVERSION.tar.gz 20 | tar -xzf proj-$PROJVERSION.tar.gz 21 | cd proj-$PROJVERSION 22 | ./configure --prefix=$PROJINST/gdal-$GDALVERSION 23 | make -s -j 2 24 | make install 25 | fi 26 | -------------------------------------------------------------------------------- /scripts/create_html_documentation.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | module purge 3 | module load python3/3.7.4 4 | module load gdal/3.0.2 5 | module load openmpi/4.0.2 6 | export PYTHONPATH=/apps/gdal/3.0.2/lib64/python3.7/site-packages:$PYTHONPATH 7 | source ~/PyRateVenv/bin/activate 8 | cd ~/PyRate/docs 9 | make html 10 | echo "Use following cmd to copy file to local machine:" 11 | cd ~ 12 | echo "scp -r `whoami`@gadi.nci.org.au:`pwd ~`/PyRate/docs/_build/html C:/preview" 13 | -------------------------------------------------------------------------------- /scripts/nci_install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -rf ~/PyRateVenv 3 | rm -rf ~/PyRate 4 | git clone https://github.com/GeoscienceAustralia/PyRate.git 5 | module purge 6 | module load python3/3.7.4 7 | module load gdal/3.0.2 8 | module load openmpi/4.0.2 9 | export PYTHONPATH=/apps/gdal/3.0.2/lib64/python3.7/site-packages:$PYTHONPATH 10 | python3 -m venv ~/PyRateVenv 11 | source ~/PyRateVenv/bin/activate 12 | cd ~/PyRate 13 | python setup.py install 14 | -------------------------------------------------------------------------------- /scripts/nci_load_modules.sh: -------------------------------------------------------------------------------- 1 | #!bin/bash 2 | module purge 3 | module load python3/3.7.4 4 | module load gdal/3.0.2 5 | module load openmpi/4.0.2 6 | # Remove the prebuilt GDAL Python bindings that get added by the NCI module. 7 | export PYTHONPATH=/apps/gdal/3.0.2/lib64/python3.7/site-packages:$PYTHONPATH 8 | # Required by Click 9 | export LC_ALL=en_AU.UTF-8 10 | export LANG=en_AU.UTF-8 11 | source ${PYRATE_VENV:-${HOME}/PyRateVenv}/bin/activate 12 | -------------------------------------------------------------------------------- /scripts/nci_run_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | module purge 3 | module load python3/3.7.4 4 | module load gdal/3.0.2 5 | module load openmpi/4.0.2 6 | export PYTHONPATH=/apps/gdal/3.0.2/lib64/python3.7/site-packages:$PYTHONPATH 7 | source ~/PyRateVenv/bin/activate 8 | pip install -U pytest 9 | cd ~/PyRate 10 | pytest tests/ 11 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | # Inside of setup.cfg 2 | [metadata] 3 | description-file = README.rst 4 | 5 | [aliases] 6 | test = pytest 7 | 8 | [tool:pytest] 9 | markers: 10 | slow: Skipped unless --runslow passed 11 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/__init__.py -------------------------------------------------------------------------------- /tests/phase_closure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/phase_closure/__init__.py -------------------------------------------------------------------------------- /tests/phase_closure/common.py: -------------------------------------------------------------------------------- 1 | class IfgDummy: 2 | def __init__(self, ifg_path): 3 | self.tmp_sampled_path = ifg_path -------------------------------------------------------------------------------- /tests/phase_closure/conftest.py: -------------------------------------------------------------------------------- 1 | from pathlib import Path 2 | import pytest 3 | from pyrate import constants as C 4 | from tests.phase_closure.common import IfgDummy 5 | from tests.common import MEXICO_CROPA_DIR 6 | 7 | 8 | @pytest.fixture() 9 | def closure_params(geotiffs): 10 | ifg_files = [IfgDummy(ifg_path) for ifg_path in geotiffs] 11 | params = { 12 | C.INTERFEROGRAM_FILES: ifg_files, 13 | C.MAX_LOOP_LENGTH: 100, 14 | 'geotiffs': geotiffs 15 | } 16 | return params 17 | 18 | 19 | @pytest.fixture(scope='module') 20 | def cropa_geotifs(): 21 | tifs = [u.as_posix() for u in Path(MEXICO_CROPA_DIR).glob('*_unw.tif')] 22 | tifs.sort() 23 | return tifs 24 | -------------------------------------------------------------------------------- /tests/test_data/cropA/coherence_stats/coh_mean.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/coherence_stats/coh_mean.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/coherence_stats/coh_median.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/coherence_stats/coh_median.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/coherence_stats/coh_std.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/coherence_stats/coh_std.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/dem_error_result/20180106-20180319_ifg_20_dem_error.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/dem_error_result/20180106-20180319_ifg_20_dem_error.npy -------------------------------------------------------------------------------- /tests/test_data/cropA/dem_error_result/20180130-20180412_ifg_20_dem_error.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/dem_error_result/20180130-20180412_ifg_20_dem_error.npy -------------------------------------------------------------------------------- /tests/test_data/cropA/dem_error_result/20180412-20180518_ifg_20_dem_error.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/dem_error_result/20180412-20180518_ifg_20_dem_error.npy -------------------------------------------------------------------------------- /tests/test_data/cropA/dem_error_result/dem_error.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/dem_error_result/dem_error.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180106-20180130_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.1536945 40.1145103 4.5090025 m m m 2 | initial_baseline_rate: 0.0000000 0.0636107 0.0126167 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 40.1010426 4.5164084 m m m 4 | precision_baseline_rate: 0.0000000 0.0703755 0.0082572 m/s m/s m/s 5 | unwrap_phase_constant: -0.00001 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180106-20180319_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.0425811 3.6031274 -0.5126463 m m m 2 | initial_baseline_rate: 0.0000000 0.0521367 0.0726505 m/s m/s m/s 3 | precision_baseline(TCN): -0.0425811 3.6031274 -0.5126463 m m m 4 | precision_baseline_rate: 0.0000000 0.0521367 0.0726505 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180106-20180412_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -3.3824897 -65.5423278 36.9516791 m m m 2 | initial_baseline_rate: 0.0000000 -0.0300356 0.1047678 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -65.6149034 36.9707023 m m m 4 | precision_baseline_rate: 0.0000000 -0.0194198 0.0946307 m/s m/s m/s 5 | unwrap_phase_constant: -0.00012 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180106-20180518_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.8185852 -15.9799853 28.0671376 m m m 2 | initial_baseline_rate: 0.0000000 0.0487790 0.1002578 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -15.6884185 27.9327136 m m m 4 | precision_baseline_rate: 0.0000000 0.0490924 0.1006091 m/s m/s m/s 5 | unwrap_phase_constant: 0.00028 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180106_VV_8rlks_eqa_to_rdc.lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geometry/20180106_VV_8rlks_eqa_to_rdc.lt -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180130-20180307_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.6939756 -40.1971021 -5.6555867 m m m 2 | initial_baseline_rate: 0.0000000 -0.1938983 0.0418034 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -40.2128077 -5.6388078 m m m 4 | precision_baseline_rate: 0.0000000 -0.1881275 0.0374671 m/s m/s m/s 5 | unwrap_phase_constant: 0.00002 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180130-20180412_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.7080870 -105.5946431 32.4031046 m m m 2 | initial_baseline_rate: 0.0000000 -0.0986267 0.0940323 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -105.7019368 32.4448897 m m m 4 | precision_baseline_rate: 0.0000000 -0.0898244 0.0863512 m/s m/s m/s 5 | unwrap_phase_constant: -0.00013 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180307-20180319_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.0000004 4.1283381 0.3230800 m m m 2 | initial_baseline_rate: 0.0000000 0.1863333 0.0175918 m/s m/s m/s 3 | precision_baseline(TCN): -0.0000004 4.1283381 0.3230800 m m m 4 | precision_baseline_rate: 0.0000000 0.1863333 0.0175918 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180307-20180331_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.1112816 -1.2495340 5.0924280 m m m 2 | initial_baseline_rate: 0.0000000 0.2291424 0.0401035 m/s m/s m/s 3 | precision_baseline(TCN): -0.1112816 -1.2495340 5.0924280 m m m 4 | precision_baseline_rate: 0.0000000 0.2291424 0.0401035 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180307-20180506_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.0000004 -2.5497431 28.2483011 m m m 2 | initial_baseline_rate: 0.0000000 0.1254563 0.0490788 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -1.9353785 27.9022509 m m m 4 | precision_baseline_rate: 0.0000000 0.1116583 0.0582004 m/s m/s m/s 5 | unwrap_phase_constant: 0.00038 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180307-20180530_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.6454202 33.7680109 43.0365483 m m m 2 | initial_baseline_rate: 0.0000000 0.1681843 0.0413736 m/s m/s m/s 3 | precision_baseline(TCN): -0.6454202 33.7680109 43.0365483 m m m 4 | precision_baseline_rate: 0.0000000 0.1681843 0.0413736 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180307-20180611_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -1.0202033 -42.5608037 28.9838632 m m m 2 | initial_baseline_rate: 0.0000000 0.1856629 0.0418846 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -42.7289394 29.0749561 m m m 4 | precision_baseline_rate: 0.0000000 0.1888319 0.0419065 m/s m/s m/s 5 | unwrap_phase_constant: -0.00012 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180319-20180331_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.0940080 -4.4095585 4.0878617 m m m 2 | initial_baseline_rate: 0.0000000 0.0564518 0.0226244 m/s m/s m/s 3 | precision_baseline(TCN): 0.0940080 -4.4095585 4.0878617 m m m 4 | precision_baseline_rate: 0.0000000 0.0564518 0.0226244 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180319-20180506_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.9353410 -5.3971995 27.0244745 m m m 2 | initial_baseline_rate: 0.0000000 -0.0603629 0.0321722 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -5.3217217 27.0078715 m m m 4 | precision_baseline_rate: 0.0000000 -0.0556305 0.0294090 m/s m/s m/s 5 | unwrap_phase_constant: 0.00014 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180319-20180518_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -1.0633968 -19.5288097 28.5389506 m m m 2 | initial_baseline_rate: 0.0000000 -0.0082175 0.0277582 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -19.4409579 28.4937618 m m m 4 | precision_baseline_rate: 0.0000000 0.0020898 0.0233207 m/s m/s m/s 5 | unwrap_phase_constant: 0.00007 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180319-20180530_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.6579066 30.3023419 42.2468260 m m m 2 | initial_baseline_rate: 0.0000000 -0.0223397 0.0234496 m/s m/s m/s 3 | precision_baseline(TCN): -0.6579066 30.3023419 42.2468260 m m m 4 | precision_baseline_rate: 0.0000000 -0.0223397 0.0234496 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180319-20180623_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.2737791 -19.7407601 42.8055396 m m m 2 | initial_baseline_rate: 0.0000000 -0.0412166 0.0250700 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -19.9138798 42.8891912 m m m 4 | precision_baseline_rate: 0.0000000 -0.0633762 0.0375154 m/s m/s m/s 5 | unwrap_phase_constant: -0.00015 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180331-20180412_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.5207146 -64.6524710 33.3215888 m m m 2 | initial_baseline_rate: 0.0000000 -0.1463346 0.0086984 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -64.8239215 33.4257189 m m m 4 | precision_baseline_rate: 0.0000000 -0.1516492 0.0110900 m/s m/s m/s 5 | unwrap_phase_constant: -0.00008 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180331-20180506_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.4776116 -0.7573620 22.7725658 m m m 2 | initial_baseline_rate: 0.0000000 -0.1235698 0.0091351 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -0.7275811 22.8105130 m m m 4 | precision_baseline_rate: 0.0000000 -0.1397472 0.0220372 m/s m/s m/s 5 | unwrap_phase_constant: 0.00021 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180331-20180518_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.2959757 -15.0330123 24.3922942 m m m 2 | initial_baseline_rate: 0.0000000 -0.0699261 0.0056151 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -14.8908566 24.3852158 m m m 4 | precision_baseline_rate: 0.0000000 -0.0836758 0.0170065 m/s m/s m/s 5 | unwrap_phase_constant: 0.00035 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180331-20180530_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.6160465 34.5715540 38.2579471 m m m 2 | initial_baseline_rate: 0.0000000 -0.0803903 0.0012571 m/s m/s m/s 3 | precision_baseline(TCN): -0.6160465 34.5715540 38.2579471 m m m 4 | precision_baseline_rate: 0.0000000 -0.0803903 0.0012571 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180331-20180623_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.2764284 -15.6218708 38.9224121 m m m 2 | initial_baseline_rate: 0.0000000 -0.1012466 0.0028457 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -15.6997972 38.9643539 m m m 4 | precision_baseline_rate: 0.0000000 -0.1035150 0.0023676 m/s m/s m/s 5 | unwrap_phase_constant: -0.00005 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180331-20180717_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.6757929 -6.1269114 33.0701755 m m m 2 | initial_baseline_rate: 0.0000000 -0.1067184 0.0085317 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -6.0583173 33.0501396 m m m 4 | precision_baseline_rate: 0.0000000 -0.0985459 -0.0011029 m/s m/s m/s 5 | unwrap_phase_constant: 0.00011 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180412-20180506_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.8598882 63.9985273 -10.6224613 m m m 2 | initial_baseline_rate: 0.0000000 0.0255046 0.0007563 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 63.9442366 -10.5557685 m m m 4 | precision_baseline_rate: 0.0000000 0.0078066 0.0132544 m/s m/s m/s 5 | unwrap_phase_constant: 0.00010 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180412-20180518_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.2932894 49.7232694 -9.0026781 m m m 2 | initial_baseline_rate: 0.0000000 0.0835121 -0.0035232 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 49.7313924 -8.9840098 m m m 4 | precision_baseline_rate: 0.0000000 0.0801545 -0.0014154 m/s m/s m/s 5 | unwrap_phase_constant: 0.00009 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180506-20180518_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.4958283 -14.4402710 1.7338821 m m m 2 | initial_baseline_rate: 0.0000000 0.0527872 -0.0035656 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -14.1367727 1.5899685 m m m 4 | precision_baseline_rate: 0.0000000 0.0555532 -0.0044993 m/s m/s m/s 5 | unwrap_phase_constant: 0.00028 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180506-20180530_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -1.1414793 35.2035164 15.5722874 m m m 2 | initial_baseline_rate: 0.0000000 0.0459441 -0.0078633 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 35.4681793 15.4120456 m m m 4 | precision_baseline_rate: 0.0000000 0.0377316 -0.0043365 m/s m/s m/s 5 | unwrap_phase_constant: 0.00012 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180506-20180611_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.4118799 -40.7471207 1.2559498 m m m 2 | initial_baseline_rate: 0.0000000 0.0719436 -0.0067777 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -41.0589267 1.3893527 m m m 4 | precision_baseline_rate: 0.0000000 0.0980549 -0.0290264 m/s m/s m/s 5 | unwrap_phase_constant: -0.00034 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180506-20180623_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.5613989 -14.6282589 15.9816550 m m m 2 | initial_baseline_rate: 0.0000000 0.0085490 -0.0055608 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -14.8438160 16.0763524 m m m 4 | precision_baseline_rate: 0.0000000 0.0187805 -0.0088620 m/s m/s m/s 5 | unwrap_phase_constant: -0.00022 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180506-20180705_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 1.5504708 92.0622963 7.2392205 m m m 2 | initial_baseline_rate: 0.0000000 -0.0681920 -0.0045449 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 91.8647619 7.3101981 m m m 4 | precision_baseline_rate: 0.0000000 -0.0687605 -0.0014463 m/s m/s m/s 5 | unwrap_phase_constant: -0.00026 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geometry/20180506-20180717_VV_8rlks_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.2418971 -4.6591305 9.7953949 m m m 2 | initial_baseline_rate: 0.0000000 0.0146665 -0.0002475 m/s m/s m/s 3 | precision_baseline(TCN): -0.2418971 -4.6591305 9.7953949 m m m 4 | precision_baseline_rate: 0.0000000 0.0146665 -0.0002475 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180106-20180130_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180106-20180130_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180106-20180130_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180106-20180130_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180106-20180319_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180106-20180319_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180106-20180319_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180106-20180319_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180106-20180412_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180106-20180412_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180106-20180412_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180106-20180412_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180106-20180518_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180106-20180518_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180106-20180518_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180106-20180518_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180130-20180307_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180130-20180307_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180130-20180307_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180130-20180307_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180130-20180412_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180130-20180412_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180130-20180412_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180130-20180412_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180307-20180319_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180307-20180319_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180307-20180319_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180307-20180319_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180307-20180331_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180307-20180331_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180307-20180331_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180307-20180331_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180307-20180506_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180307-20180506_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180307-20180506_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180307-20180506_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180307-20180530_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180307-20180530_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180307-20180530_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180307-20180530_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180307-20180611_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180307-20180611_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180307-20180611_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180307-20180611_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180319-20180331_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180319-20180331_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180319-20180331_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180319-20180331_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180319-20180506_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180319-20180506_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180319-20180506_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180319-20180506_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180319-20180518_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180319-20180518_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180319-20180518_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180319-20180518_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180319-20180530_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180319-20180530_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180319-20180530_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180319-20180530_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180319-20180623_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180319-20180623_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180319-20180623_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180319-20180623_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180331-20180412_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180331-20180412_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180331-20180412_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180331-20180412_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180331-20180506_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180331-20180506_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180331-20180506_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180331-20180506_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180331-20180518_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180331-20180518_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180331-20180518_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180331-20180518_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180331-20180530_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180331-20180530_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180331-20180530_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180331-20180530_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180331-20180623_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180331-20180623_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180331-20180623_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180331-20180623_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180331-20180717_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180331-20180717_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180331-20180717_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180331-20180717_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180412-20180506_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180412-20180506_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180412-20180506_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180412-20180506_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180412-20180518_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180412-20180518_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180412-20180518_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180412-20180518_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180506-20180518_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180506-20180518_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180506-20180518_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180506-20180518_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180506-20180530_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180506-20180530_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180506-20180530_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180506-20180530_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180506-20180611_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180506-20180611_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180506-20180611_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180506-20180611_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180506-20180623_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180506-20180623_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180506-20180623_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180506-20180623_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180506-20180705_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180506-20180705_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180506-20180705_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180506-20180705_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180506-20180717_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180506-20180717_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_20180506-20180717_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_20180506-20180717_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/geotiffs/cropA_T005A_dem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropA/geotiffs/cropA_T005A_dem.tif -------------------------------------------------------------------------------- /tests/test_data/cropA/headers_13: -------------------------------------------------------------------------------- 1 | tests/test_data/cropA/headers/r20180106_VV_8rlks_mli.par 2 | tests/test_data/cropA/headers/r20180130_VV_8rlks_mli.par 3 | tests/test_data/cropA/headers/r20180307_VV_8rlks_mli.par 4 | tests/test_data/cropA/headers/r20180319_VV_8rlks_mli.par 5 | tests/test_data/cropA/headers/r20180331_VV_8rlks_mli.par 6 | tests/test_data/cropA/headers/r20180412_VV_8rlks_mli.par 7 | tests/test_data/cropA/headers/r20180506_VV_8rlks_mli.par 8 | tests/test_data/cropA/headers/r20180518_VV_8rlks_mli.par 9 | tests/test_data/cropA/headers/r20180530_VV_8rlks_mli.par 10 | tests/test_data/cropA/headers/r20180611_VV_8rlks_mli.par 11 | tests/test_data/cropA/headers/r20180623_VV_8rlks_mli.par 12 | tests/test_data/cropA/headers/r20180705_VV_8rlks_mli.par 13 | tests/test_data/cropA/headers/r20180717_VV_8rlks_mli.par 14 | -------------------------------------------------------------------------------- /tests/test_data/cropB/20180106-20180130_ifg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/cropB/20180106-20180130_ifg.tif -------------------------------------------------------------------------------- /tests/test_data/gamma/16x20_20090713-20090817_VV_4rlks_utm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/gamma/16x20_20090713-20090817_VV_4rlks_utm.tif -------------------------------------------------------------------------------- /tests/test_data/gamma/16x20_20090713-20090817_VV_4rlks_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/gamma/16x20_20090713-20090817_VV_4rlks_utm.unw -------------------------------------------------------------------------------- /tests/test_data/gamma/20160114-20160126_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): -0.0000026 -103.7427072 2.8130731 m m m 2 | initial_baseline_rate: 0.0000000 -0.0173538 -0.0055098 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 -103.8364725 2.8055662 m m m 4 | precision_baseline_rate: 0.0000000 -0.0182215 -0.0065402 m/s m/s m/s 5 | unwrap_phase_constant: -0.00027 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/gamma/20160114-20160126_base_init.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.6529765 -103.9065694 2.9253896 m m m 2 | initial_baseline_rate: 0.0000000 -0.0231786 -0.0038703 m/s m/s m/s 3 | precision_baseline(TCN): 0.0000000 0.0000000 0.0000000 m m m 4 | precision_baseline_rate: 0.0000000 0.0000000 0.0000000 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/gamma/cropped_lookup_table.lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/gamma/cropped_lookup_table.lt -------------------------------------------------------------------------------- /tests/test_data/gamma/dem16x20_subset_from_gamma.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/gamma/dem16x20_subset_from_gamma.tif -------------------------------------------------------------------------------- /tests/test_data/gamma/dem16x20raw.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/gamma/dem16x20raw.dem -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180106-20180130_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180106-20180130_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180106-20180130_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180106-20180130_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180106-20180319_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180106-20180319_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180106-20180319_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180106-20180319_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180106-20180412_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180106-20180412_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180106-20180412_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180106-20180412_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180106-20180518_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180106-20180518_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180106-20180518_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180106-20180518_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180130-20180307_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180130-20180307_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180130-20180307_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180130-20180307_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180130-20180412_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180130-20180412_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180130-20180412_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180130-20180412_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180307-20180319_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180307-20180319_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180307-20180319_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180307-20180319_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180307-20180331_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180307-20180331_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180307-20180331_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180307-20180331_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180307-20180506_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180307-20180506_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180307-20180506_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180307-20180506_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180307-20180530_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180307-20180530_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180307-20180530_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180307-20180530_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180307-20180611_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180307-20180611_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180307-20180611_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180307-20180611_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180319-20180331_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180319-20180331_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180319-20180331_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180319-20180331_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180319-20180506_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180319-20180506_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180319-20180506_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180319-20180506_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180319-20180518_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180319-20180518_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180319-20180518_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180319-20180518_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180319-20180530_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180319-20180530_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180319-20180530_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180319-20180530_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180319-20180623_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180319-20180623_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180319-20180623_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180319-20180623_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180331-20180412_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180331-20180412_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180331-20180412_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180331-20180412_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180331-20180506_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180331-20180506_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180331-20180506_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180331-20180506_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180331-20180518_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180331-20180518_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180331-20180518_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180331-20180518_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180331-20180530_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180331-20180530_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180331-20180530_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180331-20180530_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180331-20180623_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180331-20180623_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180331-20180623_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180331-20180623_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180331-20180717_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180331-20180717_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180331-20180717_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180331-20180717_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180412-20180506_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180412-20180506_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180412-20180506_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180412-20180506_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180412-20180518_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180412-20180518_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180412-20180518_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180412-20180518_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180506-20180518_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180506-20180518_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180506-20180518_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180506-20180518_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180506-20180530_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180506-20180530_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180506-20180530_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180506-20180530_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180506-20180611_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180506-20180611_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180506-20180611_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180506-20180611_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180506-20180623_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180506-20180623_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180506-20180623_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180506-20180623_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180506-20180705_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180506-20180705_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180506-20180705_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180506-20180705_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180506-20180717_VV_8rlks_eqa_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180506-20180717_VV_8rlks_eqa_unw.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_20180506-20180717_VV_8rlks_flat_eqa_cc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_20180506-20180717_VV_8rlks_flat_eqa_cc.tif -------------------------------------------------------------------------------- /tests/test_data/geotiffs/cropA_T005A_dem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/geotiffs/cropA_T005A_dem.tif -------------------------------------------------------------------------------- /tests/test_data/incidence/128x2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/incidence/128x2.tif -------------------------------------------------------------------------------- /tests/test_data/prepifg/obs/geo_060619-061002.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/prepifg/obs/geo_060619-061002.unw -------------------------------------------------------------------------------- /tests/test_data/prepifg/obs/geo_060619-061002.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 060619 9 | DATE12 060619-061002 -------------------------------------------------------------------------------- /tests/test_data/prepifg/obs/geo_070326-070917.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/prepifg/obs/geo_070326-070917.unw -------------------------------------------------------------------------------- /tests/test_data/prepifg/obs/geo_070326-070917.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.911666666 4 | X_STEP 0.000833333 5 | Y_FIRST -34.172499999 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070326 9 | DATE12 070326-070917 -------------------------------------------------------------------------------- /tests/test_data/prepifg/tif/0_1lksx_1lksy_4cr.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/prepifg/tif/0_1lksx_1lksy_4cr.tif -------------------------------------------------------------------------------- /tests/test_data/prepifg/tif/1_1lksx_1lksy_4cr.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/prepifg/tif/1_1lksx_1lksy_4cr.tif -------------------------------------------------------------------------------- /tests/test_data/prepifg/tif/geo_060619-061002.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/prepifg/tif/geo_060619-061002.tif -------------------------------------------------------------------------------- /tests/test_data/prepifg/tif/geo_060619-061002_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/prepifg/tif/geo_060619-061002_unw.tif -------------------------------------------------------------------------------- /tests/test_data/prepifg/tif/geo_070326-070917.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/prepifg/tif/geo_070326-070917.tif -------------------------------------------------------------------------------- /tests/test_data/prepifg/tif/geo_070326-070917_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/prepifg/tif/geo_070326-070917_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20060619-20061002_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20060619-20061002_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20060828-20061211_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20060828-20061211_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20061002-20070219_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20061002-20070219_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20061002-20070430_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20061002-20070430_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20061106-20061211_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20061106-20061211_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20061106-20070115_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20061106-20070115_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20061106-20070326_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20061106-20070326_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20061211-20070709_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20061211-20070709_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20061211-20070813_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20061211-20070813_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20070115-20070326_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20070115-20070326_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20070115-20070917_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20070115-20070917_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20070219-20070430_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20070219-20070430_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20070219-20070604_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20070219-20070604_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20070326-20070917_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20070326-20070917_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20070430-20070604_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20070430-20070604_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20070604-20070709_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20070604-20070709_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/coherence/20070709-20070813_utm.unw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/coherence/20070709-20070813_utm.unw.cc -------------------------------------------------------------------------------- /tests/test_data/small_test/dem/roipac_test_trimmed.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/dem/roipac_test_trimmed.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20060619-20061002_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20060619-20061002_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20060619-20061002_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20060619_utm.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20060619_utm.dem -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20060619_utm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20060619_utm.inc -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20060619_utm.lv_theta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20060619_utm.lv_theta -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20060828-20061211_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20060828-20061211_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20060828-20061211_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061002-20070219_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061002-20070219_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20061002-20070219_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061002-20070430_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061002-20070430_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20061002-20070430_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061106-20061211_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061106-20061211_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20061106-20061211_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061106-20070115_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061106-20070115_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20061106-20070115_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061106-20070326_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061106-20070326_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20061106-20070326_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061211-20070709_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061211-20070709_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20061211-20070709_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061211-20070813_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20061211-20070813_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20061211-20070813_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070115-20070326_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070115-20070326_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20070115-20070326_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070115-20070917_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070115-20070917_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20070115-20070917_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070219-20070430_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070219-20070430_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20070219-20070430_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070219-20070604_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070219-20070604_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20070219-20070604_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070326-20070917_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070326-20070917_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20070326-20070917_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070430-20070604_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070430-20070604_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20070430-20070604_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070604-20070709_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070604-20070709_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20070604-20070709_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070709-20070813_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/20070709-20070813_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/20070709-20070813_utm.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/bad_epochs_headers: -------------------------------------------------------------------------------- 1 | 60619_slc.par 2 | 0060828_slc.par 3 | 0061002_slc.par 4 | 0061106_slc.par 5 | 20061211_slc.par 6 | 0070115_slc.par 7 | 0070219_slc.par 8 | 0070326_slc.par 9 | 2070430_slc.par 10 | 2070604_slc.par 11 | 2070709_slc.par 12 | 2070813_slc.par 13 | 20007_slc.par 14 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/bad_epochs_ifms_17: -------------------------------------------------------------------------------- 1 | 60619-20061002_utm.unw 2 | 60828-20061211_utm.unw 3 | 61002-20070219_utm.unw 4 | 61002-20070430_utm.unw 5 | 61106-20061211_utm.unw 6 | 61106-20070115_utm.unw 7 | 61106-20070326_utm.unw 8 | 61211-20070709_utm.unw 9 | 61211-20070813_utm.unw 10 | 70115-20070326_utm.unw 11 | 70115-20070917_utm.unw 12 | 0219-20070430_utm.unw 13 | 0219-20070604_utm.unw 14 | 26-20070917_utm.unw 15 | 70430-20070604_utm.unw 16 | 70604-20070709_utm.unw 17 | 70709-20070813_utm.unw 18 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/cropped_lookup_table.lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/gamma_obs/cropped_lookup_table.lt -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/headers: -------------------------------------------------------------------------------- 1 | tests/test_data/small_test/gamma_obs/20060619_slc.par 2 | tests/test_data/small_test/gamma_obs/20060828_slc.par 3 | tests/test_data/small_test/gamma_obs/20061002_slc.par 4 | tests/test_data/small_test/gamma_obs/20061106_slc.par 5 | tests/test_data/small_test/gamma_obs/20061211_slc.par 6 | tests/test_data/small_test/gamma_obs/20070115_slc.par 7 | tests/test_data/small_test/gamma_obs/20070219_slc.par 8 | tests/test_data/small_test/gamma_obs/20070326_slc.par 9 | tests/test_data/small_test/gamma_obs/20070430_slc.par 10 | tests/test_data/small_test/gamma_obs/20070604_slc.par 11 | tests/test_data/small_test/gamma_obs/20070709_slc.par 12 | tests/test_data/small_test/gamma_obs/20070813_slc.par 13 | tests/test_data/small_test/gamma_obs/20070917_slc.par 14 | -------------------------------------------------------------------------------- /tests/test_data/small_test/gamma_obs/tif_17: -------------------------------------------------------------------------------- 1 | 20060619-20061002_utm.tif 2 | 20060828-20061211_utm.tif 3 | 20061002-20070219_utm.tif 4 | 20061002-20070430_utm.tif 5 | 20061106-20061211_utm.tif 6 | 20061106-20070115_utm.tif 7 | 20061106-20070326_utm.tif 8 | 20061211-20070709_utm.tif 9 | 20061211-20070813_utm.tif 10 | 20070115-20070326_utm.tif 11 | 20070115-20070917_utm.tif 12 | 20070219-20070430_utm.tif 13 | 20070219-20070604_utm.tif 14 | 20070326-20070917_utm.tif 15 | 20070430-20070604_utm.tif 16 | 20070604-20070709_utm.tif 17 | 20070709-20070813_utm.tif 18 | -------------------------------------------------------------------------------- /tests/test_data/small_test/linrate/linear_error.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/linrate/linear_error.npy -------------------------------------------------------------------------------- /tests/test_data/small_test/linrate/linear_intercept.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/linrate/linear_intercept.npy -------------------------------------------------------------------------------- /tests/test_data/small_test/linrate/linear_rate.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/linrate/linear_rate.npy -------------------------------------------------------------------------------- /tests/test_data/small_test/linrate/linear_rsquared.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/linrate/linear_rsquared.npy -------------------------------------------------------------------------------- /tests/test_data/small_test/linrate/linear_samples.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/linrate/linear_samples.npy -------------------------------------------------------------------------------- /tests/test_data/small_test/linrate/tscuml_0.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/linrate/tscuml_0.npy -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/bad_epochs_ifms_17: -------------------------------------------------------------------------------- 1 | geo_019-061002.unw 2 | geo_06880111.unw 3 | geo_061002-070219.unw 4 | geo_061002070430.unw 5 | geo_06110061211.unw 6 | geo_06116-070115.unw 7 | geo_06106-070326.unw 8 | geo_061211-070709.unw 9 | geo_06121-070813.unw 10 | geo_07011-070326.unw 11 | geo_070115070917.unw 12 | geo_070219-70430.unw 13 | geo_070219-00604.unw 14 | geo_070326-0917.unw 15 | geo_070430070604.unw 16 | geo_0706070709.unw 17 | geo_07070070813.unw 18 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_060619-061002.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_060619-061002.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_060619-061002.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 060619 9 | DATE12 060619-061002 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_060828-061211.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_060828-061211.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_060828-061211.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 060828 9 | DATE12 060828-061211 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061002-070219.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_061002-070219.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061002-070219.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061002 9 | DATE12 061002-070219 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061002-070430.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_061002-070430.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061002-070430.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061002 9 | DATE12 061002-070430 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061106-061211.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_061106-061211.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061106-061211.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061106 9 | DATE12 061106-061211 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061106-070115.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_061106-070115.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061106-070115.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061106 9 | DATE12 061106-070115 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061106-070326.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_061106-070326.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061106-070326.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061106 9 | DATE12 061106-070326 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061211-070709.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_061211-070709.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061211-070709.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061211 9 | DATE12 061211-070709 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061211-070813.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_061211-070813.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_061211-070813.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061211 9 | DATE12 061211-070813 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070115-070326.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_070115-070326.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070115-070326.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070115 9 | DATE12 070115-070326 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070115-070917.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_070115-070917.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070115-070917.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070115 9 | DATE12 070115-070917 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070219-070430.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_070219-070430.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070219-070430.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070219 9 | DATE12 070219-070430 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070219-070604.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_070219-070604.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070219-070604.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070219 9 | DATE12 070219-070604 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070326-070917.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_070326-070917.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070326-070917.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070326 9 | DATE12 070326-070917 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070430-070604.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_070430-070604.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070430-070604.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070430 9 | DATE12 070430-070604 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070604-070709.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_070604-070709.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070604-070709.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070604 9 | DATE12 070604-070709 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070709-070813.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/geo_070709-070813.unw -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/geo_070709-070813.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070709 9 | DATE12 070709-070813 10 | -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/roipac_test_trimmed.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/roipac_obs/roipac_test_trimmed.dem -------------------------------------------------------------------------------- /tests/test_data/small_test/roipac_obs/roipac_test_trimmed.dem.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.91 4 | Y_FIRST -34.17 5 | X_STEP 0.000833333 6 | Y_STEP -0.000833333 7 | X_UNIT degrees 8 | Y_UNIT degrees 9 | Z_OFFSET 0 10 | Z_SCALE 1 11 | PROJECTION LATLON 12 | DATUM WGS84 13 | -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_060619-061002_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_060619-061002_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_060828-061211_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_060828-061211_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_061002-070219_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_061002-070219_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_061002-070430_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_061002-070430_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_061106-061211_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_061106-061211_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_061106-070115_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_061106-070115_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_061106-070326_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_061106-070326_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_061211-070709_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_061211-070709_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_061211-070813_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_061211-070813_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_070115-070326_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_070115-070326_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_070115-070917_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_070115-070917_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_070219-070430_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_070219-070430_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_070219-070604_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_070219-070604_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_070326-070917_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_070326-070917_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_070430-070604_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_070430-070604_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_070604-070709_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_070604-070709_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/geo_070709-070813_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/small_test/tif/geo_070709-070813_unw.tif -------------------------------------------------------------------------------- /tests/test_data/small_test/tif/ifms_17: -------------------------------------------------------------------------------- 1 | geo_060619-061002_unw.tif 2 | geo_060828-061211_unw.tif 3 | geo_061002-070219_unw.tif 4 | geo_061002-070430_unw.tif 5 | geo_061106-061211_unw.tif 6 | geo_061106-070115_unw.tif 7 | geo_061106-070326_unw.tif 8 | geo_061211-070709_unw.tif 9 | geo_061211-070813_unw.tif 10 | geo_070115-070326_unw.tif 11 | geo_070115-070917_unw.tif 12 | geo_070219-070430_unw.tif 13 | geo_070219-070604_unw.tif 14 | geo_070326-070917_unw.tif 15 | geo_070430-070604_unw.tif 16 | geo_070604-070709_unw.tif 17 | geo_070709-070813_unw.tif 18 | -------------------------------------------------------------------------------- /tests/test_data/small_test/vcm/alpha.csv: -------------------------------------------------------------------------------- 1 | 0.14375 2 | 1.9182 3 | 1.1942 4 | 1.6152 5 | 1.1953 6 | 0.72399 7 | 1.5768 8 | 0.65021 9 | 1.505 10 | 0.94893 11 | 0.85524 12 | 0.66165 13 | 0.79467 14 | 0.71407 15 | 1.8778 16 | 0.78962 17 | 0.38688 18 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20060619-20061002_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20060619-20061002_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20060619-20061002_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20060619-20061002_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20060619-20061002_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20060619_utm.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20060619_utm.dem -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20060619_utm_dem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20060619_utm_dem.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20060828-20061211_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20060828-20061211_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20060828-20061211_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20060828-20061211_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20060828-20061211_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20060828_slc.par: -------------------------------------------------------------------------------- 1 | # GAMMA SLC par file created from ROI_PAC rsc files MCG 28/01/2016 2 | date: 2006 08 28 12 18 9.6906 3 | radar_frequency: 5.334694994e+09 Hz 4 | incidence_angle: 22.9671 degrees 5 | heading: 193.1522256 degrees 6 | azimuth_angle: 90.0000 degrees 7 | range_samples: 8630 8 | azimuth_lines: 8571 9 | range_looks: 8 10 | azimuth_looks: 2 11 | range_pixel_spacing: 18.635856 m 12 | azimuth_pixel_spacing: 28.136512 m 13 | near_range_slc: 802867.7247 m 14 | prf: 486.4863103 Hz 15 | sar_to_earth_center: 7080600.3965 m 16 | earth_radius_below_sensor: 6371577.2590 m 17 | earth_semi_major_axis: 6378137.0000 m 18 | earth_semi_minor_axis: 6356752.3141 m -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061002-20070219_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061002-20070219_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061002-20070219_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061002-20070219_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061002-20070219_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061002-20070430_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061002-20070430_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061002-20070430_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061002-20070430_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061002-20070430_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061106-20061211_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061106-20061211_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061106-20061211_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061106-20061211_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061106-20061211_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061106-20070115_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061106-20070115_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061106-20070115_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061106-20070115_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061106-20070115_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061106-20070326_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061106-20070326_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061106-20070326_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061106-20070326_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061106-20070326_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061211-20070709_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061211-20070709_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061211-20070709_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061211-20070709_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061211-20070709_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061211-20070813_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061211-20070813_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061211-20070813_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20061211-20070813_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20061211-20070813_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070115-20070326_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070115-20070326_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070115-20070326_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070115-20070326_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070115-20070326_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070115-20070917_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070115-20070917_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070115-20070917_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070115-20070917_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070115-20070917_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070219-20070430_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070219-20070430_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070219-20070430_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070219-20070430_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070219-20070430_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070219-20070604_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070219-20070604_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070219-20070604_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070219-20070604_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070219-20070604_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070219_slc.par: -------------------------------------------------------------------------------- 1 | # GAMMA SLC par file created from ROI_PAC rsc files MCG 28/01/2016 2 | date: 2007 02 19 1 18 3.124 3 | radar_frequency: 5.334694994e+09 Hz 4 | incidence_angle: 22.9671 degrees 5 | heading: 193.1522256 degrees 6 | azimuth_angle: 90.0000 degrees 7 | range_samples: 8630 8 | azimuth_lines: 8571 9 | range_looks: 8 10 | azimuth_looks: 2 11 | range_pixel_spacing: 18.635856 m 12 | azimuth_pixel_spacing: 28.136512 m 13 | near_range_slc: 802867.7247 m 14 | prf: 486.4863103 Hz 15 | sar_to_earth_center: 7080600.3965 m 16 | earth_radius_below_sensor: 6371577.2590 m 17 | earth_semi_major_axis: 6378137.0000 m 18 | earth_semi_minor_axis: 6356752.3141 m -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070326-20070917_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070326-20070917_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070326-20070917_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070326-20070917_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070326-20070917_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070430-20070604_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070430-20070604_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070430-20070604_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070430-20070604_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070430-20070604_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070604-20070709_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070604-20070709_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070604-20070709_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070604-20070709_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070604-20070709_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070709-20070813_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070709-20070813_utm.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070709-20070813_utm.unw -------------------------------------------------------------------------------- /tests/test_data/system/gamma/20070709-20070813_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/20070709-20070813_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/gamma/cropped_lookup_table.lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/gamma/cropped_lookup_table.lt -------------------------------------------------------------------------------- /tests/test_data/system/gamma/header_list.txt: -------------------------------------------------------------------------------- 1 | tests/test_data/system/gamma/20060619_slc.par 2 | tests/test_data/system/gamma/20060828_slc.par 3 | tests/test_data/system/gamma/20061002_slc.par 4 | tests/test_data/system/gamma/20061106_slc.par 5 | tests/test_data/system/gamma/20061211_slc.par 6 | tests/test_data/system/gamma/20070115_slc.par 7 | tests/test_data/system/gamma/20070219_slc.par 8 | tests/test_data/system/gamma/20070326_slc.par 9 | tests/test_data/system/gamma/20070430_slc.par 10 | tests/test_data/system/gamma/20070604_slc.par 11 | tests/test_data/system/gamma/20070709_slc.par 12 | tests/test_data/system/gamma/20070813_slc.par 13 | tests/test_data/system/gamma/20070917_slc.par 14 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20060619-20061002_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20060619-20061002_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20060619-20061002_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20060619_utm_dem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20060619_utm_dem.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20060828-20061211_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20060828-20061211_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20060828-20061211_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061002-20070219_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061002-20070219_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20061002-20070219_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061002-20070430_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061002-20070430_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20061002-20070430_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061106-20061211_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061106-20061211_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20061106-20061211_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061106-20070115_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061106-20070115_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20061106-20070115_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061106-20070326_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061106-20070326_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20061106-20070326_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061211-20070709_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061211-20070709_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20061211-20070709_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061211-20070813_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20061211-20070813_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20061211-20070813_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070115-20070326_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070115-20070326_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20070115-20070326_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070115-20070917_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070115-20070917_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20070115-20070917_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070219-20070430_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070219-20070430_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20070219-20070430_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070219-20070604_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070219-20070604_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20070219-20070604_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070326-20070917_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070326-20070917_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20070326-20070917_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070430-20070604_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070430-20070604_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20070430-20070604_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070604-20070709_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070604-20070709_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20070604-20070709_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070709-20070813_base.par: -------------------------------------------------------------------------------- 1 | initial_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 2 | initial_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 3 | precision_baseline(TCN): 0.1585592 15.3525463 9.7718029 m m m 4 | precision_baseline_rate: 0.0000000 -0.0439410 0.0177195 m/s m/s m/s 5 | unwrap_phase_constant: 0.00000 radians 6 | 7 | -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/20070709-20070813_utm_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/geotiff/20070709-20070813_utm_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/geotiff/header_list.txt: -------------------------------------------------------------------------------- 1 | tests/test_data/system/geotiff/20060619_slc.par 2 | tests/test_data/system/geotiff/20060828_slc.par 3 | tests/test_data/system/geotiff/20061002_slc.par 4 | tests/test_data/system/geotiff/20061106_slc.par 5 | tests/test_data/system/geotiff/20061211_slc.par 6 | tests/test_data/system/geotiff/20070115_slc.par 7 | tests/test_data/system/geotiff/20070219_slc.par 8 | tests/test_data/system/geotiff/20070326_slc.par 9 | tests/test_data/system/geotiff/20070430_slc.par 10 | tests/test_data/system/geotiff/20070604_slc.par 11 | tests/test_data/system/geotiff/20070709_slc.par 12 | tests/test_data/system/geotiff/20070813_slc.par 13 | tests/test_data/system/geotiff/20070917_slc.par -------------------------------------------------------------------------------- /tests/test_data/system/roipac/dem/roipac_test_trimmed.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/dem/roipac_test_trimmed.dem -------------------------------------------------------------------------------- /tests/test_data/system/roipac/dem/roipac_test_trimmed.dem.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.91 4 | Y_FIRST -34.17 5 | X_STEP 0.000833333 6 | Y_STEP -0.000833333 7 | X_UNIT degrees 8 | Y_UNIT degrees 9 | Z_OFFSET 0 10 | Z_SCALE 1 11 | PROJECTION LATLON 12 | DATUM WGS84 13 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_060619-061002.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 060619 9 | DATE12 060619-061002 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_060828-061211.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 060828 9 | DATE12 060828-061211 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_061002-070219.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061002 9 | DATE12 061002-070219 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_061002-070430.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061002 9 | DATE12 061002-070430 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_061106-061211.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061106 9 | DATE12 061106-061211 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_061106-070115.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061106 9 | DATE12 061106-070115 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_061106-070326.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061106 9 | DATE12 061106-070326 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_061211-070709.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061211 9 | DATE12 061211-070709 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_061211-070813.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061211 9 | DATE12 061211-070813 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_070115-070326.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070115 9 | DATE12 070115-070326 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_070115-070917.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070115 9 | DATE12 070115-070917 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_070219-070430.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070219 9 | DATE12 070219-070430 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_070219-070604.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070219 9 | DATE12 070219-070604 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_070326-070917.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070326 9 | DATE12 070326-070917 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_070430-070604.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070430 9 | DATE12 070430-070604 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_070604-070709.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070604 9 | DATE12 070604-070709 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/headers/geo_070709-070813.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070709 9 | DATE12 070709-070813 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_060619-061002.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_060619-061002.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_060619-061002.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 060619 9 | DATE12 060619-061002 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_060619-061002_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_060619-061002_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_060828-061211.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_060828-061211.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_060828-061211.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 060828 9 | DATE12 060828-061211 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_060828-061211_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_060828-061211_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061002-070219.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061002-070219.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061002-070219.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061002 9 | DATE12 061002-070219 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061002-070219_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061002-070219_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061002-070430.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061002-070430.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061002-070430.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061002 9 | DATE12 061002-070430 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061002-070430_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061002-070430_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061106-061211.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061106-061211.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061106-061211.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061106 9 | DATE12 061106-061211 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061106-061211_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061106-061211_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061106-070115.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061106-070115.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061106-070115.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061106 9 | DATE12 061106-070115 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061106-070115_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061106-070115_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061106-070326.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061106-070326.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061106-070326.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061106 9 | DATE12 061106-070326 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061106-070326_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061106-070326_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061211-070709.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061211-070709.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061211-070709.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061211 9 | DATE12 061211-070709 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061211-070709_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061211-070709_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061211-070813.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061211-070813.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061211-070813.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 061211 9 | DATE12 061211-070813 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_061211-070813_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_061211-070813_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070115-070326.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070115-070326.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070115-070326.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070115 9 | DATE12 070115-070326 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070115-070326_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070115-070326_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070115-070917.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070115-070917.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070115-070917.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070115 9 | DATE12 070115-070917 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070115-070917_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070115-070917_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070219-070430.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070219-070430.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070219-070430.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070219 9 | DATE12 070219-070430 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070219-070430_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070219-070430_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070219-070604.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070219-070604.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070219-070604.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070219 9 | DATE12 070219-070604 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070219-070604_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070219-070604_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070326-070917.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070326-070917.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070326-070917.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070326 9 | DATE12 070326-070917 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070326-070917_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070326-070917_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070430-070604.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070430-070604.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070430-070604.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070430 9 | DATE12 070430-070604 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070430-070604_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070430-070604_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070604-070709.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070604-070709.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070604-070709.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070604 9 | DATE12 070604-070709 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070604-070709_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070604-070709_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070709-070813.unw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070709-070813.unw -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070709-070813.unw.rsc: -------------------------------------------------------------------------------- 1 | WIDTH 47 2 | FILE_LENGTH 72 3 | X_FIRST 150.910000000 4 | X_STEP 0.000833333 5 | Y_FIRST -34.170000000 6 | Y_STEP -0.000833333 7 | WAVELENGTH 0.0562356424 8 | DATE 070709 9 | DATE12 070709-070813 10 | -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/geo_070709-070813_unw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/geo_070709-070813_unw.tif -------------------------------------------------------------------------------- /tests/test_data/system/roipac/interferograms/roipac_test_trimmed_dem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/tests/test_data/system/roipac/interferograms/roipac_test_trimmed_dem.tif -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoscienceAustralia/PyRate/3579612cbfec20e43cb2c7b8311c50851ae4fc4a/utils/__init__.py -------------------------------------------------------------------------------- /utils/list_creator.sh: -------------------------------------------------------------------------------- 1 | """ 2 | This script generates input lists for PyRate baseed on the PyGAMMA workflow for descending frame S1 data in Australia. 3 | Small modifications are necessary if using ascending frame data 4 | Usage: . list_creator.sh 5 | """ 6 | 7 | # Provide path to the Gamma folder titled with the frame name 8 | DIR="/path/to/frame/T045D" 9 | ls -d "$DIR"/*/*/*unw.tif > ifgs.list 10 | # "coh" is "cc" in asending frame data 11 | ls -d "$DIR"/*/*/*flat*coh.tif > cohfiles.list 12 | ls -d "$DIR"/*/*/*base.par > baseline.list 13 | # Change "VV" depending on polarisation of data. 14 | ls -d "$DIR"/*/*/*VV*mli.par > headers.list 15 | 16 | wc -l *.list 17 | --------------------------------------------------------------------------------