From 72ed6e5dbd738544bb07123f27693f86e5999a06 Mon Sep 17 00:00:00 2001 From: Elise Hinman Date: Tue, 3 Sep 2024 09:43:10 -0500 Subject: [PATCH 1/4] add info about gwlevels service --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 495ec36..66ed86a 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ # dataretrieval: Download hydrologic data -:warning: USGS data availability and format are changing on Water Quality Portal (WQP). Beginning in February 2024 data obtained from WQP legacy profiles will not include new USGS data or recent updates to existing data. +:warning: USGS data availability and format are changing on Water Quality Portal (WQP). Since March 2024, data obtained from WQP legacy profiles will not include new USGS data or recent updates to existing data. To view the status of changes in data availability and code functionality, visit: https://doi-usgs.github.io/dataRetrieval/articles/Status.html +:mega: **09/03/2024:** The groundwater levels service has switched endpoints due to WaterServices database updates. `dataretrieval` was updated accordingly in [`v1.0.10`](https://github.com/DOI-USGS/dataretrieval-python/releases/tag/v1.0.10), but older versions of the package will return 503 errors from the discontinued service when using `nwis.get_gwlevels` or the `service='gwlevels'` argument. Visit this Water Data For the Nation [blog post](https://waterdata.usgs.gov/blog/wdfn-waterservices-2024/) for more information. + ## What is dataretrieval? `dataretrieval` was created to simplify the process of loading hydrologic data into the Python environment. Like the original R version [`dataRetrieval`](https://github.com/DOI-USGS/dataRetrieval), From e20533fa8c4939870feadcaa478c86e9cba14885 Mon Sep 17 00:00:00 2001 From: Timothy Hodson <34148978+thodson-usgs@users.noreply.github.com> Date: Tue, 3 Sep 2024 15:10:54 -0500 Subject: [PATCH 2/4] Update maintainers (#159) --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 433e703..3c2d47e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,9 +9,12 @@ readme = "README.md" requires-python = ">=3.8" keywords = ["USGS", "water data"] license = {file = "LICENSE.md"} -maintainers = [ +authors = [ {name = "Timothy Hodson", email = "thodson@usgs.gov"}, ] +maintainers = [ + {name = "Elise Hinman", email = "ehinman@usgs.gov"}, +] classifiers = [ "Programming Language :: Python :: 3", ] From 73a607608b34ef7c059e7ba80e548f04e21686c4 Mon Sep 17 00:00:00 2001 From: Elise Hinman <121896266+ehinman@users.noreply.github.com> Date: Wed, 4 Sep 2024 15:20:45 -0500 Subject: [PATCH 3/4] Update README.md more concise wording Co-authored-by: Timothy Hodson <34148978+thodson-usgs@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 66ed86a..e8fd912 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ :warning: USGS data availability and format are changing on Water Quality Portal (WQP). Since March 2024, data obtained from WQP legacy profiles will not include new USGS data or recent updates to existing data. To view the status of changes in data availability and code functionality, visit: https://doi-usgs.github.io/dataRetrieval/articles/Status.html -:mega: **09/03/2024:** The groundwater levels service has switched endpoints due to WaterServices database updates. `dataretrieval` was updated accordingly in [`v1.0.10`](https://github.com/DOI-USGS/dataretrieval-python/releases/tag/v1.0.10), but older versions of the package will return 503 errors from the discontinued service when using `nwis.get_gwlevels` or the `service='gwlevels'` argument. Visit this Water Data For the Nation [blog post](https://waterdata.usgs.gov/blog/wdfn-waterservices-2024/) for more information. +:mega: **09/03/2024:** The groundwater levels service has switched endpoints, and `dataretrieval` was updated accordingly in [`v1.0.10`](https://github.com/DOI-USGS/dataretrieval-python/releases/tag/v1.0.10). Older versions using the discontinued endpoint will return 503 errors for `nwis.get_gwlevels` or the `service='gwlevels'` argument. Visit [Water Data For the Nation](https://waterdata.usgs.gov/blog/wdfn-waterservices-2024/) for more information. ## What is dataretrieval? `dataretrieval` was created to simplify the process of loading hydrologic data into the Python environment. From ee5dacd7c9074134491f56b0f68cd321a2c8da61 Mon Sep 17 00:00:00 2001 From: Timothy Hodson <34148978+thodson-usgs@users.noreply.github.com> Date: Mon, 16 Sep 2024 08:54:32 -0500 Subject: [PATCH 4/4] Update README.md (#161) --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e8fd912..85dd67b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # dataretrieval: Download hydrologic data +![PyPI - Version](https://img.shields.io/pypi/v/dataretrieval) +![Conda Version](https://img.shields.io/conda/v/conda-forge/dataretrieval) +![Downloads](https://static.pepy.tech/badge/dataretrieval) + :warning: USGS data availability and format are changing on Water Quality Portal (WQP). Since March 2024, data obtained from WQP legacy profiles will not include new USGS data or recent updates to existing data. To view the status of changes in data availability and code functionality, visit: https://doi-usgs.github.io/dataRetrieval/articles/Status.html