idot_sf | R Documentation |
The nine highway districts covering the entire state of Illinois, as defined by the Illinois Department of Transportation (IDOT). Includes a column indicating which of the five transportation regions each district belongs to. Created using the county boundaries in the US Census Bureau's TIGER/Line shapefiles, 2023 vintage.
idot_sf
A polygon sf
object with 9 rows and 4
variables:
District ID, assigned by IDOT. Character.
Region ID, assigned by IDOT. Character.
Area in square miles. Double.
Feature geometry. sf
polygon.
US Census Bureau TIGER/Line counties, aggregated into IDOT Regions
# Display the IDOT districts/regions with ggplot2
library(ggplot2)
ggplot(idot_sf) + geom_sf(aes(fill = region), lwd = 0.1) + theme_void()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.