├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── Makefile ├── README.md ├── README.rst ├── __init__.py ├── external └── setting_manager_ui │ ├── __init__.py │ ├── json_settings.py │ ├── setting_ui.py │ └── src │ ├── __init__.py │ └── object_with_checkbox.py ├── help ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── authors.rst │ ├── conf.py │ ├── contact.rst │ ├── contributing.rst │ ├── data_preparation.rst │ ├── data_preparation │ ├── egms.rst │ ├── gmtsar.rst │ ├── miaplpy.rst │ ├── mintpy.rst │ ├── sarscape.rst │ ├── sarvey.rst │ └── stamps.rst │ ├── data_structure.rst │ ├── description.rst │ ├── index.rst │ ├── installation.rst │ ├── license.rst │ ├── readme.rst │ ├── sample_data.rst │ └── usage.rst ├── history.md ├── i18n └── af.ts ├── icon.png ├── icon.svg ├── insar_explorer.py ├── insar_explorer_dockwidget.py ├── insar_explorer_dockwidget_base.ui ├── metadata.txt ├── pb_tool.cfg ├── plugin_upload.py ├── pylintrc ├── resources.py ├── resources.qrc ├── scripts ├── compile-strings.sh ├── run-env-linux.sh └── update-strings.sh ├── src ├── about.py ├── color_maps.py ├── config │ └── config.json ├── drawing_tools │ └── polygon_drawing_tool.py ├── get_version.py ├── gui_controller.py ├── layer_utils │ ├── grd_layer.py │ ├── raster_layer.py │ └── vector_layer.py ├── map_click_handler.py ├── map_setting.py ├── model_fitting.py ├── mpl_toolbar.py ├── plot_timeseries.py ├── setup_frames.py └── ui_windows │ ├── color_picker.py │ └── message_box.py └── test ├── __init__.py ├── flake8.ini ├── pycodestyle.ini ├── qgis_interface.py ├── tenbytenraster.asc ├── tenbytenraster.asc.aux.xml ├── tenbytenraster.keywords ├── tenbytenraster.lic ├── tenbytenraster.prj ├── tenbytenraster.qml ├── test_init.py ├── test_insar_explorer_dockwidget.py ├── test_qgis_environment.py ├── test_resources.py ├── test_translations.py └── utilities.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | 2 | .. include:: help/source/readme.rst 3 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/__init__.py -------------------------------------------------------------------------------- /external/setting_manager_ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/setting_manager_ui/json_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/external/setting_manager_ui/json_settings.py -------------------------------------------------------------------------------- /external/setting_manager_ui/setting_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/external/setting_manager_ui/setting_ui.py -------------------------------------------------------------------------------- /external/setting_manager_ui/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/setting_manager_ui/src/object_with_checkbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/external/setting_manager_ui/src/object_with_checkbox.py -------------------------------------------------------------------------------- /help/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/Makefile -------------------------------------------------------------------------------- /help/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/make.bat -------------------------------------------------------------------------------- /help/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/requirements.txt -------------------------------------------------------------------------------- /help/source/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/authors.rst -------------------------------------------------------------------------------- /help/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/conf.py -------------------------------------------------------------------------------- /help/source/contact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/contact.rst -------------------------------------------------------------------------------- /help/source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/contributing.rst -------------------------------------------------------------------------------- /help/source/data_preparation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/data_preparation.rst -------------------------------------------------------------------------------- /help/source/data_preparation/egms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/data_preparation/egms.rst -------------------------------------------------------------------------------- /help/source/data_preparation/gmtsar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/data_preparation/gmtsar.rst -------------------------------------------------------------------------------- /help/source/data_preparation/miaplpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/data_preparation/miaplpy.rst -------------------------------------------------------------------------------- /help/source/data_preparation/mintpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/data_preparation/mintpy.rst -------------------------------------------------------------------------------- /help/source/data_preparation/sarscape.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/data_preparation/sarscape.rst -------------------------------------------------------------------------------- /help/source/data_preparation/sarvey.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/data_preparation/sarvey.rst -------------------------------------------------------------------------------- /help/source/data_preparation/stamps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/data_preparation/stamps.rst -------------------------------------------------------------------------------- /help/source/data_structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/data_structure.rst -------------------------------------------------------------------------------- /help/source/description.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/description.rst -------------------------------------------------------------------------------- /help/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/index.rst -------------------------------------------------------------------------------- /help/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/installation.rst -------------------------------------------------------------------------------- /help/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/license.rst -------------------------------------------------------------------------------- /help/source/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/readme.rst -------------------------------------------------------------------------------- /help/source/sample_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/sample_data.rst -------------------------------------------------------------------------------- /help/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/help/source/usage.rst -------------------------------------------------------------------------------- /history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/history.md -------------------------------------------------------------------------------- /i18n/af.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/i18n/af.ts -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/icon.png -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/icon.svg -------------------------------------------------------------------------------- /insar_explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/insar_explorer.py -------------------------------------------------------------------------------- /insar_explorer_dockwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/insar_explorer_dockwidget.py -------------------------------------------------------------------------------- /insar_explorer_dockwidget_base.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/insar_explorer_dockwidget_base.ui -------------------------------------------------------------------------------- /metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/metadata.txt -------------------------------------------------------------------------------- /pb_tool.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/pb_tool.cfg -------------------------------------------------------------------------------- /plugin_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/plugin_upload.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/pylintrc -------------------------------------------------------------------------------- /resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/resources.py -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/resources.qrc -------------------------------------------------------------------------------- /scripts/compile-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/scripts/compile-strings.sh -------------------------------------------------------------------------------- /scripts/run-env-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/scripts/run-env-linux.sh -------------------------------------------------------------------------------- /scripts/update-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/scripts/update-strings.sh -------------------------------------------------------------------------------- /src/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/about.py -------------------------------------------------------------------------------- /src/color_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/color_maps.py -------------------------------------------------------------------------------- /src/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/config/config.json -------------------------------------------------------------------------------- /src/drawing_tools/polygon_drawing_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/drawing_tools/polygon_drawing_tool.py -------------------------------------------------------------------------------- /src/get_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/get_version.py -------------------------------------------------------------------------------- /src/gui_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/gui_controller.py -------------------------------------------------------------------------------- /src/layer_utils/grd_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/layer_utils/grd_layer.py -------------------------------------------------------------------------------- /src/layer_utils/raster_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/layer_utils/raster_layer.py -------------------------------------------------------------------------------- /src/layer_utils/vector_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/layer_utils/vector_layer.py -------------------------------------------------------------------------------- /src/map_click_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/map_click_handler.py -------------------------------------------------------------------------------- /src/map_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/map_setting.py -------------------------------------------------------------------------------- /src/model_fitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/model_fitting.py -------------------------------------------------------------------------------- /src/mpl_toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/mpl_toolbar.py -------------------------------------------------------------------------------- /src/plot_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/plot_timeseries.py -------------------------------------------------------------------------------- /src/setup_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/setup_frames.py -------------------------------------------------------------------------------- /src/ui_windows/color_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/ui_windows/color_picker.py -------------------------------------------------------------------------------- /src/ui_windows/message_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/src/ui_windows/message_box.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/flake8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/flake8.ini -------------------------------------------------------------------------------- /test/pycodestyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/pycodestyle.ini -------------------------------------------------------------------------------- /test/qgis_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/qgis_interface.py -------------------------------------------------------------------------------- /test/tenbytenraster.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/tenbytenraster.asc -------------------------------------------------------------------------------- /test/tenbytenraster.asc.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/tenbytenraster.asc.aux.xml -------------------------------------------------------------------------------- /test/tenbytenraster.keywords: -------------------------------------------------------------------------------- 1 | title: Tenbytenraster 2 | -------------------------------------------------------------------------------- /test/tenbytenraster.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/tenbytenraster.lic -------------------------------------------------------------------------------- /test/tenbytenraster.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/tenbytenraster.prj -------------------------------------------------------------------------------- /test/tenbytenraster.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/tenbytenraster.qml -------------------------------------------------------------------------------- /test/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/test_init.py -------------------------------------------------------------------------------- /test/test_insar_explorer_dockwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/test_insar_explorer_dockwidget.py -------------------------------------------------------------------------------- /test/test_qgis_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/test_qgis_environment.py -------------------------------------------------------------------------------- /test/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/test_resources.py -------------------------------------------------------------------------------- /test/test_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/test_translations.py -------------------------------------------------------------------------------- /test/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luhipi/insar-explorer/HEAD/test/utilities.py --------------------------------------------------------------------------------