Skip to content

Commit

Permalink
Merge pull request #394 from DOI-USGS/393
Browse files Browse the repository at this point in the history
handle lowercase nhdplusid fixes #393
  • Loading branch information
dblodgett-usgs authored Jul 20, 2024
2 parents e80be3b + ede3166 commit 3140fad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: nhdplusTools
Type: Package
Title: NHDPlus Tools
Version: 1.2.1
Version: 1.2.2
Authors@R: c(person(given = "David",
family = "Blodgett",
role = c("aut", "cre"),
Expand Down
2 changes: 1 addition & 1 deletion R/A_nhdplusTools.R
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ WBAREACOMI <- "WBAREACOMI"

# List of input names that should be changed to replacement names
nhdplus_attributes <- list(
COMID = COMID, NHDPlusID = COMID,
COMID = COMID, NHDPlusID = COMID, nhdplusid = COMID,
Permanent_Identifier = Permanent_Identifier,
RPUID = RPUID,
VPUID = VPUID,
Expand Down
1 change: 1 addition & 0 deletions tests/testthat/test_01_get_nldi.R
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ test_that("navigation works", {
test_that("basin works", {

skip_on_cran()
skip_on_ci()

nldi_nwis <- list(featureSource = "nwissite", featureID = "USGS-05428500")

Expand Down

0 comments on commit 3140fad

Please sign in to comment.