Skip to contents

A simple features data set containing the geometric data for Missouri's three-digit ZIP Code Tabulation Areas (ZCTAs) for 2022, derived from the U.S. Census Bureau's 2022 TIGER/Line shapefiles.

Usage

data(zi_mo_zcta3)

Format

A data frame with 31 rows and 2 variables:

ZCTA3

three-digit ZCTA value

geometry

simple features geometry

Source

U.S. Census Bureau's TIGER/Line database

Details

The data included in zi_mo_zcta3 can be replicated with the following code: zi_get_geometry(year = 2022, style = "zcta3", state = "MO", method = "intersect").

Examples

utils::str(zi_mo_zcta3)
#> Classes ‘sf’ and 'data.frame':	31 obs. of  2 variables:
#>  $ ZCTA3   : chr  "501" "516" "525" "526" ...
#>  $ geometry:sfc_MULTIPOLYGON of length 31; first list element: List of 21
#>   ..$ :List of 1
#>   .. ..$ : num [1:7, 1:2] -92.9 -92.9 -92.9 -92.9 -92.9 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:38, 1:2] -93.7 -93.7 -93.6 -93.6 -93.6 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:8, 1:2] -93.7 -93.7 -93.7 -93.7 -93.7 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:27, 1:2] -93.2 -93.2 -93.2 -93.2 -93.2 ...
#>   ..$ :List of 2
#>   .. ..$ : num [1:51, 1:2] -92.4 -92.4 -92.4 -92.4 -92.4 ...
#>   .. ..$ : num [1:9, 1:2] -92.3 -92.3 -92.3 -92.3 -92.3 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:9, 1:2] -95 -95 -95 -95 -95 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:284, 1:2] -93.4 -93.4 -93.4 -93.4 -93.3 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:352, 1:2] -94.3 -94.3 -94.3 -94.3 -94.3 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:17, 1:2] -93.7 -93.7 -93.7 -93.7 -93.6 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:7, 1:2] -93.4 -93.4 -93.4 -93.4 -93.4 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:95, 1:2] -93.4 -93.4 -93.4 -93.4 -93.4 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:144, 1:2] -93.8 -93.8 -93.7 -93.7 -93.7 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:347, 1:2] -94.7 -94.7 -94.8 -94.8 -94.9 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:746, 1:2] -93.9 -93.9 -93.9 -93.9 -93.9 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:206, 1:2] -94.3 -94.3 -94.3 -94.3 -94.3 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:10, 1:2] -93.3 -93.3 -93.3 -93.3 -93.3 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:234, 1:2] -93.5 -93.5 -93.5 -93.5 -93.5 ...
#>   ..$ :List of 3
#>   .. ..$ : num [1:579, 1:2] -93.1 -93.1 -93.1 -93.1 -93.1 ...
#>   .. ..$ : num [1:5, 1:2] -92.9 -92.9 -92.9 -92.9 -92.9 ...
#>   .. ..$ : num [1:6, 1:2] -92.8 -92.8 -92.8 -92.8 -92.8 ...
#>   ..$ :List of 2
#>   .. ..$ : num [1:1521, 1:2] -93.3 -93.3 -93.2 -93.2 -93.2 ...
#>   .. ..$ : num [1:10, 1:2] -93.2 -93.2 -93.2 -93.2 -93.2 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:9, 1:2] -93.1 -93.1 -93.1 -93.1 -93.1 ...
#>   ..$ :List of 1
#>   .. ..$ : num [1:363, 1:2] -93.7 -93.7 -93.6 -93.6 -93.6 ...
#>   ..- attr(*, "class")= chr [1:3] "XY" "MULTIPOLYGON" "sfg"
#>  - attr(*, "sf_column")= chr "geometry"
#>  - attr(*, "agr")= Factor w/ 3 levels "constant","aggregate",..: NA
#>   ..- attr(*, "names")= chr "ZCTA3"
utils::head(zi_mo_zcta3)
#> Simple feature collection with 6 features and 1 field
#> Geometry type: MULTIPOLYGON
#> Dimension:     XY
#> Bounding box:  xmin: -95.88891 ymin: 37.93668 xmax: -88.97182 ymax: 42.69899
#> Geodetic CRS:  NAD83
#>   ZCTA3                       geometry
#> 1   501 MULTIPOLYGON (((-92.9414 41...
#> 2   516 MULTIPOLYGON (((-95.36826 4...
#> 3   525 MULTIPOLYGON (((-91.91263 4...
#> 4   526 MULTIPOLYGON (((-91.43297 4...
#> 5   620 MULTIPOLYGON (((-90.61378 3...
#> 6   630 MULTIPOLYGON (((-90.32484 3...