library(ggplot2)
ggplot(liv_campus) +
geom_sf(fill = 'pink') +
geom_sf(data = blds_inside, aes(fill = name)) +
scale_fill_manual(values = rainbow(nrow(blds_inside))) +
geom_sf(data = blds_inside %>%
filter(name == 'Lucy Stone Hall'),
fill = 'black') +
# Show label in figure
geom_sf_label(data = blds_inside %>%
filter(name == 'Lucy Stone Hall'),
aes(label = name)) +
geom_sf(data = bld_nst_lsh, fill = 'black') +
geom_sf(data = bld_samples, pch = 20, color = 'grey', size = 0.6) +
theme_bw() + ggtitle('Livingston campus') +
theme(legend.position = 'bottom')