ia_places: Shapefiles of places in IA in 2020

ia_placesR Documentation

Shapefiles of places in IA in 2020

Description

The shapefiles are based on places in Iowa in 2020. The names of places and its population numbers are based on the decennial census counts for 2020, 2010, and 2000. Note that the US Census Bureau used differential privacy estimates for the 2020 Census, which might impact the exact numbers below county levels. In particular, for small areas, these estimates might differ from the actual population numbers.

Usage

ia_places

Format

A tibble with 1030 rows and 7 columns

geoid

character

name

character

geometry

sfc_MULTIPOLYGON

pop2020

numeric, 2020 Census Variable P1_001N

pop2010

numeric, 2010 Census Variable P001001

pop2000

numeric, 2000 Census Variable PL001001

Source

US Census Bureau Decennial Census 2020, 2010, 2000

Examples

# three geometries on top of each other
library(leaflet)
library(sf)
ia_cities %>%
  leaflet() %>%
  addTiles() %>%
  addPolygons(data = ia_counties,
             weight = 1, color="#333333") %>%
  addPolygons(data = ia_places, weight = 1, color="maroon") %>%
  addCircleMarkers(radius = 0,
                   label = ~city)

DSPG-ISU/DSPG documentation built on Feb. 19, 2024, 9:36 p.m.