The official boundaries of the Chicago Community Areas. Obtained 2/12/2023.
cca_sf
A multipolygon sf
object with 77 rows and 4
variables:
Community area name. Character.
Numeric ID, as assigned by the City of Chicago. Integer.
Area in square miles. Double.
Feature geometry. sf
multipolygon.
# Display the CCAs with ggplot2
library(ggplot2)
ggplot(cca_sf) + geom_sf(lwd = 0.1) + theme_void()