R/utils.R
bec_colours.Rd
Standard colours used to represent Biogeoclimatic Zone colours to be used in plotting.
bec_colours() bec_colors()
named vector of hexadecimal colour codes. Names are standard abbreviations of Zone names.
if (FALSE) { if (require(sf) && require(ggplot2)) { bec <- bec() ggplot() + geom_sf(data = bec[bec$ZONE %in% c("BG", "PP"),], aes(fill = ZONE, col = ZONE)) + scale_fill_manual(values = bec_colors()) + scale_colour_manual(values = bec_colours()) } }