├── .gitignore ├── .readthedocs.yaml ├── Data ├── INSAR4SM_r1_orb100_125m_FordDryLake_sm_point_ts.obj ├── INSAR4SM_r1_orb166_125m_FordDryLake_sm_point_ts.obj ├── INSAR4SM_r1_orb173_125m_FordDryLake_sm_point_ts.obj └── InSAR4SM_arabian_peninsula.geojson ├── INSAR4SM_app.ipynb ├── INSAR4SM_env.yml ├── LICENSE ├── README.md ├── figures ├── InSAR4SM_NA.png ├── InSAR4SM_arabia_animation.gif ├── insar4sm_logo.png └── insar4sm_logo.svg └── insar4sm ├── DS_funcs.py ├── ERA5 ├── Download_ERA5_land.py ├── ERA5_class.py ├── Preprocess_ERA5_data.py └── utils.py ├── Soilgrids └── soil_funcs.py ├── __init__.py ├── amp_funcs.py ├── calc_SM_index.py ├── calc_int_data.py ├── classes.py ├── coh_funcs.py ├── dielectic_models.py ├── forward_modelling_funcs.py ├── gridding.py ├── inversion.py ├── joblib_progress_bar.py ├── meteo_funcs.py ├── phase_closure_funcs.py ├── prep_meteo.py ├── prep_slc_data.py ├── sm_estimation_funcs.py └── sorting_funcs.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Data/INSAR4SM_r1_orb100_125m_FordDryLake_sm_point_ts.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/Data/INSAR4SM_r1_orb100_125m_FordDryLake_sm_point_ts.obj -------------------------------------------------------------------------------- /Data/INSAR4SM_r1_orb166_125m_FordDryLake_sm_point_ts.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/Data/INSAR4SM_r1_orb166_125m_FordDryLake_sm_point_ts.obj -------------------------------------------------------------------------------- /Data/INSAR4SM_r1_orb173_125m_FordDryLake_sm_point_ts.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/Data/INSAR4SM_r1_orb173_125m_FordDryLake_sm_point_ts.obj -------------------------------------------------------------------------------- /Data/InSAR4SM_arabian_peninsula.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/Data/InSAR4SM_arabian_peninsula.geojson -------------------------------------------------------------------------------- /INSAR4SM_app.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/INSAR4SM_app.ipynb -------------------------------------------------------------------------------- /INSAR4SM_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/INSAR4SM_env.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/README.md -------------------------------------------------------------------------------- /figures/InSAR4SM_NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/figures/InSAR4SM_NA.png -------------------------------------------------------------------------------- /figures/InSAR4SM_arabia_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/figures/InSAR4SM_arabia_animation.gif -------------------------------------------------------------------------------- /figures/insar4sm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/figures/insar4sm_logo.png -------------------------------------------------------------------------------- /figures/insar4sm_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/figures/insar4sm_logo.svg -------------------------------------------------------------------------------- /insar4sm/DS_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/DS_funcs.py -------------------------------------------------------------------------------- /insar4sm/ERA5/Download_ERA5_land.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/ERA5/Download_ERA5_land.py -------------------------------------------------------------------------------- /insar4sm/ERA5/ERA5_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/ERA5/ERA5_class.py -------------------------------------------------------------------------------- /insar4sm/ERA5/Preprocess_ERA5_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/ERA5/Preprocess_ERA5_data.py -------------------------------------------------------------------------------- /insar4sm/ERA5/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/ERA5/utils.py -------------------------------------------------------------------------------- /insar4sm/Soilgrids/soil_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/Soilgrids/soil_funcs.py -------------------------------------------------------------------------------- /insar4sm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /insar4sm/amp_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/amp_funcs.py -------------------------------------------------------------------------------- /insar4sm/calc_SM_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/calc_SM_index.py -------------------------------------------------------------------------------- /insar4sm/calc_int_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/calc_int_data.py -------------------------------------------------------------------------------- /insar4sm/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/classes.py -------------------------------------------------------------------------------- /insar4sm/coh_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/coh_funcs.py -------------------------------------------------------------------------------- /insar4sm/dielectic_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/dielectic_models.py -------------------------------------------------------------------------------- /insar4sm/forward_modelling_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/forward_modelling_funcs.py -------------------------------------------------------------------------------- /insar4sm/gridding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/gridding.py -------------------------------------------------------------------------------- /insar4sm/inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/inversion.py -------------------------------------------------------------------------------- /insar4sm/joblib_progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/joblib_progress_bar.py -------------------------------------------------------------------------------- /insar4sm/meteo_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/meteo_funcs.py -------------------------------------------------------------------------------- /insar4sm/phase_closure_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/phase_closure_funcs.py -------------------------------------------------------------------------------- /insar4sm/prep_meteo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/prep_meteo.py -------------------------------------------------------------------------------- /insar4sm/prep_slc_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/prep_slc_data.py -------------------------------------------------------------------------------- /insar4sm/sm_estimation_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/sm_estimation_funcs.py -------------------------------------------------------------------------------- /insar4sm/sorting_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleok/INSAR4SM/HEAD/insar4sm/sorting_funcs.py --------------------------------------------------------------------------------