PWFSLSmoke (version 1.2.100)

wrcc_downloadData: Download WRCC data

Description

Request data from a particular station for the desired time period. Data are returned as a single character string containing the WRCC output.

Monitor unitIDs can be found at https://wrcc.dri.edu/cgi-bin/smoke.pl.

Usage

wrcc_downloadData(startdate = strftime(lubridate::now(), "%Y010101", tz
  = "UTC"), enddate = strftime(lubridate::now(), "%Y%m%d23", tz =
  "UTC"), unitID = NULL,
  baseUrl = "https://wrcc.dri.edu/cgi-bin/wea_list2.pl")

Arguments

startdate

desired start date (integer or character representing YYYYMMDD[HH])

enddate

desired end date (integer or character representing YYYYMMDD[HH])

unitID

station identifier (will be upcased)

baseUrl

base URL for data queries

Value

String containing WRCC output.

References

Fire Cache Smoke Monitoring Archive

Examples

Run this code
# NOT RUN {
fileString <- wrcc_downloadData(20150701, 20150930, unitID = 'SM16')
df <- wrcc_parseData(fileString)
# }

Run the code above in your browser using DataLab