Point locations of abandoned vehicles in Chicago in September 2016.

vehicle_pts

Format

An sf data frame with 2635 rows, 10 variables, and a geometry column:

CreationDt

Date created

Address

Address of abandoned vehicle

ZIPCode

Zip code of abandoned vehicle

X

Projected X, EPSG 32616

Y

Projected Y, EPSG 32616

Ward

Ward ID

PoliceD

Police district ID

Comm

Community area ID

Latitude

Latitude of vehicle

Longitude

Longitude of vehicle

geometry

POINT

Source

https://data.cityofchicago.org/Service-Requests/311-Service-Requests-Abandoned-Vehicles/3c9v-pnva

Details

Sf object, unprojected. EPSG 4326: WGS84.

Examples

if (requireNamespace("sf", quietly = TRUE)) { library(sf) data(vehicle_pts) plot(vehicle_pts["CreationDt"]) }