Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Water
dataRetrieval
Commits
f84fac37
Commit
f84fac37
authored
Feb 28, 2020
by
Laura A DeCicco
Browse files
Missed some https conversions.
parent
d5dc9de8
Changes
9
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
f84fac37
...
...
@@ -7,3 +7,4 @@ doc
dataRetrieval.Rproj
.gitignore
vignettes/usMaps_cache
docs
R/importNGWMN_wml2.R
View file @
f84fac37
...
...
@@ -20,7 +20,7 @@
#' @importFrom xml2 xml_find_first
#' @examples
#' \donttest{
#' obs_url <- paste("http://cida.usgs.gov/ngwmn_cache/sos?request=GetObservation",
#' obs_url <- paste("http
s
://cida.usgs.gov/ngwmn_cache/sos?request=GetObservation",
#' "service=SOS","version=2.0.0",
#' "observedProperty=urn:ogc:def:property:OGC:GroundWaterLevel",
#' "responseFormat=text/xml",
...
...
R/readNGWMNdata.R
View file @
f84fac37
#' import data from the National Groundwater Monitoring Network \url{http://cida.usgs.gov/ngwmn/}.
#' import data from the National Groundwater Monitoring Network \url{http
s
://cida.usgs.gov/ngwmn/}.
#'
#' Only water level data and site locations and names are currently available through the web service.
#' @param service char Service for the request - "observation" and "featureOfInterest" are implemented.
...
...
@@ -99,7 +99,7 @@ readNGWMNdata <- function(service, ..., asDateTime = TRUE, tz = "UTC"){
return
(
returnData
)
}
#' Retrieve groundwater levels from the National Ground Water Monitoring Network \url{http://cida.usgs.gov/ngwmn/}.
#' Retrieve groundwater levels from the National Ground Water Monitoring Network \url{http
s
://cida.usgs.gov/ngwmn/}.
#'
#' @param siteNumbers character Vector of feature IDs formatted with agency code and site number
#' separated by a period or semicolon, e.g. \code{USGS.404159100494601}.
...
...
@@ -138,7 +138,7 @@ readNGWMNlevels <- function(siteNumbers, asDateTime = TRUE, tz = "UTC"){
return
(
data
)
}
#' Retrieve site data from the National Ground Water Monitoring Network \url{http://cida.usgs.gov/ngwmn/}.
#' Retrieve site data from the National Ground Water Monitoring Network \url{http
s
://cida.usgs.gov/ngwmn/}.
#'
#' @param siteNumbers character Vector of feature IDs formatted with agency code and site number
#' separated by a period or semicolon, e.g. \code{USGS.404159100494601}.
...
...
R/tabbedDataRetrievals.R
View file @
f84fac37
...
...
@@ -105,7 +105,7 @@ NULL
#' US County Code Lookup Table
#'
#' Data pulled from \url{http://www2.census.gov/geo/docs/reference/codes/files/national_county.txt}
#' Data pulled from \url{http
s
://www2.census.gov/geo/docs/reference/codes/files/national_county.txt}
#' on April 1, 2015.
#'
#' @name countyCd
...
...
man/countyCd.Rd
View file @
f84fac37
...
...
@@ -17,7 +17,7 @@ COUNTY_ID \tab character \tab County id \cr
}
}
\description{
Data pulled from \url{http://www2.census.gov/geo/docs/reference/codes/files/national_county.txt}
Data pulled from \url{http
s
://www2.census.gov/geo/docs/reference/codes/files/national_county.txt}
on April 1, 2015.
}
\examples{
...
...
man/importNGWMN.Rd
View file @
f84fac37
...
...
@@ -27,7 +27,7 @@ but the general functionality is correct.
}
\examples{
\donttest{
obs_url <- paste("http://cida.usgs.gov/ngwmn_cache/sos?request=GetObservation",
obs_url <- paste("http
s
://cida.usgs.gov/ngwmn_cache/sos?request=GetObservation",
"service=SOS","version=2.0.0",
"observedProperty=urn:ogc:def:property:OGC:GroundWaterLevel",
"responseFormat=text/xml",
...
...
man/readNGWMNdata.Rd
View file @
f84fac37
...
...
@@ -2,7 +2,7 @@
% Please edit documentation in R/readNGWMNdata.R
\name{readNGWMNdata}
\alias{readNGWMNdata}
\title{import data from the National Groundwater Monitoring Network \url{http://cida.usgs.gov/ngwmn/}.}
\title{import data from the National Groundwater Monitoring Network \url{http
s
://cida.usgs.gov/ngwmn/}.}
\usage{
readNGWMNdata(service, ..., asDateTime = TRUE, tz = "UTC")
}
...
...
man/readNGWMNlevels.Rd
View file @
f84fac37
...
...
@@ -2,7 +2,7 @@
% Please edit documentation in R/readNGWMNdata.R
\name{readNGWMNlevels}
\alias{readNGWMNlevels}
\title{Retrieve groundwater levels from the National Ground Water Monitoring Network \url{http://cida.usgs.gov/ngwmn/}.}
\title{Retrieve groundwater levels from the National Ground Water Monitoring Network \url{http
s
://cida.usgs.gov/ngwmn/}.}
\usage{
readNGWMNlevels(siteNumbers, asDateTime = TRUE, tz = "UTC")
}
...
...
@@ -22,7 +22,7 @@ Possible values to provide are "America/New_York","America/Chicago", "America/De
for more information on time zones.}
}
\description{
Retrieve groundwater levels from the National Ground Water Monitoring Network \url{http://cida.usgs.gov/ngwmn/}.
Retrieve groundwater levels from the National Ground Water Monitoring Network \url{http
s
://cida.usgs.gov/ngwmn/}.
}
\examples{
\donttest{
...
...
man/readNGWMNsites.Rd
View file @
f84fac37
...
...
@@ -2,7 +2,7 @@
% Please edit documentation in R/readNGWMNdata.R
\name{readNGWMNsites}
\alias{readNGWMNsites}
\title{Retrieve site data from the National Ground Water Monitoring Network \url{http://cida.usgs.gov/ngwmn/}.}
\title{Retrieve site data from the National Ground Water Monitoring Network \url{http
s
://cida.usgs.gov/ngwmn/}.}
\usage{
readNGWMNsites(siteNumbers)
}
...
...
@@ -20,7 +20,7 @@ dec_lat_va, dec_lon_va \tab numeric \tab Site latitude and longitude \cr
}
}
\description{
Retrieve site data from the National Ground Water Monitoring Network \url{http://cida.usgs.gov/ngwmn/}.
Retrieve site data from the National Ground Water Monitoring Network \url{http
s
://cida.usgs.gov/ngwmn/}.
}
\examples{
\donttest{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment