Newer
Older
% Generated by roxygen2 (4.0.2): do not edit by hand
\title{Function to return data from the NWISWeb WaterML1.1 service}
\item{obs_url}{string containing the url for the retrieval}
mergedDF a data frame containing columns agency, site, dateTime, values, and remark codes for all requested combinations
This function accepts a url parameter that already contains the desired
NWIS site, parameter code, statistic, startdate and enddate.
startDate <- "2012-09-01"
endDate <- "2012-10-01"
offering <- '00003'
property <- '00060'
obs_url <- constructNWISURL(siteNumber,property,startDate,endDate,'dv')
urlMulti <- constructNWISURL("04085427",c("00060","00010"),
startDate,endDate,'dv',statCd=c("00003","00001"))
goundwaterExampleURL <-
"http://waterservices.usgs.gov/nwis/gwlevels/?format=waterml&sites=431049071324301&startDT=2013-10-01&endDT=2014-06-30"
unitDataURL <- constructNWISURL(siteNumber,property,
as.character(Sys.Date()),as.character(Sys.Date()),'uv',format='xml')
unitData <- getWaterML1Data(unitDataURL)