Color palette for landcover data
lc_pal.Rd
Colors from coolors, hand selected by me, to look OK.
Examples
data(lc_pal)
data(landcover)
library(ggplot2)
ggplot() +
geom_sf(data = landcover, aes(fill = class)) +
scale_fill_manual(values = lc_pal) +
theme_minimal()