View source: R/get_bsierp_regions.R
get_bsierp_regions | R Documentation |
Retrieve BSIERP region polygons.
get_bsierp_regions(set.crs)
set.crs |
Which coordinate reference system should be used? If 'auto', Alaska Albers Equal Area coordinate reference system (EPSG:3338) is automatically assigned. |
## Not run:
library(akgfmaps)
bsierp_regions <- get_bsierp_regions(set.crs = "EPSG:3338")
bsierp_centroid <- sf::st_centroid(bsierp_regions)
ggplot() +
geom_sf(data = bsierp_regions) +
geom_sf_text(data = bsierp_centroid,
mapping = aes(label = BSIERP_Region_Name))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.