├── .gitignore ├── ASF_logo.svg ├── HyP3 ├── HyP3_data_access.md ├── HyP3_data_recipes.md ├── HyP3_resources.md ├── MintPy_sbas_permafrost_Alaska.ipynb └── hyp3_insar_permafrost.ipynb ├── LICENSE ├── NISAR ├── Calif_CentralValley_time_series.ipynb ├── NISAR_resources.md └── NISAR_sample_data.ipynb ├── OPERA ├── Mt._Hayes_and_the_eastern_Alaska_Range_mountains.jpg ├── OPERA-RTC-S1-time_series.ipynb ├── OPERA_RTC_timeseries_snow.ipynb ├── OPERA_S3_Access.ipynb ├── OPERA_data_access.md ├── OPERA_data_recipes.md ├── OPERA_resources.md ├── search_download_OPERA-CSLC-S1.ipynb └── search_download_OPERA-RTC-S1.ipynb ├── README.md ├── _config.yml ├── _toc.yml ├── environment ├── build_conda_env.ipynb ├── environment.yaml ├── environment_locked.yaml └── opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book_env.sh ├── intro.md ├── references.bib └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | **/.ipynb_checkpoints/ 2 | 3 | *.h5 4 | -------------------------------------------------------------------------------- /ASF_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/ASF_logo.svg -------------------------------------------------------------------------------- /HyP3/HyP3_data_access.md: -------------------------------------------------------------------------------- 1 | # HyP3 Data Access -------------------------------------------------------------------------------- /HyP3/HyP3_data_recipes.md: -------------------------------------------------------------------------------- 1 | # HyP3 Data Recipes 2 | -------------------------------------------------------------------------------- /HyP3/HyP3_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/HyP3/HyP3_resources.md -------------------------------------------------------------------------------- /HyP3/MintPy_sbas_permafrost_Alaska.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/HyP3/MintPy_sbas_permafrost_Alaska.ipynb -------------------------------------------------------------------------------- /HyP3/hyp3_insar_permafrost.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/HyP3/hyp3_insar_permafrost.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/LICENSE -------------------------------------------------------------------------------- /NISAR/Calif_CentralValley_time_series.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/NISAR/Calif_CentralValley_time_series.ipynb -------------------------------------------------------------------------------- /NISAR/NISAR_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/NISAR/NISAR_resources.md -------------------------------------------------------------------------------- /NISAR/NISAR_sample_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/NISAR/NISAR_sample_data.ipynb -------------------------------------------------------------------------------- /OPERA/Mt._Hayes_and_the_eastern_Alaska_Range_mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/OPERA/Mt._Hayes_and_the_eastern_Alaska_Range_mountains.jpg -------------------------------------------------------------------------------- /OPERA/OPERA-RTC-S1-time_series.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/OPERA/OPERA-RTC-S1-time_series.ipynb -------------------------------------------------------------------------------- /OPERA/OPERA_RTC_timeseries_snow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/OPERA/OPERA_RTC_timeseries_snow.ipynb -------------------------------------------------------------------------------- /OPERA/OPERA_S3_Access.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/OPERA/OPERA_S3_Access.ipynb -------------------------------------------------------------------------------- /OPERA/OPERA_data_access.md: -------------------------------------------------------------------------------- 1 | # OPERA Data Access -------------------------------------------------------------------------------- /OPERA/OPERA_data_recipes.md: -------------------------------------------------------------------------------- 1 | # OPERA Data Recipes -------------------------------------------------------------------------------- /OPERA/OPERA_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/OPERA/OPERA_resources.md -------------------------------------------------------------------------------- /OPERA/search_download_OPERA-CSLC-S1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/OPERA/search_download_OPERA-CSLC-S1.ipynb -------------------------------------------------------------------------------- /OPERA/search_download_OPERA-RTC-S1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/OPERA/search_download_OPERA-RTC-S1.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/_config.yml -------------------------------------------------------------------------------- /_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/_toc.yml -------------------------------------------------------------------------------- /environment/build_conda_env.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/environment/build_conda_env.ipynb -------------------------------------------------------------------------------- /environment/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/environment/environment.yaml -------------------------------------------------------------------------------- /environment/environment_locked.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/environment/environment_locked.yaml -------------------------------------------------------------------------------- /environment/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/environment/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book_env.sh -------------------------------------------------------------------------------- /intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/intro.md -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASFOpenSARlab/opensarlab_NISAR_EA_Workshop_2024_1_Recipe_Book/HEAD/references.bib -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | jupyter-book 2 | matplotlib 3 | numpy 4 | --------------------------------------------------------------------------------