Description Usage Arguments Value See Also Examples
Retrieve raw records uploaded to the datastore within a specified date range and/or from a subset of car parks.
1  | get_range_crude(from = NULL, to = NULL, abbrs = NULL)
 | 
from | 
 Datetime object (or "YYYY-MM-DD HH:MM:SS" string) for the earliest record to retrieve.  | 
to | 
 Datetime object (or "YYYY-MM-DD HH:MM:SS" string) for the latest record to retrieve.  | 
abbrs | 
 Abbreviations of names of car parks from which to retrieve records: 
  | 
Car parking records from the specified date range.
1 2 3 4 5 6 7 8 9 10 11  | ## Not run: 
# Records for June 2016
raw_data <- get_range_crude("2016-06-01 00:00:00", "2016-06-30 23:59:59")
# All records from Podium CP since 14:30 on 1st January 2017
raw_data <- get_range_crude(from = "2017-01-01 14:30:00", abbrs = "p")
# All records from P+Rs before 2015
raw_data <- get_range_crude(to = "2014-12-31 23:59:59", abbrs = c("l", "n", "od"))
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.