├── .github └── workflows │ ├── python_test.yaml │ └── python_test_conda.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── __init__.py ├── data ├── diff_ingram_test_MAError_grid_search.jpeg ├── diff_ingram_test_deramped.jpeg ├── diff_ingram_test_deramped_fft.jpeg ├── diff_ingram_test_input_field_vs_phase_ramp.jpeg ├── diff_ingram_test_input_field_vs_phase_ramp_fft.jpeg └── diff_ingram_test_spectrum_fft.jpeg ├── environment.yml ├── remove_phase_ramp.py ├── remove_phase_ramp_example.ipynb ├── remove_phase_ramp_fft.py ├── remove_phase_ramp_fft_example.ipynb ├── requirements.txt ├── tests ├── __init__.py └── test_synthplane_gen.py └── utils ├── __init__.py ├── make_dir.py ├── mpl_utils.py └── raster_io.py /.github/workflows/python_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/.github/workflows/python_test.yaml -------------------------------------------------------------------------------- /.github/workflows/python_test_conda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/.github/workflows/python_test_conda.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/diff_ingram_test_MAError_grid_search.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/data/diff_ingram_test_MAError_grid_search.jpeg -------------------------------------------------------------------------------- /data/diff_ingram_test_deramped.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/data/diff_ingram_test_deramped.jpeg -------------------------------------------------------------------------------- /data/diff_ingram_test_deramped_fft.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/data/diff_ingram_test_deramped_fft.jpeg -------------------------------------------------------------------------------- /data/diff_ingram_test_input_field_vs_phase_ramp.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/data/diff_ingram_test_input_field_vs_phase_ramp.jpeg -------------------------------------------------------------------------------- /data/diff_ingram_test_input_field_vs_phase_ramp_fft.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/data/diff_ingram_test_input_field_vs_phase_ramp_fft.jpeg -------------------------------------------------------------------------------- /data/diff_ingram_test_spectrum_fft.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/data/diff_ingram_test_spectrum_fft.jpeg -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/environment.yml -------------------------------------------------------------------------------- /remove_phase_ramp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/remove_phase_ramp.py -------------------------------------------------------------------------------- /remove_phase_ramp_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/remove_phase_ramp_example.ipynb -------------------------------------------------------------------------------- /remove_phase_ramp_fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/remove_phase_ramp_fft.py -------------------------------------------------------------------------------- /remove_phase_ramp_fft_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/remove_phase_ramp_fft_example.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_synthplane_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/tests/test_synthplane_gen.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/make_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/utils/make_dir.py -------------------------------------------------------------------------------- /utils/mpl_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/utils/mpl_utils.py -------------------------------------------------------------------------------- /utils/raster_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eciraci/InSAR_remove_phase_ramp/HEAD/utils/raster_io.py --------------------------------------------------------------------------------