cefa_parseData: Parse RAWS FW13 characterString

View source: R/cefa_parseData.R

cefa_parseDataR Documentation

Parse RAWS FW13 characterString

Description

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().

Usage

cefa_parseData(fileString = NULL)

Arguments

fileString

Character string containing RAWS FW13 data.

Value

Raw tibble of RAWS data.

References

Program for Climate, Ecosystem and Fire Applications

FW13 Data Format

See Also

cefa_downloadData

Examples

## 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)


MazamaScience/RAWSmet documentation built on May 6, 2023, 6:57 a.m.