get_station_month_data {aire.zmvm} | R Documentation |
Download monthly pollution data
Description
Retrieve hourly averages, daily maximums, or daily minimums of pollution data in the original units, by station, from the air quality server at Consulta de Concentraciones
Usage
get_station_month_data(criterion, pollutant, year, month)
Arguments
criterion |
Type of data to download.
|
pollutant |
The type of pollutant to download.
|
year |
an integer indicating the year for which to download data (the earliest possible value is 1986) |
month |
month number to download |
Details
Temperature (TMP) data was rounded to the nearest integer, but the
get_station_data
function allows you to download data accurate
to one decimal point in some cases (i.e. for old data).
Value
A data.frame with pollution data, the hours correspond to the Etc/GMT+6 timezone, with no daylight saving time
Warning
The data for the current month is in the process of being validated
See Also
stations
for a data.frame with the location and names
of all pollution measuring stations
Other raw data functions:
get_station_data()
Examples
## Not run:
## Download daily hourly PM10 data (particulate matter 10 micrometers or
## less in diameter) from March 2016
df_pm10 <- get_station_month_data("HORARIOS", "PM10", 2016, 3)
head(df_pm10)
## Download daily hourly O3 data from October 2017
df_o3 <- get_station_month_data("HORARIOS", "O3", 2018, 1)
## Convert to local Mexico City time
df_o3$mxc_time <- format(as.POSIXct(paste0(df_o3$date,
" ",
df_o3$hour, ":00"),
tz = "Etc/GMT+6"),
tz = "America/Mexico_City")
head(df_o3)
## End(Not run)