├── .gitignore ├── EZINSAR_BIN ├── 3rdparty │ ├── README.md │ ├── extendPoly.m │ ├── read_kml.m │ ├── struct2xml.m │ ├── unpackFrame_ALOS2_ezinsar.py │ ├── unpackFrame_PAZ.py │ ├── unpackFrame_TSX_ezinsar.py │ └── xml2struct.m ├── EZ_InSAR.m ├── GUIMIESAR.m ├── ISCE_functions │ ├── README.md │ ├── conversionstacks_S1_IW.m │ ├── conversionstacks_SM.m │ ├── dem_box_cal.m │ ├── isce_preprocessing_S1_IW.m │ ├── isce_preprocessing_SM.m │ ├── isce_switch_stackfunctions.m │ ├── iscedisplayifg.m │ ├── isceprocessing.m │ ├── parallelizationstepISCE.m │ ├── removewatermask_ISCEprocessing_SM.m │ ├── runISCEallstep.m │ └── selectionofstack.m ├── MintPy_functions │ ├── README.md │ ├── mintpy_API_plot_trans.m │ ├── mintpy_API_save.m │ ├── mintpy_API_tsview.m │ ├── mintpy_API_view.m │ ├── mintpy_allstep.m │ ├── mintpy_create_deramp_mask.m │ ├── mintpy_network_plot.m │ ├── mintpy_parameters.m │ ├── mintpy_processing.m │ └── smallbaselineApp.cfg ├── SLC_management │ ├── GUIpathdirectory.m │ ├── README.md │ ├── createlistSLC.m │ ├── datemodlist.m │ ├── displayextensionALOS2SM.m │ ├── displayextensionCSK.m │ ├── displayextensionS1.m │ ├── displayextensionTSXPAZ.m │ ├── downloaderSLC.m │ ├── initparmslc.m │ ├── managePOLTSXPAZ.m │ ├── manageSLC.m │ ├── manageparamaterSLC.m │ ├── parmsSLC.mat │ ├── readxmlannotationS1.m │ └── splitTSXPAZdualpolheader.m ├── StaMPS_functions │ ├── GUISBASnetwork.fig │ ├── GUIstampsparameters.fig │ ├── README.md │ ├── runGUISBASnetwork.m │ ├── runGUIstampsparameters.m │ ├── stampsMERGEDprocessing.m │ ├── stampsPSprocessing.m │ ├── stampsSBASprocessing.m │ └── stampsprocessing.m ├── Suppfunctions │ ├── README.md │ ├── check_tool_versions.m │ ├── coarse_CSK_baselines.py │ ├── coarse_Sentinel_1_baselines.py │ ├── coarse_TSX_PAZ_baselines.py │ ├── detrending.m │ ├── read_ALOS2_extent.py │ ├── readpathinformation.m │ ├── run_SLCcropStack_mod.csh │ ├── run_download_DEM.sh │ ├── sb_find_ETALAB_network.m │ ├── sb_find_mod.m │ ├── string2hash.m │ ├── update_progressbar_MIESAR.m │ └── update_textinformation.m ├── addpath_EZINSAR.m ├── docs │ ├── EZ-InSAR_tutorial-Part-II.md │ ├── EZINSAR_interface.jpg │ ├── EZ_InSAR_manual_v2_2_1_beta.pdf │ ├── config_InSARenv.template │ ├── guide_new_sensors.md │ └── installation_instructions_mamba.md ├── pathinformation.txt └── private │ ├── AGEO-transparent.png │ ├── EZ_InSAR_logo.gif │ ├── SWJTULogo.png │ ├── UCDlogo.png │ ├── atlanticarealogo.png │ ├── icrag-logo.png │ └── warning.png ├── LICENSE ├── README.md ├── changelog.md └── startup.m /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /EZINSAR_BIN/3rdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/3rdparty/README.md -------------------------------------------------------------------------------- /EZINSAR_BIN/3rdparty/extendPoly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/3rdparty/extendPoly.m -------------------------------------------------------------------------------- /EZINSAR_BIN/3rdparty/read_kml.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/3rdparty/read_kml.m -------------------------------------------------------------------------------- /EZINSAR_BIN/3rdparty/struct2xml.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/3rdparty/struct2xml.m -------------------------------------------------------------------------------- /EZINSAR_BIN/3rdparty/unpackFrame_ALOS2_ezinsar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/3rdparty/unpackFrame_ALOS2_ezinsar.py -------------------------------------------------------------------------------- /EZINSAR_BIN/3rdparty/unpackFrame_PAZ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/3rdparty/unpackFrame_PAZ.py -------------------------------------------------------------------------------- /EZINSAR_BIN/3rdparty/unpackFrame_TSX_ezinsar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/3rdparty/unpackFrame_TSX_ezinsar.py -------------------------------------------------------------------------------- /EZINSAR_BIN/3rdparty/xml2struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/3rdparty/xml2struct.m -------------------------------------------------------------------------------- /EZINSAR_BIN/EZ_InSAR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/EZ_InSAR.m -------------------------------------------------------------------------------- /EZINSAR_BIN/GUIMIESAR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/GUIMIESAR.m -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/README.md -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/conversionstacks_S1_IW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/conversionstacks_S1_IW.m -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/conversionstacks_SM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/conversionstacks_SM.m -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/dem_box_cal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/dem_box_cal.m -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/isce_preprocessing_S1_IW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/isce_preprocessing_S1_IW.m -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/isce_preprocessing_SM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/isce_preprocessing_SM.m -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/isce_switch_stackfunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/isce_switch_stackfunctions.m -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/iscedisplayifg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/iscedisplayifg.m -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/isceprocessing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/isceprocessing.m -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/parallelizationstepISCE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/parallelizationstepISCE.m -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/removewatermask_ISCEprocessing_SM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/removewatermask_ISCEprocessing_SM.m -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/runISCEallstep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/runISCEallstep.m -------------------------------------------------------------------------------- /EZINSAR_BIN/ISCE_functions/selectionofstack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/ISCE_functions/selectionofstack.m -------------------------------------------------------------------------------- /EZINSAR_BIN/MintPy_functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/MintPy_functions/README.md -------------------------------------------------------------------------------- /EZINSAR_BIN/MintPy_functions/mintpy_API_plot_trans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/MintPy_functions/mintpy_API_plot_trans.m -------------------------------------------------------------------------------- /EZINSAR_BIN/MintPy_functions/mintpy_API_save.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/MintPy_functions/mintpy_API_save.m -------------------------------------------------------------------------------- /EZINSAR_BIN/MintPy_functions/mintpy_API_tsview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/MintPy_functions/mintpy_API_tsview.m -------------------------------------------------------------------------------- /EZINSAR_BIN/MintPy_functions/mintpy_API_view.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/MintPy_functions/mintpy_API_view.m -------------------------------------------------------------------------------- /EZINSAR_BIN/MintPy_functions/mintpy_allstep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/MintPy_functions/mintpy_allstep.m -------------------------------------------------------------------------------- /EZINSAR_BIN/MintPy_functions/mintpy_create_deramp_mask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/MintPy_functions/mintpy_create_deramp_mask.m -------------------------------------------------------------------------------- /EZINSAR_BIN/MintPy_functions/mintpy_network_plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/MintPy_functions/mintpy_network_plot.m -------------------------------------------------------------------------------- /EZINSAR_BIN/MintPy_functions/mintpy_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/MintPy_functions/mintpy_parameters.m -------------------------------------------------------------------------------- /EZINSAR_BIN/MintPy_functions/mintpy_processing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/MintPy_functions/mintpy_processing.m -------------------------------------------------------------------------------- /EZINSAR_BIN/MintPy_functions/smallbaselineApp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/MintPy_functions/smallbaselineApp.cfg -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/GUIpathdirectory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/GUIpathdirectory.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/README.md -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/createlistSLC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/createlistSLC.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/datemodlist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/datemodlist.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/displayextensionALOS2SM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/displayextensionALOS2SM.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/displayextensionCSK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/displayextensionCSK.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/displayextensionS1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/displayextensionS1.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/displayextensionTSXPAZ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/displayextensionTSXPAZ.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/downloaderSLC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/downloaderSLC.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/initparmslc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/initparmslc.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/managePOLTSXPAZ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/managePOLTSXPAZ.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/manageSLC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/manageSLC.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/manageparamaterSLC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/manageparamaterSLC.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/parmsSLC.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/parmsSLC.mat -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/readxmlannotationS1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/readxmlannotationS1.m -------------------------------------------------------------------------------- /EZINSAR_BIN/SLC_management/splitTSXPAZdualpolheader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/SLC_management/splitTSXPAZdualpolheader.m -------------------------------------------------------------------------------- /EZINSAR_BIN/StaMPS_functions/GUISBASnetwork.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/StaMPS_functions/GUISBASnetwork.fig -------------------------------------------------------------------------------- /EZINSAR_BIN/StaMPS_functions/GUIstampsparameters.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/StaMPS_functions/GUIstampsparameters.fig -------------------------------------------------------------------------------- /EZINSAR_BIN/StaMPS_functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/StaMPS_functions/README.md -------------------------------------------------------------------------------- /EZINSAR_BIN/StaMPS_functions/runGUISBASnetwork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/StaMPS_functions/runGUISBASnetwork.m -------------------------------------------------------------------------------- /EZINSAR_BIN/StaMPS_functions/runGUIstampsparameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/StaMPS_functions/runGUIstampsparameters.m -------------------------------------------------------------------------------- /EZINSAR_BIN/StaMPS_functions/stampsMERGEDprocessing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/StaMPS_functions/stampsMERGEDprocessing.m -------------------------------------------------------------------------------- /EZINSAR_BIN/StaMPS_functions/stampsPSprocessing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/StaMPS_functions/stampsPSprocessing.m -------------------------------------------------------------------------------- /EZINSAR_BIN/StaMPS_functions/stampsSBASprocessing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/StaMPS_functions/stampsSBASprocessing.m -------------------------------------------------------------------------------- /EZINSAR_BIN/StaMPS_functions/stampsprocessing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/StaMPS_functions/stampsprocessing.m -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/README.md -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/check_tool_versions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/check_tool_versions.m -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/coarse_CSK_baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/coarse_CSK_baselines.py -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/coarse_Sentinel_1_baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/coarse_Sentinel_1_baselines.py -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/coarse_TSX_PAZ_baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/coarse_TSX_PAZ_baselines.py -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/detrending.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/detrending.m -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/read_ALOS2_extent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/read_ALOS2_extent.py -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/readpathinformation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/readpathinformation.m -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/run_SLCcropStack_mod.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/run_SLCcropStack_mod.csh -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/run_download_DEM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/run_download_DEM.sh -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/sb_find_ETALAB_network.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/sb_find_ETALAB_network.m -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/sb_find_mod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/sb_find_mod.m -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/string2hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/string2hash.m -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/update_progressbar_MIESAR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/update_progressbar_MIESAR.m -------------------------------------------------------------------------------- /EZINSAR_BIN/Suppfunctions/update_textinformation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/Suppfunctions/update_textinformation.m -------------------------------------------------------------------------------- /EZINSAR_BIN/addpath_EZINSAR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/addpath_EZINSAR.m -------------------------------------------------------------------------------- /EZINSAR_BIN/docs/EZ-InSAR_tutorial-Part-II.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/docs/EZ-InSAR_tutorial-Part-II.md -------------------------------------------------------------------------------- /EZINSAR_BIN/docs/EZINSAR_interface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/docs/EZINSAR_interface.jpg -------------------------------------------------------------------------------- /EZINSAR_BIN/docs/EZ_InSAR_manual_v2_2_1_beta.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/docs/EZ_InSAR_manual_v2_2_1_beta.pdf -------------------------------------------------------------------------------- /EZINSAR_BIN/docs/config_InSARenv.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/docs/config_InSARenv.template -------------------------------------------------------------------------------- /EZINSAR_BIN/docs/guide_new_sensors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/docs/guide_new_sensors.md -------------------------------------------------------------------------------- /EZINSAR_BIN/docs/installation_instructions_mamba.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/docs/installation_instructions_mamba.md -------------------------------------------------------------------------------- /EZINSAR_BIN/pathinformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/pathinformation.txt -------------------------------------------------------------------------------- /EZINSAR_BIN/private/AGEO-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/private/AGEO-transparent.png -------------------------------------------------------------------------------- /EZINSAR_BIN/private/EZ_InSAR_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/private/EZ_InSAR_logo.gif -------------------------------------------------------------------------------- /EZINSAR_BIN/private/SWJTULogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/private/SWJTULogo.png -------------------------------------------------------------------------------- /EZINSAR_BIN/private/UCDlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/private/UCDlogo.png -------------------------------------------------------------------------------- /EZINSAR_BIN/private/atlanticarealogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/private/atlanticarealogo.png -------------------------------------------------------------------------------- /EZINSAR_BIN/private/icrag-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/private/icrag-logo.png -------------------------------------------------------------------------------- /EZINSAR_BIN/private/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/EZINSAR_BIN/private/warning.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/changelog.md -------------------------------------------------------------------------------- /startup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexisInSAR/EZ-InSAR/HEAD/startup.m --------------------------------------------------------------------------------