API using Socrata to Melbourne pedestrian data (per hour)
melb_walk_fast(year = NULL, sensor = NULL, na.rm = FALSE, app_token = NULL)
year | An integer or a vector of integers. By default, it's the current year. |
---|---|
sensor | Sensor names. By default, it pulls all the sensors. Use pull_sensor to see the available sensors. |
na.rm | Logical. |
app_token | Characters giving the application token. A limited number of
requests can be made without an app token ( |
A tibble including these variables as follows:
Sensor
: Sensor name
Date_Time
: Date time when the pedestrian counts are recorded
Date
: Date associated with Date_Time
Time
: Time of day
Count
: Hourly counts
It provides the API using Socrata, where counts are uploaded on a monthly basis. The up-to-date data would be till the previous month. The data is sourced from Melbourne Open Data Portal. Please refer to Melbourne Open Data Portal for more details about the dataset and its policy.
if (FALSE) { # Retrieve the year 2017 melb_walk_fast(year = 2017) # Retrieve the year 2017 for Southern Cross Station melb_walk_fast(year = 2017, sensor = "Southern Cross Station") }