R/sensor_calendarPlot.R
sensor_calendarPlot.Rd
Function for plotting PM2.5 concentration in a calendar format.
This function wraps the openair calendarPlot()
function.
sensor_calendarPlot(
sensor = NULL,
colors = NULL,
breaks = NULL,
labels = NULL,
limits = c(0, 100),
title = NULL,
data.thresh = 50
)
An 'airsensor' object
Colours to be used for plotting. Options include "aqi", "scaqmd", “default”,
“increment”, “heat”, “jet” and RColorBrewer colours — see the openair
openColours
function for more details. For user defined the user can
supply a list of colour names recognised by R (type colours()
to see
the full list). An example would be cols = c("yellow", "green", "blue")
If a categorical scale is required then these breaks will be
used. For example, breaks = c(0, 50, 100, 1000)
. In this case “good”
corresponds to values berween 0 and 50 and so on. Users should set the
maximum value of breaks to exceed the maximum data value to ensure it is
within the maximum final range e.g. 100–1000 in this case.
If a categorical scale is required then these labels will be
used. Note there is one less label than break. For example,
labels = c("good", "bad", "very bad")
. breaks must also be supplied if
labels are given.
Use this option to manually set the colour scale limits. This
is useful in the case when there is a need for two or more plots and a
consistent scale is needed on each. Set the limits to cover the maximimum
range of the data for all plots of interest. For example, if one plot had
data covering 0–60 and another 0–100, then set limits = c(0, 100)
.
Note that data will be ignored if outside the limits range.
Optional title. If NULL
, a default title will be constructed.
Data capture threshold passed to openair::timeAverage()
.
For example, data.thresh = 75
means that at least 75
be available in a day for the value to be calculate, else the data is removed.
A plot and an object of class "openair".
Data are trimmed to the local-time year or month boundaries as appropriate.
Two special options are provided to specify a set of colors
,
breaks
and labels
.
Using colors = "aqi"
will use US EPA Air Quality Index colors and breaks
defined by breaks <- c(-Inf, 12, 35.5, 55.5, 150.5, 250.5, Inf)
.
Using colors = "scaqmd"
will use a custom set of colors and breaks
defined by breaks <- c(-Inf, 12, 35, 55, 75, Inf)
.
Daily averages are calculated using LST (Local Standard Time) day boundaries as specified by the US EPA. LST assumes that standard time applies all year round and guarantees that every day has 24 hours -- no "spring forward" or "fall back". Because of this, LST daily averages calculated during months where daylight savings time is in effect will differ very slightly from daily averages calculated using local "clock time".