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)

Arguments

fileString

Character string containing RAWS FW13 data.

Value

Raw tibble of RAWS data.

Examples

if (FALSE) {
# 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)
}