Nothing
library(testthat)
library(dataRetrieval)
test_that("profiles", {
testthat::skip_on_cran()
# Data profiles: "Organization Data"
org_data <- readWQPdata(
statecode = "WI",
countycode = "Dane",
service = "Organization"
)
expect_true(all(c(
"OrganizationIdentifier",
"OrganizationFormalName"
) %in% names(org_data)))
# Data profiles: "Site Data Only"
site_data <- readWQPdata(
statecode = "WI",
countycode = "Dane",
service = "Station"
)
expect_true(all(c("OrganizationIdentifier", "OrganizationFormalName") %in% names(site_data)))
# Data profiles: "Project Data"
project_data <- readWQPdata(
statecode = "WI",
countycode = "Dane",
service = "Project"
)
expect_true(all(c(
"OrganizationIdentifier",
"OrganizationFormalName"
) %in% names(project_data)))
# Data profiles: "Project Monitoring Location Weighting Data"
proj_mlwd <- readWQPdata(
statecode = "WI",
countycode = "Dane",
service = "ProjectMonitoringLocationWeighting"
)
expect_true(all(c(
"OrganizationIdentifier",
"OrganizationFormalName"
) %in% names(proj_mlwd)))
# Data profiles: "narrow":
# samp_data <- readWQPdata(
# siteid = "USGS-04024315",
# service = "ResultWQX3",
# dataProfile = "narrow"
# )
#
# expect_true(all(c(
# "Activity_StartDateTime",
# "LastChangeDate"
# ) %in% names(samp_data)))
# Data profiles: "Sample Results (biological metadata)"
samp_bio <- readWQPdata(
siteid = "USGS-04024315",
dataProfile = "biological",
service = "Result"
)
expect_true(all(c(
"OrganizationIdentifier",
"OrganizationFormalName"
) %in% names(samp_bio)))
# Data profiles: "Sample Results (narrow)"
samp_narrow <- readWQPdata(
siteid = "USGS-04024315",
dataProfile = "narrowResult",
service = "Result"
)
expect_true(all(c(
"OrganizationIdentifier",
"OrganizationFormalName"
) %in% names(samp_narrow)))
# Data profiles: "Sampling Activity"
samp_activity <- readWQPdata(
siteid = "USGS-04024315",
dataProfile = "activityAll",
service = "Activity"
)
expect_true(all(c(
"OrganizationIdentifier",
"OrganizationFormalName"
) %in% names(samp_activity)))
# Data profile: "Result Detection Quantitation Limit Data"
dl_data <- readWQPdata(
siteid = "USGS-04024315",
service = "ResultDetectionQuantitationLimit"
)
expect_true(all(c(
"OrganizationIdentifier",
"OrganizationFormalName"
) %in% names(dl_data)))
})
test_that("readWQPsummary", {
testthat::skip_on_cran()
dane_county_data <- readWQPsummary(
countycode = "US:55:025",
summaryYears = 5,
siteType = "Stream"
)
summary_names <- c(
"Provider",
"MonitoringLocationIdentifier",
"YearSummarized",
"CharacteristicType",
"CharacteristicName",
"ActivityCount",
"ResultCount",
"LastResultSubmittedDate",
"OrganizationIdentifier",
"OrganizationFormalName",
"MonitoringLocationName",
"MonitoringLocationTypeName",
"ResolvedMonitoringLocationTypeName",
"HUCEightDigitCode",
"MonitoringLocationUrl",
"CountyName",
"StateName",
"MonitoringLocationLatitude",
"MonitoringLocationLongitude"
)
expect_true(all(summary_names %in% names(dane_county_data)))
expect_true(diff(range(dane_county_data$YearSummarized)) <= 5)
lake_sites <- readWQPsummary(
siteType = "Lake, Reservoir, Impoundment",
CharacteristicName = "Temperature, water",
countycode = "US:55:025"
)
expect_true(all(summary_names %in% names(lake_sites)))
expect_true(diff(range(lake_sites$YearSummarized)) >= 5)
site1 <- readWQPsummary(
siteid = "USGS-07144100",
summaryYears = 5
)
expect_type(site1$ActivityCount, "double")
expect_type(site1$MonitoringLocationIdentifier, "character")
# nolint start: line_length_linter
expect_equal(
attr(site1, "url"),
"https://www.waterqualitydata.us/data/summary/monitoringLocation/search?siteid=USGS-07144100&summaryYears=5&mimeType=csv&count=no&dataProfile=periodOfRecord"
)
# nolint end
})
context("NLDI...")
test_that("NLDI messageing NULL", {
skip_on_cran()
xx <- findNLDI(
wqp = "TCEQMAIN-10016",
nav = "UM",
find = "nwissite",
distance_km = 2,
warn = FALSE
)
expect_warning(findNLDI(
wqp = "TCEQMAIN-10016",
nav = "UM",
find = "nwissite",
distance_km = 2,
warn = TRUE
))
expect_true(class(xx) == "list")
expect_true(nrow(xx[[1]]) == 1)
})
test_that("NLDI offerings...", {
skip_on_cran()
expect_true(nrow(get_nldi_sources()) > 1)
})
test_that("NLDI starting sources...", {
skip_on_cran()
# LINESTRING GEOMETERY
expect_equal(sum(names(findNLDI(comid = 101, warn = FALSE)$origin) %in%
c("sourceName", "identifier", "comid", "geometry")), 4)
# POINT GEOMETERY
expect_true(all(names(findNLDI(nwis = "11120000", warn = FALSE)$origin) %in%
c(
"sourceName", "identifier", "comid",
"name", "reachcode", "measure",
"X", "Y", "geometry"
)))
# COMID
expect_equal(findNLDI(comid = 101, warn = FALSE)$origin$sourceName, "NHDPlus comid")
# NWIS
expect_equal(findNLDI(nwis = "11120000", warn = FALSE)$origin$sourceName, "NWIS Surface Water Sites")
# WQP
expect_equal(findNLDI(wqp = "USGS-04024315", warn = FALSE)$origin$sourceName, "Water Quality Portal")
expect_equal(findNLDI(wqp = "CCU_EQL-2 H9", warn = FALSE)$origin$sourceName, "Water Quality Portal")
# LOCATION
expect_equal(findNLDI(location = c(-115, 40), warn = FALSE)$origin$sourceName, "NHDPlus comid")
# ERROR: LOCATION COORDINATES FLIPPED
expect_error(findNLDI(location = c(40, -115), warn = FALSE))
# GENERAL START: STABLE
expect_equal(findNLDI(origin = list("comid" = 101), warn = FALSE)$origin$sourceName, "NHDPlus comid")
# GENERAL START: NON-STABLE
expect_equal(findNLDI(origin = list("nwissite" = "USGS-05427850"), warn = FALSE)$origin$sourceName, "NWIS Surface Water Sites")
# ERROR: TWO STARTS
expect_error(findNLDI(nwis = 1000, comid = 101, warn = FALSE))
# NON EXISTING SITE
expect_error(findNLDI(comid = 1, warn = FALSE))
})
test_that("NLDI navigation sources...", {
skip_on_cran()
# UPPER TRIBUTARY
expect_equal(length(findNLDI(nwis = "11120000", nav = "UT", warn = FALSE)$UT_flowlines), 2)
# UPPER MAIN
expect_equal(length(findNLDI(nwis = "11120000", nav = "UM", warn = FALSE)$UM_flowlines), 2)
# DOWNSTREAM MAIN
expect_equal(length(findNLDI(nwis = "11120000", nav = "DM", warn = FALSE)$DM_flowlines), 2)
# MULTI-REQUEST
expect_equal(length(findNLDI(nwis = "11120000", nav = c("UT", "UM"), warn = FALSE)), 3)
# ERRORS: Bad NAV REQUEST
expect_error(findNLDI(nwis = "11120000", nav = c("DT"), warn = FALSE))
expect_error(findNLDI(nwis = "11120000", nav = c("DT", "UM"), warn = FALSE))
# WARNING: Data not found
expect_error(findNLDI(comid = 101, nav = "UM", find = "nwis", warn = TRUE))
})
test_that("NLDI find sources...", {
skip_on_cran()
expect_equal(length(findNLDI(nwis = "11120000", nav = "UT", find = "wade", warn = FALSE)), 2)
# expect_equal(length(findNLDI(nwis = "11120000", nav = c("UT", "UM"), find = c("nwis", "wade", "flowlines"), warn = FALSE)), 7)
})
test_that("sf not installed...", {
skip_on_cran()
expect_true(!"geometry" %in% findNLDI(nwis = "11120000", no_sf = TRUE, warn = FALSE)[[1]])
expect_equal(class(findNLDI(nwis = "11120000", nav = "UT", find = c("nwis"), no_sf = TRUE, warn = FALSE)[[2]]), "data.frame")
expect_true(c("X") %in% names(findNLDI(nwis = "11120000", nav = "UT", find = c("nwis"), no_sf = TRUE, warn = FALSE)[[2]]))
})
test_that("Distance...", {
skip_on_cran()
full <- findNLDI(comid = 101, nav = "UT", find = "nwis", distance_km = 9999, warn = FALSE)
part <- findNLDI(comid = 101, nav = "UT", find = "nwis", warn = FALSE)
expect_true(nrow(full$UT_nwissite) > nrow(part$UT_nwissite))
})
test_that("basin", {
skip_on_cran()
xx <- findNLDI(comid = 101, nav = "UT", find = "basin", warn = FALSE)
xx2 <- findNLDI(comid = 101, nav = "UT", find = "basin", no_sf = TRUE , warn = FALSE)
expect_true(sf::st_geometry_type(xx$basin) == "POLYGON")
expect_equal(ncol(xx2$basin), 0)
})
test_that("ignore flowlines", {
skip_on_cran()
xx <- findNLDI(comid = 101, nav = "DM", find = c("nwis", "flowlines"), warn = FALSE)
xx2 <- findNLDI(comid = 101, nav = "DM", find = "nwis", warn = FALSE)
expect_gt(length(xx), length(xx2))
expect_true("DM_flowlines" %in% names(xx))
expect_true(!"DM_flowlines" %in% names(xx2))
})
test_that("sf points", {
skip_on_cran()
library(sf)
p2 <- st_sfc(st_point(c(-119.8458, 34.4146)), crs = 4326)
expect_equal(findNLDI(location = p2, warn = FALSE), findNLDI(location = sf::st_as_sf(p2)))
expect_error(findNLDI(location = st_buffer(p2, .01), warn = FALSE))
})
test_that("warn_flag", {
expect_warning(
findNLDI(wqp = "TCEQMAIN-10016",
nav = "UM",
find = "nwissite",
distance_km = 2,
no_sf = TRUE,
warn = FALSE),
regexp = NA
)
expect_warning(
findNLDI(wqp = "TCEQMAIN-10016",
nav = "UM",
find = "nwissite",
distance_km = 2,
no_sf = TRUE,
warn = TRUE)
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.