Boundary region for Bigwoods defined in terms of (x,y) vertices of a polygon.

study_region_bw

Format

A sf spatial features polygon

See also

Examples

library(ggplot2) library(sf) # Convert all 2008 plot stems to sf object census_2008_bw_sf <- census_2008_bw %>% st_as_sf(coords = c("gx", "gy")) # Plot stems with plot boundary ggplot() + geom_sf(data = census_2008_bw_sf, size = 0.25) + geom_sf(data = study_region_bw, color = "red", fill = "transparent")