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 data
directory in your workspace with an SJER
subdirectory in it.
If not, Download the data and extract it into your working directory.
The SJER
directory 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.
SJER
using the viridis
color ramp.SJER
using the viridis
color ramp. To do this subtract the values in the digital terrain model from the values in the digital surface model using raster
math (chm = dsm - dtm
).SJER
boundary and the plot locations colored by plot_type
.SJER
and display the values.SJER
boundary and the plot locations colored by the canopy height values.cm
rather than m
(i.e., multiply the canopy height model by 100).SJER
boundary, using transparency as needed to allow all three layers to be seen. Remember all three layers will need to have the same CRS.SJER
and 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 by plot_type
and fit a linear model through all of the points together (not separately by plot_type
). Finally, use dplyr
to calculate the average canopy height and average elevation for the two different plot types. Give the axes good labels.