Skip to content
Snippets Groups Projects
Commit b33ade29 authored by Laura A DeCicco's avatar Laura A DeCicco
Browse files

Help file updates.

parent 5cc24fdf
No related branches found
No related tags found
1 merge request!21Added time zone stuff to NWIS qw.
...@@ -15,8 +15,8 @@ Gives a summary of data to be used for WRTDS analysis ...@@ -15,8 +15,8 @@ Gives a summary of data to be used for WRTDS analysis
} }
\examples{ \examples{
# These examples require an internet connection to run # These examples require an internet connection to run
exDaily <- getDVData('01594440','00060', '1985-01-01', '1985-03-31', interactive=FALSE) exDaily <- getNWISDaily('01594440','00060', '1985-01-01', '1985-03-31', interactive=FALSE)
exSample <- getSampleData('01594440','01075', '1985-01-01', '1985-03-31', interactive=FALSE) exSample <- getNWISSample('01594440','01075', '1985-01-01', '1985-03-31', interactive=FALSE)
dataOverview(localDaily = exDaily, localSample = exSample) dataOverview(localDaily = exDaily, localSample = exSample)
} }
\seealso{ \seealso{
......
...@@ -29,8 +29,8 @@ section 3.4 of the vignette for more details. ...@@ -29,8 +29,8 @@ section 3.4 of the vignette for more details.
\examples{ \examples{
# These examples require an internet connection to run # These examples require an internet connection to run
Sample_01075 <- getNWISSample('01594440','01075', '1985-01-01', '1985-03-31') Sample_01075 <- getNWISSample('01594440','01075', '1985-01-01', '1985-03-31')
Sample_All <- getNWISSample('05114000','00915;00931', '1985-01-01', '1985-03-31') Sample_All2 <- getNWISSample('05114000',c('00915','00931'), '1985-01-01', '1985-03-31')
Sample_Select <- getNWISSample('05114000','00915;00931', '', '') Sample_Select <- getNWISSample('05114000',c('00915','00931'), '', '')
} }
\seealso{ \seealso{
\code{\link{compressData}}, \code{\link{populateSampleColumns}}, , \code{\link{getNWISSample}} \code{\link{compressData}}, \code{\link{populateSampleColumns}}, , \code{\link{getNWISSample}}
......
...@@ -3,12 +3,14 @@ ...@@ -3,12 +3,14 @@
\alias{getRDB1Data} \alias{getRDB1Data}
\title{Function to return data from the NWIS RDB 1.0 format} \title{Function to return data from the NWIS RDB 1.0 format}
\usage{ \usage{
getRDB1Data(obs_url, asDateTime = FALSE) getRDB1Data(obs_url, asDateTime = FALSE, qw = FALSE)
} }
\arguments{ \arguments{
\item{obs_url}{string containing the url for the retrieval} \item{obs_url}{string containing the url for the retrieval}
\item{asDateTime}{logical, if TRUE returns date and time as POSIXct, if FALSE, Date} \item{asDateTime}{logical, if TRUE returns date and time as POSIXct, if FALSE, Date}
\item{qw}{logical, if TRUE parses as water quality data (where dates/times are in start and end times)}
} }
\value{ \value{
data a data frame containing columns agency, site, dateTime, values, and remark codes for all requested combinations data a data frame containing columns agency, site, dateTime, values, and remark codes for all requested combinations
......
...@@ -512,7 +512,7 @@ names(dissolvedNitrate) ...@@ -512,7 +512,7 @@ names(dissolvedNitrate)
<<getQWtemperaturePlot, echo=TRUE, fig.cap=paste(parameterINFO$parameter_nm, "at", siteINFO$station.nm[1])>>= <<getQWtemperaturePlot, echo=TRUE, fig.cap=paste(parameterINFO$parameter_nm, "at", siteINFO$station.nm[1])>>=
with(dissolvedNitrate, plot( with(dissolvedNitrate, plot(
dateTime, result_va_00618, startDateTime, result_va_00618,
xlab="Date",ylab = paste(parameterINFO$srsname, xlab="Date",ylab = paste(parameterINFO$srsname,
"[",parameterINFO$parameter_units,"]") "[",parameterINFO$parameter_units,"]")
)) ))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment