├── .Rbuildignore ├── .editorconfig ├── .gitattributes ├── .github └── 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 │ └── workbench-beta-phase.yml ├── .gitignore ├── .zenodo.json ├── CITATION ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── about.md ├── config.yaml ├── episodes ├── 01-raster-structure.Rmd ├── 02-raster-plot.Rmd ├── 03-raster-reproject-in-r.Rmd ├── 04-raster-calculations-in-r.Rmd ├── 05-raster-multi-band-in-r.Rmd ├── 06-vector-open-shapefile-in-r.Rmd ├── 07-vector-shapefile-attributes-in-r.Rmd ├── 08-vector-plot-shapefiles-custom-legend.Rmd ├── 09-vector-when-data-dont-line-up-crs.Rmd ├── 10-vector-csv-to-shapefile-in-r.Rmd ├── 11-vector-raster-integration.Rmd ├── 12-time-series-raster.Rmd ├── 13-plot-time-series-rasters-in-r.Rmd ├── 14-extract-ndvi-from-rasters-in-r.Rmd ├── data │ └── .gitignore ├── fig │ ├── BufferCircular.png │ ├── BufferSquare.png │ ├── Utm-zones-USA.svg │ ├── dc-spatial-raster │ │ ├── GreennessOverTime.jpg │ │ ├── RGBSTack_1.jpg │ │ ├── UTM_zones_18-19.jpg │ │ ├── imageStretch_dark.jpg │ │ ├── imageStretch_light.jpg │ │ ├── lidarTree-height.png │ │ ├── raster_concept.png │ │ ├── raster_resolution.png │ │ ├── single_multi_raster.png │ │ └── spatial_extent.png │ ├── dc-spatial-vector │ │ ├── pnt_line_poly.png │ │ └── spatial_extent.png │ └── map_usa_different_projections.jpg └── setup.R ├── index.md ├── instructors └── instructor-notes.md ├── learners ├── discuss.md ├── reference.md └── setup.md ├── profiles └── learner-profiles.md ├── r-raster-vector-geospatial.Rproj ├── renv ├── activate.R ├── profile └── profiles │ └── lesson-requirements │ ├── renv.lock │ └── renv │ └── .gitignore └── site └── README.md /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/pr-close-signal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.github/workflows/pr-close-signal.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.github/workflows/pr-comment.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-post-remove-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.github/workflows/pr-post-remove-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-preflight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.github/workflows/pr-preflight.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-receive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.github/workflows/pr-receive.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/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/datacarpentry/r-raster-vector-geospatial/HEAD/.github/workflows/update-cache.yaml -------------------------------------------------------------------------------- /.github/workflows/update-workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.github/workflows/update-workflows.yaml -------------------------------------------------------------------------------- /.github/workflows/workbench-beta-phase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.github/workflows/workbench-beta-phase.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/CITATION -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/README.md -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/about.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/config.yaml -------------------------------------------------------------------------------- /episodes/01-raster-structure.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/01-raster-structure.Rmd -------------------------------------------------------------------------------- /episodes/02-raster-plot.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/02-raster-plot.Rmd -------------------------------------------------------------------------------- /episodes/03-raster-reproject-in-r.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/03-raster-reproject-in-r.Rmd -------------------------------------------------------------------------------- /episodes/04-raster-calculations-in-r.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/04-raster-calculations-in-r.Rmd -------------------------------------------------------------------------------- /episodes/05-raster-multi-band-in-r.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/05-raster-multi-band-in-r.Rmd -------------------------------------------------------------------------------- /episodes/06-vector-open-shapefile-in-r.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/06-vector-open-shapefile-in-r.Rmd -------------------------------------------------------------------------------- /episodes/07-vector-shapefile-attributes-in-r.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/07-vector-shapefile-attributes-in-r.Rmd -------------------------------------------------------------------------------- /episodes/08-vector-plot-shapefiles-custom-legend.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/08-vector-plot-shapefiles-custom-legend.Rmd -------------------------------------------------------------------------------- /episodes/09-vector-when-data-dont-line-up-crs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/09-vector-when-data-dont-line-up-crs.Rmd -------------------------------------------------------------------------------- /episodes/10-vector-csv-to-shapefile-in-r.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/10-vector-csv-to-shapefile-in-r.Rmd -------------------------------------------------------------------------------- /episodes/11-vector-raster-integration.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/11-vector-raster-integration.Rmd -------------------------------------------------------------------------------- /episodes/12-time-series-raster.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/12-time-series-raster.Rmd -------------------------------------------------------------------------------- /episodes/13-plot-time-series-rasters-in-r.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/13-plot-time-series-rasters-in-r.Rmd -------------------------------------------------------------------------------- /episodes/14-extract-ndvi-from-rasters-in-r.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/14-extract-ndvi-from-rasters-in-r.Rmd -------------------------------------------------------------------------------- /episodes/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /episodes/fig/BufferCircular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/BufferCircular.png -------------------------------------------------------------------------------- /episodes/fig/BufferSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/BufferSquare.png -------------------------------------------------------------------------------- /episodes/fig/Utm-zones-USA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/Utm-zones-USA.svg -------------------------------------------------------------------------------- /episodes/fig/dc-spatial-raster/GreennessOverTime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/dc-spatial-raster/GreennessOverTime.jpg -------------------------------------------------------------------------------- /episodes/fig/dc-spatial-raster/RGBSTack_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/dc-spatial-raster/RGBSTack_1.jpg -------------------------------------------------------------------------------- /episodes/fig/dc-spatial-raster/UTM_zones_18-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/dc-spatial-raster/UTM_zones_18-19.jpg -------------------------------------------------------------------------------- /episodes/fig/dc-spatial-raster/imageStretch_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/dc-spatial-raster/imageStretch_dark.jpg -------------------------------------------------------------------------------- /episodes/fig/dc-spatial-raster/imageStretch_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/dc-spatial-raster/imageStretch_light.jpg -------------------------------------------------------------------------------- /episodes/fig/dc-spatial-raster/lidarTree-height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/dc-spatial-raster/lidarTree-height.png -------------------------------------------------------------------------------- /episodes/fig/dc-spatial-raster/raster_concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/dc-spatial-raster/raster_concept.png -------------------------------------------------------------------------------- /episodes/fig/dc-spatial-raster/raster_resolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/dc-spatial-raster/raster_resolution.png -------------------------------------------------------------------------------- /episodes/fig/dc-spatial-raster/single_multi_raster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/dc-spatial-raster/single_multi_raster.png -------------------------------------------------------------------------------- /episodes/fig/dc-spatial-raster/spatial_extent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/dc-spatial-raster/spatial_extent.png -------------------------------------------------------------------------------- /episodes/fig/dc-spatial-vector/pnt_line_poly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/dc-spatial-vector/pnt_line_poly.png -------------------------------------------------------------------------------- /episodes/fig/dc-spatial-vector/spatial_extent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/dc-spatial-vector/spatial_extent.png -------------------------------------------------------------------------------- /episodes/fig/map_usa_different_projections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/fig/map_usa_different_projections.jpg -------------------------------------------------------------------------------- /episodes/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/episodes/setup.R -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/index.md -------------------------------------------------------------------------------- /instructors/instructor-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/instructors/instructor-notes.md -------------------------------------------------------------------------------- /learners/discuss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/learners/discuss.md -------------------------------------------------------------------------------- /learners/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/learners/reference.md -------------------------------------------------------------------------------- /learners/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/learners/setup.md -------------------------------------------------------------------------------- /profiles/learner-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/profiles/learner-profiles.md -------------------------------------------------------------------------------- /r-raster-vector-geospatial.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/r-raster-vector-geospatial.Rproj -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/profile: -------------------------------------------------------------------------------- 1 | lesson-requirements 2 | -------------------------------------------------------------------------------- /renv/profiles/lesson-requirements/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/renv/profiles/lesson-requirements/renv.lock -------------------------------------------------------------------------------- /renv/profiles/lesson-requirements/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/renv/profiles/lesson-requirements/renv/.gitignore -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacarpentry/r-raster-vector-geospatial/HEAD/site/README.md --------------------------------------------------------------------------------