
Function to return data from the National Ground Water Monitoring Network waterML2 format
Source:R/importNGWMN_wml2.R
      importNGWMN.RdThis function accepts a url parameter for a WaterML2 getObservation. This function is still under development, but the general functionality is correct.
Arguments
- input
- character or raw, containing the url for the retrieval or a path to the data file, or raw XML. 
- asDateTime
- logical, if - TRUEreturns date and time as POSIXct, if- FALSE, character
- tz
- character to set timezone attribute of dateTime. Default is "UTC", and converts the date times to UTC, properly accounting for daylight savings times based on the data's provided time zone offset. Possible values to provide are "America/New_York", "America/Chicago", "America/Denver", "America/Los_Angeles", "America/Anchorage", as well as the following which do not use daylight savings time: "America/Honolulu", "America/Jamaica", "America/Managua", "America/Phoenix", and "America/Metlakatla". See also - OlsonNames()for more information on time zones.
Examples
# \donttest{
params <- list(request = "GetObservation",
               service = "SOS",
               version = "2.0.0",
               observedProperty = "urn:ogc:def:property:OGC:GroundWaterLevel",
               responseFormat = "text/xml",
               featureOfInterest = "VW_GWDP_GEOSERVER.USGS.403836085374401")
obs_url <- httr2::request("https://cida.usgs.gov") |>
 httr2::req_url_path_append("ngwmn_cache") |> 
 httr2::req_url_path_append("sos") |>
 httr2::req_url_query(!!!params)
#data_returned <- importNGWMN(obs_url)
# }