├── .github ├── dependabot.yml └── workflows │ ├── nightly-build.yaml │ ├── publish-book.yaml │ ├── replace-links.yaml │ ├── trigger-book-build.yaml │ ├── trigger-delete-preview.yaml │ ├── trigger-preview.yaml │ └── trigger-replace-links.yaml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── CITATION.cff ├── LICENSE ├── README.md ├── _config.yml ├── _gallery_info.yml ├── environment.yml ├── myst.yml └── notebooks ├── courses ├── environmental-remote-sensing.ipynb ├── environmental-remote-sensing │ ├── images │ │ ├── api-swi-search-wekeo-website.png │ │ ├── data-hsaf-website.png │ │ ├── dataviewer-wekeo-website.png │ │ ├── home-hsaf-website-r.png │ │ ├── home-wekeo-website.png │ │ ├── login-hsaf-website-r.png │ │ ├── login-wekeo-website.png │ │ ├── portal-wekeo-website.png │ │ ├── register-hsaf-website.png │ │ └── swi-search-wekeo-website.png │ ├── pyproject.toml │ ├── src │ │ └── envrs │ │ │ ├── __init__.py │ │ │ ├── corr_plots.py │ │ │ ├── download_path.py │ │ │ ├── hls_tools.py │ │ │ ├── rio_tools.py │ │ │ └── ssm_cmap.py │ └── unit_01 │ │ ├── 01_handout_drought.ipynb │ │ ├── 01_homework_exercise.ipynb │ │ ├── 02_handout_drought.ipynb │ │ ├── 02_homework_exercise.ipynb │ │ ├── 03_handout_drought.ipynb │ │ ├── 03_homework_exercise.ipynb │ │ ├── 04_handout_drought.ipynb │ │ ├── 05_supplement_drought.ipynb │ │ └── 06_supplement_drought.ipynb ├── microwave-remote-sensing.ipynb └── microwave-remote-sensing │ ├── _quarto.yml │ ├── assets │ └── images │ │ ├── backscattering_coefficients.png │ │ ├── code_cell.png │ │ ├── jupiterhub_icon.png │ │ ├── markdown_cell.png │ │ ├── new_notebooks.png │ │ ├── quit_processes.png │ │ ├── ridgecrest_gif.gif │ │ ├── select_kernel.png │ │ ├── select_server.png │ │ ├── side_looking_image_distortions.png │ │ ├── speckle_effect.png │ │ ├── start_terminal.png │ │ ├── startingpage.png │ │ ├── stop_server.png │ │ └── tuw-geo-logo.svg │ ├── images │ ├── backscattering_coefficients.png │ ├── code_cell.png │ ├── jupiterhub_icon.png │ ├── markdown_cell.png │ ├── new_notebooks.png │ ├── quit_processes.png │ ├── ridgecrest.gif │ ├── select_kernel.png │ ├── select_server.png │ ├── side_looking_image_distortions.png │ ├── speckle_effect.png │ ├── start_terminal.png │ ├── startingpage.png │ ├── stop_server.png │ └── tuw-geo-logo.svg │ ├── pyproject.toml │ ├── team_work │ └── teamwork_data_guide.ipynb │ ├── unit_01 │ ├── 01_homework_exercise.ipynb │ ├── 01_in_class_exercise.ipynb │ ├── 02_homework_exercise.ipynb │ ├── 02_in_class_exercise.ipynb │ ├── 03_homework_exercise.ipynb │ └── 03_in_class_exercise.ipynb │ ├── unit_02 │ ├── 04_homework_exercise.ipynb │ ├── 04_in_class_exercise.ipynb │ ├── 05_homework_exercise.ipynb │ ├── 05_in_class_exercise.ipynb │ ├── 06_homework_exercise.ipynb │ └── 06_in_class_exercise.ipynb │ └── unit_03 │ ├── 07_homework_exercise.ipynb │ ├── 07_in_class_exercise.ipynb │ ├── 08_homework_exercise.ipynb │ ├── 08_in_class_exercise.ipynb │ ├── 09_homework_exercise.ipynb │ └── 09_in_class_exercise.ipynb ├── how-to-cite.md ├── images ├── ProjectPythia_Logo_Final-01-Blue.svg ├── cmaps │ └── 06_color_mapping.json ├── icons │ └── favicon.ico ├── logos │ ├── NSF-NCAR_Lockup-UCAR-Dark_102523.svg │ ├── UAlbany-A2-logo-purple-gold.svg │ ├── Unidata_logo_horizontal_1200x300.svg │ ├── pythia_logo-white-notext.svg │ ├── pythia_logo-white-rtext.svg │ └── tuw-geo_eodc_logo_horizontal.png ├── ridgecrest.gif ├── side_looking_image_distortions.png ├── speckle_effect.png └── tuw-geo_eodc_logo_vertical.png ├── references.bib ├── references.ipynb ├── templates ├── classification.ipynb └── prereqs-templates.ipynb └── tutorials ├── floodmapping.ipynb ├── harmonic-parameters.ipynb └── prereqs-tutorials.ipynb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/.github/workflows/nightly-build.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/.github/workflows/publish-book.yaml -------------------------------------------------------------------------------- /.github/workflows/replace-links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/.github/workflows/replace-links.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-book-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/.github/workflows/trigger-book-build.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-delete-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/.github/workflows/trigger-delete-preview.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/.github/workflows/trigger-preview.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-replace-links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/.github/workflows/trigger-replace-links.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/_config.yml -------------------------------------------------------------------------------- /_gallery_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/_gallery_info.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/environment.yml -------------------------------------------------------------------------------- /myst.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/myst.yml -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing.ipynb -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/images/api-swi-search-wekeo-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/images/api-swi-search-wekeo-website.png -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/images/data-hsaf-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/images/data-hsaf-website.png -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/images/dataviewer-wekeo-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/images/dataviewer-wekeo-website.png -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/images/home-hsaf-website-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/images/home-hsaf-website-r.png -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/images/home-wekeo-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/images/home-wekeo-website.png -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/images/login-hsaf-website-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/images/login-hsaf-website-r.png -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/images/login-wekeo-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/images/login-wekeo-website.png -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/images/portal-wekeo-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/images/portal-wekeo-website.png -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/images/register-hsaf-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/images/register-hsaf-website.png -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/images/swi-search-wekeo-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/images/swi-search-wekeo-website.png -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/pyproject.toml -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/src/envrs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/src/envrs/corr_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/src/envrs/corr_plots.py -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/src/envrs/download_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/src/envrs/download_path.py -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/src/envrs/hls_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/src/envrs/hls_tools.py -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/src/envrs/rio_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/src/envrs/rio_tools.py -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/src/envrs/ssm_cmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/src/envrs/ssm_cmap.py -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/unit_01/01_handout_drought.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/unit_01/01_handout_drought.ipynb -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/unit_01/01_homework_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/unit_01/01_homework_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/unit_01/02_handout_drought.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/unit_01/02_handout_drought.ipynb -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/unit_01/02_homework_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/unit_01/02_homework_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/unit_01/03_handout_drought.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/unit_01/03_handout_drought.ipynb -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/unit_01/03_homework_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/unit_01/03_homework_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/unit_01/04_handout_drought.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/unit_01/04_handout_drought.ipynb -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/unit_01/05_supplement_drought.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/unit_01/05_supplement_drought.ipynb -------------------------------------------------------------------------------- /notebooks/courses/environmental-remote-sensing/unit_01/06_supplement_drought.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/environmental-remote-sensing/unit_01/06_supplement_drought.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/_quarto.yml -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/backscattering_coefficients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/backscattering_coefficients.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/code_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/code_cell.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/jupiterhub_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/jupiterhub_icon.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/markdown_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/markdown_cell.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/new_notebooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/new_notebooks.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/quit_processes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/quit_processes.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/ridgecrest_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/ridgecrest_gif.gif -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/select_kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/select_kernel.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/select_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/select_server.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/side_looking_image_distortions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/side_looking_image_distortions.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/speckle_effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/speckle_effect.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/start_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/start_terminal.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/startingpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/startingpage.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/stop_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/stop_server.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/assets/images/tuw-geo-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/assets/images/tuw-geo-logo.svg -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/backscattering_coefficients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/backscattering_coefficients.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/code_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/code_cell.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/jupiterhub_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/jupiterhub_icon.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/markdown_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/markdown_cell.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/new_notebooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/new_notebooks.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/quit_processes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/quit_processes.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/ridgecrest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/ridgecrest.gif -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/select_kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/select_kernel.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/select_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/select_server.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/side_looking_image_distortions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/side_looking_image_distortions.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/speckle_effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/speckle_effect.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/start_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/start_terminal.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/startingpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/startingpage.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/stop_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/stop_server.png -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/images/tuw-geo-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/images/tuw-geo-logo.svg -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/pyproject.toml -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/team_work/teamwork_data_guide.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/team_work/teamwork_data_guide.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_01/01_homework_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_01/01_homework_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_01/01_in_class_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_01/01_in_class_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_01/02_homework_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_01/02_homework_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_01/02_in_class_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_01/02_in_class_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_01/03_homework_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_01/03_homework_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_01/03_in_class_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_01/03_in_class_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_02/04_homework_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_02/04_homework_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_02/04_in_class_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_02/04_in_class_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_02/05_homework_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_02/05_homework_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_02/05_in_class_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_02/05_in_class_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_02/06_homework_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_02/06_homework_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_02/06_in_class_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_02/06_in_class_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_03/07_homework_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_03/07_homework_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_03/07_in_class_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_03/07_in_class_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_03/08_homework_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_03/08_homework_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_03/08_in_class_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_03/08_in_class_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_03/09_homework_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_03/09_homework_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/courses/microwave-remote-sensing/unit_03/09_in_class_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/courses/microwave-remote-sensing/unit_03/09_in_class_exercise.ipynb -------------------------------------------------------------------------------- /notebooks/how-to-cite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/how-to-cite.md -------------------------------------------------------------------------------- /notebooks/images/ProjectPythia_Logo_Final-01-Blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/ProjectPythia_Logo_Final-01-Blue.svg -------------------------------------------------------------------------------- /notebooks/images/cmaps/06_color_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/cmaps/06_color_mapping.json -------------------------------------------------------------------------------- /notebooks/images/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/icons/favicon.ico -------------------------------------------------------------------------------- /notebooks/images/logos/NSF-NCAR_Lockup-UCAR-Dark_102523.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/logos/NSF-NCAR_Lockup-UCAR-Dark_102523.svg -------------------------------------------------------------------------------- /notebooks/images/logos/UAlbany-A2-logo-purple-gold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/logos/UAlbany-A2-logo-purple-gold.svg -------------------------------------------------------------------------------- /notebooks/images/logos/Unidata_logo_horizontal_1200x300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/logos/Unidata_logo_horizontal_1200x300.svg -------------------------------------------------------------------------------- /notebooks/images/logos/pythia_logo-white-notext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/logos/pythia_logo-white-notext.svg -------------------------------------------------------------------------------- /notebooks/images/logos/pythia_logo-white-rtext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/logos/pythia_logo-white-rtext.svg -------------------------------------------------------------------------------- /notebooks/images/logos/tuw-geo_eodc_logo_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/logos/tuw-geo_eodc_logo_horizontal.png -------------------------------------------------------------------------------- /notebooks/images/ridgecrest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/ridgecrest.gif -------------------------------------------------------------------------------- /notebooks/images/side_looking_image_distortions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/side_looking_image_distortions.png -------------------------------------------------------------------------------- /notebooks/images/speckle_effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/speckle_effect.png -------------------------------------------------------------------------------- /notebooks/images/tuw-geo_eodc_logo_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/images/tuw-geo_eodc_logo_vertical.png -------------------------------------------------------------------------------- /notebooks/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/references.bib -------------------------------------------------------------------------------- /notebooks/references.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/references.ipynb -------------------------------------------------------------------------------- /notebooks/templates/classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/templates/classification.ipynb -------------------------------------------------------------------------------- /notebooks/templates/prereqs-templates.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/templates/prereqs-templates.ipynb -------------------------------------------------------------------------------- /notebooks/tutorials/floodmapping.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/tutorials/floodmapping.ipynb -------------------------------------------------------------------------------- /notebooks/tutorials/harmonic-parameters.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/tutorials/harmonic-parameters.ipynb -------------------------------------------------------------------------------- /notebooks/tutorials/prereqs-tutorials.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/eo-datascience-cookbook/HEAD/notebooks/tutorials/prereqs-tutorials.ipynb --------------------------------------------------------------------------------