Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add collisions() #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions R/collisions-locations.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#' Download collisions data from stats19
#'
#' @param bbox either a bounding box in the form w,s,e,n or an exact boundary as csv string of longitude/latitudes:
#' @param casualtiesinclude a text string specifying the type of casualty
#' (as of May 2018 only `cyclist` is supported)
#' @param field string/number specifying the variables returned (all returned by default)
#' @param limit an integer specifying the number of casualties returned
#' default 400, max 2000
#' @param jitter 1|0, default 0
#' @param format string, default geojson
#' @param datetime string specifying the output format of the date with the default of
#' sqldatetime (i.e. simplified ISO 8601 format): YYYY-MM-DD HH:MM:SS
#' @export
#' @examples
#' \dontrun{
#' # example of from https://www.cyclestreets.net/api/v2/collisions.locations/
#' }
collisions <- function(bbox, casualtiesinclude, field, limit = 400, jitter = 0, format = "geojson", datetime = "sqldatetime") {
# ... wip ...
}