View source: R/cefa_parseData.R
cefa_parseData | R Documentation |
Parse raw character data from CEFA into a tibble. The incoming fileString
can be read in directly from CEFA using cefa_downloadData()
or from a
local file using readr::read_file()
.
cefa_parseData(fileString = NULL)
fileString |
Character string containing RAWS FW13 data. |
Raw tibble of RAWS data.
Program for Climate, Ecosystem and Fire Applications
cefa_downloadData
## Not run:
# Fail gracefully if any resources are not available
try({
library(RAWSmet)
tbl <-
cefa_downloadData(nwsID = 500742) %>%
cefa_parseData()
dplyr::glimpse(tbl, width = 75)
}, silent = FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.