@@ -126,12 +126,14 @@ def get_qwdata(
126
126
127
127
.. warning::
128
128
129
- WARNING: Beginning in February 2024 the NWIS qw data endpoint will not deliver new data or updates to existing data.
129
+ WARNING: Beginning in March 2024 the NWIS qw data endpoint will
130
+ not deliver new data or updates to existing data.
130
131
Eventually the endpoint will be retired. For updated information visit:
131
132
https://waterdata.usgs.gov.nwis/qwdata
132
133
For additional details, see the R package vignette:
133
134
https://doi-usgs.github.io/dataRetrieval/articles/Status.html
134
- If you have additional questions about the qw data service, email [email protected] .
135
+ If you have additional questions about the qw data service,
136
+
135
137
136
138
Parameters
137
139
----------
@@ -175,6 +177,12 @@ def get_qwdata(
175
177
... )
176
178
177
179
"""
180
+ warnings .warn (('WARNING: Starting in March 2024, the NWIS qw data endpoint is '
181
+ 'retiring and no longer receives updates. For more information, '
182
+ 'refer to https://waterdata.usgs.gov.nwis/qwdata and '
183
+ 'https://doi-usgs.github.io/dataRetrieval/articles/Status.html '
184
+
185
+
178
186
_check_sites_value_types (sites )
179
187
180
188
kwargs ['site_no' ] = kwargs .pop ('site_no' , sites )
@@ -758,6 +766,12 @@ def get_info(ssl_check: bool = True, **kwargs) -> Tuple[pd.DataFrame, BaseMetada
758
766
"""
759
767
seriesCatalogOutput = kwargs .pop ('seriesCatalogOutput' , None )
760
768
if seriesCatalogOutput in ['True' , 'TRUE' , 'true' , True ]:
769
+
770
+ warnings .warn (('WARNING: Starting in March 2024, the NWIS qw data endpoint is '
771
+ 'retiring and no longer receives updates. For more information, '
772
+ 'refer to https://waterdata.usgs.gov.nwis/qwdata and '
773
+ 'https://doi-usgs.github.io/dataRetrieval/articles/Status.html '
774
+
761
775
# convert bool to string if necessary
762
776
kwargs ['seriesCatalogOutput' ] = 'True'
763
777
else :
0 commit comments