The official boundaries of the Chicago wards established in May of 2023. Obtained 5/13/2023 and came into effect on 5/15/2023.
ward_sf
A multipolygon sf
object with 50 rows and 3
variables:
Ward number. Integer.
Area in square miles. Double.
Feature geometry. sf
multipolygon.
# Display the wards with ggplot2
library(ggplot2)
ggplot(ward_sf) + geom_sf(lwd = 0.1) + theme_void()