Downloads 'daily' data files into dataDir
for later use.
Downloaded versions of PWFSL monitoring .RData files allow users to work with
the package without access to the internet. Once data are downloaded to
dataDir
, any of the data loading functions can be called with the
dataDir
argument to replace internet downloads with local file access.
The recommended directory for PWFSL monitoring data is
"~/data/monitoring/RData"
.
For the most recent data, use monitor_downloadLatest()
.
For data extended more than 45 days into the past, use monitor_downloadAnnual()
.
Currently supported parameters include the following:
PM2.5
Avaialble RData files can be seen at: https://haze.airfire.org/monitoring/latest/RData/
monitor_downloadDaily( parameter = "PM2.5", baseUrl = "https://haze.airfire.org/monitoring/latest/RData/", dataDir = "~/Data/monitoring/RData", ... )
parameter | Parameter of interest. |
---|---|
baseUrl | Base URL for data files. |
dataDir | Local directory in which to save the data file. |
... | Additional arguments passed to |
# \donttest{ # Fail gracefully if any resources are not available try({ library(PWFSLSmoke) monitor_loadLatest() %>% monitor_subset(stateCodes=CONUS) %>% monitor_map() }, silent = FALSE)# }