Learning Objectives
Following this assignment students should be able to:
- import, view properties, and plot a
raster- perform simple
rastermath- import, view properties, and plot vector data
- extract points from a
rasterusing a shapefile
Reading
Lecture Notes
- Spatial Data Raster
- Spatial Data Raster Math
- Spatial Data Vector
- Spatial Data Projections
- Spatial Data Extracting Raster Values
Place this code at the start of the assignment to load all the required packages.
library(stars)
library(sf)
library(ggplot2)
library(dplyr)
Exercises
Canopy Height from Space (100 pts)
The National Ecological Observatory Network has invested in high-resolution airborne imaging of their field sites. Elevation models generated from LiDAR can be used to map the topography and vegetation structure at the sites.
Check to see if there is a
datadirectory in your workspace with anSJERsubdirectory in it. If not, Download the data and extract it into your working directory. TheSJERdirectory contains raster data for a digital terrain model (sjer_dtmcrop.tif) and a digital surface model (sjer_dsmcrop.tif), and vector data on plot locations (sjer_plots.shp) and the site boundary (sjer_boundar.shp) for the San Joaquin Experimental Range.- Map the digital terrain model for
SJERusing theviridiscolor ramp. - Create and map the canopy height model for
SJERusing theviridiscolor ramp. To do this subtract the values in the digital terrain model from the values in the digital surface model usingrastermath (chm = dsm - dtm). - Create a map that shows the
SJERboundary and the plot locations colored byplot_type. - Transform the plot data to have the same CRS as the CHM and create a map that shows the canopy height model from (3) with the plot locations on top.
- Extract the mean canopy heights at each plot location for
SJERand display the values. - Add the canopy height values from (5) to the spatial data frame you created for the plots and display the full data frame.
- Create a map that shows the
SJERboundary and the plot locations colored by the canopy height values. - Create a map that shows the canopy height model raster, but in
cmrather thanm(i.e., multiply the canopy height model by 100). - Create a map that shows the digital terrain model raster, the plot locations, and the
SJERboundary, using transparency as needed to allow all three layers to be seen. Remember all three layers will need to have the same CRS. - (optional) Conduct an analysis of the relationship between elevation and canopy height at the SJER plots. Start by extracting the mean elevations (i.e., the values from the digital terrain model) at each plot location for
SJERand adding them to the spatial plots data so that this data now includes both the elevations and the canopy heights. Then make a scatter plot showing the relationship between elevation and canopy height using this data. Color the points byplot_typeand fit a linear model through all of the points together (not separately byplot_type). Finally, usedplyrto calculate the average canopy height and average elevation for the two different plot types. Give the axes good labels.
- Map the digital terrain model for