├── .gitignore ├── LICENSE ├── README.md ├── code_of_conduct.md ├── modules ├── 01_Shell_Github │ ├── 01_Shell_Github_demo.md │ ├── 01_Shell_Github_exercises.md │ ├── 01_Shell_Github_prep.md │ ├── README.md │ └── gda_2021_data.zip ├── 02_Python_Jupyter │ ├── 02_Python_Jupyter_demo.ipynb │ ├── 02_Python_Jupyter_exercises.ipynb │ ├── 02_Python_Jupyter_prep.md │ ├── Intro_Jupyter_Notebook.ipynb │ ├── Intro_iPython.ipynb │ └── README.md ├── 03_NumPy_Pandas_Matplotlib │ ├── 03_Matplotlib_Backend_Demo.ipynb │ ├── 03_NumPy_Pandas_Demo.ipynb │ ├── 03_NumPy_Pandas_Matplotlib_ICESat_exercises.ipynb │ ├── 03_NumPy_Pandas_Matplotlib_prep.md │ └── README.md ├── 04_Vector1_Geopandas_CRS_Proj │ ├── 04_Tissot_MapDistortion_demo.ipynb │ ├── 04_Vector1_Geopandas_CRS_Proj_demo.ipynb │ ├── 04_Vector1_Geopandas_CRS_Proj_exercises.ipynb │ ├── 04_Vector1_Geopandas_CRS_Projections_prep.md │ └── README.md ├── 05_Raster1_GDAL_rasterio_LS8 │ ├── 05_Raster1_GDAL_rasterio_Demo.ipynb │ ├── 05_Raster1_GDAL_rasterio_LS8_Part1_exercises.ipynb │ ├── 05_Raster1_GDAL_rasterio_LS8_Part2_exercises.ipynb │ ├── 05_Raster1_GDAL_rasterio_LS8_prep.md │ ├── 05_Raster1_Intro_array_masking_indexing.ipynb │ └── README.md ├── 06_Vector2_Geometries_SpatialOps_Viz │ ├── 06_Vector2_Geometries_SpatialOps_Viz_exercises.ipynb │ └── 06_Vector2_Geometries_SpatialOps_Viz_prep.md ├── 07_Raster2_DEMs_Warp_Clip_Sample │ ├── 07_Raster2_DEMs_Warp_Clip_Sample_exercises.ipynb │ └── remote_DEM_download_OpenTopography_CopDEM_3DEP_Zenodo.ipynb ├── 08_Vector_TimeSeries_SNOTEL │ ├── 08_Vector_TimeSeries_SNOTEL_exercises.ipynb │ ├── Shean_OASfM_20130909_PosnPnt.csv │ ├── Shean_OASfM_20130910_PosnPnt.csv │ ├── Timestamp_demo.ipynb │ └── Trajectory_Demo.ipynb ├── 09_NDarrays_xarray_ERA5 │ ├── 09_NDarrays_xarray_ERA5_Part0_download.ipynb │ ├── 09_NDarrays_xarray_ERA5_Part1_exercises.ipynb │ ├── 09_NDarrays_xarray_ERA5_Part2.ipynb │ └── cds_scripts │ │ ├── ecv_download.py │ │ ├── era5_WA.py │ │ └── era5_land_WA.py └── 10_Conda_Dask_rioxarray_etc │ ├── README.md │ └── rioxarray_dask.ipynb └── resources ├── conda.md ├── github_notes.md ├── instructors ├── README.md ├── instructor_initial_setup.md ├── instructor_lessons_learned.md └── instructor_weekly_workflow.md ├── jupyter_notes.md ├── jupyterhub_migration.md ├── package_notes_tips_tricks_gotchas.md ├── project ├── README.md └── project_data_sources.md ├── qgis_notes.md ├── sample_img ├── egm96_offset.png ├── era5_climatology.png ├── era5_wa.png ├── era5_wa_2panel.png ├── glas_combined.png ├── glas_pointcount_hex.png ├── glas_points_ctx.png ├── glas_srtmdiff_outliers.png ├── rainier_LS8_snowcover.png ├── rainier_snotel_corr_ts.png ├── snotel_Feb2019_accum_westernUS.png ├── snotel_paradise_perc_normal_westernUS.png ├── snotel_paradise_wy.png ├── snotel_perc_normal_westernUS.png ├── wa_highways.png └── whidbey_slr.png └── students ├── README.md ├── student_advice.md ├── student_initial_setup.md ├── student_testimonials.md └── student_weekly_workflow.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/README.md -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /modules/01_Shell_Github/01_Shell_Github_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/01_Shell_Github/01_Shell_Github_demo.md -------------------------------------------------------------------------------- /modules/01_Shell_Github/01_Shell_Github_exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/01_Shell_Github/01_Shell_Github_exercises.md -------------------------------------------------------------------------------- /modules/01_Shell_Github/01_Shell_Github_prep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/01_Shell_Github/01_Shell_Github_prep.md -------------------------------------------------------------------------------- /modules/01_Shell_Github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/01_Shell_Github/README.md -------------------------------------------------------------------------------- /modules/01_Shell_Github/gda_2021_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/01_Shell_Github/gda_2021_data.zip -------------------------------------------------------------------------------- /modules/02_Python_Jupyter/02_Python_Jupyter_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/02_Python_Jupyter/02_Python_Jupyter_demo.ipynb -------------------------------------------------------------------------------- /modules/02_Python_Jupyter/02_Python_Jupyter_exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/02_Python_Jupyter/02_Python_Jupyter_exercises.ipynb -------------------------------------------------------------------------------- /modules/02_Python_Jupyter/02_Python_Jupyter_prep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/02_Python_Jupyter/02_Python_Jupyter_prep.md -------------------------------------------------------------------------------- /modules/02_Python_Jupyter/Intro_Jupyter_Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/02_Python_Jupyter/Intro_Jupyter_Notebook.ipynb -------------------------------------------------------------------------------- /modules/02_Python_Jupyter/Intro_iPython.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/02_Python_Jupyter/Intro_iPython.ipynb -------------------------------------------------------------------------------- /modules/02_Python_Jupyter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/02_Python_Jupyter/README.md -------------------------------------------------------------------------------- /modules/03_NumPy_Pandas_Matplotlib/03_Matplotlib_Backend_Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/03_NumPy_Pandas_Matplotlib/03_Matplotlib_Backend_Demo.ipynb -------------------------------------------------------------------------------- /modules/03_NumPy_Pandas_Matplotlib/03_NumPy_Pandas_Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/03_NumPy_Pandas_Matplotlib/03_NumPy_Pandas_Demo.ipynb -------------------------------------------------------------------------------- /modules/03_NumPy_Pandas_Matplotlib/03_NumPy_Pandas_Matplotlib_ICESat_exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/03_NumPy_Pandas_Matplotlib/03_NumPy_Pandas_Matplotlib_ICESat_exercises.ipynb -------------------------------------------------------------------------------- /modules/03_NumPy_Pandas_Matplotlib/03_NumPy_Pandas_Matplotlib_prep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/03_NumPy_Pandas_Matplotlib/03_NumPy_Pandas_Matplotlib_prep.md -------------------------------------------------------------------------------- /modules/03_NumPy_Pandas_Matplotlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/03_NumPy_Pandas_Matplotlib/README.md -------------------------------------------------------------------------------- /modules/04_Vector1_Geopandas_CRS_Proj/04_Tissot_MapDistortion_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/04_Vector1_Geopandas_CRS_Proj/04_Tissot_MapDistortion_demo.ipynb -------------------------------------------------------------------------------- /modules/04_Vector1_Geopandas_CRS_Proj/04_Vector1_Geopandas_CRS_Proj_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/04_Vector1_Geopandas_CRS_Proj/04_Vector1_Geopandas_CRS_Proj_demo.ipynb -------------------------------------------------------------------------------- /modules/04_Vector1_Geopandas_CRS_Proj/04_Vector1_Geopandas_CRS_Proj_exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/04_Vector1_Geopandas_CRS_Proj/04_Vector1_Geopandas_CRS_Proj_exercises.ipynb -------------------------------------------------------------------------------- /modules/04_Vector1_Geopandas_CRS_Proj/04_Vector1_Geopandas_CRS_Projections_prep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/04_Vector1_Geopandas_CRS_Proj/04_Vector1_Geopandas_CRS_Projections_prep.md -------------------------------------------------------------------------------- /modules/04_Vector1_Geopandas_CRS_Proj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/04_Vector1_Geopandas_CRS_Proj/README.md -------------------------------------------------------------------------------- /modules/05_Raster1_GDAL_rasterio_LS8/05_Raster1_GDAL_rasterio_Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/05_Raster1_GDAL_rasterio_LS8/05_Raster1_GDAL_rasterio_Demo.ipynb -------------------------------------------------------------------------------- /modules/05_Raster1_GDAL_rasterio_LS8/05_Raster1_GDAL_rasterio_LS8_Part1_exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/05_Raster1_GDAL_rasterio_LS8/05_Raster1_GDAL_rasterio_LS8_Part1_exercises.ipynb -------------------------------------------------------------------------------- /modules/05_Raster1_GDAL_rasterio_LS8/05_Raster1_GDAL_rasterio_LS8_Part2_exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/05_Raster1_GDAL_rasterio_LS8/05_Raster1_GDAL_rasterio_LS8_Part2_exercises.ipynb -------------------------------------------------------------------------------- /modules/05_Raster1_GDAL_rasterio_LS8/05_Raster1_GDAL_rasterio_LS8_prep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/05_Raster1_GDAL_rasterio_LS8/05_Raster1_GDAL_rasterio_LS8_prep.md -------------------------------------------------------------------------------- /modules/05_Raster1_GDAL_rasterio_LS8/05_Raster1_Intro_array_masking_indexing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/05_Raster1_GDAL_rasterio_LS8/05_Raster1_Intro_array_masking_indexing.ipynb -------------------------------------------------------------------------------- /modules/05_Raster1_GDAL_rasterio_LS8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/05_Raster1_GDAL_rasterio_LS8/README.md -------------------------------------------------------------------------------- /modules/06_Vector2_Geometries_SpatialOps_Viz/06_Vector2_Geometries_SpatialOps_Viz_exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/06_Vector2_Geometries_SpatialOps_Viz/06_Vector2_Geometries_SpatialOps_Viz_exercises.ipynb -------------------------------------------------------------------------------- /modules/06_Vector2_Geometries_SpatialOps_Viz/06_Vector2_Geometries_SpatialOps_Viz_prep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/06_Vector2_Geometries_SpatialOps_Viz/06_Vector2_Geometries_SpatialOps_Viz_prep.md -------------------------------------------------------------------------------- /modules/07_Raster2_DEMs_Warp_Clip_Sample/07_Raster2_DEMs_Warp_Clip_Sample_exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/07_Raster2_DEMs_Warp_Clip_Sample/07_Raster2_DEMs_Warp_Clip_Sample_exercises.ipynb -------------------------------------------------------------------------------- /modules/07_Raster2_DEMs_Warp_Clip_Sample/remote_DEM_download_OpenTopography_CopDEM_3DEP_Zenodo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/07_Raster2_DEMs_Warp_Clip_Sample/remote_DEM_download_OpenTopography_CopDEM_3DEP_Zenodo.ipynb -------------------------------------------------------------------------------- /modules/08_Vector_TimeSeries_SNOTEL/08_Vector_TimeSeries_SNOTEL_exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/08_Vector_TimeSeries_SNOTEL/08_Vector_TimeSeries_SNOTEL_exercises.ipynb -------------------------------------------------------------------------------- /modules/08_Vector_TimeSeries_SNOTEL/Shean_OASfM_20130909_PosnPnt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/08_Vector_TimeSeries_SNOTEL/Shean_OASfM_20130909_PosnPnt.csv -------------------------------------------------------------------------------- /modules/08_Vector_TimeSeries_SNOTEL/Shean_OASfM_20130910_PosnPnt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/08_Vector_TimeSeries_SNOTEL/Shean_OASfM_20130910_PosnPnt.csv -------------------------------------------------------------------------------- /modules/08_Vector_TimeSeries_SNOTEL/Timestamp_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/08_Vector_TimeSeries_SNOTEL/Timestamp_demo.ipynb -------------------------------------------------------------------------------- /modules/08_Vector_TimeSeries_SNOTEL/Trajectory_Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/08_Vector_TimeSeries_SNOTEL/Trajectory_Demo.ipynb -------------------------------------------------------------------------------- /modules/09_NDarrays_xarray_ERA5/09_NDarrays_xarray_ERA5_Part0_download.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/09_NDarrays_xarray_ERA5/09_NDarrays_xarray_ERA5_Part0_download.ipynb -------------------------------------------------------------------------------- /modules/09_NDarrays_xarray_ERA5/09_NDarrays_xarray_ERA5_Part1_exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/09_NDarrays_xarray_ERA5/09_NDarrays_xarray_ERA5_Part1_exercises.ipynb -------------------------------------------------------------------------------- /modules/09_NDarrays_xarray_ERA5/09_NDarrays_xarray_ERA5_Part2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/09_NDarrays_xarray_ERA5/09_NDarrays_xarray_ERA5_Part2.ipynb -------------------------------------------------------------------------------- /modules/09_NDarrays_xarray_ERA5/cds_scripts/ecv_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/09_NDarrays_xarray_ERA5/cds_scripts/ecv_download.py -------------------------------------------------------------------------------- /modules/09_NDarrays_xarray_ERA5/cds_scripts/era5_WA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/09_NDarrays_xarray_ERA5/cds_scripts/era5_WA.py -------------------------------------------------------------------------------- /modules/09_NDarrays_xarray_ERA5/cds_scripts/era5_land_WA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/09_NDarrays_xarray_ERA5/cds_scripts/era5_land_WA.py -------------------------------------------------------------------------------- /modules/10_Conda_Dask_rioxarray_etc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/10_Conda_Dask_rioxarray_etc/README.md -------------------------------------------------------------------------------- /modules/10_Conda_Dask_rioxarray_etc/rioxarray_dask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/modules/10_Conda_Dask_rioxarray_etc/rioxarray_dask.ipynb -------------------------------------------------------------------------------- /resources/conda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/conda.md -------------------------------------------------------------------------------- /resources/github_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/github_notes.md -------------------------------------------------------------------------------- /resources/instructors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/instructors/README.md -------------------------------------------------------------------------------- /resources/instructors/instructor_initial_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/instructors/instructor_initial_setup.md -------------------------------------------------------------------------------- /resources/instructors/instructor_lessons_learned.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/instructors/instructor_lessons_learned.md -------------------------------------------------------------------------------- /resources/instructors/instructor_weekly_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/instructors/instructor_weekly_workflow.md -------------------------------------------------------------------------------- /resources/jupyter_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/jupyter_notes.md -------------------------------------------------------------------------------- /resources/jupyterhub_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/jupyterhub_migration.md -------------------------------------------------------------------------------- /resources/package_notes_tips_tricks_gotchas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/package_notes_tips_tricks_gotchas.md -------------------------------------------------------------------------------- /resources/project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/project/README.md -------------------------------------------------------------------------------- /resources/project/project_data_sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/project/project_data_sources.md -------------------------------------------------------------------------------- /resources/qgis_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/qgis_notes.md -------------------------------------------------------------------------------- /resources/sample_img/egm96_offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/egm96_offset.png -------------------------------------------------------------------------------- /resources/sample_img/era5_climatology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/era5_climatology.png -------------------------------------------------------------------------------- /resources/sample_img/era5_wa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/era5_wa.png -------------------------------------------------------------------------------- /resources/sample_img/era5_wa_2panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/era5_wa_2panel.png -------------------------------------------------------------------------------- /resources/sample_img/glas_combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/glas_combined.png -------------------------------------------------------------------------------- /resources/sample_img/glas_pointcount_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/glas_pointcount_hex.png -------------------------------------------------------------------------------- /resources/sample_img/glas_points_ctx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/glas_points_ctx.png -------------------------------------------------------------------------------- /resources/sample_img/glas_srtmdiff_outliers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/glas_srtmdiff_outliers.png -------------------------------------------------------------------------------- /resources/sample_img/rainier_LS8_snowcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/rainier_LS8_snowcover.png -------------------------------------------------------------------------------- /resources/sample_img/rainier_snotel_corr_ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/rainier_snotel_corr_ts.png -------------------------------------------------------------------------------- /resources/sample_img/snotel_Feb2019_accum_westernUS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/snotel_Feb2019_accum_westernUS.png -------------------------------------------------------------------------------- /resources/sample_img/snotel_paradise_perc_normal_westernUS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/snotel_paradise_perc_normal_westernUS.png -------------------------------------------------------------------------------- /resources/sample_img/snotel_paradise_wy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/snotel_paradise_wy.png -------------------------------------------------------------------------------- /resources/sample_img/snotel_perc_normal_westernUS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/snotel_perc_normal_westernUS.png -------------------------------------------------------------------------------- /resources/sample_img/wa_highways.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/wa_highways.png -------------------------------------------------------------------------------- /resources/sample_img/whidbey_slr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/sample_img/whidbey_slr.png -------------------------------------------------------------------------------- /resources/students/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/students/README.md -------------------------------------------------------------------------------- /resources/students/student_advice.md: -------------------------------------------------------------------------------- 1 | # Advice from previous students 2 | -------------------------------------------------------------------------------- /resources/students/student_initial_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/students/student_initial_setup.md -------------------------------------------------------------------------------- /resources/students/student_testimonials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/students/student_testimonials.md -------------------------------------------------------------------------------- /resources/students/student_weekly_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-GDA/gda_course_2021/HEAD/resources/students/student_weekly_workflow.md --------------------------------------------------------------------------------