Loads FW13 station metadata and data from the rawsDataDir
.
If the data is not in this directory, this will download and save the data.
cefa_load(
nwsID = NULL,
meta = NULL,
newDownload = NA,
baseUrl = "https://cefa.dri.edu/raws/fw13/",
verbose = TRUE
)
NWS RAWS station identifier.
Tibble of FW13 station metadata.
Logical flag specifying whether or not to download and override existing data.
Base URL for data queries.
Logical flag controlling detailed progress statements.
Timeseries object with 'meta' and 'data'.
The `newDownload` parameter has three possible settings:
NA
-- Download data if it is not found in rawsDataDir
TRUE
-- Always download data, overwriting existing data in rawsDataDir
.
This is useful for updating data files with more recent data.
FALSE
-- Never download data. This is useful when working with
wrcc_loadMultiple and archival data to avoid continually requesting
data for stations which have no data over a particular time period.
cefa_createRawsObject
setRawsDataDir
if (FALSE) {
# Fail gracefully if any resources are not available
try({
# For creation of metadata
library(MazamaSpatialUtils)
setSpatialDataDir("~/Data/Spatial")
loadSpatialData("NaturalEarthAdm1.rda")
library(RAWSmet)
setRawsDataDir("~/Data/RAWS")
meta <- cefa_loadMeta()
rawsObject <- cefa_load(nwsID = 451702, meta = meta)
head(rawsObject$data)
}, silent = FALSE)
}