Skip to contents

Colors from coolors, hand selected by me, to look OK.

Usage

lc_pal

Format

An object of class character of length 12.

Examples

data(lc_pal)
data(landcover)

library(ggplot2)
ggplot() +
geom_sf(data = landcover, aes(fill = class)) +
 scale_fill_manual(values = lc_pal) +
 theme_minimal()