
Get Baltimore metro area worker flows from the Census Transportation Planning data (2012-2016 ACS)
Source:R/get_baltimore_worker_flows.R
get_baltimore_worker_flows.RdUsage
get_baltimore_worker_flows(
area,
tracts = baltimore_tracts,
min_estimate = 10,
geometry = TRUE,
crs = 2804
)Arguments
- area
A sf or sfc object that intersects with tracts.
- tracts
Data from
tigris::tracts()for one or more county in the Balitmore metro area. Defaults tobaltimore_tracts.- min_estimate
Minimum number of workers or residents a tract must have to include in results. Tracts with fewer than the min_estimate values are filtered out of results. Defaults to 10.
- geometry
If
TRUE, return a list of sf objects. IfFALSE, return a list of data.frame objects. Defaults toTRUE.- crs
Coordinate reference system to use for returned data when
geometry = TRUE. Defaults to 2804.