How could the content be improved?
The tidyterra library has a nice geom for SpatRaster objects. E.g.,
library(tidyterra)
DSM_HARV <-
rast("/data/NEON-DS-Airborne-Remote-Sensing/HARV/DSM/HARV_dsmCrop.tif")
ggplot() + geom_spatraster(data = DSM_HARV , aes(fill = HARV_dsmCrop)) +
scale_fill_viridis_c()
This would keep students from having to convert to data.frame or tibble for geom_raster
How could the content be improved?
The
tidyterralibrary has a nice geom for SpatRaster objects. E.g.,This would keep students from having to convert to
data.frameortibbleforgeom_raster