diff --git a/.Rbuildignore b/.Rbuildignore
index c9b87c837f122a75af1aa1d8020f77baba754931..a60bc6cfc5b020793b04bd9e41e77a1ca5c91f0b 100644
--- a/.Rbuildignore
+++ b/.Rbuildignore
@@ -2,6 +2,7 @@ vignettes/figure
 appveyor.yml
 .travis.yml
 .gitignore
+examplePhosQuery.R
 dataRetrieval-concordance.tex
 ^.*\.Rproj$
 ^\.Rproj\.user$
diff --git a/DESCRIPTION b/DESCRIPTION
index dcbf41b63f09da08fa79ccbb05dfd335e55517d8..5bc6ef5235d70c18e857f25e6f53de652c9d874b 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -12,7 +12,7 @@ Authors@R: c( person("Robert", "Hirsch", role = c("aut"),
 Description: Collection of functions to help retrieve U.S. Geological Survey
     (USGS) and U.S. Environmental Protection Agency (EPA) water quality and
     hydrology data from web services. USGS web services are discovered from the
-    National Water Information System (NWIS) tools. Both EPA and USGS water 
+    National Water Information System (NWIS) tools. Both EPA and USGS water
     quality data are obtained from the Water Quality Portal.
 License: CC0
 Copyright: This software is in the public domain because it contains materials
@@ -39,3 +39,4 @@ VignetteBuilder: knitr
 BuildVignettes: true
 BugReports: https://github.com/USGS-R/dataRetrieval/issues
 URL: https://github.com/USGS-R/dataRetrieval, http://pubs.usgs.gov/tm/04/a10/
+RoxygenNote: 5.0.0
diff --git a/NAMESPACE b/NAMESPACE
index 64dd6ff76219176bfb732a22e64477e5e09e0156..09a0ba0258653f4ff26dbe939c7ed74b63c596da 100644
--- a/NAMESPACE
+++ b/NAMESPACE
@@ -1,4 +1,4 @@
-# Generated by roxygen2 (4.1.1): do not edit by hand
+# Generated by roxygen2: do not edit by hand
 
 export(checkWQPdates)
 export(constructNWISURL)
diff --git a/man/checkWQPdates.Rd b/man/checkWQPdates.Rd
index 0266e260bf18d3f0fc6f5aa3765d8bb56044d2a9..ca07a312038357731c9578c075a70fde51bd2b2b 100644
--- a/man/checkWQPdates.Rd
+++ b/man/checkWQPdates.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/checkWQPdates.r
 \name{checkWQPdates}
 \alias{checkWQPdates}
@@ -13,11 +13,11 @@ checkWQPdates(values)
 values named list with corrected arguments to send to the Water Quality Portal
 }
 \description{
-Checks date format for inputs to the Water Quality Portal. Used in \code{readWQPqw}
+Checks date format for inputs to the Water Quality Portal. Used in \code{readWQPqw} 
 and \code{readWQPdata}.
 }
 \examples{
-values <- list(startDateLo="01-01-2002", characteristicName="Phosphorous",
+values <- list(startDateLo="01-01-2002", characteristicName="Phosphorous", 
           endDate=as.Date("2014-01-01"))
 values <- checkWQPdates(values)
 }
diff --git a/man/constructNWISURL.Rd b/man/constructNWISURL.Rd
index c379d6c186e55119bbaaee61ee1f2113cc15d5f1..802a987a881c8a969a704c5275b585498fca71ef 100644
--- a/man/constructNWISURL.Rd
+++ b/man/constructNWISURL.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/constructNWISURL.r
 \name{constructNWISURL}
 \alias{constructNWISURL}
@@ -19,13 +19,13 @@ retrieval for the earliest possible record.}
 \item{endDate}{character ending date for data retrieval in the form YYYY-MM-DD. Default is "" which indicates
 retrieval for the latest possible record.}
 
-\item{service}{string USGS service to call. Possible values are "dv" (daily values), "uv" (unit/instantaneous values),
+\item{service}{string USGS service to call. Possible values are "dv" (daily values), "uv" (unit/instantaneous values), 
 "qw" (water quality data), "gwlevels" (groundwater),and "rating" (rating curve), "peak", "meas" (discrete streamflow measurements).}
 
 \item{statCd}{string or vector USGS statistic code only used for daily value service. This is usually 5 digits.  Daily mean (00003) is the default.}
 
-\item{format}{string, can be "tsv" or "xml", and is only applicable for daily and unit value requests.  "tsv" returns results faster, but there is a possiblitiy that an incomplete file is returned without warning. XML is slower,
-but will offer a warning if the file was incomplete (for example, if there was a momentary problem with the internet connection). It is possible to safely use the "tsv" option,
+\item{format}{string, can be "tsv" or "xml", and is only applicable for daily and unit value requests.  "tsv" returns results faster, but there is a possiblitiy that an incomplete file is returned without warning. XML is slower, 
+but will offer a warning if the file was incomplete (for example, if there was a momentary problem with the internet connection). It is possible to safely use the "tsv" option, 
 but the user must carefully check the results to see if the data returns matches what is expected. The default is therefore "xml".}
 
 \item{expanded}{logical defaults to \code{TRUE}. If \code{TRUE}, retrieves additional information, only applicable for qw data.}
diff --git a/man/constructWQPURL.Rd b/man/constructWQPURL.Rd
index 79d8a198ebafd825b5468f4f4c706c8947e7e874..57ae9d55fb60aa9f679e5e3399bc947cdc4d8674 100644
--- a/man/constructWQPURL.Rd
+++ b/man/constructWQPURL.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/constructNWISURL.r
 \name{constructWQPURL}
 \alias{constructWQPURL}
diff --git a/man/countyCd.Rd b/man/countyCd.Rd
index b5feec7332fa6958645c2b9c0e5eb02a32d27be3..03502a2e1432c8e699e67dabd79363b0d2be9d15 100644
--- a/man/countyCd.Rd
+++ b/man/countyCd.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/tabbedDataRetrievals.R
 \docType{data}
 \name{countyCd}
diff --git a/man/dataRetrieval-package.Rd b/man/dataRetrieval-package.Rd
index 7cc6225c5952b585d211b8a124c772825346132b..22a187e86e5085dd3232793c8db26767d418cd18 100644
--- a/man/dataRetrieval-package.Rd
+++ b/man/dataRetrieval-package.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/tabbedDataRetrievals.R
 \docType{package}
 \name{dataRetrieval-package}
diff --git a/man/getWebServiceData.Rd b/man/getWebServiceData.Rd
index c1c3d2080dee28b18e8bcb63a1a4371c91b84885..fba5749ba94aedc26ec593446b0284e7fa56c14c 100644
--- a/man/getWebServiceData.Rd
+++ b/man/getWebServiceData.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/getWebServiceData.R
 \name{getWebServiceData}
 \alias{getWebServiceData}
diff --git a/man/importRDB1.Rd b/man/importRDB1.Rd
index c310b58979d77f25e2a180a0775edfe7dadbec8a..38de7369f4e5c3e9e6846788da1122991300429d 100644
--- a/man/importRDB1.Rd
+++ b/man/importRDB1.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/importRDB1.r
 \name{importRDB1}
 \alias{importRDB1}
@@ -17,7 +17,7 @@ importRDB1(obs_url, asDateTime = FALSE, qw = FALSE, convertType = TRUE,
 \item{convertType}{logical, defaults to \code{TRUE}. If \code{TRUE}, the function will convert the data to dates, datetimes,
 numerics based on a standard algorithm. If false, everything is returned as a character}
 
-\item{tz}{character to set timezone attribute of datetime. Default is an empty quote, which converts the
+\item{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 tz_cd column).
 Possible values to provide are "America/New_York","America/Chicago", "America/Denver","America/Los_Angeles",
 "America/Anchorage","America/Honolulu","America/Jamaica","America/Managua","America/Phoenix", and "America/Metlakatla"}
@@ -28,19 +28,19 @@ A data frame with the following columns:
 Name \tab Type \tab Description \cr
 agency_cd \tab character \tab The NWIS code for the agency reporting the data\cr
 site_no \tab character \tab The USGS site number \cr
-datetime \tab POSIXct \tab The date and time of the value converted to UTC (if asDateTime = \code{TRUE}), \cr
+datetime \tab POSIXct \tab The date and time of the value converted to UTC (if asDateTime = \code{TRUE}), \cr 
 \tab character \tab or raw character string (if asDateTime = FALSE) \cr
 tz_cd \tab character \tab The time zone code for datetime \cr
 code \tab character \tab Any codes that qualify the corresponding value\cr
 value \tab numeric \tab The numeric value for the parameter \cr
 tz_cd_reported \tab The originally reported time zone \cr
 }
-Note that code and value are repeated for the parameters requested. The names are of the form
-XD_P_S, where X is literal,
-D is an option description of the parameter,
-P is the parameter code,
+Note that code and value are repeated for the parameters requested. The names are of the form 
+XD_P_S, where X is literal, 
+D is an option description of the parameter, 
+P is the parameter code, 
 and S is the statistic code (if applicable).
-If a date/time (dt) column contained incomplete date and times, a new column of dates was inserted. This could happen
+If a date/time (dt) column contained incomplete date and times, a new column of dates and time was inserted. This could happen
 when older data was reported as dates, and newer data was reported as a date/time.
 
 There are also several useful attributes attached to the data frame:
@@ -76,7 +76,7 @@ unitDataURL <- constructNWISURL(siteNumber,property,
 unitData <- importRDB1(unitDataURL, asDateTime=TRUE)
 qwURL <- constructNWISURL(c('04024430','04024000'),
           c('34247','30234','32104','34220'),
-         "2010-11-03","","qw",format="rdb")
+         "2010-11-03","","qw",format="rdb") 
 qwData <- importRDB1(qwURL, qw=TRUE, tz="America/Chicago")
 iceSite <- '04024000'
 start <- "2014-11-09"
@@ -90,5 +90,6 @@ filePath <- system.file("extdata", package="dataRetrieval")
 fileName <- "RDB1Example.txt"
 fullPath <- file.path(filePath, fileName)
 importUserRDB <- importRDB1(fullPath)
+
 }
 
diff --git a/man/importWQP.Rd b/man/importWQP.Rd
index 755eebb099004cae5b3f2427382a3a7326b906e3..6aee7aaba35061d8dce3f361f83484c3fe8c37e9 100644
--- a/man/importWQP.Rd
+++ b/man/importWQP.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/importWQP.R
 \name{importWQP}
 \alias{importWQP}
@@ -7,17 +7,17 @@
 importWQP(obs_url, zip = FALSE, tz = "")
 }
 \arguments{
-\item{obs_url}{character URL to Water Quality Portal#'}
+\item{obs_url}{character URL to Water Quality Portal#' @keywords data import USGS web service}
 
 \item{zip}{logical used to request the data in a zip format (TRUE)}
 
-\item{tz}{character to set timezone attribute of datetime. Default is an empty quote, which converts the
+\item{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 tz_cd column).
 Possible values to provide are "America/New_York","America/Chicago", "America/Denver","America/Los_Angeles",
 "America/Anchorage","America/Honolulu","America/Jamaica","America/Managua","America/Phoenix", and "America/Metlakatla"}
 }
 \value{
-retval dataframe raw data returned from the Water Quality Portal. Additionally, a POSIXct dateTime column is supplied for
+retval dataframe raw data returned from the Water Quality Portal. Additionally, a POSIXct dateTime column is supplied for 
 start and end times, and converted to UTC. See \url{http://www.waterqualitydata.us/portal_userguide.jsp} for more information.
 }
 \description{
@@ -41,9 +41,4 @@ STORETdata <- importWQP(STORETex)
 \seealso{
 \code{\link{readWQPdata}}, \code{\link{readWQPqw}}, \code{\link{whatWQPsites}}
 }
-\keyword{USGS}
-\keyword{data}
-\keyword{import}
-\keyword{service}
-\keyword{web}
 
diff --git a/man/importWaterML1.Rd b/man/importWaterML1.Rd
index 7c312d09f7cbe970a56541192b7a7bb33e84b3d9..84201fadcdf6fd55a68a903e1c09589d629489c1 100644
--- a/man/importWaterML1.Rd
+++ b/man/importWaterML1.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/importWaterML1.r
 \name{importWaterML1}
 \alias{importWaterML1}
@@ -11,7 +11,7 @@ importWaterML1(obs_url, asDateTime = FALSE, tz = "")
 
 \item{asDateTime}{logical, if \code{TRUE} returns date and time as POSIXct, if \code{FALSE}, Date}
 
-\item{tz}{character to set timezone attribute of datetime. Default is an empty quote, which converts the
+\item{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 tz_cd column).
 Possible values to provide are "America/New_York","America/Chicago", "America/Denver","America/Los_Angeles",
 "America/Anchorage","America/Honolulu","America/Jamaica","America/Managua","America/Phoenix", and "America/Metlakatla"}
@@ -22,16 +22,16 @@ A data frame with the following columns:
 Name \tab Type \tab Description \cr
 agency_cd \tab character \tab The NWIS code for the agency reporting the data\cr
 site_no \tab character \tab The USGS site number \cr
-datetime \tab POSIXct \tab The date and time of the value converted to UTC (if asDateTime = TRUE), \cr
+datetime \tab POSIXct \tab The date and time of the value converted to UTC (if asDateTime = TRUE), \cr 
 \tab character \tab or raw character string (if asDateTime = FALSE) \cr
 tz_cd \tab character \tab The time zone code for datetime \cr
 code \tab character \tab Any codes that qualify the corresponding value\cr
 value \tab numeric \tab The numeric value for the parameter \cr
 }
-Note that code and value are repeated for the parameters requested. The names are of the form
-X_D_P_S, where X is literal,
-D is an option description of the parameter,
-P is the parameter code,
+Note that code and value are repeated for the parameters requested. The names are of the form 
+X_D_P_S, where X is literal, 
+D is an option description of the parameter, 
+P is the parameter code, 
 and S is the statistic code (if applicable).
 
 There are also several useful attributes attached to the data frame:
@@ -98,6 +98,7 @@ filePath <- system.file("extdata", package="dataRetrieval")
 fileName <- "WaterML1Example.xml"
 fullPath <- file.path(filePath, fileName)
 imporFile <- importWaterML1(fullPath,TRUE)
+
 }
 \seealso{
 \code{\link{renameNWISColumns}}
diff --git a/man/importWaterML2.Rd b/man/importWaterML2.Rd
index 3eda7e3f8a4a8b582ee65300f2337ab25a66cd2d..1b19a13b86555001b947cabb8932efe8a63fb463 100644
--- a/man/importWaterML2.Rd
+++ b/man/importWaterML2.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/importWaterML2.r
 \name{importWaterML2}
 \alias{importWaterML2}
@@ -11,7 +11,7 @@ importWaterML2(obs_url, asDateTime = FALSE, tz = "")
 
 \item{asDateTime}{logical, if \code{TRUE} returns date and time as POSIXct, if \code{FALSE}, Date}
 
-\item{tz}{character to set timezone attribute of datetime. Default is an empty quote, which converts the
+\item{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 tz_cd column).
 Possible values to provide are "America/New_York","America/Chicago", "America/Denver","America/Los_Angeles",
 "America/Anchorage","America/Honolulu","America/Jamaica","America/Managua","America/Phoenix", and "America/Metlakatla"}
@@ -49,5 +49,6 @@ filePath <- system.file("extdata", package="dataRetrieval")
 fileName <- "WaterML2Example.xml"
 fullPath <- file.path(filePath, fileName)
 UserData <- importWaterML2(fullPath)
+
 }
 
diff --git a/man/pCodeToName.Rd b/man/pCodeToName.Rd
index 440d7b8f3f0eb29bc0292875b122411e90fb4a30..8ca26c6bd02dd50dc31ad32bad16a38645badad7 100644
--- a/man/pCodeToName.Rd
+++ b/man/pCodeToName.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/tabbedDataRetrievals.R
 \docType{data}
 \name{pCodeToName}
diff --git a/man/parameterCdFile.Rd b/man/parameterCdFile.Rd
index bf5f3fe1fa853eb444196045936a63b85b61772a..a1f5c887871d6f5dcddf3580eff5720061067990 100644
--- a/man/parameterCdFile.Rd
+++ b/man/parameterCdFile.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/tabbedDataRetrievals.R
 \docType{data}
 \name{parameterCdFile}
diff --git a/man/readNWISdata.Rd b/man/readNWISdata.Rd
index 8e6f6ab3891387594d42c78b28ab39ea65bc965e..6164a312c0824e282c214e88b96e1004b1a8339c 100644
--- a/man/readNWISdata.Rd
+++ b/man/readNWISdata.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readNWISdata.r
 \name{readNWISdata}
 \alias{readNWISdata}
@@ -7,8 +7,8 @@
 readNWISdata(service = "dv", ...)
 }
 \arguments{
-\item{service}{string. Possible values are "iv" (for instantaneous), "dv" (for daily values), "gwlevels"
-(for groundwater levels), "site" (for site service), and "qw" (water-quality). Note: "qw" calls go to:
+\item{service}{string. Possible values are "iv" (for instantaneous), "dv" (for daily values), "gwlevels" 
+(for groundwater levels), "site" (for site service), and "qw" (water-quality). Note: "qw" calls go to: 
 \url{http://nwis.waterdata.usgs.gov/usa/nwis/qwdata} for data requests, and use different call requests schemes.}
 
 \item{\dots}{see \url{http://waterservices.usgs.gov/rest/Site-Service.html#Service} for a complete list of options}
@@ -19,8 +19,8 @@ A data frame with the following columns:
 Name \tab Type \tab Description \cr
 agency \tab character \tab The NWIS code for the agency reporting the data\cr
 site \tab character \tab The USGS site number \cr
-dateTime \tab POSIXct \tab The date and time (if applicable) of the measurement,
-          converted to UTC for unit value data. R only allows one time zone attribute per column. For unit data
+dateTime \tab POSIXct \tab The date and time (if applicable) of the measurement, 
+          converted to UTC for unit value data. R only allows one time zone attribute per column. For unit data 
           spanning a time zone change, converting the data to UTC solves this problem. For daily data,
           the time zone attribute is the time zone of the first returned measurement.
            \cr
@@ -28,10 +28,10 @@ tz_cd \tab character \tab The time zone code for dateTime column\cr
 code \tab character \tab Any codes that qualify the corresponding value\cr
 value \tab numeric \tab The numeric value for the parameter \cr
 }
-Note that code and value are repeated for the parameters requested. The names are of the form
-X_D_P_S, where X is literal,
-D is an option description of the parameter,
-P is the parameter code,
+Note that code and value are repeated for the parameters requested. The names are of the form 
+X_D_P_S, where X is literal, 
+D is an option description of the parameter, 
+P is the parameter code, 
 and S is the statistic code (if applicable).
 
 There are also several useful attributes attached to the data frame:
@@ -53,26 +53,26 @@ See examples below for ideas of constructing queries.
 \dontrun{
 # Examples not run for time considerations
 dataTemp <- readNWISdata(stateCd="OH",parameterCd="00010", service="dv")
-instFlow <- readNWISdata(sites="05114000", service="iv",
-                   parameterCd="00060",
+instFlow <- readNWISdata(sites="05114000", service="iv", 
+                   parameterCd="00060", 
                    startDate="2014-05-01T00:00Z",endDate="2014-05-01T12:00Z")
-
-instFlowCDT <- readNWISdata(sites="05114000", service="iv",
-                   parameterCd="00060",
+                   
+instFlowCDT <- readNWISdata(sites="05114000", service="iv", 
+                   parameterCd="00060", 
                    startDate="2014-05-01T00:00",endDate="2014-05-01T12:00",
                    tz="America/Chicago")
 
 #Empty:
-multiSite <- readNWISdata(sites=c("04025000","04072150"), service="iv",
+multiSite <- readNWISdata(sites=c("04025000","04072150"), service="iv", 
                            parameterCd="00010")
 #Not empty:
-multiSite <- readNWISdata(sites=c("04025500","040263491"),
+multiSite <- readNWISdata(sites=c("04025500","040263491"), 
                            service="iv", parameterCd="00060")
 bBoxEx <- readNWISdata(bBox=c(-83,36.5,-81,38.5), parameterCd="00010")
 
 startDate <- as.Date("2013-10-01")
 endDate <- as.Date("2014-09-30")
-waterYear <- readNWISdata(bBox=c(-83,36.5,-81,38.5), parameterCd="00010",
+waterYear <- readNWISdata(bBox=c(-83,36.5,-81,38.5), parameterCd="00010", 
                   service="dv", startDate=startDate, endDate=endDate)
 siteInfo <- readNWISdata(stateCd="WI", parameterCd="00010",
                   hasDataTypeCd="iv", service="site")
@@ -80,7 +80,7 @@ qwData <- readNWISdata(bBox=c(-82.5,41.52,-81,41),startDate=as.Date("2000-01-01"
                   drain_area_va_min=50, qw_count_nu=50,qw_attributes="expanded",
                   qw_sample_wide="wide",list_of_search_criteria=c("lat_long_bounding_box",
                   "drain_area_va","obs_count_nu"),service="qw")
-temp <- readNWISdata(bBox=c(-83,36.5,-81,38.5), parameterCd="00010", service="site",
+temp <- readNWISdata(bBox=c(-83,36.5,-81,38.5), parameterCd="00010", service="site", 
                    seriesCatalogOutput=TRUE)
 wiGWL <- readNWISdata(stateCd="WI",service="gwlevels")
 }
diff --git a/man/readNWISdv.Rd b/man/readNWISdv.Rd
index 34fdb5b98f6636f0f001098f3f8e91549fd46fbc..9e4862c0501bf64a19d0987298a45ce9d3fce109 100644
--- a/man/readNWISdv.Rd
+++ b/man/readNWISdv.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readNWISdv.r
 \name{readNWISdv}
 \alias{readNWISdv}
@@ -26,14 +26,14 @@ A data frame with the following columns:
 Name \tab Type \tab Description \cr
 agency \tab character \tab The NWIS code for the agency reporting the data\cr
 site \tab character \tab The USGS site number \cr
-Date \tab Date \tab The date of the value \cr
+Date \tab Date \tab The date of the value \cr 
 code \tab character \tab Any codes that qualify the corresponding value\cr
 value \tab numeric \tab The numeric value for the parameter \cr
 }
-Note that code and value are repeated for the parameters requested. The names are of the form
-X_D_P_S, where X is literal,
-D is an option description of the parameter,
-P is the parameter code,
+Note that code and value are repeated for the parameters requested. The names are of the form 
+X_D_P_S, where X is literal, 
+D is an option description of the parameter, 
+P is the parameter code, 
 and S is the statistic code (if applicable).
 
 There are also several useful attributes attached to the data frame:
diff --git a/man/readNWISgwl.Rd b/man/readNWISgwl.Rd
index 5b284662c06e13448dd28b12ccb5e381ed7babcf..d5ef6f4e8a018ce76f66bae24d2151bfc6f949da 100644
--- a/man/readNWISgwl.Rd
+++ b/man/readNWISgwl.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readNWISunit.r
 \name{readNWISgwl}
 \alias{readNWISgwl}
@@ -21,7 +21,7 @@ A data frame with the following columns:
 Name \tab Type \tab Description \cr
 agency_cd \tab character \tab The NWIS code for the agency reporting the data\cr
 site_no \tab character \tab The USGS site number \cr
-site_tp_cd \tab character \tab Site type code \cr
+site_tp_cd \tab character \tab Site type code \cr 
 lev_dt \tab Date \tab Date level measured\cr
 lev_tm \tab character \tab Time level measured \cr
 lev_tz_cd \tab character \tab Time datum \cr
@@ -41,9 +41,9 @@ siteInfo \tab data.frame \tab A data frame containing information on the request
 }
 }
 \description{
-Reads groundwater level measurements from NWISweb. Mixed date/times come back from the service
+Reads groundwater level measurements from NWISweb. Mixed date/times come back from the service 
 depending on the year that the data was collected. See \url{http://waterdata.usgs.gov/usa/nwis/gw}
-for details about groundwater. Groundwater dates and times are returned in many different formats, therefore the
+for details about groundwater. Groundwater dates and times are returned in many different formats, therefore the 
 date/time information is returned as a character string. Users will need to convert to a date object.
 See \url{http://waterservices.usgs.gov/rest/GW-Levels-Service.html} for more information.
 }
diff --git a/man/readNWISmeas.Rd b/man/readNWISmeas.Rd
index d5b013735809f46ef82cf3da5227ca59f483780d..157b3931f6a8528c6adf9a99d2f551693b5ee74a 100644
--- a/man/readNWISmeas.Rd
+++ b/man/readNWISmeas.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readNWISunit.r
 \name{readNWISmeas}
 \alias{readNWISmeas}
@@ -15,7 +15,7 @@ retrieval for the earliest possible record.}
 \item{endDate}{character ending date for data retrieval in the form YYYY-MM-DD. Default is "" which indicates
 retrieval for the latest possible record.}
 
-\item{tz}{character to set timezone attribute of dateTime. Default is an empty quote, which converts the
+\item{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 tz_cd column).
 Possible values to provide are "America/New_York","America/Chicago", "America/Denver","America/Los_Angeles",
 "America/Anchorage","America/Honolulu","America/Jamaica","America/Managua","America/Phoenix", and "America/Metlakatla"}
@@ -27,12 +27,12 @@ Name \tab Type \tab Description \cr
 agency_cd \tab character \tab The NWIS code for the agency reporting the data\cr
 site_no \tab character \tab The USGS site number \cr
 measurement_dt \tab POSIXct \tab The date and time (in POSIXct) of the measurement. Unless specified
-with the tz parameter, this is converted to UTC. If the measurement_dt column is an incomplete, a measurement_dt_date column is added to the
-returned data frame.   \cr
+with the tz parameter, this is converted to UTC. If the measurement_dt column is an incomplete, a measurement_dt_date and
+measurement_dt_time column are added to the returned data frame.   \cr
 tz_cd \tab character \tab The time zone code for the measurement_dt column \cr
 }
-
-See \url{http://waterdata.usgs.gov/usa/nwis/sw} for details about surface water, and
+ 
+See \url{http://waterdata.usgs.gov/usa/nwis/sw} for details about surface water, and 
 \url{http://waterdata.usgs.gov/nwis/help?output_formats_help#streamflow_measurement_data}
 for help on the columns and codes.
 
diff --git a/man/readNWISpCode.Rd b/man/readNWISpCode.Rd
index d5d29749ab14a3a7bde37883e4bd63c25264cda7..10bd594870899e4b25126e18eec128e94e2fff59 100644
--- a/man/readNWISpCode.Rd
+++ b/man/readNWISpCode.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readNWISpCode.r
 \name{readNWISpCode}
 \alias{readNWISpCode}
@@ -8,11 +8,11 @@ readNWISpCode(parameterCd)
 }
 \arguments{
 \item{parameterCd}{character of USGS parameter codes (or multiple parameter codes).  These are 5 digit number codes,
-more information can be found here: \url{http://help.waterdata.usgs.gov/}. To get a
+more information can be found here: \url{http://help.waterdata.usgs.gov/}. To get a 
 complete list of all current parameter codes in the USGS, use "all" as the input.}
 }
 \value{
-parameterData data frame with the following information:
+parameterData data frame with the following information: 
 \tabular{lll}{
   Name \tab Type \tab Description\cr
   parameter_cd \tab character \tab 5-digit USGS parameter code \cr
diff --git a/man/readNWISpeak.Rd b/man/readNWISpeak.Rd
index 2c86f8b645e00f19ef22c5fc22a885b23d0c56e6..d6753d40c029b6ec2e4033017838c564b4a97b1c 100644
--- a/man/readNWISpeak.Rd
+++ b/man/readNWISpeak.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readNWISunit.r
 \name{readNWISpeak}
 \alias{readNWISpeak}
diff --git a/man/readNWISqw.Rd b/man/readNWISqw.Rd
index 80e180fd087c736aceba4ee4afd41f0e8ef92a1c..1b4f38a68c95781cd4d0f5636aa3fb119df97ce1 100644
--- a/man/readNWISqw.Rd
+++ b/man/readNWISqw.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readNWISqw.r
 \name{readNWISqw}
 \alias{readNWISqw}
@@ -25,11 +25,11 @@ dqi_cd (data-quality indicator code), rpt_lev_va (reporting level), and rpt_lev_
 only returns remark_cd (remark code) and result_va (result value). Expanded = \code{FALSE} will not give
 sufficient information for unbiased statistical analysis.}
 
-\item{reshape}{logical, reshape the expanded data. If \code{TRUE}, then return a wide data frame with all water-quality in a single row for each sample.
+\item{reshape}{logical, reshape the expanded data. If \code{TRUE}, then return a wide data frame with all water-quality in a single row for each sample. 
 If \code{FALSE} (default), then return a long data frame with each water-quality result in a single row. This
 argument is only applicable to expanded data. Data requested using \code{expanded=FALSE} is always returned in the wide format.}
 
-\item{tz}{character to set timezone attribute of output columns: startDateTime and endDateTime. Default is an empty quote, which converts the
+\item{tz}{character to set timezone attribute of output columns: startDateTime and endDateTime. Default is an empty quote, which converts the 
 datetimes to UTC (properly accounting for daylight savings times).
 Possible values to provide are "America/New_York","America/Chicago", "America/Denver","America/Los_Angeles",
 "America/Anchorage","America/Honolulu","America/Jamaica","America/Managua","America/Phoenix", and "America/Metlakatla"}
@@ -40,9 +40,9 @@ A data frame with at least the following columns:
 Name \tab Type \tab Description \cr
 agency_cd \tab character \tab The NWIS code for the agency reporting the data\cr
 site_no \tab character \tab The USGS site number \cr
-sample_dt \tab Date \tab The date the sample was collected \cr
+sample_dt \tab Date \tab The date the sample was collected \cr 
 sample_tm \tab character \tab The reported sample collection time \cr
-startDateTime \tab POSIXct \tab Combining sample_dt and sample_tm, a date/time column is created, and converted into UTC
+startDateTime \tab POSIXct \tab Combining sample_dt and sample_tm, a date/time column is created, and converted into UTC 
 (unless the tz argument specifies a different time zone)\cr
 endDateTime \tab POSIXct \tab If any sample_end_dt and sample_end_dt exist, this column is created similar to startDateTime\cr
 }
@@ -105,13 +105,13 @@ rawNWISNutrients <- readNWISqw(siteNumbers,pgroup,
           startDate,endDate)
 groups <- c("NUT","OPE")
 rawNWISNutOpe <- readNWISqw(siteNumbers,groups,
-          startDate,endDate)
+          startDate,endDate) 
 rawNWISOpe <- readNWISqw(siteNumbers,"OPE",
-          startDate,endDate)
-         }
+          startDate,endDate) 
+         } 
 }
 \seealso{
-\code{\link{readWQPdata}}, \code{\link{whatWQPsites}},
+\code{\link{readWQPdata}}, \code{\link{whatWQPsites}}, 
 \code{\link{readWQPqw}}, \code{\link{constructNWISURL}}
 }
 \keyword{USGS}
diff --git a/man/readNWISrating.Rd b/man/readNWISrating.Rd
index 9d182b56341bd8d03fa36d1888609edbdd76d01f..97664ca968d725213b8e937378e13e381fdc5be8 100644
--- a/man/readNWISrating.Rd
+++ b/man/readNWISrating.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readNWISunit.r
 \name{readNWISrating}
 \alias{readNWISrating}
@@ -34,7 +34,7 @@ RATING \tab character \tab Rating information \cr
 }
 }
 \description{
-Reads current rating table for an active USGS streamgage from NWISweb.
+Reads current rating table for an active USGS streamgage from NWISweb. 
 Data is retrieved from \url{http://waterdata.usgs.gov/nwis}.
 }
 \note{
diff --git a/man/readNWISsite.Rd b/man/readNWISsite.Rd
index 1b1ea84be2fe9714f23ac224abc83bb0ea790fc3..066c8276b39e1dea762a0a3fb65adbebaaa5b21e 100644
--- a/man/readNWISsite.Rd
+++ b/man/readNWISsite.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readNWISsite.r
 \name{readNWISsite}
 \alias{readNWISsite}
@@ -15,45 +15,45 @@ A data frame with at least the following columns:
 Name \tab Type \tab Description \cr
 agency_cd \tab character \tab The NWIS code for the agency reporting the data\cr
 site_no \tab character \tab The USGS site number \cr
- station_nm \tab character \tab Site name \cr
- site_tp_cd \tab character \tab Site type \cr
- lat_va \tab numeric \tab DMS latitude \cr
- long_va \tab numeric \tab DMS longitude \cr
- dec_lat_va \tab numeric \tab Decimal latitude \cr
- dec_long_va \tab numeric \tab Decimal longitude \cr
- coord_meth_cd  \tab character \tab Latitude-longitude method \cr
- coord_acy_cd \tab character \tab Latitude-longitude accuracy \cr
- coord_datum_cd \tab character \tab Latitude-longitude datum \cr
- dec_coord_datum_cd \tab character \tab Decimal Latitude-longitude datum \cr
- district_cd \tab character \tab District code \cr
- state_cd \tab character \tab State code \cr
- county_cd \tab character \tab County code \cr
- country_cd \tab character \tab Country code \cr
- land_net_ds \tab character \tab Land net location description \cr
- map_nm \tab character \tab Name of location map \cr
- map_scale_fc \tab character \tab Scale of location map \cr
- alt_va \tab numeric \tab Altitude of Gage/land surface \cr
- alt_meth_cd \tab character \tab Method altitude determined \cr
- alt_acy_va  \tab numeric \tab Altitude accuracy \cr
- alt_datum_cd \tab character \tab Altitude datum \cr
- huc_cd \tab character \tab Hydrologic unit code \cr
- basin_cd \tab character \tab Drainage basin code \cr
- topo_cd \tab character \tab Topographic setting code \cr
- instruments_cd \tab character \tab Flags for instruments at site \cr
- construction_dt \tab character \tab Date of first construction \cr
- inventory_dt \tab character \tab Date site established or inventoried \cr
- drain_area_va \tab numeric \tab Drainage area \cr
- contrib_drain_area_va \tab numeric \tab Contributing drainage area \cr
- tz_cd  \tab character \tab Time Zone abbreviation \cr
- local_time_fg \tab character \tab Site honors Daylight Savings Time \cr
- reliability_cd \tab character \tab Data reliability code \cr
- gw_file_cd \tab character \tab Data-other GW files \cr
- nat_aqfr_cd \tab character \tab National aquifer code \cr
- aqfr_cd \tab character \tab Local aquifer code \cr
- aqfr_type_cd \tab character \tab Local aquifer type code \cr
- well_depth_va \tab numeric \tab Well depth \cr
- hole_depth_va \tab numeric \tab Hole depth \cr
- depth_src_cd \tab character \tab Source of depth data \cr
+ station_nm \tab character \tab Site name \cr                                                          
+ site_tp_cd \tab character \tab Site type \cr                                                       
+ lat_va \tab numeric \tab DMS latitude \cr                                                 
+ long_va \tab numeric \tab DMS longitude \cr                                                     
+ dec_lat_va \tab numeric \tab Decimal latitude \cr                                                   
+ dec_long_va \tab numeric \tab Decimal longitude \cr                                                 
+ coord_meth_cd  \tab character \tab Latitude-longitude method \cr                                          
+ coord_acy_cd \tab character \tab Latitude-longitude accuracy \cr                                     
+ coord_datum_cd \tab character \tab Latitude-longitude datum \cr                                       
+ dec_coord_datum_cd \tab character \tab Decimal Latitude-longitude datum \cr                                
+ district_cd \tab character \tab District code \cr                         
+ state_cd \tab character \tab State code \cr                                                
+ county_cd \tab character \tab County code \cr                                                       
+ country_cd \tab character \tab Country code \cr                                                      
+ land_net_ds \tab character \tab Land net location description \cr                                      
+ map_nm \tab character \tab Name of location map \cr                              
+ map_scale_fc \tab character \tab Scale of location map \cr                                            
+ alt_va \tab numeric \tab Altitude of Gage/land surface \cr                                   
+ alt_meth_cd \tab character \tab Method altitude determined \cr                                         
+ alt_acy_va  \tab numeric \tab Altitude accuracy \cr                                    
+ alt_datum_cd \tab character \tab Altitude datum \cr                                                  
+ huc_cd \tab character \tab Hydrologic unit code \cr                                            
+ basin_cd \tab character \tab Drainage basin code \cr                                              
+ topo_cd \tab character \tab Topographic setting code \cr                                           
+ instruments_cd \tab character \tab Flags for instruments at site \cr                                  
+ construction_dt \tab character \tab Date of first construction \cr                                    
+ inventory_dt \tab character \tab Date site established or inventoried \cr                               
+ drain_area_va \tab numeric \tab Drainage area \cr                           
+ contrib_drain_area_va \tab numeric \tab Contributing drainage area \cr                                   
+ tz_cd  \tab character \tab Time Zone abbreviation \cr                         
+ local_time_fg \tab character \tab Site honors Daylight Savings Time \cr                                  
+ reliability_cd \tab character \tab Data reliability code \cr                                
+ gw_file_cd \tab character \tab Data-other GW files \cr                                       
+ nat_aqfr_cd \tab character \tab National aquifer code \cr                                              
+ aqfr_cd \tab character \tab Local aquifer code \cr                                       
+ aqfr_type_cd \tab character \tab Local aquifer type code \cr                                            
+ well_depth_va \tab numeric \tab Well depth \cr                                             
+ hole_depth_va \tab numeric \tab Hole depth \cr                                                      
+ depth_src_cd \tab character \tab Source of depth data \cr                                               
  project_no \tab character \tab Project number \cr
 }
 
diff --git a/man/readNWISuv.Rd b/man/readNWISuv.Rd
index 542f4960e2ef1f9951ea92d56d328952ee4e6386..757bf076feaa4025bbce1e9cd4b31313c9c98cd7 100644
--- a/man/readNWISuv.Rd
+++ b/man/readNWISuv.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readNWISunit.r
 \name{readNWISuv}
 \alias{readNWISuv}
@@ -20,7 +20,7 @@ See more information here: \url{http://waterservices.usgs.gov/rest/IV-Service.ht
 retrieval for the latest possible record. Simple date arguments are specified in local time.
 See more information here: \url{http://waterservices.usgs.gov/rest/IV-Service.html#Specifying}.}
 
-\item{tz}{character to set timezone attribute of dateTime. Default is an empty quote, which converts the
+\item{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 tz_cd column).
 Possible values to provide are "America/New_York","America/Chicago", "America/Denver","America/Los_Angeles",
 "America/Anchorage","America/Honolulu","America/Jamaica","America/Managua","America/Phoenix", and "America/Metlakatla"}
@@ -31,15 +31,15 @@ A data frame with the following columns:
 Name \tab Type \tab Description \cr
 agency_cd \tab character \tab The NWIS code for the agency reporting the data\cr
 site_no \tab character \tab The USGS site number \cr
-dateTime \tab POSIXct \tab The date and time of the value converted to UTC \cr
+dateTime \tab POSIXct \tab The date and time of the value converted to UTC \cr 
 tz_cd \tab character \tab The time zone code for dateTime \cr
 code \tab character \tab Any codes that qualify the corresponding value\cr
 value \tab numeric \tab The numeric value for the parameter \cr
 }
-Note that code and value are repeated for the parameters requested. The names are of the form:
-X_D_P_S, where X is literal,
-D is an option description of the parameter,
-P is the parameter code,
+Note that code and value are repeated for the parameters requested. The names are of the form: 
+X_D_P_S, where X is literal, 
+D is an option description of the parameter, 
+P is the parameter code, 
 and S is the statistic code (if applicable).
 
 There are also several useful attributes attached to the data frame:
@@ -68,7 +68,7 @@ rawData <- readNWISuv(siteNumber,parameterCd,startDate,endDate)
 
 timeZoneChange <- readNWISuv(c('04024430','04024000'),parameterCd,
          "2013-11-03","2013-11-03")
-
+ 
 centralTime <- readNWISuv(siteNumber,parameterCd,
                            "2014-10-10T12:00", "2014-10-10T23:59",
                            tz="America/Chicago")
@@ -77,6 +77,7 @@ centralTime <- readNWISuv(siteNumber,parameterCd,
 GMTdata <- readNWISuv(siteNumber,parameterCd,
                            "2014-10-10T00:00Z", "2014-10-10T23:59Z")
 }
+
 }
 \seealso{
 \code{\link{renameNWISColumns}}, \code{\link{importWaterML1}}
diff --git a/man/readWQPdata.Rd b/man/readWQPdata.Rd
index 208cf2ef11fbbe422f49b0d0685177155d86cb7e..b7eeb6e9a3fde1dd19c0c033aa454299ef701f82 100644
--- a/man/readWQPdata.Rd
+++ b/man/readWQPdata.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readWQPdata.R
 \name{readWQPdata}
 \alias{readWQPdata}
@@ -7,14 +7,14 @@
 readWQPdata(..., zip = FALSE)
 }
 \arguments{
-\item{zip}{logical to request data via downloading zip file. Default set to FALSE. The overhead associated with
+\item{zip}{logical to request data via downloading zip file. Default set to FALSE. The overhead associated with 
 downloading and un-zipping only improves performance for large data returns.}
 
 \item{\dots}{see \url{www.waterqualitydata.us/webservices_documentation.jsp} for a complete list of options}
 }
 \value{
 A data frame with at least the following columns:
-\tabular{lll}{
+\tabular{lll}{ 
 Name \tab Type \tab Description \cr
 OrganizationIdentifier \tab character \tab  A designator used to uniquely identify a unique business establishment within a context.\cr
 OrganizationFormalName \tab character \tab  The legal designator (i.e. formal name) of an organization.\cr
@@ -106,7 +106,7 @@ startDate <- as.Date("2013-01-01")
 nutrientDaneCounty <- readWQPdata(countycode="US:55:025",startDate=startDate,
                         characteristicType="Nutrient")
 
-
+                        
 }
 }
 \keyword{WQP}
diff --git a/man/readWQPqw.Rd b/man/readWQPqw.Rd
index ca3984f1e8c1b7909b6ec7df109b2340134d66da..c8def1de249921d127c66498d8fdd215a6f7fdf1 100644
--- a/man/readWQPqw.Rd
+++ b/man/readWQPqw.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readWQPqw.r
 \name{readWQPqw}
 \alias{readWQPqw}
@@ -9,7 +9,7 @@ readWQPqw(siteNumbers, parameterCd, startDate = "", endDate = "", tz = "")
 \arguments{
 \item{siteNumbers}{character site number. This needs to include the full agency code prefix.}
 
-\item{parameterCd}{vector of USGS 5-digit parameter code or characteristicNames.
+\item{parameterCd}{vector of USGS 5-digit parameter code or characteristicNames. 
 Leaving this blank will return all of the measured values during the specified time period.}
 
 \item{startDate}{character starting date for data retrieval in the form YYYY-MM-DD. Default is "" which indicates
@@ -18,14 +18,14 @@ retrieval for the earliest possible record. Date arguments are always specified
 \item{endDate}{character ending date for data retrieval in the form YYYY-MM-DD. Default is "" which indicates
 retrieval for the latest possible record. Date arguments are always specified in local time.}
 
-\item{tz}{character to set timezone attribute of datetime. Default is an empty quote, which converts the
+\item{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 tz_cd column).
 Possible values to provide are "America/New_York","America/Chicago", "America/Denver","America/Los_Angeles",
 "America/Anchorage","America/Honolulu","America/Jamaica","America/Managua","America/Phoenix", and "America/Metlakatla"}
 }
 \value{
 A data frame with at least the following columns:
-\tabular{lll}{
+\tabular{lll}{ 
 Name \tab Type \tab Description \cr
 OrganizationIdentifier \tab character \tab  A designator used to uniquely identify a unique business establishment within a context.\cr
 OrganizationFormalName \tab character \tab  The legal designator (i.e. formal name) of an organization.\cr
@@ -105,10 +105,10 @@ queryTime \tab POSIXct \tab The time the data was returned \cr
 }
 }
 \description{
-Imports data from the Water Quality Portal.
+Imports data from the Water Quality Portal. 
 This function gets the data from here: \url{http://www.waterqualitydata.us}. There
 are four required input arguments: siteNumber, parameterCd, startDate, and endDate.
-parameterCd can either be a USGS 5-digit code, or a characteristic name. The sites can be
+parameterCd can either be a USGS 5-digit code, or a characteristic name. The sites can be 
 either USGS, or other Water Quality Portal offered sites. It is required to use the 'full'
 site name, such as 'USGS-01234567'.
 }
@@ -121,7 +121,7 @@ nwisEx <- readWQPqw('USGS-04024000',c('34247','30234','32104','34220'),'','2012-
 }
 }
 \seealso{
-\code{\link{readWQPdata}}, \code{\link{whatWQPsites}},
+\code{\link{readWQPdata}}, \code{\link{whatWQPsites}}, 
 \code{\link{readNWISqw}}, and \code{\link{importWQP}}
 }
 \keyword{USGS}
diff --git a/man/renameNWISColumns.Rd b/man/renameNWISColumns.Rd
index 41cac4e1012929bdb737e6ec2f8f9da21c1c97cd..84c6b277f91bc941b5b00037ecd8bb93cfc0dbf6 100644
--- a/man/renameNWISColumns.Rd
+++ b/man/renameNWISColumns.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/renameColumns.R
 \name{renameNWISColumns}
 \alias{renameNWISColumns}
@@ -44,7 +44,7 @@ function reads information from the header and the arguments in the call to
 to rename those columns.
 }
 \note{
-The following statistics codes are converted by \code{renameNWISColumns}.
+The following statistics codes are converted by \code{renameNWISColumns}. 
 \describe{
 \item{00001}{Maximum value, suffix: Max}
 \item{00002}{Minimum value, suffix: Min}
diff --git a/man/stateCd.Rd b/man/stateCd.Rd
index 2b5a3023fa5569e283b4e23a1907ad6856076d4f..06c1b0c9119199e26ea46325e8ababaf1ae7b3b7 100644
--- a/man/stateCd.Rd
+++ b/man/stateCd.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/tabbedDataRetrievals.R
 \docType{data}
 \name{stateCd}
diff --git a/man/stateCdLookup.Rd b/man/stateCdLookup.Rd
index dc13f33867d8549cde4e80c7f286d02959045693..df5788940ad0807c1991706c587f9ea3ef4a5065 100644
--- a/man/stateCdLookup.Rd
+++ b/man/stateCdLookup.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/readNWISdata.r
 \name{stateCdLookup}
 \alias{stateCdLookup}
diff --git a/man/whatNWISData.Rd b/man/whatNWISData.Rd
index dfda4a93182e4a97b0d0c65a77a146af1590927a..d236dfb6bc272b328fd1dc40ba3d89ef96b9e4a1 100644
--- a/man/whatNWISData.Rd
+++ b/man/whatNWISData.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/whatNWISdata.r
 \name{whatNWISdata}
 \alias{whatNWISdata}
@@ -12,8 +12,8 @@ whatNWISdata(siteNumbers, service = "all", parameterCd = "all",
 
 \item{service}{character. Options are "all", or one or many of "dv"(daily values),
 "uv","rt", or "iv"(unit values), "qw"(water-quality),"sv"(sites visits),"pk"(peak measurements),
-"gw"(groundwater levels), "ad" (sites included in USGS Annual Water Data Reports External Link),
-"aw" (sites monitored by the USGS Active Groundwater Level Network External Link), "id" (historical
+"gw"(groundwater levels), "ad" (sites included in USGS Annual Water Data Reports External Link), 
+"aw" (sites monitored by the USGS Active Groundwater Level Network External Link), "id" (historical 
 instantaneous values)}
 
 \item{parameterCd}{character vector of valid parameter codes to return. Defaults to "all" which will not perform a filter.}
@@ -26,7 +26,7 @@ A data frame with the following columns:
 Name \tab Type \tab Description \cr
 agency_cd \tab character \tab The NWIS code for the agency reporting the data\cr
 site_no \tab character \tab The USGS site number \cr
-station_nm \tab character \tab Site name \cr
+station_nm \tab character \tab Site name \cr 
 site_tp_cd \tab character \tab Site type \cr
 dec_lat_va \tab numeric \tab Decimal latitude\cr
 dec_long_va \tab numeric \tab Decimal longitude \cr
diff --git a/man/whatNWISsites.Rd b/man/whatNWISsites.Rd
index f5f02f4f1235cd99ff960b4ab07ebf7015b55044..3edf79b50a48bd3199527f2df8e8b10782fec090 100644
--- a/man/whatNWISsites.Rd
+++ b/man/whatNWISsites.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/whatNWISsites.R
 \name{whatNWISsites}
 \alias{whatNWISsites}
diff --git a/man/whatWQPsites.Rd b/man/whatWQPsites.Rd
index 1d1c7fb71dc6db2f60f35560837653fe4f4f8a60..b4941c54852cd8d3936ac6574a80bb599bfd3dec 100644
--- a/man/whatWQPsites.Rd
+++ b/man/whatWQPsites.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/whatWQPsites.R
 \name{whatWQPsites}
 \alias{whatWQPsites}
@@ -11,7 +11,7 @@ whatWQPsites(...)
 }
 \value{
 A data frame with at least the following columns:
-\tabular{lll}{
+\tabular{lll}{ 
 Name \tab Type \tab Description \cr
 OrganizationIdentifier \tab character \tab  A designator used to uniquely identify a unique business establishment within a context. \cr
 OrganizationFormalName \tab character \tab	The legal designator (i.e. formal name) of an organization. \cr
diff --git a/man/zeroPad.Rd b/man/zeroPad.Rd
index 357e3634892e824667e694012791d5623b11314d..0b24893f795ebb2fa2b1caf016ac55023386658c 100644
--- a/man/zeroPad.Rd
+++ b/man/zeroPad.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/zeroPad.r
 \name{zeroPad}
 \alias{zeroPad}