View source: R/importNGWMN_wml2.R
importWaterML2 | R Documentation |
Returns data frame columns of all information with each time series measurement; Anything defined as a default, is returned as an attribute of that data frame.
importWaterML2(input, asDateTime = FALSE, tz = "UTC")
input |
XML with only the wml2:MeasurementTimeseries node and children |
asDateTime |
logical, if |
tz |
character to set timezone attribute of datetime. Default is an empty quote, which converts the datetimes to UTC (properly accounting for daylight savings times based on the data's provided time zone offset). Possible values are "America/New_York", "America/Chicago", "America/Denver", "America/Los_Angeles", "America/Anchorage", "America/Honolulu", "America/Jamaica", "America/Managua", "America/Phoenix", and "America/Metlakatla" |
baseURL <- "https://waterservices.usgs.gov/nwis/dv/?format=waterml,2.0"
URL <- paste(baseURL, "sites=01646500",
"startDT=2014-09-01",
"endDT=2014-09-08",
"statCd=00003",
"parameterCd=00060",
sep = "&"
)
timesereies <- importWaterML2(URL, asDateTime = TRUE, tz = "UTC")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.