Skip to contents

TIGER address features (i.e. street address ranges) are read from compressed addrfeat shapefiles for each county and Census vintage. If not already present, compressed addrfeat shapefiles are downloaded from the census.gov FTP site to the R user's data directory for the addr package.

When reading into R, the data is converted to a "long" format by street side L/R to be used with tiger_geocode().

Usage

tiger_addr_feat(county, year)

Arguments

county

character string of county identifier

year

character year of tigris product

Value

a tibble with LINEARID, FULLNAME, side, ZIP, FROMHN, TOHN, PARITY, OFFSET, and s2_geography columns

Examples

tiger_addr_feat("39061", "2024")
#> # A tibble: 55,922 × 9
#>    LINEARID     FULLNAME   side    ZIP FROMHN  TOHN PARITY OFFSET s2_geography  
#>  * <chr>        <chr>      <chr> <int>  <int> <int> <chr>  <chr>  <s2_geography>
#>  1 110386722678 S State St L     45030    300   318 E      N      LINESTRING (-…
#>  2 110386722678 S State St L     45030    100   108 E      N      LINESTRING (-…
#>  3 110386722678 S State St L     45030    200   298 E      N      LINESTRING (-…
#>  4 110386722678 S State St L     45030    320   398 E      N      LINESTRING (-…
#>  5 110386722678 S State St L     45030    400   446 E      N      LINESTRING (-…
#>  6 110386722678 S State St L     45030    448   498 E      N      LINESTRING (-…
#>  7 110386722678 S State St L     45030    500   998 E      N      LINESTRING (-…
#>  8 110386722678 S State St L     45030   1000  1098 E      N      LINESTRING (-…
#>  9 110386722678 S State St L     45030  26348 26398 E      N      LINESTRING (-…
#> 10 110386722678 S State St L     45030    110   198 E      N      LINESTRING (-…
#> # ℹ 55,912 more rows