├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ └── pilot_workshop_feedback.yml └── workflows │ ├── README.md │ ├── pr-close-signal.yaml │ ├── pr-comment.yaml │ ├── pr-post-remove-branch.yaml │ ├── pr-preflight.yaml │ ├── pr-receive.yaml │ ├── sandpaper-main.yaml │ ├── sandpaper-version.txt │ ├── update-cache.yaml │ └── update-workflows.yaml ├── .gitignore ├── CITATION ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── config.yaml ├── episodes ├── 01-intro-raster-data.md ├── 02-intro-vector-data.md ├── 03-crs.md ├── 04-geo-landscape.md ├── 05-access-data.md ├── 06-raster-intro.md ├── 07-vector-data-in-python.md ├── 08-crop-raster-data.md ├── 09-raster-calculations.md ├── 10-zonal-statistics.md ├── 11-parallel-raster-computations.md ├── 12-data-cube.md └── fig │ ├── E01 │ ├── RGBSTack_1.jpg │ ├── USA_landcover_classification.png │ ├── continuous-elevation-HARV-plot-01.png │ ├── raster_concept.png │ ├── raster_resolution.png │ └── spatial_extent.png │ ├── E02 │ ├── pnt_line_poly.png │ └── vector_types_examples.png │ ├── E03 │ ├── Utm-zones-USA.svg │ ├── citrus.jpg │ └── orange-peel-earth.jpg │ ├── E05 │ ├── STAC-browser-exercise.jpg │ ├── STAC-browser.jpg │ ├── STAC-l8-preview.jpg │ ├── STAC-s2-preview-after.jpg │ └── STAC-s2-preview-before.jpg │ ├── E06 │ ├── rhodes_multiband_80.png │ ├── rhodes_multiband_80_equal_aspect.png │ ├── rhodes_red_80_B04.png │ ├── rhodes_red_80_B04_robust.png │ ├── rhodes_red_80_B04_robust_nan.png │ ├── rhodes_red_80_B04_vmin100_vmax2000.png │ ├── rhodes_red_B04.png │ └── single_multi_raster.png │ ├── E07 │ ├── greece_administration_areas.png │ ├── greece_highways.png │ ├── pandas_geopandas_relation.png │ ├── rhodes_administration_areas.png │ ├── rhodes_assets.png │ ├── rhodes_builtup_buffer.png │ ├── rhodes_highways.png │ └── rhodes_infra_highways.png │ ├── E08 │ ├── dem.png │ ├── dem_matched.png │ ├── solution_exercise.png │ ├── visual_clip.png │ ├── visual_clip_box.png │ └── visual_large.png │ ├── E09 │ ├── NDVI-hist.png │ ├── NDVI-map.png │ ├── NDWI.png │ ├── NIR-band.png │ ├── custom-index.png │ ├── red-band.png │ └── visual-burned-index.png │ ├── E10 │ └── zones_rasterized_xarray.png │ ├── E11 │ ├── dask-graph.png │ └── xarray-with-dask.png │ ├── E12 │ ├── NDVI-after.png │ ├── NDVI-after_point.png │ ├── NDVI-before.png │ └── NDVI-time-series.png │ └── legacy │ ├── 06-HARV-reprojected-DTM-02-styles.png │ ├── 06-HARV-reprojected-DTM-02-title.png │ ├── 06-HARV-reprojected-DTM-02.png │ ├── 06-SJER-DSM-03.png │ ├── 06-SJER-DTM-04.png │ ├── 06-bad-DTM-plot-01.png │ ├── 08-NoData-RGB-plot-07.png │ ├── 08-NoData-RGB-plot-correct-07.png │ ├── 08-band1-grayscale-plot-01.png │ ├── 08-band1-hist-plot-02.png │ ├── 08-band1-hist-plot-03.png │ ├── 08-band2-grayscale-plot-01.png │ ├── 08-custom-stretch-plot-06.png │ ├── 08-rgb-nostretch-plot-04.png │ ├── 08-rgb-stretched-plot-05.png │ ├── 12-aoi-with-points-plot-02.png │ ├── 12-phenology-with-points-plot-03.png │ ├── 12-simple-plot-points-01.png │ ├── 20-crop-raster-crop-by-polygon-03.png │ ├── imageStretch_dark.jpg │ └── imageStretch_light.jpg ├── files └── environment.yaml ├── index.md ├── instructors └── instructor-notes.md ├── learners └── setup.md ├── links.md ├── profiles └── learner-profiles.md ├── site └── README.md └── workshops.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/pilot_workshop_feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/.github/ISSUE_TEMPLATE/pilot_workshop_feedback.yml -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/pr-close-signal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/.github/workflows/pr-close-signal.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/.github/workflows/pr-comment.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-post-remove-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/.github/workflows/pr-post-remove-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-preflight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/.github/workflows/pr-preflight.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-receive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/.github/workflows/pr-receive.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/.github/workflows/sandpaper-main.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-version.txt: -------------------------------------------------------------------------------- 1 | 0.16.12 2 | -------------------------------------------------------------------------------- /.github/workflows/update-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/.github/workflows/update-cache.yaml -------------------------------------------------------------------------------- /.github/workflows/update-workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/.github/workflows/update-workflows.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- 1 | FIXME: describe how to cite this lesson. -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/config.yaml -------------------------------------------------------------------------------- /episodes/01-intro-raster-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/01-intro-raster-data.md -------------------------------------------------------------------------------- /episodes/02-intro-vector-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/02-intro-vector-data.md -------------------------------------------------------------------------------- /episodes/03-crs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/03-crs.md -------------------------------------------------------------------------------- /episodes/04-geo-landscape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/04-geo-landscape.md -------------------------------------------------------------------------------- /episodes/05-access-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/05-access-data.md -------------------------------------------------------------------------------- /episodes/06-raster-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/06-raster-intro.md -------------------------------------------------------------------------------- /episodes/07-vector-data-in-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/07-vector-data-in-python.md -------------------------------------------------------------------------------- /episodes/08-crop-raster-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/08-crop-raster-data.md -------------------------------------------------------------------------------- /episodes/09-raster-calculations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/09-raster-calculations.md -------------------------------------------------------------------------------- /episodes/10-zonal-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/10-zonal-statistics.md -------------------------------------------------------------------------------- /episodes/11-parallel-raster-computations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/11-parallel-raster-computations.md -------------------------------------------------------------------------------- /episodes/12-data-cube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/12-data-cube.md -------------------------------------------------------------------------------- /episodes/fig/E01/RGBSTack_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E01/RGBSTack_1.jpg -------------------------------------------------------------------------------- /episodes/fig/E01/USA_landcover_classification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E01/USA_landcover_classification.png -------------------------------------------------------------------------------- /episodes/fig/E01/continuous-elevation-HARV-plot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E01/continuous-elevation-HARV-plot-01.png -------------------------------------------------------------------------------- /episodes/fig/E01/raster_concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E01/raster_concept.png -------------------------------------------------------------------------------- /episodes/fig/E01/raster_resolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E01/raster_resolution.png -------------------------------------------------------------------------------- /episodes/fig/E01/spatial_extent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E01/spatial_extent.png -------------------------------------------------------------------------------- /episodes/fig/E02/pnt_line_poly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E02/pnt_line_poly.png -------------------------------------------------------------------------------- /episodes/fig/E02/vector_types_examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E02/vector_types_examples.png -------------------------------------------------------------------------------- /episodes/fig/E03/Utm-zones-USA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E03/Utm-zones-USA.svg -------------------------------------------------------------------------------- /episodes/fig/E03/citrus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E03/citrus.jpg -------------------------------------------------------------------------------- /episodes/fig/E03/orange-peel-earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E03/orange-peel-earth.jpg -------------------------------------------------------------------------------- /episodes/fig/E05/STAC-browser-exercise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E05/STAC-browser-exercise.jpg -------------------------------------------------------------------------------- /episodes/fig/E05/STAC-browser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E05/STAC-browser.jpg -------------------------------------------------------------------------------- /episodes/fig/E05/STAC-l8-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E05/STAC-l8-preview.jpg -------------------------------------------------------------------------------- /episodes/fig/E05/STAC-s2-preview-after.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E05/STAC-s2-preview-after.jpg -------------------------------------------------------------------------------- /episodes/fig/E05/STAC-s2-preview-before.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E05/STAC-s2-preview-before.jpg -------------------------------------------------------------------------------- /episodes/fig/E06/rhodes_multiband_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E06/rhodes_multiband_80.png -------------------------------------------------------------------------------- /episodes/fig/E06/rhodes_multiband_80_equal_aspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E06/rhodes_multiband_80_equal_aspect.png -------------------------------------------------------------------------------- /episodes/fig/E06/rhodes_red_80_B04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E06/rhodes_red_80_B04.png -------------------------------------------------------------------------------- /episodes/fig/E06/rhodes_red_80_B04_robust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E06/rhodes_red_80_B04_robust.png -------------------------------------------------------------------------------- /episodes/fig/E06/rhodes_red_80_B04_robust_nan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E06/rhodes_red_80_B04_robust_nan.png -------------------------------------------------------------------------------- /episodes/fig/E06/rhodes_red_80_B04_vmin100_vmax2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E06/rhodes_red_80_B04_vmin100_vmax2000.png -------------------------------------------------------------------------------- /episodes/fig/E06/rhodes_red_B04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E06/rhodes_red_B04.png -------------------------------------------------------------------------------- /episodes/fig/E06/single_multi_raster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E06/single_multi_raster.png -------------------------------------------------------------------------------- /episodes/fig/E07/greece_administration_areas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E07/greece_administration_areas.png -------------------------------------------------------------------------------- /episodes/fig/E07/greece_highways.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E07/greece_highways.png -------------------------------------------------------------------------------- /episodes/fig/E07/pandas_geopandas_relation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E07/pandas_geopandas_relation.png -------------------------------------------------------------------------------- /episodes/fig/E07/rhodes_administration_areas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E07/rhodes_administration_areas.png -------------------------------------------------------------------------------- /episodes/fig/E07/rhodes_assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E07/rhodes_assets.png -------------------------------------------------------------------------------- /episodes/fig/E07/rhodes_builtup_buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E07/rhodes_builtup_buffer.png -------------------------------------------------------------------------------- /episodes/fig/E07/rhodes_highways.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E07/rhodes_highways.png -------------------------------------------------------------------------------- /episodes/fig/E07/rhodes_infra_highways.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E07/rhodes_infra_highways.png -------------------------------------------------------------------------------- /episodes/fig/E08/dem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E08/dem.png -------------------------------------------------------------------------------- /episodes/fig/E08/dem_matched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E08/dem_matched.png -------------------------------------------------------------------------------- /episodes/fig/E08/solution_exercise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E08/solution_exercise.png -------------------------------------------------------------------------------- /episodes/fig/E08/visual_clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E08/visual_clip.png -------------------------------------------------------------------------------- /episodes/fig/E08/visual_clip_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E08/visual_clip_box.png -------------------------------------------------------------------------------- /episodes/fig/E08/visual_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E08/visual_large.png -------------------------------------------------------------------------------- /episodes/fig/E09/NDVI-hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E09/NDVI-hist.png -------------------------------------------------------------------------------- /episodes/fig/E09/NDVI-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E09/NDVI-map.png -------------------------------------------------------------------------------- /episodes/fig/E09/NDWI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E09/NDWI.png -------------------------------------------------------------------------------- /episodes/fig/E09/NIR-band.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E09/NIR-band.png -------------------------------------------------------------------------------- /episodes/fig/E09/custom-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E09/custom-index.png -------------------------------------------------------------------------------- /episodes/fig/E09/red-band.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E09/red-band.png -------------------------------------------------------------------------------- /episodes/fig/E09/visual-burned-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E09/visual-burned-index.png -------------------------------------------------------------------------------- /episodes/fig/E10/zones_rasterized_xarray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E10/zones_rasterized_xarray.png -------------------------------------------------------------------------------- /episodes/fig/E11/dask-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E11/dask-graph.png -------------------------------------------------------------------------------- /episodes/fig/E11/xarray-with-dask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E11/xarray-with-dask.png -------------------------------------------------------------------------------- /episodes/fig/E12/NDVI-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E12/NDVI-after.png -------------------------------------------------------------------------------- /episodes/fig/E12/NDVI-after_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E12/NDVI-after_point.png -------------------------------------------------------------------------------- /episodes/fig/E12/NDVI-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E12/NDVI-before.png -------------------------------------------------------------------------------- /episodes/fig/E12/NDVI-time-series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/E12/NDVI-time-series.png -------------------------------------------------------------------------------- /episodes/fig/legacy/06-HARV-reprojected-DTM-02-styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/06-HARV-reprojected-DTM-02-styles.png -------------------------------------------------------------------------------- /episodes/fig/legacy/06-HARV-reprojected-DTM-02-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/06-HARV-reprojected-DTM-02-title.png -------------------------------------------------------------------------------- /episodes/fig/legacy/06-HARV-reprojected-DTM-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/06-HARV-reprojected-DTM-02.png -------------------------------------------------------------------------------- /episodes/fig/legacy/06-SJER-DSM-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/06-SJER-DSM-03.png -------------------------------------------------------------------------------- /episodes/fig/legacy/06-SJER-DTM-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/06-SJER-DTM-04.png -------------------------------------------------------------------------------- /episodes/fig/legacy/06-bad-DTM-plot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/06-bad-DTM-plot-01.png -------------------------------------------------------------------------------- /episodes/fig/legacy/08-NoData-RGB-plot-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/08-NoData-RGB-plot-07.png -------------------------------------------------------------------------------- /episodes/fig/legacy/08-NoData-RGB-plot-correct-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/08-NoData-RGB-plot-correct-07.png -------------------------------------------------------------------------------- /episodes/fig/legacy/08-band1-grayscale-plot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/08-band1-grayscale-plot-01.png -------------------------------------------------------------------------------- /episodes/fig/legacy/08-band1-hist-plot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/08-band1-hist-plot-02.png -------------------------------------------------------------------------------- /episodes/fig/legacy/08-band1-hist-plot-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/08-band1-hist-plot-03.png -------------------------------------------------------------------------------- /episodes/fig/legacy/08-band2-grayscale-plot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/08-band2-grayscale-plot-01.png -------------------------------------------------------------------------------- /episodes/fig/legacy/08-custom-stretch-plot-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/08-custom-stretch-plot-06.png -------------------------------------------------------------------------------- /episodes/fig/legacy/08-rgb-nostretch-plot-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/08-rgb-nostretch-plot-04.png -------------------------------------------------------------------------------- /episodes/fig/legacy/08-rgb-stretched-plot-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/08-rgb-stretched-plot-05.png -------------------------------------------------------------------------------- /episodes/fig/legacy/12-aoi-with-points-plot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/12-aoi-with-points-plot-02.png -------------------------------------------------------------------------------- /episodes/fig/legacy/12-phenology-with-points-plot-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/12-phenology-with-points-plot-03.png -------------------------------------------------------------------------------- /episodes/fig/legacy/12-simple-plot-points-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/12-simple-plot-points-01.png -------------------------------------------------------------------------------- /episodes/fig/legacy/20-crop-raster-crop-by-polygon-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/20-crop-raster-crop-by-polygon-03.png -------------------------------------------------------------------------------- /episodes/fig/legacy/imageStretch_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/imageStretch_dark.jpg -------------------------------------------------------------------------------- /episodes/fig/legacy/imageStretch_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/episodes/fig/legacy/imageStretch_light.jpg -------------------------------------------------------------------------------- /files/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/files/environment.yaml -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/index.md -------------------------------------------------------------------------------- /instructors/instructor-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/instructors/instructor-notes.md -------------------------------------------------------------------------------- /learners/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/learners/setup.md -------------------------------------------------------------------------------- /links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/links.md -------------------------------------------------------------------------------- /profiles/learner-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/profiles/learner-profiles.md -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/site/README.md -------------------------------------------------------------------------------- /workshops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/geospatial-python/HEAD/workshops.md --------------------------------------------------------------------------------