The counties that are within the CMAP travel modeling area or the "Chicago-Naperville-Elgin, IL-IN-WI" Metropolitan Statistical Area (as defined by the United States Office of Management and Budget). From the US Census Bureau's TIGER/Line shapefiles, 2023 vintage.

county_sf

Format

A polygon sf object with 23 rows and 8 variables:

geoid_county

Unique 5-digit county ID (a.k.a. FIPS code), assigned by the Census Bureau. Character.

county

County name. Character.

state

2-letter state abbreviation. Character.

cmap

Is the county part of the 7-county CMAP region? Logical.

msa

Is the county part of the "Chicago-Naperville-Elgin, IL-IN-WI" Metropolitan Statistical Area? Logical.

travel_model

Is the county at least partially covered by CMAP's travel modeling area? Logical.

sqmi

Area in square miles. Double.

geometry

Feature geometry. sf polygon.

Source

US Census Bureau TIGER/Line

Details

Census Bureau description:

"The primary legal divisions of most states are termed counties. Each county or statistically equivalent entity is assigned a three-character numeric Federal Information Processing Series (FIPS) code based on alphabetical sequence that is unique within state, and an eight-digit National Standard (NS) code."

Note: The Illinois counties of LaSalle, Lee and Ogle are included in their entirety, although only portions of these counties are part of the CMAP travel modeling area. The precise geographic extent of the CMAP travel modeling area is reflected in zone_sf and subzone_sf.

Examples

# Display the counties with ggplot2
library(ggplot2)
ggplot(county_sf) +
  geom_sf(aes(fill=paste(travel_model, msa)), lwd = 0.1) +
  geom_sf(data = dplyr::filter(county_sf, cmap), fill = NA, lwd = 0.5) +
  theme_void()