primary_roads {tigris}R Documentation

Download a national primary roads shapefile into R

Description

From the Census Bureau: "Primary roads are generally divided, limited-access highways within the Federal interstate highway system or under state management. These highways are distinguished by the presence of interchanges and are accessible by ramps and may include some toll highways."

Usage

primary_roads(year = NULL, ...)

Arguments

year

the data year; defaults to 2022

...

arguments to be passed to internal function load_tiger, which is not exported. See Additional Arguments.

Value

an sf object with columns

Additional Arguments

Additional arguments that can be passed in ... are:

See Also

https://www2.census.gov/geo/pdfs/maps-data/data/tiger/tgrshp2020/TGRSHP2020_TechDoc.pdf

Other transportation functions: address_ranges(), primary_secondary_roads(), rails(), roads()

Examples

## Not run: 
library(tigris)

rds <- primary_roads()

plot(rds$geometry)


## End(Not run)

[Package tigris version 2.1 Index]