Returns details on crimes at a given location, if given the id of a specific location. If given latitude and longitude, finds the nearest pre-defined location and returns the crimes which occurred there.
ukc_street_crime_outcome(lat, lng, location, date = NULL)
Latitude. Accepts a single value or a vector of values to create a custom polygon.
Longitude. Accepts a single value or a vector of values to create a custom polygon.
If specified, lat
and lng
are ignored. Location IDs are
available through other methods including ukc_street_crime()
.
The year and month in "YYYY-MM" form. If NULL
, latest
available month will be returned.
A tibble
with details of street crime outcomes.
If specified, lat
and lng
must be the same length. location
or both lat
and lng
must be specified.
if (FALSE) {
street_crime_outcome1 <- ukc_street_crime_outcome(location = 883498)
street_crime_outcome2 <- ukc_street_crime_outcome(lat = 52, lng = 0)
}