Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@96b1dc658a45175f93ed5f33fda2b2cebbb12ee8
- uses: r-lib/actions/setup-r-dependencies@6f6e5bc62fba3a704f74e7ad7ef7676c5c6a2590
with:
extra-packages: |
any::rcmdcheck
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: dataRetrieval
Type: Package
Title: Retrieval Functions for USGS and EPA Hydrology and Water Quality Data
Version: 2.7.21.9000
Version: 2.7.22
Authors@R: c(
person("Laura", "DeCicco", role = c("aut","cre"),
email = "[email protected]",
Expand Down Expand Up @@ -29,7 +29,7 @@ Authors@R: c(
person("Joeseph", "Zemmels", role="ctb",
email = "[email protected]",
comment=c(ORCID = "0009-0008-1463-6313")),
person("Elise", "Hinman", role="ctb",
person("Elise", "Hinman", role="aut",
email = "[email protected]",
comment=c(ORCID = "0000-0001-5396-1583")),
person("Michael", "Mahoney", role="ctb",
Expand Down
8 changes: 6 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ dataRetrieval 2.7.22
* Added read_waterdata_latest_daily to access latest daily USGS water data.
* Added read_waterdata_continuous to access continuous USGS water data.
* Added state_name and hydrologic_unit_code to read_waterdata_ts_meta
* Removed daily_id from read_waterdata_daily output. Currently it
is not stable over time.
* Removed daily_id from read_waterdata_daily output since it
is not stable over time. Moved other "id" columns to end of returned data frames.
* Changed examples for stateCd, countyCd, and parameterCdFile. Users are
encouraged to migrate to the "read_waterdata_metadata" functions.
* Added no_paging argument. This will make the request more efficient, but is not
recommended because it will silently cut off data after 50,000 rows.

dataRetrieval 2.7.21
===================
Expand Down
3 changes: 2 additions & 1 deletion R/AAA.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ pkg.env <- new.env()
"continuous")
collections <- c("parameter-codes", "agency-codes", "altitude-datums", "aquifer-codes",
"aquifer-types", "coordinate-accuracy-codes", "coordinate-datum-codes",
"coordinate-method-codes", "medium-codes",
"coordinate-method-codes", "medium-codes", "counties",
"hydrologic-unit-codes", "states",
"national-aquifer-codes", "reliability-codes", "site-types", "statistic-codes",
"topographic-codes", "time-zone-codes")

Expand Down
Loading
Loading