From 674367ae3a7c432be4fcf6cc60543cbe33d5d247 Mon Sep 17 00:00:00 2001 From: thodson-usgs <34148978+thodson-usgs@users.noreply.github.com> Date: Fri, 19 Jul 2024 16:01:23 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20DOI-USGS?= =?UTF-8?q?/dataretrieval-python@64a575db5e3f4a9f490e72cea2e10bd20e54e022?= =?UTF-8?q?=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .buildinfo | 2 +- _modules/dataretrieval/nadp.html | 4 +- _modules/dataretrieval/nwis.html | 18 +- _modules/dataretrieval/streamstats.html | 4 +- _modules/dataretrieval/utils.html | 4 +- _modules/dataretrieval/wqp.html | 4 +- _modules/index.html | 4 +- _static/documentation_options.js | 2 +- ...GS_dataretrieval_DailyValues_Examples.html | 6 +- ...S_dataretrieval_DailyValues_Examples.ipynb | 90 ++-- ...aretrieval_GroundwaterLevels_Examples.html | 6 +- ...retrieval_GroundwaterLevels_Examples.ipynb | 106 ++--- ...S_dataretrieval_Measurements_Examples.html | 6 +- ..._dataretrieval_Measurements_Examples.ipynb | 66 +-- ...dataretrieval_ParameterCodes_Examples.html | 6 +- ...ataretrieval_ParameterCodes_Examples.ipynb | 50 +-- .../USGS_dataretrieval_Peaks_Examples.html | 6 +- .../USGS_dataretrieval_Peaks_Examples.ipynb | 66 +-- .../USGS_dataretrieval_Ratings_Examples.html | 6 +- .../USGS_dataretrieval_Ratings_Examples.ipynb | 70 +-- .../USGS_dataretrieval_SiteInfo_Examples.html | 4 +- ..._dataretrieval_SiteInventory_Examples.html | 4 +- ...SGS_dataretrieval_Statistics_Examples.html | 6 +- ...GS_dataretrieval_Statistics_Examples.ipynb | 84 ++-- ...SGS_dataretrieval_UnitValues_Examples.html | 220 ++++----- ...GS_dataretrieval_UnitValues_Examples.ipynb | 422 ++++++++---------- ...S_dataretrieval_WaterSamples_Examples.html | 14 +- ..._dataretrieval_WaterSamples_Examples.ipynb | 98 ++-- .../USGS_dataretrieval_WaterUse_Examples.html | 6 +- ...USGS_dataretrieval_WaterUse_Examples.ipynb | 66 +-- examples/index.html | 4 +- examples/nwisdemo01.html | 4 +- examples/nwisdemo01.ipynb | 56 +-- examples/readme_examples.html | 4 +- examples/rvignettes.html | 8 +- examples/rvignettes.ipynb | 180 ++++---- examples/siteinfo_examples.html | 4 +- genindex.html | 4 +- index.html | 4 +- meta/contributing.html | 4 +- meta/installing.html | 4 +- meta/license.html | 4 +- py-modindex.html | 4 +- reference/index.html | 4 +- reference/nadp.html | 4 +- reference/nwis.html | 4 +- reference/streamstats.html | 4 +- reference/utils.html | 4 +- reference/wqp.html | 4 +- search.html | 4 +- searchindex.js | 2 +- userguide/dataportals.html | 4 +- userguide/index.html | 4 +- userguide/timeconventions.html | 4 +- 54 files changed, 862 insertions(+), 914 deletions(-) diff --git a/.buildinfo b/.buildinfo index a768deb..3234f26 100644 --- a/.buildinfo +++ b/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 3021bc8bcd596d7bd908f4b77b58a2ed +config: d1a812aa4fc5d2a936e7f08eb4fd2f4a tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_modules/dataretrieval/nadp.html b/_modules/dataretrieval/nadp.html index 67580f3..be27965 100644 --- a/_modules/dataretrieval/nadp.html +++ b/_modules/dataretrieval/nadp.html @@ -3,7 +3,7 @@ - dataretrieval.nadp — dataretrieval 0.1.dev1+gc434b13 documentation + dataretrieval.nadp — dataretrieval 0.1.dev1+g64a575d documentation @@ -14,7 +14,7 @@ - + diff --git a/_modules/dataretrieval/nwis.html b/_modules/dataretrieval/nwis.html index a9c1c66..3c6361b 100644 --- a/_modules/dataretrieval/nwis.html +++ b/_modules/dataretrieval/nwis.html @@ -3,7 +3,7 @@ - dataretrieval.nwis — dataretrieval 0.1.dev1+gc434b13 documentation + dataretrieval.nwis — dataretrieval 0.1.dev1+g64a575d documentation @@ -14,7 +14,7 @@ - + @@ -104,6 +104,11 @@

Source code for dataretrieval.nwis

 
 from .utils import query
 
+try:
+    import geopandas as gpd
+except ImportError:
+    gpd = None
+
 WATERDATA_BASE_URL = 'https://nwis.waterdata.usgs.gov/'
 WATERDATA_URL = WATERDATA_BASE_URL + 'nwis/'
 WATERSERVICE_URL = 'https://waterservices.usgs.gov/nwis/'
@@ -119,6 +124,7 @@ 

Source code for dataretrieval.nwis

     'water_use',
     'ratings',
 ]
+_CRS = "EPSG:4236"
 
 
 
@@ -154,6 +160,14 @@

Source code for dataretrieval.nwis

     if service == 'peaks':
         df = preformat_peaks_response(df)
 
+    if gpd is not None:
+        if "dec_lat_va" in list(df):
+            geoms = gpd.points_from_xy(
+                df.dec_long_va.values,
+                df.dec_lat_va.values
+            )
+            df = gpd.GeoDataFrame(df, geometry=geoms, crs=_CRS)
+
     # check for multiple sites:
     if 'datetime' not in df.columns:
         # XXX: consider making site_no index
diff --git a/_modules/dataretrieval/streamstats.html b/_modules/dataretrieval/streamstats.html
index 4883481..aa380ca 100644
--- a/_modules/dataretrieval/streamstats.html
+++ b/_modules/dataretrieval/streamstats.html
@@ -3,7 +3,7 @@
 
   
   
-  dataretrieval.streamstats — dataretrieval 0.1.dev1+gc434b13 documentation
+  dataretrieval.streamstats — dataretrieval 0.1.dev1+g64a575d documentation
       
       
 
@@ -14,7 +14,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/_modules/dataretrieval/utils.html b/_modules/dataretrieval/utils.html
index fcb5bd2..64e44e3 100644
--- a/_modules/dataretrieval/utils.html
+++ b/_modules/dataretrieval/utils.html
@@ -3,7 +3,7 @@
 
   
   
-  dataretrieval.utils — dataretrieval 0.1.dev1+gc434b13 documentation
+  dataretrieval.utils — dataretrieval 0.1.dev1+g64a575d documentation
       
       
 
@@ -14,7 +14,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/_modules/dataretrieval/wqp.html b/_modules/dataretrieval/wqp.html
index 5ee5f67..c0ece7e 100644
--- a/_modules/dataretrieval/wqp.html
+++ b/_modules/dataretrieval/wqp.html
@@ -3,7 +3,7 @@
 
   
   
-  dataretrieval.wqp — dataretrieval 0.1.dev1+gc434b13 documentation
+  dataretrieval.wqp — dataretrieval 0.1.dev1+g64a575d documentation
       
       
 
@@ -14,7 +14,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/_modules/index.html b/_modules/index.html
index 3d5ae97..9ccfa91 100644
--- a/_modules/index.html
+++ b/_modules/index.html
@@ -3,7 +3,7 @@
 
   
   
-  Overview: module code — dataretrieval 0.1.dev1+gc434b13 documentation
+  Overview: module code — dataretrieval 0.1.dev1+g64a575d documentation
       
       
 
@@ -14,7 +14,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/_static/documentation_options.js b/_static/documentation_options.js
index 8da9b52..f6917d4 100644
--- a/_static/documentation_options.js
+++ b/_static/documentation_options.js
@@ -1,5 +1,5 @@
 const DOCUMENTATION_OPTIONS = {
-    VERSION: '0.1.dev1+gc434b13',
+    VERSION: '0.1.dev1+g64a575d',
     LANGUAGE: 'en',
     COLLAPSE_INDEX: false,
     BUILDER: 'html',
diff --git a/examples/USGS_dataretrieval_DailyValues_Examples.html b/examples/USGS_dataretrieval_DailyValues_Examples.html
index 6b9c350..e73de01 100644
--- a/examples/USGS_dataretrieval_DailyValues_Examples.html
+++ b/examples/USGS_dataretrieval_DailyValues_Examples.html
@@ -4,7 +4,7 @@
   
 
   
-  USGS dataretrieval Python Package get_dv() Examples — dataretrieval 0.1.dev1+gc434b13 documentation
+  USGS dataretrieval Python Package get_dv() Examples — dataretrieval 0.1.dev1+g64a575d documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,7 +129,7 @@ 

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)
 Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)
 Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)
 Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)
diff --git a/examples/USGS_dataretrieval_DailyValues_Examples.ipynb b/examples/USGS_dataretrieval_DailyValues_Examples.ipynb
index c2a4c84..4e9386c 100644
--- a/examples/USGS_dataretrieval_DailyValues_Examples.ipynb
+++ b/examples/USGS_dataretrieval_DailyValues_Examples.ipynb
@@ -23,10 +23,10 @@
    "execution_count": 1,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:29.653625Z",
-     "iopub.status.busy": "2024-07-17T17:39:29.653204Z",
-     "iopub.status.idle": "2024-07-17T17:39:30.344161Z",
-     "shell.execute_reply": "2024-07-17T17:39:30.343461Z"
+     "iopub.execute_input": "2024-07-19T16:00:09.172976Z",
+     "iopub.status.busy": "2024-07-19T16:00:09.172563Z",
+     "iopub.status.idle": "2024-07-19T16:00:09.877615Z",
+     "shell.execute_reply": "2024-07-19T16:00:09.876877Z"
     },
     "pycharm": {
      "is_executing": true,
@@ -45,7 +45,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n",
       "Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)\r\n",
       "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n",
       "Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n"
@@ -82,10 +82,10 @@
    "execution_count": 2,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:30.346803Z",
-     "iopub.status.busy": "2024-07-17T17:39:30.346604Z",
-     "iopub.status.idle": "2024-07-17T17:39:30.640381Z",
-     "shell.execute_reply": "2024-07-17T17:39:30.639840Z"
+     "iopub.execute_input": "2024-07-19T16:00:09.880819Z",
+     "iopub.status.busy": "2024-07-19T16:00:09.880607Z",
+     "iopub.status.idle": "2024-07-19T16:00:10.180113Z",
+     "shell.execute_reply": "2024-07-19T16:00:10.179392Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -131,10 +131,10 @@
    "execution_count": 3,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:30.643175Z",
-     "iopub.status.busy": "2024-07-17T17:39:30.642712Z",
-     "iopub.status.idle": "2024-07-17T17:39:31.004728Z",
-     "shell.execute_reply": "2024-07-17T17:39:31.004178Z"
+     "iopub.execute_input": "2024-07-19T16:00:10.183674Z",
+     "iopub.status.busy": "2024-07-19T16:00:10.183360Z",
+     "iopub.status.idle": "2024-07-19T16:00:10.339774Z",
+     "shell.execute_reply": "2024-07-19T16:00:10.339134Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -177,10 +177,10 @@
    "execution_count": 4,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:31.007149Z",
-     "iopub.status.busy": "2024-07-17T17:39:31.006783Z",
-     "iopub.status.idle": "2024-07-17T17:39:31.016432Z",
-     "shell.execute_reply": "2024-07-17T17:39:31.015937Z"
+     "iopub.execute_input": "2024-07-19T16:00:10.342369Z",
+     "iopub.status.busy": "2024-07-19T16:00:10.341872Z",
+     "iopub.status.idle": "2024-07-19T16:00:10.351881Z",
+     "shell.execute_reply": "2024-07-19T16:00:10.351333Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -336,10 +336,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:31.018492Z",
-     "iopub.status.busy": "2024-07-17T17:39:31.018176Z",
-     "iopub.status.idle": "2024-07-17T17:39:31.021609Z",
-     "shell.execute_reply": "2024-07-17T17:39:31.021042Z"
+     "iopub.execute_input": "2024-07-19T16:00:10.354178Z",
+     "iopub.status.busy": "2024-07-19T16:00:10.353860Z",
+     "iopub.status.idle": "2024-07-19T16:00:10.357418Z",
+     "shell.execute_reply": "2024-07-19T16:00:10.356896Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -378,10 +378,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:31.023992Z",
-     "iopub.status.busy": "2024-07-17T17:39:31.023537Z",
-     "iopub.status.idle": "2024-07-17T17:39:31.030916Z",
-     "shell.execute_reply": "2024-07-17T17:39:31.030364Z"
+     "iopub.execute_input": "2024-07-19T16:00:10.359549Z",
+     "iopub.status.busy": "2024-07-19T16:00:10.359202Z",
+     "iopub.status.idle": "2024-07-19T16:00:10.366365Z",
+     "shell.execute_reply": "2024-07-19T16:00:10.365907Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -487,10 +487,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:31.033150Z",
-     "iopub.status.busy": "2024-07-17T17:39:31.032799Z",
-     "iopub.status.idle": "2024-07-17T17:39:31.588721Z",
-     "shell.execute_reply": "2024-07-17T17:39:31.588111Z"
+     "iopub.execute_input": "2024-07-19T16:00:10.368625Z",
+     "iopub.status.busy": "2024-07-19T16:00:10.368155Z",
+     "iopub.status.idle": "2024-07-19T16:00:10.934790Z",
+     "shell.execute_reply": "2024-07-19T16:00:10.934145Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -536,10 +536,10 @@
    "execution_count": 8,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:31.591312Z",
-     "iopub.status.busy": "2024-07-17T17:39:31.590869Z",
-     "iopub.status.idle": "2024-07-17T17:39:31.594093Z",
-     "shell.execute_reply": "2024-07-17T17:39:31.593514Z"
+     "iopub.execute_input": "2024-07-19T16:00:10.937340Z",
+     "iopub.status.busy": "2024-07-19T16:00:10.936893Z",
+     "iopub.status.idle": "2024-07-19T16:00:10.940186Z",
+     "shell.execute_reply": "2024-07-19T16:00:10.939617Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -584,10 +584,10 @@
    "execution_count": 9,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:31.596311Z",
-     "iopub.status.busy": "2024-07-17T17:39:31.595933Z",
-     "iopub.status.idle": "2024-07-17T17:39:32.006551Z",
-     "shell.execute_reply": "2024-07-17T17:39:32.005911Z"
+     "iopub.execute_input": "2024-07-19T16:00:10.942433Z",
+     "iopub.status.busy": "2024-07-19T16:00:10.942003Z",
+     "iopub.status.idle": "2024-07-19T16:00:11.115886Z",
+     "shell.execute_reply": "2024-07-19T16:00:11.115253Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -806,10 +806,10 @@
    "execution_count": 10,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:32.008830Z",
-     "iopub.status.busy": "2024-07-17T17:39:32.008633Z",
-     "iopub.status.idle": "2024-07-17T17:39:32.699827Z",
-     "shell.execute_reply": "2024-07-17T17:39:32.699195Z"
+     "iopub.execute_input": "2024-07-19T16:00:11.118266Z",
+     "iopub.status.busy": "2024-07-19T16:00:11.117888Z",
+     "iopub.status.idle": "2024-07-19T16:00:11.494604Z",
+     "shell.execute_reply": "2024-07-19T16:00:11.493940Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -1060,10 +1060,10 @@
    "execution_count": 11,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:32.702222Z",
-     "iopub.status.busy": "2024-07-17T17:39:32.701881Z",
-     "iopub.status.idle": "2024-07-17T17:39:32.933035Z",
-     "shell.execute_reply": "2024-07-17T17:39:32.932409Z"
+     "iopub.execute_input": "2024-07-19T16:00:11.497307Z",
+     "iopub.status.busy": "2024-07-19T16:00:11.496885Z",
+     "iopub.status.idle": "2024-07-19T16:00:11.633755Z",
+     "shell.execute_reply": "2024-07-19T16:00:11.633127Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_GroundwaterLevels_Examples.html b/examples/USGS_dataretrieval_GroundwaterLevels_Examples.html
index a0fb769..84eeddb 100644
--- a/examples/USGS_dataretrieval_GroundwaterLevels_Examples.html
+++ b/examples/USGS_dataretrieval_GroundwaterLevels_Examples.html
@@ -4,7 +4,7 @@
   
 
   
-  USGS dataretrieval Python Package get_gwlevels() Examples — dataretrieval 0.1.dev1+gc434b13 documentation
+  USGS dataretrieval Python Package get_gwlevels() Examples — dataretrieval 0.1.dev1+g64a575d documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,7 +129,7 @@ 

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)
 Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)
 Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)
 Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)
diff --git a/examples/USGS_dataretrieval_GroundwaterLevels_Examples.ipynb b/examples/USGS_dataretrieval_GroundwaterLevels_Examples.ipynb
index 1990e77..e208706 100644
--- a/examples/USGS_dataretrieval_GroundwaterLevels_Examples.ipynb
+++ b/examples/USGS_dataretrieval_GroundwaterLevels_Examples.ipynb
@@ -31,10 +31,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:34.554359Z",
-     "iopub.status.busy": "2024-07-17T17:39:34.554185Z",
-     "iopub.status.idle": "2024-07-17T17:39:35.235328Z",
-     "shell.execute_reply": "2024-07-17T17:39:35.234566Z"
+     "iopub.execute_input": "2024-07-19T16:00:13.617692Z",
+     "iopub.status.busy": "2024-07-19T16:00:13.617440Z",
+     "iopub.status.idle": "2024-07-19T16:00:14.316845Z",
+     "shell.execute_reply": "2024-07-19T16:00:14.316062Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -52,14 +52,20 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n",
       "Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)\r\n",
       "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n",
       "Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n",
       "Requirement already satisfied: python-dateutil>=2.8.2 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.9.0.post0)\r\n",
       "Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)\r\n",
       "Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)\r\n",
-      "Requirement already satisfied: charset-normalizer<4,>=2 in /home/runner/.local/lib/python3.10/site-packages (from requests->dataretrieval) (3.3.2)\r\n",
+      "Requirement already satisfied: charset-normalizer<4,>=2 in /home/runner/.local/lib/python3.10/site-packages (from requests->dataretrieval) (3.3.2)\r\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
       "Requirement already satisfied: idna<4,>=2.5 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (3.3)\r\n",
       "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (1.26.5)\r\n",
       "Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (2020.6.20)\r\n",
@@ -86,10 +92,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:35.237959Z",
-     "iopub.status.busy": "2024-07-17T17:39:35.237756Z",
-     "iopub.status.idle": "2024-07-17T17:39:35.527735Z",
-     "shell.execute_reply": "2024-07-17T17:39:35.527203Z"
+     "iopub.execute_input": "2024-07-19T16:00:14.319896Z",
+     "iopub.status.busy": "2024-07-19T16:00:14.319518Z",
+     "iopub.status.idle": "2024-07-19T16:00:14.634279Z",
+     "shell.execute_reply": "2024-07-19T16:00:14.633739Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -136,10 +142,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:35.530464Z",
-     "iopub.status.busy": "2024-07-17T17:39:35.530164Z",
-     "iopub.status.idle": "2024-07-17T17:39:35.731747Z",
-     "shell.execute_reply": "2024-07-17T17:39:35.731140Z"
+     "iopub.execute_input": "2024-07-19T16:00:14.637295Z",
+     "iopub.status.busy": "2024-07-19T16:00:14.636798Z",
+     "iopub.status.idle": "2024-07-19T16:00:14.797290Z",
+     "shell.execute_reply": "2024-07-19T16:00:14.796665Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -202,10 +208,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:35.734175Z",
-     "iopub.status.busy": "2024-07-17T17:39:35.733810Z",
-     "iopub.status.idle": "2024-07-17T17:39:35.748310Z",
-     "shell.execute_reply": "2024-07-17T17:39:35.747807Z"
+     "iopub.execute_input": "2024-07-19T16:00:14.800001Z",
+     "iopub.status.busy": "2024-07-19T16:00:14.799598Z",
+     "iopub.status.idle": "2024-07-19T16:00:14.815051Z",
+     "shell.execute_reply": "2024-07-19T16:00:14.814439Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -571,10 +577,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:35.750341Z",
-     "iopub.status.busy": "2024-07-17T17:39:35.750161Z",
-     "iopub.status.idle": "2024-07-17T17:39:35.753740Z",
-     "shell.execute_reply": "2024-07-17T17:39:35.753157Z"
+     "iopub.execute_input": "2024-07-19T16:00:14.817637Z",
+     "iopub.status.busy": "2024-07-19T16:00:14.817131Z",
+     "iopub.status.idle": "2024-07-19T16:00:14.821160Z",
+     "shell.execute_reply": "2024-07-19T16:00:14.820587Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -627,10 +633,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:35.755940Z",
-     "iopub.status.busy": "2024-07-17T17:39:35.755484Z",
-     "iopub.status.idle": "2024-07-17T17:39:35.761334Z",
-     "shell.execute_reply": "2024-07-17T17:39:35.760733Z"
+     "iopub.execute_input": "2024-07-19T16:00:14.823440Z",
+     "iopub.status.busy": "2024-07-19T16:00:14.822984Z",
+     "iopub.status.idle": "2024-07-19T16:00:14.829266Z",
+     "shell.execute_reply": "2024-07-19T16:00:14.828678Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -678,10 +684,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:35.763448Z",
-     "iopub.status.busy": "2024-07-17T17:39:35.763106Z",
-     "iopub.status.idle": "2024-07-17T17:39:37.371042Z",
-     "shell.execute_reply": "2024-07-17T17:39:37.370353Z"
+     "iopub.execute_input": "2024-07-19T16:00:14.831588Z",
+     "iopub.status.busy": "2024-07-19T16:00:14.831386Z",
+     "iopub.status.idle": "2024-07-19T16:00:16.530360Z",
+     "shell.execute_reply": "2024-07-19T16:00:16.529578Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -757,10 +763,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:37.373467Z",
-     "iopub.status.busy": "2024-07-17T17:39:37.373175Z",
-     "iopub.status.idle": "2024-07-17T17:39:37.376559Z",
-     "shell.execute_reply": "2024-07-17T17:39:37.376076Z"
+     "iopub.execute_input": "2024-07-19T16:00:16.533131Z",
+     "iopub.status.busy": "2024-07-19T16:00:16.532714Z",
+     "iopub.status.idle": "2024-07-19T16:00:16.536319Z",
+     "shell.execute_reply": "2024-07-19T16:00:16.535798Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -798,10 +804,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:37.378610Z",
-     "iopub.status.busy": "2024-07-17T17:39:37.378429Z",
-     "iopub.status.idle": "2024-07-17T17:39:37.517189Z",
-     "shell.execute_reply": "2024-07-17T17:39:37.516606Z"
+     "iopub.execute_input": "2024-07-19T16:00:16.538738Z",
+     "iopub.status.busy": "2024-07-19T16:00:16.538369Z",
+     "iopub.status.idle": "2024-07-19T16:00:16.718126Z",
+     "shell.execute_reply": "2024-07-19T16:00:16.717563Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -1207,10 +1213,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:37.519453Z",
-     "iopub.status.busy": "2024-07-17T17:39:37.519084Z",
-     "iopub.status.idle": "2024-07-17T17:39:37.739612Z",
-     "shell.execute_reply": "2024-07-17T17:39:37.739024Z"
+     "iopub.execute_input": "2024-07-19T16:00:16.720579Z",
+     "iopub.status.busy": "2024-07-19T16:00:16.720193Z",
+     "iopub.status.idle": "2024-07-19T16:00:17.044223Z",
+     "shell.execute_reply": "2024-07-19T16:00:17.043607Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -1265,10 +1271,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:37.741940Z",
-     "iopub.status.busy": "2024-07-17T17:39:37.741559Z",
-     "iopub.status.idle": "2024-07-17T17:39:37.744554Z",
-     "shell.execute_reply": "2024-07-17T17:39:37.743958Z"
+     "iopub.execute_input": "2024-07-19T16:00:17.046727Z",
+     "iopub.status.busy": "2024-07-19T16:00:17.046373Z",
+     "iopub.status.idle": "2024-07-19T16:00:17.049779Z",
+     "shell.execute_reply": "2024-07-19T16:00:17.049259Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -1308,10 +1314,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:37.746555Z",
-     "iopub.status.busy": "2024-07-17T17:39:37.746379Z",
-     "iopub.status.idle": "2024-07-17T17:39:37.836810Z",
-     "shell.execute_reply": "2024-07-17T17:39:37.836218Z"
+     "iopub.execute_input": "2024-07-19T16:00:17.051948Z",
+     "iopub.status.busy": "2024-07-19T16:00:17.051756Z",
+     "iopub.status.idle": "2024-07-19T16:00:17.189140Z",
+     "shell.execute_reply": "2024-07-19T16:00:17.188512Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_Measurements_Examples.html b/examples/USGS_dataretrieval_Measurements_Examples.html
index 788eeb6..21a614e 100644
--- a/examples/USGS_dataretrieval_Measurements_Examples.html
+++ b/examples/USGS_dataretrieval_Measurements_Examples.html
@@ -4,7 +4,7 @@
   
 
   
-  USGS dataretrieval Python Package get_discharge_measurements() Examples — dataretrieval 0.1.dev1+gc434b13 documentation
+  USGS dataretrieval Python Package get_discharge_measurements() Examples — dataretrieval 0.1.dev1+g64a575d documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,7 +129,7 @@ 

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)
 Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)
 Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)
 Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)
diff --git a/examples/USGS_dataretrieval_Measurements_Examples.ipynb b/examples/USGS_dataretrieval_Measurements_Examples.ipynb
index 0170c5c..480e73c 100644
--- a/examples/USGS_dataretrieval_Measurements_Examples.ipynb
+++ b/examples/USGS_dataretrieval_Measurements_Examples.ipynb
@@ -31,10 +31,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:39.942460Z",
-     "iopub.status.busy": "2024-07-17T17:39:39.942284Z",
-     "iopub.status.idle": "2024-07-17T17:39:40.630000Z",
-     "shell.execute_reply": "2024-07-17T17:39:40.629297Z"
+     "iopub.execute_input": "2024-07-19T16:00:19.349313Z",
+     "iopub.status.busy": "2024-07-19T16:00:19.348893Z",
+     "iopub.status.idle": "2024-07-19T16:00:20.047896Z",
+     "shell.execute_reply": "2024-07-19T16:00:20.047198Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -52,7 +52,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n",
       "Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)\r\n",
       "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n",
       "Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n",
@@ -92,10 +92,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:40.632940Z",
-     "iopub.status.busy": "2024-07-17T17:39:40.632532Z",
-     "iopub.status.idle": "2024-07-17T17:39:40.922150Z",
-     "shell.execute_reply": "2024-07-17T17:39:40.921640Z"
+     "iopub.execute_input": "2024-07-19T16:00:20.051160Z",
+     "iopub.status.busy": "2024-07-19T16:00:20.050749Z",
+     "iopub.status.idle": "2024-07-19T16:00:20.356560Z",
+     "shell.execute_reply": "2024-07-19T16:00:20.355976Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -139,10 +139,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:40.924903Z",
-     "iopub.status.busy": "2024-07-17T17:39:40.924492Z",
-     "iopub.status.idle": "2024-07-17T17:39:41.501766Z",
-     "shell.execute_reply": "2024-07-17T17:39:41.501242Z"
+     "iopub.execute_input": "2024-07-19T16:00:20.359278Z",
+     "iopub.status.busy": "2024-07-19T16:00:20.358908Z",
+     "iopub.status.idle": "2024-07-19T16:00:20.786469Z",
+     "shell.execute_reply": "2024-07-19T16:00:20.785837Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -193,10 +193,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:41.504785Z",
-     "iopub.status.busy": "2024-07-17T17:39:41.504431Z",
-     "iopub.status.idle": "2024-07-17T17:39:41.520084Z",
-     "shell.execute_reply": "2024-07-17T17:39:41.519590Z"
+     "iopub.execute_input": "2024-07-19T16:00:20.788975Z",
+     "iopub.status.busy": "2024-07-19T16:00:20.788600Z",
+     "iopub.status.idle": "2024-07-19T16:00:20.804814Z",
+     "shell.execute_reply": "2024-07-19T16:00:20.804200Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -524,10 +524,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:41.522274Z",
-     "iopub.status.busy": "2024-07-17T17:39:41.521917Z",
-     "iopub.status.idle": "2024-07-17T17:39:41.525319Z",
-     "shell.execute_reply": "2024-07-17T17:39:41.524760Z"
+     "iopub.execute_input": "2024-07-19T16:00:20.807008Z",
+     "iopub.status.busy": "2024-07-19T16:00:20.806827Z",
+     "iopub.status.idle": "2024-07-19T16:00:20.810342Z",
+     "shell.execute_reply": "2024-07-19T16:00:20.809780Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -576,10 +576,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:41.527450Z",
-     "iopub.status.busy": "2024-07-17T17:39:41.527100Z",
-     "iopub.status.idle": "2024-07-17T17:39:41.530239Z",
-     "shell.execute_reply": "2024-07-17T17:39:41.529748Z"
+     "iopub.execute_input": "2024-07-19T16:00:20.812455Z",
+     "iopub.status.busy": "2024-07-19T16:00:20.812275Z",
+     "iopub.status.idle": "2024-07-19T16:00:20.815100Z",
+     "shell.execute_reply": "2024-07-19T16:00:20.814533Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -615,10 +615,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:41.532445Z",
-     "iopub.status.busy": "2024-07-17T17:39:41.531991Z",
-     "iopub.status.idle": "2024-07-17T17:39:41.975209Z",
-     "shell.execute_reply": "2024-07-17T17:39:41.974604Z"
+     "iopub.execute_input": "2024-07-19T16:00:20.817232Z",
+     "iopub.status.busy": "2024-07-19T16:00:20.816884Z",
+     "iopub.status.idle": "2024-07-19T16:00:21.239202Z",
+     "shell.execute_reply": "2024-07-19T16:00:21.238682Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -911,10 +911,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:41.977477Z",
-     "iopub.status.busy": "2024-07-17T17:39:41.977296Z",
-     "iopub.status.idle": "2024-07-17T17:39:42.450656Z",
-     "shell.execute_reply": "2024-07-17T17:39:42.450067Z"
+     "iopub.execute_input": "2024-07-19T16:00:21.241576Z",
+     "iopub.status.busy": "2024-07-19T16:00:21.241212Z",
+     "iopub.status.idle": "2024-07-19T16:00:21.601298Z",
+     "shell.execute_reply": "2024-07-19T16:00:21.600756Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_ParameterCodes_Examples.html b/examples/USGS_dataretrieval_ParameterCodes_Examples.html
index b0cca40..9e7202c 100644
--- a/examples/USGS_dataretrieval_ParameterCodes_Examples.html
+++ b/examples/USGS_dataretrieval_ParameterCodes_Examples.html
@@ -4,7 +4,7 @@
   
 
   
-  USGS dataretrieval Python Package get_pmcodes() Examples — dataretrieval 0.1.dev1+gc434b13 documentation
+  USGS dataretrieval Python Package get_pmcodes() Examples — dataretrieval 0.1.dev1+g64a575d documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,7 +129,7 @@ 

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)
 Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)
 Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)
 Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)
diff --git a/examples/USGS_dataretrieval_ParameterCodes_Examples.ipynb b/examples/USGS_dataretrieval_ParameterCodes_Examples.ipynb
index da1a5e8..6854f92 100644
--- a/examples/USGS_dataretrieval_ParameterCodes_Examples.ipynb
+++ b/examples/USGS_dataretrieval_ParameterCodes_Examples.ipynb
@@ -34,10 +34,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:43.938969Z",
-     "iopub.status.busy": "2024-07-17T17:39:43.938549Z",
-     "iopub.status.idle": "2024-07-17T17:39:44.631477Z",
-     "shell.execute_reply": "2024-07-17T17:39:44.630839Z"
+     "iopub.execute_input": "2024-07-19T16:00:23.104185Z",
+     "iopub.status.busy": "2024-07-19T16:00:23.104004Z",
+     "iopub.status.idle": "2024-07-19T16:00:23.809883Z",
+     "shell.execute_reply": "2024-07-19T16:00:23.809193Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -55,9 +55,15 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n",
       "Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)\r\n",
-      "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n",
+      "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
       "Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n",
       "Requirement already satisfied: python-dateutil>=2.8.2 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.9.0.post0)\r\n",
       "Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)\r\n",
@@ -65,13 +71,7 @@
       "Requirement already satisfied: charset-normalizer<4,>=2 in /home/runner/.local/lib/python3.10/site-packages (from requests->dataretrieval) (3.3.2)\r\n",
       "Requirement already satisfied: idna<4,>=2.5 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (3.3)\r\n",
       "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (1.26.5)\r\n",
-      "Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (2020.6.20)\r\n"
-     ]
-    },
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
+      "Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (2020.6.20)\r\n",
       "Requirement already satisfied: six>=1.5 in /usr/lib/python3/dist-packages (from python-dateutil>=2.8.2->pandas==2.*->dataretrieval) (1.16.0)\r\n"
      ]
     }
@@ -95,10 +95,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:44.634311Z",
-     "iopub.status.busy": "2024-07-17T17:39:44.633943Z",
-     "iopub.status.idle": "2024-07-17T17:39:44.922977Z",
-     "shell.execute_reply": "2024-07-17T17:39:44.922449Z"
+     "iopub.execute_input": "2024-07-19T16:00:23.812798Z",
+     "iopub.status.busy": "2024-07-19T16:00:23.812371Z",
+     "iopub.status.idle": "2024-07-19T16:00:24.121628Z",
+     "shell.execute_reply": "2024-07-19T16:00:24.121056Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -140,10 +140,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:44.925683Z",
-     "iopub.status.busy": "2024-07-17T17:39:44.925328Z",
-     "iopub.status.idle": "2024-07-17T17:39:45.143955Z",
-     "shell.execute_reply": "2024-07-17T17:39:45.143357Z"
+     "iopub.execute_input": "2024-07-19T16:00:24.124424Z",
+     "iopub.status.busy": "2024-07-19T16:00:24.123979Z",
+     "iopub.status.idle": "2024-07-19T16:00:24.429504Z",
+     "shell.execute_reply": "2024-07-19T16:00:24.428852Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -182,10 +182,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:45.146297Z",
-     "iopub.status.busy": "2024-07-17T17:39:45.146010Z",
-     "iopub.status.idle": "2024-07-17T17:39:45.158018Z",
-     "shell.execute_reply": "2024-07-17T17:39:45.157429Z"
+     "iopub.execute_input": "2024-07-19T16:00:24.432063Z",
+     "iopub.status.busy": "2024-07-19T16:00:24.431677Z",
+     "iopub.status.idle": "2024-07-19T16:00:24.444532Z",
+     "shell.execute_reply": "2024-07-19T16:00:24.443997Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_Peaks_Examples.html b/examples/USGS_dataretrieval_Peaks_Examples.html
index 6db3d59..8efcf41 100644
--- a/examples/USGS_dataretrieval_Peaks_Examples.html
+++ b/examples/USGS_dataretrieval_Peaks_Examples.html
@@ -4,7 +4,7 @@
   
 
   
-  USGS dataretrieval Python Package get_discharge_peaks() Examples — dataretrieval 0.1.dev1+gc434b13 documentation
+  USGS dataretrieval Python Package get_discharge_peaks() Examples — dataretrieval 0.1.dev1+g64a575d documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,7 +129,7 @@ 

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)
 Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)
 Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)
 Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)
diff --git a/examples/USGS_dataretrieval_Peaks_Examples.ipynb b/examples/USGS_dataretrieval_Peaks_Examples.ipynb
index c12ef35..a8a1eb8 100644
--- a/examples/USGS_dataretrieval_Peaks_Examples.ipynb
+++ b/examples/USGS_dataretrieval_Peaks_Examples.ipynb
@@ -28,10 +28,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:46.513080Z",
-     "iopub.status.busy": "2024-07-17T17:39:46.512659Z",
-     "iopub.status.idle": "2024-07-17T17:39:47.208018Z",
-     "shell.execute_reply": "2024-07-17T17:39:47.207257Z"
+     "iopub.execute_input": "2024-07-19T16:00:25.926082Z",
+     "iopub.status.busy": "2024-07-19T16:00:25.925650Z",
+     "iopub.status.idle": "2024-07-19T16:00:26.628520Z",
+     "shell.execute_reply": "2024-07-19T16:00:26.627813Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -52,7 +52,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n",
       "Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)\r\n",
       "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n",
       "Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n",
@@ -90,10 +90,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:47.211261Z",
-     "iopub.status.busy": "2024-07-17T17:39:47.210880Z",
-     "iopub.status.idle": "2024-07-17T17:39:47.506902Z",
-     "shell.execute_reply": "2024-07-17T17:39:47.506368Z"
+     "iopub.execute_input": "2024-07-19T16:00:26.631282Z",
+     "iopub.status.busy": "2024-07-19T16:00:26.631068Z",
+     "iopub.status.idle": "2024-07-19T16:00:26.931616Z",
+     "shell.execute_reply": "2024-07-19T16:00:26.931073Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -136,10 +136,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:47.509773Z",
-     "iopub.status.busy": "2024-07-17T17:39:47.509330Z",
-     "iopub.status.idle": "2024-07-17T17:39:47.941541Z",
-     "shell.execute_reply": "2024-07-17T17:39:47.940997Z"
+     "iopub.execute_input": "2024-07-19T16:00:26.934482Z",
+     "iopub.status.busy": "2024-07-19T16:00:26.934036Z",
+     "iopub.status.idle": "2024-07-19T16:00:27.268985Z",
+     "shell.execute_reply": "2024-07-19T16:00:27.268324Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -182,10 +182,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:47.943757Z",
-     "iopub.status.busy": "2024-07-17T17:39:47.943443Z",
-     "iopub.status.idle": "2024-07-17T17:39:47.966817Z",
-     "shell.execute_reply": "2024-07-17T17:39:47.966216Z"
+     "iopub.execute_input": "2024-07-19T16:00:27.271385Z",
+     "iopub.status.busy": "2024-07-19T16:00:27.271021Z",
+     "iopub.status.idle": "2024-07-19T16:00:27.294137Z",
+     "shell.execute_reply": "2024-07-19T16:00:27.293524Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1277,10 +1277,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:47.968860Z",
-     "iopub.status.busy": "2024-07-17T17:39:47.968682Z",
-     "iopub.status.idle": "2024-07-17T17:39:47.972010Z",
-     "shell.execute_reply": "2024-07-17T17:39:47.971474Z"
+     "iopub.execute_input": "2024-07-19T16:00:27.296508Z",
+     "iopub.status.busy": "2024-07-19T16:00:27.296139Z",
+     "iopub.status.idle": "2024-07-19T16:00:27.299539Z",
+     "shell.execute_reply": "2024-07-19T16:00:27.299017Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1326,10 +1326,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:47.974181Z",
-     "iopub.status.busy": "2024-07-17T17:39:47.973846Z",
-     "iopub.status.idle": "2024-07-17T17:39:47.976745Z",
-     "shell.execute_reply": "2024-07-17T17:39:47.976203Z"
+     "iopub.execute_input": "2024-07-19T16:00:27.301707Z",
+     "iopub.status.busy": "2024-07-19T16:00:27.301362Z",
+     "iopub.status.idle": "2024-07-19T16:00:27.304168Z",
+     "shell.execute_reply": "2024-07-19T16:00:27.303626Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1366,10 +1366,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:47.978830Z",
-     "iopub.status.busy": "2024-07-17T17:39:47.978503Z",
-     "iopub.status.idle": "2024-07-17T17:39:48.385012Z",
-     "shell.execute_reply": "2024-07-17T17:39:48.384392Z"
+     "iopub.execute_input": "2024-07-19T16:00:27.306338Z",
+     "iopub.status.busy": "2024-07-19T16:00:27.305997Z",
+     "iopub.status.idle": "2024-07-19T16:00:27.669153Z",
+     "shell.execute_reply": "2024-07-19T16:00:27.668607Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1976,10 +1976,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:48.387338Z",
-     "iopub.status.busy": "2024-07-17T17:39:48.386995Z",
-     "iopub.status.idle": "2024-07-17T17:39:48.790698Z",
-     "shell.execute_reply": "2024-07-17T17:39:48.790074Z"
+     "iopub.execute_input": "2024-07-19T16:00:27.671521Z",
+     "iopub.status.busy": "2024-07-19T16:00:27.671154Z",
+     "iopub.status.idle": "2024-07-19T16:00:27.998394Z",
+     "shell.execute_reply": "2024-07-19T16:00:27.997814Z"
     },
     "jupyter": {
      "outputs_hidden": false
diff --git a/examples/USGS_dataretrieval_Ratings_Examples.html b/examples/USGS_dataretrieval_Ratings_Examples.html
index 63cb4f5..e2386f7 100644
--- a/examples/USGS_dataretrieval_Ratings_Examples.html
+++ b/examples/USGS_dataretrieval_Ratings_Examples.html
@@ -4,7 +4,7 @@
   
 
   
-  USGS dataretrieval Python Package get_ratings() Examples — dataretrieval 0.1.dev1+gc434b13 documentation
+  USGS dataretrieval Python Package get_ratings() Examples — dataretrieval 0.1.dev1+g64a575d documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -128,7 +128,7 @@ 

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)
 Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)
 Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)
 Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)
diff --git a/examples/USGS_dataretrieval_Ratings_Examples.ipynb b/examples/USGS_dataretrieval_Ratings_Examples.ipynb
index 388187d..9d8b28c 100644
--- a/examples/USGS_dataretrieval_Ratings_Examples.ipynb
+++ b/examples/USGS_dataretrieval_Ratings_Examples.ipynb
@@ -28,10 +28,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:50.471035Z",
-     "iopub.status.busy": "2024-07-17T17:39:50.470853Z",
-     "iopub.status.idle": "2024-07-17T17:39:51.160463Z",
-     "shell.execute_reply": "2024-07-17T17:39:51.159727Z"
+     "iopub.execute_input": "2024-07-19T16:00:29.686720Z",
+     "iopub.status.busy": "2024-07-19T16:00:29.686292Z",
+     "iopub.status.idle": "2024-07-19T16:00:30.391615Z",
+     "shell.execute_reply": "2024-07-19T16:00:30.390996Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -49,20 +49,20 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n",
       "Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)\r\n",
-      "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n",
-      "Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n",
-      "Requirement already satisfied: python-dateutil>=2.8.2 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.9.0.post0)\r\n",
-      "Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)\r\n",
-      "Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)\r\n",
-      "Requirement already satisfied: charset-normalizer<4,>=2 in /home/runner/.local/lib/python3.10/site-packages (from requests->dataretrieval) (3.3.2)\r\n"
+      "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n"
      ]
     },
     {
      "name": "stdout",
      "output_type": "stream",
      "text": [
+      "Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n",
+      "Requirement already satisfied: python-dateutil>=2.8.2 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.9.0.post0)\r\n",
+      "Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)\r\n",
+      "Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)\r\n",
+      "Requirement already satisfied: charset-normalizer<4,>=2 in /home/runner/.local/lib/python3.10/site-packages (from requests->dataretrieval) (3.3.2)\r\n",
       "Requirement already satisfied: idna<4,>=2.5 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (3.3)\r\n",
       "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (1.26.5)\r\n",
       "Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (2020.6.20)\r\n",
@@ -89,10 +89,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:51.163304Z",
-     "iopub.status.busy": "2024-07-17T17:39:51.162858Z",
-     "iopub.status.idle": "2024-07-17T17:39:51.455060Z",
-     "shell.execute_reply": "2024-07-17T17:39:51.454529Z"
+     "iopub.execute_input": "2024-07-19T16:00:30.394892Z",
+     "iopub.status.busy": "2024-07-19T16:00:30.394290Z",
+     "iopub.status.idle": "2024-07-19T16:00:30.694130Z",
+     "shell.execute_reply": "2024-07-19T16:00:30.693596Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -142,10 +142,10 @@
    "metadata": {
     "collapsed": true,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:51.457820Z",
-     "iopub.status.busy": "2024-07-17T17:39:51.457392Z",
-     "iopub.status.idle": "2024-07-17T17:39:51.719745Z",
-     "shell.execute_reply": "2024-07-17T17:39:51.719109Z"
+     "iopub.execute_input": "2024-07-19T16:00:30.696743Z",
+     "iopub.status.busy": "2024-07-19T16:00:30.696457Z",
+     "iopub.status.idle": "2024-07-19T16:00:30.817425Z",
+     "shell.execute_reply": "2024-07-19T16:00:30.816806Z"
     }
    },
    "outputs": [
@@ -200,10 +200,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:51.722195Z",
-     "iopub.status.busy": "2024-07-17T17:39:51.721830Z",
-     "iopub.status.idle": "2024-07-17T17:39:51.733853Z",
-     "shell.execute_reply": "2024-07-17T17:39:51.733264Z"
+     "iopub.execute_input": "2024-07-19T16:00:30.819834Z",
+     "iopub.status.busy": "2024-07-19T16:00:30.819442Z",
+     "iopub.status.idle": "2024-07-19T16:00:30.831531Z",
+     "shell.execute_reply": "2024-07-19T16:00:30.831055Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -363,10 +363,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:51.735965Z",
-     "iopub.status.busy": "2024-07-17T17:39:51.735782Z",
-     "iopub.status.idle": "2024-07-17T17:39:51.739400Z",
-     "shell.execute_reply": "2024-07-17T17:39:51.738912Z"
+     "iopub.execute_input": "2024-07-19T16:00:30.833778Z",
+     "iopub.status.busy": "2024-07-19T16:00:30.833418Z",
+     "iopub.status.idle": "2024-07-19T16:00:30.836853Z",
+     "shell.execute_reply": "2024-07-19T16:00:30.836221Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -407,10 +407,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:51.741456Z",
-     "iopub.status.busy": "2024-07-17T17:39:51.741277Z",
-     "iopub.status.idle": "2024-07-17T17:39:51.744127Z",
-     "shell.execute_reply": "2024-07-17T17:39:51.743524Z"
+     "iopub.execute_input": "2024-07-19T16:00:30.839086Z",
+     "iopub.status.busy": "2024-07-19T16:00:30.838733Z",
+     "iopub.status.idle": "2024-07-19T16:00:30.841776Z",
+     "shell.execute_reply": "2024-07-19T16:00:30.841203Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -447,10 +447,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:51.746177Z",
-     "iopub.status.busy": "2024-07-17T17:39:51.745992Z",
-     "iopub.status.idle": "2024-07-17T17:39:51.996244Z",
-     "shell.execute_reply": "2024-07-17T17:39:51.995660Z"
+     "iopub.execute_input": "2024-07-19T16:00:30.843964Z",
+     "iopub.status.busy": "2024-07-19T16:00:30.843620Z",
+     "iopub.status.idle": "2024-07-19T16:00:30.961707Z",
+     "shell.execute_reply": "2024-07-19T16:00:30.961087Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_SiteInfo_Examples.html b/examples/USGS_dataretrieval_SiteInfo_Examples.html
index 145e321..16fb08e 100644
--- a/examples/USGS_dataretrieval_SiteInfo_Examples.html
+++ b/examples/USGS_dataretrieval_SiteInfo_Examples.html
@@ -4,7 +4,7 @@
   
 
   
-  <no title> — dataretrieval 0.1.dev1+gc434b13 documentation
+  <no title> — dataretrieval 0.1.dev1+g64a575d documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/USGS_dataretrieval_SiteInventory_Examples.html b/examples/USGS_dataretrieval_SiteInventory_Examples.html
index 59e6202..f47b575 100644
--- a/examples/USGS_dataretrieval_SiteInventory_Examples.html
+++ b/examples/USGS_dataretrieval_SiteInventory_Examples.html
@@ -4,7 +4,7 @@
   
 
   
-  <no title> — dataretrieval 0.1.dev1+gc434b13 documentation
+  <no title> — dataretrieval 0.1.dev1+g64a575d documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/USGS_dataretrieval_Statistics_Examples.html b/examples/USGS_dataretrieval_Statistics_Examples.html
index 34ff2ae..4633b09 100644
--- a/examples/USGS_dataretrieval_Statistics_Examples.html
+++ b/examples/USGS_dataretrieval_Statistics_Examples.html
@@ -4,7 +4,7 @@
   
 
   
-  USGS dataretrieval Python Package get_stats() Examples — dataretrieval 0.1.dev1+gc434b13 documentation
+  USGS dataretrieval Python Package get_stats() Examples — dataretrieval 0.1.dev1+g64a575d documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,7 +129,7 @@ 

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)
 Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)
 Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)
 Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)
diff --git a/examples/USGS_dataretrieval_Statistics_Examples.ipynb b/examples/USGS_dataretrieval_Statistics_Examples.ipynb
index f127748..db5313d 100644
--- a/examples/USGS_dataretrieval_Statistics_Examples.ipynb
+++ b/examples/USGS_dataretrieval_Statistics_Examples.ipynb
@@ -28,10 +28,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:53.555853Z",
-     "iopub.status.busy": "2024-07-17T17:39:53.555421Z",
-     "iopub.status.idle": "2024-07-17T17:39:54.248187Z",
-     "shell.execute_reply": "2024-07-17T17:39:54.247418Z"
+     "iopub.execute_input": "2024-07-19T16:00:32.655639Z",
+     "iopub.status.busy": "2024-07-19T16:00:32.655203Z",
+     "iopub.status.idle": "2024-07-19T16:00:33.375521Z",
+     "shell.execute_reply": "2024-07-19T16:00:33.374806Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -52,19 +52,19 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n",
       "Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)\r\n",
-      "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n",
-      "Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n",
-      "Requirement already satisfied: python-dateutil>=2.8.2 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.9.0.post0)\r\n",
-      "Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)\r\n",
-      "Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)\r\n"
+      "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n"
      ]
     },
     {
      "name": "stdout",
      "output_type": "stream",
      "text": [
+      "Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n",
+      "Requirement already satisfied: python-dateutil>=2.8.2 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.9.0.post0)\r\n",
+      "Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)\r\n",
+      "Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)\r\n",
       "Requirement already satisfied: charset-normalizer<4,>=2 in /home/runner/.local/lib/python3.10/site-packages (from requests->dataretrieval) (3.3.2)\r\n",
       "Requirement already satisfied: idna<4,>=2.5 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (3.3)\r\n",
       "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (1.26.5)\r\n",
@@ -90,10 +90,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:54.251222Z",
-     "iopub.status.busy": "2024-07-17T17:39:54.250867Z",
-     "iopub.status.idle": "2024-07-17T17:39:54.599099Z",
-     "shell.execute_reply": "2024-07-17T17:39:54.598569Z"
+     "iopub.execute_input": "2024-07-19T16:00:33.378353Z",
+     "iopub.status.busy": "2024-07-19T16:00:33.378145Z",
+     "iopub.status.idle": "2024-07-19T16:00:33.737575Z",
+     "shell.execute_reply": "2024-07-19T16:00:33.737024Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -138,10 +138,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:54.601936Z",
-     "iopub.status.busy": "2024-07-17T17:39:54.601521Z",
-     "iopub.status.idle": "2024-07-17T17:39:54.777765Z",
-     "shell.execute_reply": "2024-07-17T17:39:54.777157Z"
+     "iopub.execute_input": "2024-07-19T16:00:33.740474Z",
+     "iopub.status.busy": "2024-07-19T16:00:33.740114Z",
+     "iopub.status.idle": "2024-07-19T16:00:34.136257Z",
+     "shell.execute_reply": "2024-07-19T16:00:34.135633Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -186,10 +186,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:54.780231Z",
-     "iopub.status.busy": "2024-07-17T17:39:54.779880Z",
-     "iopub.status.idle": "2024-07-17T17:39:54.791699Z",
-     "shell.execute_reply": "2024-07-17T17:39:54.791125Z"
+     "iopub.execute_input": "2024-07-19T16:00:34.138909Z",
+     "iopub.status.busy": "2024-07-19T16:00:34.138444Z",
+     "iopub.status.idle": "2024-07-19T16:00:34.150630Z",
+     "shell.execute_reply": "2024-07-19T16:00:34.150006Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -523,10 +523,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:54.794003Z",
-     "iopub.status.busy": "2024-07-17T17:39:54.793659Z",
-     "iopub.status.idle": "2024-07-17T17:39:54.796996Z",
-     "shell.execute_reply": "2024-07-17T17:39:54.796435Z"
+     "iopub.execute_input": "2024-07-19T16:00:34.153143Z",
+     "iopub.status.busy": "2024-07-19T16:00:34.152774Z",
+     "iopub.status.idle": "2024-07-19T16:00:34.156425Z",
+     "shell.execute_reply": "2024-07-19T16:00:34.155850Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -569,10 +569,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:54.799213Z",
-     "iopub.status.busy": "2024-07-17T17:39:54.798745Z",
-     "iopub.status.idle": "2024-07-17T17:39:55.123037Z",
-     "shell.execute_reply": "2024-07-17T17:39:55.122404Z"
+     "iopub.execute_input": "2024-07-19T16:00:34.158477Z",
+     "iopub.status.busy": "2024-07-19T16:00:34.158296Z",
+     "iopub.status.idle": "2024-07-19T16:00:34.499343Z",
+     "shell.execute_reply": "2024-07-19T16:00:34.498679Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -623,10 +623,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:55.125551Z",
-     "iopub.status.busy": "2024-07-17T17:39:55.125204Z",
-     "iopub.status.idle": "2024-07-17T17:39:55.128543Z",
-     "shell.execute_reply": "2024-07-17T17:39:55.128012Z"
+     "iopub.execute_input": "2024-07-19T16:00:34.501939Z",
+     "iopub.status.busy": "2024-07-19T16:00:34.501556Z",
+     "iopub.status.idle": "2024-07-19T16:00:34.504853Z",
+     "shell.execute_reply": "2024-07-19T16:00:34.504262Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -674,10 +674,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:55.130816Z",
-     "iopub.status.busy": "2024-07-17T17:39:55.130475Z",
-     "iopub.status.idle": "2024-07-17T17:39:55.957500Z",
-     "shell.execute_reply": "2024-07-17T17:39:55.956937Z"
+     "iopub.execute_input": "2024-07-19T16:00:34.507103Z",
+     "iopub.status.busy": "2024-07-19T16:00:34.506761Z",
+     "iopub.status.idle": "2024-07-19T16:00:35.719989Z",
+     "shell.execute_reply": "2024-07-19T16:00:35.719378Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -904,10 +904,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:39:55.959839Z",
-     "iopub.status.busy": "2024-07-17T17:39:55.959477Z",
-     "iopub.status.idle": "2024-07-17T17:39:56.354525Z",
-     "shell.execute_reply": "2024-07-17T17:39:56.354015Z"
+     "iopub.execute_input": "2024-07-19T16:00:35.722379Z",
+     "iopub.status.busy": "2024-07-19T16:00:35.722020Z",
+     "iopub.status.idle": "2024-07-19T16:00:36.123312Z",
+     "shell.execute_reply": "2024-07-19T16:00:36.122731Z"
     },
     "jupyter": {
      "outputs_hidden": false
diff --git a/examples/USGS_dataretrieval_UnitValues_Examples.html b/examples/USGS_dataretrieval_UnitValues_Examples.html
index 5955f9e..3c049fc 100644
--- a/examples/USGS_dataretrieval_UnitValues_Examples.html
+++ b/examples/USGS_dataretrieval_UnitValues_Examples.html
@@ -4,7 +4,7 @@
   
 
   
-  USGS dataretrieval Python Package get_iv() Examples — dataretrieval 0.1.dev1+gc434b13 documentation
+  USGS dataretrieval Python Package get_iv() Examples — dataretrieval 0.1.dev1+g64a575d documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,7 +129,7 @@ 

Install the Package

@@ -636,303 +636,267 @@

Example 3: Get unit values for an individual site for today=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n", - "Requirement already satisfied: python-dateutil>=2.8.2 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.9.0.post0)\r\n", - "Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)\r\n", - "Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)\r\n", - "Requirement already satisfied: charset-normalizer<4,>=2 in /home/runner/.local/lib/python3.10/site-packages (from requests->dataretrieval) (3.3.2)\r\n", - "Requirement already satisfied: idna<4,>=2.5 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (3.3)\r\n", - "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (1.26.5)\r\n" + "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ + "Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n", + "Requirement already satisfied: python-dateutil>=2.8.2 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.9.0.post0)\r\n", + "Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)\r\n", + "Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)\r\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /home/runner/.local/lib/python3.10/site-packages (from requests->dataretrieval) (3.3.2)\r\n", + "Requirement already satisfied: idna<4,>=2.5 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (3.3)\r\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (1.26.5)\r\n", "Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (2020.6.20)\r\n", "Requirement already satisfied: six>=1.5 in /usr/lib/python3/dist-packages (from python-dateutil>=2.8.2->pandas==2.*->dataretrieval) (1.16.0)\r\n" ] @@ -90,10 +90,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:39:58.828786Z", - "iopub.status.busy": "2024-07-17T17:39:58.828578Z", - "iopub.status.idle": "2024-07-17T17:39:59.116369Z", - "shell.execute_reply": "2024-07-17T17:39:59.115812Z" + "iopub.execute_input": "2024-07-19T16:00:38.546788Z", + "iopub.status.busy": "2024-07-19T16:00:38.546392Z", + "iopub.status.idle": "2024-07-19T16:00:38.843320Z", + "shell.execute_reply": "2024-07-19T16:00:38.842764Z" }, "jupyter": { "outputs_hidden": false @@ -136,10 +136,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:39:59.119040Z", - "iopub.status.busy": "2024-07-17T17:39:59.118627Z", - "iopub.status.idle": "2024-07-17T17:39:59.746623Z", - "shell.execute_reply": "2024-07-17T17:39:59.746070Z" + "iopub.execute_input": "2024-07-19T16:00:38.846380Z", + "iopub.status.busy": "2024-07-19T16:00:38.845887Z", + "iopub.status.idle": "2024-07-19T16:00:39.210871Z", + "shell.execute_reply": "2024-07-19T16:00:39.210249Z" }, "jupyter": { "outputs_hidden": false @@ -186,10 +186,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:39:59.748856Z", - "iopub.status.busy": "2024-07-17T17:39:59.748669Z", - "iopub.status.idle": "2024-07-17T17:39:59.758024Z", - "shell.execute_reply": "2024-07-17T17:39:59.757554Z" + "iopub.execute_input": "2024-07-19T16:00:39.213168Z", + "iopub.status.busy": "2024-07-19T16:00:39.212970Z", + "iopub.status.idle": "2024-07-19T16:00:39.223382Z", + "shell.execute_reply": "2024-07-19T16:00:39.222781Z" }, "jupyter": { "outputs_hidden": false @@ -343,10 +343,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:39:59.760023Z", - "iopub.status.busy": "2024-07-17T17:39:59.759842Z", - "iopub.status.idle": "2024-07-17T17:39:59.763393Z", - "shell.execute_reply": "2024-07-17T17:39:59.762890Z" + "iopub.execute_input": "2024-07-19T16:00:39.225813Z", + "iopub.status.busy": "2024-07-19T16:00:39.225467Z", + "iopub.status.idle": "2024-07-19T16:00:39.229204Z", + "shell.execute_reply": "2024-07-19T16:00:39.228695Z" }, "jupyter": { "outputs_hidden": false @@ -384,10 +384,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:39:59.765331Z", - "iopub.status.busy": "2024-07-17T17:39:59.765150Z", - "iopub.status.idle": "2024-07-17T17:39:59.772764Z", - "shell.execute_reply": "2024-07-17T17:39:59.772305Z" + "iopub.execute_input": "2024-07-19T16:00:39.231349Z", + "iopub.status.busy": "2024-07-19T16:00:39.230999Z", + "iopub.status.idle": "2024-07-19T16:00:39.238648Z", + "shell.execute_reply": "2024-07-19T16:00:39.238091Z" }, "jupyter": { "outputs_hidden": false @@ -492,10 +492,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:39:59.774922Z", - "iopub.status.busy": "2024-07-17T17:39:59.774570Z", - "iopub.status.idle": "2024-07-17T17:40:01.818443Z", - "shell.execute_reply": "2024-07-17T17:40:01.817885Z" + "iopub.execute_input": "2024-07-19T16:00:39.240937Z", + "iopub.status.busy": "2024-07-19T16:00:39.240604Z", + "iopub.status.idle": "2024-07-19T16:00:41.336144Z", + "shell.execute_reply": "2024-07-19T16:00:41.335506Z" }, "jupyter": { "outputs_hidden": false @@ -545,10 +545,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:01.820918Z", - "iopub.status.busy": "2024-07-17T17:40:01.820496Z", - "iopub.status.idle": "2024-07-17T17:40:01.823605Z", - "shell.execute_reply": "2024-07-17T17:40:01.823033Z" + "iopub.execute_input": "2024-07-19T16:00:41.338742Z", + "iopub.status.busy": "2024-07-19T16:00:41.338291Z", + "iopub.status.idle": "2024-07-19T16:00:41.341602Z", + "shell.execute_reply": "2024-07-19T16:00:41.341018Z" }, "jupyter": { "outputs_hidden": false @@ -587,10 +587,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:01.825835Z", - "iopub.status.busy": "2024-07-17T17:40:01.825419Z", - "iopub.status.idle": "2024-07-17T17:40:02.028619Z", - "shell.execute_reply": "2024-07-17T17:40:02.028088Z" + "iopub.execute_input": "2024-07-19T16:00:41.343855Z", + "iopub.status.busy": "2024-07-19T16:00:41.343508Z", + "iopub.status.idle": "2024-07-19T16:00:41.622136Z", + "shell.execute_reply": "2024-07-19T16:00:41.621479Z" }, "jupyter": { "outputs_hidden": false @@ -760,10 +760,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:02.030840Z", - "iopub.status.busy": "2024-07-17T17:40:02.030474Z", - "iopub.status.idle": "2024-07-17T17:40:02.302272Z", - "shell.execute_reply": "2024-07-17T17:40:02.301668Z" + "iopub.execute_input": "2024-07-19T16:00:41.624601Z", + "iopub.status.busy": "2024-07-19T16:00:41.624210Z", + "iopub.status.idle": "2024-07-19T16:00:41.776426Z", + "shell.execute_reply": "2024-07-19T16:00:41.775792Z" }, "jupyter": { "outputs_hidden": false @@ -777,7 +777,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Retrieved 50 data values.\n" + "Retrieved 44 data values.\n" ] }, { @@ -814,303 +814,267 @@ " \n", " \n", " \n", - " 2024-07-17 05:00:00+00:00\n", - " 05114000\n", - " 59.8\n", - " P\n", - " \n", - " \n", - " 2024-07-17 05:15:00+00:00\n", - " 05114000\n", - " 59.4\n", - " P\n", - " \n", - " \n", - " 2024-07-17 05:30:00+00:00\n", - " 05114000\n", - " 59.3\n", - " P\n", - " \n", - " \n", - " 2024-07-17 05:45:00+00:00\n", - " 05114000\n", - " 59.9\n", - " P\n", - " \n", - " \n", - " 2024-07-17 06:00:00+00:00\n", - " 05114000\n", - " 59.0\n", - " P\n", - " \n", - " \n", - " 2024-07-17 06:15:00+00:00\n", - " 05114000\n", - " 59.3\n", - " P\n", - " \n", - " \n", - " 2024-07-17 06:30:00+00:00\n", + " 2024-07-19 05:00:00+00:00\n", " 05114000\n", - " 59.6\n", + " 52.0\n", " P\n", " \n", " \n", - " 2024-07-17 06:45:00+00:00\n", + " 2024-07-19 05:15:00+00:00\n", " 05114000\n", - " 59.3\n", + " 51.7\n", " P\n", " \n", " \n", - " 2024-07-17 07:00:00+00:00\n", + " 2024-07-19 05:30:00+00:00\n", " 05114000\n", - " 59.0\n", + " 52.1\n", " P\n", " \n", " \n", - " 2024-07-17 07:15:00+00:00\n", + " 2024-07-19 05:45:00+00:00\n", " 05114000\n", - " 58.8\n", + " 51.8\n", " P\n", " \n", " \n", - " 2024-07-17 07:30:00+00:00\n", + " 2024-07-19 06:00:00+00:00\n", " 05114000\n", - " 59.0\n", + " 51.6\n", " P\n", " \n", " \n", - " 2024-07-17 07:45:00+00:00\n", + " 2024-07-19 06:15:00+00:00\n", " 05114000\n", - " 58.8\n", + " 51.7\n", " P\n", " \n", " \n", - " 2024-07-17 08:00:00+00:00\n", + " 2024-07-19 06:30:00+00:00\n", " 05114000\n", - " 58.9\n", + " 51.8\n", " P\n", " \n", " \n", - " 2024-07-17 08:15:00+00:00\n", + " 2024-07-19 06:45:00+00:00\n", " 05114000\n", - " 58.6\n", + " 51.6\n", " P\n", " \n", " \n", - " 2024-07-17 08:30:00+00:00\n", + " 2024-07-19 07:00:00+00:00\n", " 05114000\n", - " 59.0\n", + " 51.5\n", " P\n", " \n", " \n", - " 2024-07-17 08:45:00+00:00\n", + " 2024-07-19 07:15:00+00:00\n", " 05114000\n", - " 59.1\n", + " 51.5\n", " P\n", " \n", " \n", - " 2024-07-17 09:00:00+00:00\n", + " 2024-07-19 07:30:00+00:00\n", " 05114000\n", - " 58.8\n", + " 51.8\n", " P\n", " \n", " \n", - " 2024-07-17 09:15:00+00:00\n", + " 2024-07-19 07:45:00+00:00\n", " 05114000\n", - " 58.7\n", + " 51.9\n", " P\n", " \n", " \n", - " 2024-07-17 09:30:00+00:00\n", + " 2024-07-19 08:00:00+00:00\n", " 05114000\n", - " 58.8\n", + " 51.1\n", " P\n", " \n", " \n", - " 2024-07-17 09:45:00+00:00\n", + " 2024-07-19 08:15:00+00:00\n", " 05114000\n", - " 58.3\n", + " 51.4\n", " P\n", " \n", " \n", - " 2024-07-17 10:00:00+00:00\n", + " 2024-07-19 08:30:00+00:00\n", " 05114000\n", - " 58.5\n", + " 51.3\n", " P\n", " \n", " \n", - " 2024-07-17 10:15:00+00:00\n", + " 2024-07-19 08:45:00+00:00\n", " 05114000\n", - " 58.4\n", + " 51.2\n", " P\n", " \n", " \n", - " 2024-07-17 10:30:00+00:00\n", + " 2024-07-19 09:00:00+00:00\n", " 05114000\n", - " 58.2\n", + " 51.2\n", " P\n", " \n", " \n", - " 2024-07-17 10:45:00+00:00\n", + " 2024-07-19 09:15:00+00:00\n", " 05114000\n", - " 58.1\n", + " 51.5\n", " P\n", " \n", " \n", - " 2024-07-17 11:00:00+00:00\n", + " 2024-07-19 09:30:00+00:00\n", " 05114000\n", - " 58.1\n", + " 51.3\n", " P\n", " \n", " \n", - " 2024-07-17 11:15:00+00:00\n", + " 2024-07-19 09:45:00+00:00\n", " 05114000\n", - " 58.2\n", + " 51.5\n", " P\n", " \n", " \n", - " 2024-07-17 11:30:00+00:00\n", + " 2024-07-19 10:00:00+00:00\n", " 05114000\n", - " 58.3\n", + " 51.7\n", " P\n", " \n", " \n", - " 2024-07-17 11:45:00+00:00\n", + " 2024-07-19 10:15:00+00:00\n", " 05114000\n", - " 58.3\n", + " 51.0\n", " P\n", " \n", " \n", - " 2024-07-17 12:00:00+00:00\n", + " 2024-07-19 10:30:00+00:00\n", " 05114000\n", - " 57.5\n", + " 51.4\n", " P\n", " \n", " \n", - " 2024-07-17 12:15:00+00:00\n", + " 2024-07-19 10:45:00+00:00\n", " 05114000\n", - " 58.2\n", + " 51.3\n", " P\n", " \n", " \n", - " 2024-07-17 12:30:00+00:00\n", + " 2024-07-19 11:00:00+00:00\n", " 05114000\n", - " 57.8\n", + " 51.3\n", " P\n", " \n", " \n", - " 2024-07-17 12:45:00+00:00\n", + " 2024-07-19 11:15:00+00:00\n", " 05114000\n", - " 57.6\n", + " 51.3\n", " P\n", " \n", " \n", - " 2024-07-17 13:00:00+00:00\n", + " 2024-07-19 11:30:00+00:00\n", " 05114000\n", - " 58.1\n", + " 51.3\n", " P\n", " \n", " \n", - " 2024-07-17 13:15:00+00:00\n", + " 2024-07-19 11:45:00+00:00\n", " 05114000\n", - " 57.9\n", + " 51.5\n", " P\n", " \n", " \n", - " 2024-07-17 13:30:00+00:00\n", + " 2024-07-19 12:00:00+00:00\n", " 05114000\n", - " 57.9\n", + " 51.6\n", " P\n", " \n", " \n", - " 2024-07-17 13:45:00+00:00\n", + " 2024-07-19 12:15:00+00:00\n", " 05114000\n", - " 57.8\n", + " 51.3\n", " P\n", " \n", " \n", - " 2024-07-17 14:00:00+00:00\n", + " 2024-07-19 12:30:00+00:00\n", " 05114000\n", - " 58.0\n", + " 51.3\n", " P\n", " \n", " \n", - " 2024-07-17 14:15:00+00:00\n", + " 2024-07-19 12:45:00+00:00\n", " 05114000\n", - " 57.8\n", + " 51.3\n", " P\n", " \n", " \n", - " 2024-07-17 14:30:00+00:00\n", + " 2024-07-19 13:00:00+00:00\n", " 05114000\n", - " 58.0\n", + " 51.3\n", " P\n", " \n", " \n", - " 2024-07-17 14:45:00+00:00\n", + " 2024-07-19 13:15:00+00:00\n", " 05114000\n", - " 58.2\n", + " 51.5\n", " P\n", " \n", " \n", - " 2024-07-17 15:00:00+00:00\n", + " 2024-07-19 13:30:00+00:00\n", " 05114000\n", - " 57.8\n", + " 51.3\n", " P\n", " \n", " \n", - " 2024-07-17 15:15:00+00:00\n", + " 2024-07-19 13:45:00+00:00\n", " 05114000\n", - " 58.0\n", + " 51.1\n", " P\n", " \n", " \n", - " 2024-07-17 15:30:00+00:00\n", + " 2024-07-19 14:00:00+00:00\n", " 05114000\n", - " 57.8\n", + " 51.4\n", " P\n", " \n", " \n", - " 2024-07-17 15:45:00+00:00\n", + " 2024-07-19 14:15:00+00:00\n", " 05114000\n", - " 57.8\n", + " 51.3\n", " P\n", " \n", " \n", - " 2024-07-17 16:00:00+00:00\n", + " 2024-07-19 14:30:00+00:00\n", " 05114000\n", - " 57.2\n", + " 51.5\n", " P\n", " \n", " \n", - " 2024-07-17 16:15:00+00:00\n", + " 2024-07-19 14:45:00+00:00\n", " 05114000\n", - " 57.6\n", + " 51.0\n", " P\n", " \n", " \n", - " 2024-07-17 16:30:00+00:00\n", + " 2024-07-19 15:00:00+00:00\n", " 05114000\n", - " 58.1\n", + " 51.4\n", " P\n", " \n", " \n", - " 2024-07-17 16:45:00+00:00\n", + " 2024-07-19 15:15:00+00:00\n", " 05114000\n", - " 57.9\n", + " 52.0\n", " P\n", " \n", " \n", - " 2024-07-17 17:00:00+00:00\n", + " 2024-07-19 15:30:00+00:00\n", " 05114000\n", - " 57.7\n", + " 50.9\n", " P\n", " \n", " \n", - " 2024-07-17 17:15:00+00:00\n", + " 2024-07-19 15:45:00+00:00\n", " 05114000\n", - " 56.9\n", + " 52.0\n", " P\n", " \n", " \n", @@ -1120,56 +1084,50 @@ "text/plain": [ " site_no 00060 00060_cd\n", "datetime \n", - "2024-07-17 05:00:00+00:00 05114000 59.8 P\n", - "2024-07-17 05:15:00+00:00 05114000 59.4 P\n", - "2024-07-17 05:30:00+00:00 05114000 59.3 P\n", - "2024-07-17 05:45:00+00:00 05114000 59.9 P\n", - "2024-07-17 06:00:00+00:00 05114000 59.0 P\n", - "2024-07-17 06:15:00+00:00 05114000 59.3 P\n", - "2024-07-17 06:30:00+00:00 05114000 59.6 P\n", - "2024-07-17 06:45:00+00:00 05114000 59.3 P\n", - "2024-07-17 07:00:00+00:00 05114000 59.0 P\n", - "2024-07-17 07:15:00+00:00 05114000 58.8 P\n", - "2024-07-17 07:30:00+00:00 05114000 59.0 P\n", - "2024-07-17 07:45:00+00:00 05114000 58.8 P\n", - "2024-07-17 08:00:00+00:00 05114000 58.9 P\n", - "2024-07-17 08:15:00+00:00 05114000 58.6 P\n", - "2024-07-17 08:30:00+00:00 05114000 59.0 P\n", - "2024-07-17 08:45:00+00:00 05114000 59.1 P\n", - "2024-07-17 09:00:00+00:00 05114000 58.8 P\n", - "2024-07-17 09:15:00+00:00 05114000 58.7 P\n", - "2024-07-17 09:30:00+00:00 05114000 58.8 P\n", - "2024-07-17 09:45:00+00:00 05114000 58.3 P\n", - "2024-07-17 10:00:00+00:00 05114000 58.5 P\n", - "2024-07-17 10:15:00+00:00 05114000 58.4 P\n", - "2024-07-17 10:30:00+00:00 05114000 58.2 P\n", - "2024-07-17 10:45:00+00:00 05114000 58.1 P\n", - "2024-07-17 11:00:00+00:00 05114000 58.1 P\n", - "2024-07-17 11:15:00+00:00 05114000 58.2 P\n", - "2024-07-17 11:30:00+00:00 05114000 58.3 P\n", - "2024-07-17 11:45:00+00:00 05114000 58.3 P\n", - "2024-07-17 12:00:00+00:00 05114000 57.5 P\n", - "2024-07-17 12:15:00+00:00 05114000 58.2 P\n", - "2024-07-17 12:30:00+00:00 05114000 57.8 P\n", - "2024-07-17 12:45:00+00:00 05114000 57.6 P\n", - "2024-07-17 13:00:00+00:00 05114000 58.1 P\n", - "2024-07-17 13:15:00+00:00 05114000 57.9 P\n", - "2024-07-17 13:30:00+00:00 05114000 57.9 P\n", - "2024-07-17 13:45:00+00:00 05114000 57.8 P\n", - "2024-07-17 14:00:00+00:00 05114000 58.0 P\n", - "2024-07-17 14:15:00+00:00 05114000 57.8 P\n", - "2024-07-17 14:30:00+00:00 05114000 58.0 P\n", - "2024-07-17 14:45:00+00:00 05114000 58.2 P\n", - "2024-07-17 15:00:00+00:00 05114000 57.8 P\n", - "2024-07-17 15:15:00+00:00 05114000 58.0 P\n", - "2024-07-17 15:30:00+00:00 05114000 57.8 P\n", - "2024-07-17 15:45:00+00:00 05114000 57.8 P\n", - "2024-07-17 16:00:00+00:00 05114000 57.2 P\n", - "2024-07-17 16:15:00+00:00 05114000 57.6 P\n", - "2024-07-17 16:30:00+00:00 05114000 58.1 P\n", - "2024-07-17 16:45:00+00:00 05114000 57.9 P\n", - "2024-07-17 17:00:00+00:00 05114000 57.7 P\n", - "2024-07-17 17:15:00+00:00 05114000 56.9 P" + "2024-07-19 05:00:00+00:00 05114000 52.0 P\n", + "2024-07-19 05:15:00+00:00 05114000 51.7 P\n", + "2024-07-19 05:30:00+00:00 05114000 52.1 P\n", + "2024-07-19 05:45:00+00:00 05114000 51.8 P\n", + "2024-07-19 06:00:00+00:00 05114000 51.6 P\n", + "2024-07-19 06:15:00+00:00 05114000 51.7 P\n", + "2024-07-19 06:30:00+00:00 05114000 51.8 P\n", + "2024-07-19 06:45:00+00:00 05114000 51.6 P\n", + "2024-07-19 07:00:00+00:00 05114000 51.5 P\n", + "2024-07-19 07:15:00+00:00 05114000 51.5 P\n", + "2024-07-19 07:30:00+00:00 05114000 51.8 P\n", + "2024-07-19 07:45:00+00:00 05114000 51.9 P\n", + "2024-07-19 08:00:00+00:00 05114000 51.1 P\n", + "2024-07-19 08:15:00+00:00 05114000 51.4 P\n", + "2024-07-19 08:30:00+00:00 05114000 51.3 P\n", + "2024-07-19 08:45:00+00:00 05114000 51.2 P\n", + "2024-07-19 09:00:00+00:00 05114000 51.2 P\n", + "2024-07-19 09:15:00+00:00 05114000 51.5 P\n", + "2024-07-19 09:30:00+00:00 05114000 51.3 P\n", + "2024-07-19 09:45:00+00:00 05114000 51.5 P\n", + "2024-07-19 10:00:00+00:00 05114000 51.7 P\n", + "2024-07-19 10:15:00+00:00 05114000 51.0 P\n", + "2024-07-19 10:30:00+00:00 05114000 51.4 P\n", + "2024-07-19 10:45:00+00:00 05114000 51.3 P\n", + "2024-07-19 11:00:00+00:00 05114000 51.3 P\n", + "2024-07-19 11:15:00+00:00 05114000 51.3 P\n", + "2024-07-19 11:30:00+00:00 05114000 51.3 P\n", + "2024-07-19 11:45:00+00:00 05114000 51.5 P\n", + "2024-07-19 12:00:00+00:00 05114000 51.6 P\n", + "2024-07-19 12:15:00+00:00 05114000 51.3 P\n", + "2024-07-19 12:30:00+00:00 05114000 51.3 P\n", + "2024-07-19 12:45:00+00:00 05114000 51.3 P\n", + "2024-07-19 13:00:00+00:00 05114000 51.3 P\n", + "2024-07-19 13:15:00+00:00 05114000 51.5 P\n", + "2024-07-19 13:30:00+00:00 05114000 51.3 P\n", + "2024-07-19 13:45:00+00:00 05114000 51.1 P\n", + "2024-07-19 14:00:00+00:00 05114000 51.4 P\n", + "2024-07-19 14:15:00+00:00 05114000 51.3 P\n", + "2024-07-19 14:30:00+00:00 05114000 51.5 P\n", + "2024-07-19 14:45:00+00:00 05114000 51.0 P\n", + "2024-07-19 15:00:00+00:00 05114000 51.4 P\n", + "2024-07-19 15:15:00+00:00 05114000 52.0 P\n", + "2024-07-19 15:30:00+00:00 05114000 50.9 P\n", + "2024-07-19 15:45:00+00:00 05114000 52.0 P" ] }, "metadata": {}, @@ -1202,10 +1160,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:02.304463Z", - "iopub.status.busy": "2024-07-17T17:40:02.304272Z", - "iopub.status.idle": "2024-07-17T17:40:02.467873Z", - "shell.execute_reply": "2024-07-17T17:40:02.467406Z" + "iopub.execute_input": "2024-07-19T16:00:41.778748Z", + "iopub.status.busy": "2024-07-19T16:00:41.778542Z", + "iopub.status.idle": "2024-07-19T16:00:42.057728Z", + "shell.execute_reply": "2024-07-19T16:00:42.057059Z" }, "jupyter": { "outputs_hidden": false @@ -1372,10 +1330,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:02.470005Z", - "iopub.status.busy": "2024-07-17T17:40:02.469817Z", - "iopub.status.idle": "2024-07-17T17:40:02.667556Z", - "shell.execute_reply": "2024-07-17T17:40:02.667050Z" + "iopub.execute_input": "2024-07-19T16:00:42.060209Z", + "iopub.status.busy": "2024-07-19T16:00:42.059834Z", + "iopub.status.idle": "2024-07-19T16:00:42.374567Z", + "shell.execute_reply": "2024-07-19T16:00:42.373904Z" }, "jupyter": { "outputs_hidden": false diff --git a/examples/USGS_dataretrieval_WaterSamples_Examples.html b/examples/USGS_dataretrieval_WaterSamples_Examples.html index 0eaa1de..7b6a32d 100644 --- a/examples/USGS_dataretrieval_WaterSamples_Examples.html +++ b/examples/USGS_dataretrieval_WaterSamples_Examples.html @@ -4,7 +4,7 @@ - USGS dataretrieval Python Package get_qwdata() Examples — dataretrieval 0.1.dev1+gc434b13 documentation + USGS dataretrieval Python Package get_qwdata() Examples — dataretrieval 0.1.dev1+g64a575d documentation @@ -16,7 +16,7 @@ - + @@ -129,7 +129,7 @@

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)
 Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)
 Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)
 Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)
@@ -183,7 +183,7 @@ 

Example 1: Get all water quality sample data for a single monitoring site
-/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:180: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:194: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.
   warnings.warn(('WARNING: Starting in March 2024, the NWIS qw data endpoint is '
 

@@ -674,7 +674,7 @@

Example 2: Get water quality sample data for multiple sites for a single par

-/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:180: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:194: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.
   warnings.warn(('WARNING: Starting in March 2024, the NWIS qw data endpoint is '
 

@@ -1014,7 +1014,7 @@

Example 3: Retrieve water quality sample data for multiple sites, including

-/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:180: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:194: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.
   warnings.warn(('WARNING: Starting in March 2024, the NWIS qw data endpoint is '
 

@@ -2037,7 +2037,7 @@

Example 4: Retrieve water quality sample data for one site in serial format<

-/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:180: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:194: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.
   warnings.warn(('WARNING: Starting in March 2024, the NWIS qw data endpoint is '
 

diff --git a/examples/USGS_dataretrieval_WaterSamples_Examples.ipynb b/examples/USGS_dataretrieval_WaterSamples_Examples.ipynb index e42dcd5..1ee0bc3 100644 --- a/examples/USGS_dataretrieval_WaterSamples_Examples.ipynb +++ b/examples/USGS_dataretrieval_WaterSamples_Examples.ipynb @@ -28,10 +28,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:04.320372Z", - "iopub.status.busy": "2024-07-17T17:40:04.320197Z", - "iopub.status.idle": "2024-07-17T17:40:05.004587Z", - "shell.execute_reply": "2024-07-17T17:40:05.003873Z" + "iopub.execute_input": "2024-07-19T16:00:44.357082Z", + "iopub.status.busy": "2024-07-19T16:00:44.356652Z", + "iopub.status.idle": "2024-07-19T16:00:45.063091Z", + "shell.execute_reply": "2024-07-19T16:00:45.062321Z" }, "jupyter": { "outputs_hidden": false @@ -52,9 +52,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)\r\n", + "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n", "Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)\r\n", - "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n", + "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n", "Requirement already satisfied: python-dateutil>=2.8.2 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.9.0.post0)\r\n", "Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)\r\n", @@ -62,13 +68,7 @@ "Requirement already satisfied: charset-normalizer<4,>=2 in /home/runner/.local/lib/python3.10/site-packages (from requests->dataretrieval) (3.3.2)\r\n", "Requirement already satisfied: idna<4,>=2.5 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (3.3)\r\n", "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (1.26.5)\r\n", - "Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (2020.6.20)\r\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python3/dist-packages (from requests->dataretrieval) (2020.6.20)\r\n", "Requirement already satisfied: six>=1.5 in /usr/lib/python3/dist-packages (from python-dateutil>=2.8.2->pandas==2.*->dataretrieval) (1.16.0)\r\n" ] } @@ -90,10 +90,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:05.007230Z", - "iopub.status.busy": "2024-07-17T17:40:05.007029Z", - "iopub.status.idle": "2024-07-17T17:40:05.295129Z", - "shell.execute_reply": "2024-07-17T17:40:05.294609Z" + "iopub.execute_input": "2024-07-19T16:00:45.066612Z", + "iopub.status.busy": "2024-07-19T16:00:45.066259Z", + "iopub.status.idle": "2024-07-19T16:00:45.363237Z", + "shell.execute_reply": "2024-07-19T16:00:45.362466Z" }, "jupyter": { "outputs_hidden": false @@ -139,10 +139,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:05.297722Z", - "iopub.status.busy": "2024-07-17T17:40:05.297462Z", - "iopub.status.idle": "2024-07-17T17:40:06.139884Z", - "shell.execute_reply": "2024-07-17T17:40:06.139298Z" + "iopub.execute_input": "2024-07-19T16:00:45.366383Z", + "iopub.status.busy": "2024-07-19T16:00:45.365890Z", + "iopub.status.idle": "2024-07-19T16:00:48.256639Z", + "shell.execute_reply": "2024-07-19T16:00:48.255998Z" }, "jupyter": { "outputs_hidden": false @@ -156,7 +156,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:180: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.\n", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:194: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.\n", " warnings.warn(('WARNING: Starting in March 2024, the NWIS qw data endpoint is '\n" ] }, @@ -210,10 +210,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:06.142163Z", - "iopub.status.busy": "2024-07-17T17:40:06.141841Z", - "iopub.status.idle": "2024-07-17T17:40:06.160995Z", - "shell.execute_reply": "2024-07-17T17:40:06.160446Z" + "iopub.execute_input": "2024-07-19T16:00:48.259172Z", + "iopub.status.busy": "2024-07-19T16:00:48.258701Z", + "iopub.status.idle": "2024-07-19T16:00:48.277575Z", + "shell.execute_reply": "2024-07-19T16:00:48.277066Z" }, "jupyter": { "outputs_hidden": false @@ -670,10 +670,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:06.163209Z", - "iopub.status.busy": "2024-07-17T17:40:06.162886Z", - "iopub.status.idle": "2024-07-17T17:40:06.166963Z", - "shell.execute_reply": "2024-07-17T17:40:06.166474Z" + "iopub.execute_input": "2024-07-19T16:00:48.279713Z", + "iopub.status.busy": "2024-07-19T16:00:48.279375Z", + "iopub.status.idle": "2024-07-19T16:00:48.283489Z", + "shell.execute_reply": "2024-07-19T16:00:48.282919Z" }, "jupyter": { "outputs_hidden": false @@ -768,10 +768,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:06.169190Z", - "iopub.status.busy": "2024-07-17T17:40:06.168757Z", - "iopub.status.idle": "2024-07-17T17:40:06.171903Z", - "shell.execute_reply": "2024-07-17T17:40:06.171421Z" + "iopub.execute_input": "2024-07-19T16:00:48.285725Z", + "iopub.status.busy": "2024-07-19T16:00:48.285368Z", + "iopub.status.idle": "2024-07-19T16:00:48.288258Z", + "shell.execute_reply": "2024-07-19T16:00:48.287694Z" }, "jupyter": { "outputs_hidden": false @@ -808,10 +808,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:06.174120Z", - "iopub.status.busy": "2024-07-17T17:40:06.173721Z", - "iopub.status.idle": "2024-07-17T17:40:07.685522Z", - "shell.execute_reply": "2024-07-17T17:40:07.684902Z" + "iopub.execute_input": "2024-07-19T16:00:48.290414Z", + "iopub.status.busy": "2024-07-19T16:00:48.290060Z", + "iopub.status.idle": "2024-07-19T16:00:51.316616Z", + "shell.execute_reply": "2024-07-19T16:00:51.316051Z" }, "jupyter": { "outputs_hidden": false @@ -825,7 +825,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:180: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.\n", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:194: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.\n", " warnings.warn(('WARNING: Starting in March 2024, the NWIS qw data endpoint is '\n" ] }, @@ -1271,10 +1271,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:07.687941Z", - "iopub.status.busy": "2024-07-17T17:40:07.687583Z", - "iopub.status.idle": "2024-07-17T17:40:09.272814Z", - "shell.execute_reply": "2024-07-17T17:40:09.272214Z" + "iopub.execute_input": "2024-07-19T16:00:51.318957Z", + "iopub.status.busy": "2024-07-19T16:00:51.318588Z", + "iopub.status.idle": "2024-07-19T16:00:52.837773Z", + "shell.execute_reply": "2024-07-19T16:00:52.837252Z" }, "jupyter": { "outputs_hidden": false @@ -1288,7 +1288,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:180: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.\n", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:194: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.\n", " warnings.warn(('WARNING: Starting in March 2024, the NWIS qw data endpoint is '\n" ] }, @@ -2650,10 +2650,10 @@ "execution_count": 9, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:09.275387Z", - "iopub.status.busy": "2024-07-17T17:40:09.274958Z", - "iopub.status.idle": "2024-07-17T17:40:13.062215Z", - "shell.execute_reply": "2024-07-17T17:40:13.061659Z" + "iopub.execute_input": "2024-07-19T16:00:52.840174Z", + "iopub.status.busy": "2024-07-19T16:00:52.839796Z", + "iopub.status.idle": "2024-07-19T16:00:53.950631Z", + "shell.execute_reply": "2024-07-19T16:00:53.950037Z" } }, "outputs": [ @@ -2661,7 +2661,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:180: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.\n", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:194: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.\n", " warnings.warn(('WARNING: Starting in March 2024, the NWIS qw data endpoint is '\n" ] }, diff --git a/examples/USGS_dataretrieval_WaterUse_Examples.html b/examples/USGS_dataretrieval_WaterUse_Examples.html index 64d1909..e9e5502 100644 --- a/examples/USGS_dataretrieval_WaterUse_Examples.html +++ b/examples/USGS_dataretrieval_WaterUse_Examples.html @@ -4,7 +4,7 @@ - USGS dataretrieval Python Package get_water_use() Examples — dataretrieval 0.1.dev1+gc434b13 documentation + USGS dataretrieval Python Package get_water_use() Examples — dataretrieval 0.1.dev1+g64a575d documentation @@ -16,7 +16,7 @@ - + @@ -128,7 +128,7 @@

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)
 Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)
 Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)
 Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)
diff --git a/examples/USGS_dataretrieval_WaterUse_Examples.ipynb b/examples/USGS_dataretrieval_WaterUse_Examples.ipynb
index 5b1e54c..447499b 100644
--- a/examples/USGS_dataretrieval_WaterUse_Examples.ipynb
+++ b/examples/USGS_dataretrieval_WaterUse_Examples.ipynb
@@ -28,10 +28,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:14.847026Z",
-     "iopub.status.busy": "2024-07-17T17:40:14.846612Z",
-     "iopub.status.idle": "2024-07-17T17:40:15.530208Z",
-     "shell.execute_reply": "2024-07-17T17:40:15.529486Z"
+     "iopub.execute_input": "2024-07-19T16:00:55.562869Z",
+     "iopub.status.busy": "2024-07-19T16:00:55.562687Z",
+     "iopub.status.idle": "2024-07-19T16:00:56.262063Z",
+     "shell.execute_reply": "2024-07-19T16:00:56.261333Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -52,9 +52,15 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc434b13)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n",
       "Requirement already satisfied: requests in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.32.3)\r\n",
-      "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n",
+      "Requirement already satisfied: pandas==2.* in /home/runner/.local/lib/python3.10/site-packages (from dataretrieval) (2.2.2)\r\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
       "Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.0)\r\n",
       "Requirement already satisfied: python-dateutil>=2.8.2 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.9.0.post0)\r\n",
       "Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)\r\n",
@@ -84,10 +90,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:15.533134Z",
-     "iopub.status.busy": "2024-07-17T17:40:15.532704Z",
-     "iopub.status.idle": "2024-07-17T17:40:15.827069Z",
-     "shell.execute_reply": "2024-07-17T17:40:15.826553Z"
+     "iopub.execute_input": "2024-07-19T16:00:56.265082Z",
+     "iopub.status.busy": "2024-07-19T16:00:56.264722Z",
+     "iopub.status.idle": "2024-07-19T16:00:56.557918Z",
+     "shell.execute_reply": "2024-07-19T16:00:56.557377Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -135,10 +141,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:15.829765Z",
-     "iopub.status.busy": "2024-07-17T17:40:15.829341Z",
-     "iopub.status.idle": "2024-07-17T17:40:20.325569Z",
-     "shell.execute_reply": "2024-07-17T17:40:20.324966Z"
+     "iopub.execute_input": "2024-07-19T16:00:56.560848Z",
+     "iopub.status.busy": "2024-07-19T16:00:56.560374Z",
+     "iopub.status.idle": "2024-07-19T16:01:01.058869Z",
+     "shell.execute_reply": "2024-07-19T16:01:01.058244Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -189,10 +195,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:20.328071Z",
-     "iopub.status.busy": "2024-07-17T17:40:20.327638Z",
-     "iopub.status.idle": "2024-07-17T17:40:20.345464Z",
-     "shell.execute_reply": "2024-07-17T17:40:20.344991Z"
+     "iopub.execute_input": "2024-07-19T16:01:01.061466Z",
+     "iopub.status.busy": "2024-07-19T16:01:01.061087Z",
+     "iopub.status.idle": "2024-07-19T16:01:01.078917Z",
+     "shell.execute_reply": "2024-07-19T16:01:01.078428Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -749,10 +755,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:20.347461Z",
-     "iopub.status.busy": "2024-07-17T17:40:20.347278Z",
-     "iopub.status.idle": "2024-07-17T17:40:20.350696Z",
-     "shell.execute_reply": "2024-07-17T17:40:20.350167Z"
+     "iopub.execute_input": "2024-07-19T16:01:01.080960Z",
+     "iopub.status.busy": "2024-07-19T16:01:01.080647Z",
+     "iopub.status.idle": "2024-07-19T16:01:01.084465Z",
+     "shell.execute_reply": "2024-07-19T16:01:01.083947Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -804,10 +810,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:20.352860Z",
-     "iopub.status.busy": "2024-07-17T17:40:20.352458Z",
-     "iopub.status.idle": "2024-07-17T17:40:23.537527Z",
-     "shell.execute_reply": "2024-07-17T17:40:23.536896Z"
+     "iopub.execute_input": "2024-07-19T16:01:01.086484Z",
+     "iopub.status.busy": "2024-07-19T16:01:01.086308Z",
+     "iopub.status.idle": "2024-07-19T16:01:04.149234Z",
+     "shell.execute_reply": "2024-07-19T16:01:04.148629Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1377,10 +1383,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:23.539848Z",
-     "iopub.status.busy": "2024-07-17T17:40:23.539661Z",
-     "iopub.status.idle": "2024-07-17T17:40:25.066517Z",
-     "shell.execute_reply": "2024-07-17T17:40:25.066019Z"
+     "iopub.execute_input": "2024-07-19T16:01:04.151631Z",
+     "iopub.status.busy": "2024-07-19T16:01:04.151270Z",
+     "iopub.status.idle": "2024-07-19T16:01:05.790906Z",
+     "shell.execute_reply": "2024-07-19T16:01:05.790350Z"
     },
     "jupyter": {
      "outputs_hidden": false
diff --git a/examples/index.html b/examples/index.html
index 30c3297..8ceff55 100644
--- a/examples/index.html
+++ b/examples/index.html
@@ -4,7 +4,7 @@
   
 
   
-  Examples — dataretrieval 0.1.dev1+gc434b13 documentation
+  Examples — dataretrieval 0.1.dev1+g64a575d documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/nwisdemo01.html b/examples/nwisdemo01.html
index 94ec1c4..6db0c66 100644
--- a/examples/nwisdemo01.html
+++ b/examples/nwisdemo01.html
@@ -4,7 +4,7 @@
   
 
   
-  National trends in peak annual streamflow — dataretrieval 0.1.dev1+gc434b13 documentation
+  National trends in peak annual streamflow — dataretrieval 0.1.dev1+g64a575d documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/nwisdemo01.ipynb b/examples/nwisdemo01.ipynb
index bf15b66..9d1292e 100644
--- a/examples/nwisdemo01.ipynb
+++ b/examples/nwisdemo01.ipynb
@@ -24,10 +24,10 @@
    "execution_count": 1,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:26.569189Z",
-     "iopub.status.busy": "2024-07-17T17:40:26.568697Z",
-     "iopub.status.idle": "2024-07-17T17:40:26.710757Z",
-     "shell.execute_reply": "2024-07-17T17:40:26.710229Z"
+     "iopub.execute_input": "2024-07-19T16:01:07.331238Z",
+     "iopub.status.busy": "2024-07-19T16:01:07.330802Z",
+     "iopub.status.idle": "2024-07-19T16:01:07.475942Z",
+     "shell.execute_reply": "2024-07-19T16:01:07.475352Z"
     }
    },
    "outputs": [
@@ -66,10 +66,10 @@
    "execution_count": 2,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:26.713195Z",
-     "iopub.status.busy": "2024-07-17T17:40:26.712842Z",
-     "iopub.status.idle": "2024-07-17T17:40:26.724364Z",
-     "shell.execute_reply": "2024-07-17T17:40:26.723861Z"
+     "iopub.execute_input": "2024-07-19T16:01:07.478471Z",
+     "iopub.status.busy": "2024-07-19T16:01:07.478109Z",
+     "iopub.status.idle": "2024-07-19T16:01:07.490751Z",
+     "shell.execute_reply": "2024-07-19T16:01:07.490171Z"
     }
    },
    "outputs": [
@@ -117,10 +117,10 @@
    "execution_count": 3,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:26.726558Z",
-     "iopub.status.busy": "2024-07-17T17:40:26.726124Z",
-     "iopub.status.idle": "2024-07-17T17:40:26.730330Z",
-     "shell.execute_reply": "2024-07-17T17:40:26.729764Z"
+     "iopub.execute_input": "2024-07-19T16:01:07.493147Z",
+     "iopub.status.busy": "2024-07-19T16:01:07.492746Z",
+     "iopub.status.idle": "2024-07-19T16:01:07.496791Z",
+     "shell.execute_reply": "2024-07-19T16:01:07.496276Z"
     }
    },
    "outputs": [],
@@ -157,10 +157,10 @@
    "execution_count": 4,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:26.732741Z",
-     "iopub.status.busy": "2024-07-17T17:40:26.732271Z",
-     "iopub.status.idle": "2024-07-17T17:40:26.736710Z",
-     "shell.execute_reply": "2024-07-17T17:40:26.736230Z"
+     "iopub.execute_input": "2024-07-19T16:01:07.499013Z",
+     "iopub.status.busy": "2024-07-19T16:01:07.498667Z",
+     "iopub.status.idle": "2024-07-19T16:01:07.502826Z",
+     "shell.execute_reply": "2024-07-19T16:01:07.502362Z"
     }
    },
    "outputs": [],
@@ -210,10 +210,10 @@
    "execution_count": 5,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:26.738773Z",
-     "iopub.status.busy": "2024-07-17T17:40:26.738430Z",
-     "iopub.status.idle": "2024-07-17T17:40:26.741009Z",
-     "shell.execute_reply": "2024-07-17T17:40:26.740442Z"
+     "iopub.execute_input": "2024-07-19T16:01:07.504902Z",
+     "iopub.status.busy": "2024-07-19T16:01:07.504572Z",
+     "iopub.status.idle": "2024-07-19T16:01:07.507245Z",
+     "shell.execute_reply": "2024-07-19T16:01:07.506660Z"
     }
    },
    "outputs": [],
@@ -239,10 +239,10 @@
    "execution_count": 6,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:26.743290Z",
-     "iopub.status.busy": "2024-07-17T17:40:26.742950Z",
-     "iopub.status.idle": "2024-07-17T17:40:26.753975Z",
-     "shell.execute_reply": "2024-07-17T17:40:26.753406Z"
+     "iopub.execute_input": "2024-07-19T16:01:07.509657Z",
+     "iopub.status.busy": "2024-07-19T16:01:07.509235Z",
+     "iopub.status.idle": "2024-07-19T16:01:07.520169Z",
+     "shell.execute_reply": "2024-07-19T16:01:07.519579Z"
     }
    },
    "outputs": [
@@ -283,10 +283,10 @@
    "execution_count": 7,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-07-17T17:40:26.756153Z",
-     "iopub.status.busy": "2024-07-17T17:40:26.755924Z",
-     "iopub.status.idle": "2024-07-17T17:40:26.759061Z",
-     "shell.execute_reply": "2024-07-17T17:40:26.758481Z"
+     "iopub.execute_input": "2024-07-19T16:01:07.522453Z",
+     "iopub.status.busy": "2024-07-19T16:01:07.522110Z",
+     "iopub.status.idle": "2024-07-19T16:01:07.525059Z",
+     "shell.execute_reply": "2024-07-19T16:01:07.524575Z"
     }
    },
    "outputs": [],
diff --git a/examples/readme_examples.html b/examples/readme_examples.html
index b9a7aac..60828e2 100644
--- a/examples/readme_examples.html
+++ b/examples/readme_examples.html
@@ -4,7 +4,7 @@
   
 
   
-  Examples from the Readme file on retrieving NWIS data — dataretrieval 0.1.dev1+gc434b13 documentation
+  Examples from the Readme file on retrieving NWIS data — dataretrieval 0.1.dev1+g64a575d documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/rvignettes.html b/examples/rvignettes.html
index ad313fe..186798e 100644
--- a/examples/rvignettes.html
+++ b/examples/rvignettes.html
@@ -4,7 +4,7 @@
   
 
   
-  Python Equivalents to R Vignette Examples — dataretrieval 0.1.dev1+gc434b13 documentation
+  Python Equivalents to R Vignette Examples — dataretrieval 0.1.dev1+g64a575d documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -152,7 +152,7 @@ 

Python Equivalents to R Vignette Examples
-/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:180: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:194: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.
   warnings.warn(('WARNING: Starting in March 2024, the NWIS qw data endpoint is '
 

@@ -297,7 +297,7 @@

Python Equivalents to R Vignette Examples
-/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:180: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:194: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.
   warnings.warn(('WARNING: Starting in March 2024, the NWIS qw data endpoint is '
 

diff --git a/examples/rvignettes.ipynb b/examples/rvignettes.ipynb index cc49b64..51edad8 100644 --- a/examples/rvignettes.ipynb +++ b/examples/rvignettes.ipynb @@ -12,10 +12,10 @@ "execution_count": 1, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:28.259001Z", - "iopub.status.busy": "2024-07-17T17:40:28.258828Z", - "iopub.status.idle": "2024-07-17T17:40:28.545475Z", - "shell.execute_reply": "2024-07-17T17:40:28.544866Z" + "iopub.execute_input": "2024-07-19T16:01:09.042894Z", + "iopub.status.busy": "2024-07-19T16:01:09.042714Z", + "iopub.status.idle": "2024-07-19T16:01:09.335786Z", + "shell.execute_reply": "2024-07-19T16:01:09.335132Z" } }, "outputs": [], @@ -38,10 +38,10 @@ "execution_count": 2, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:28.548280Z", - "iopub.status.busy": "2024-07-17T17:40:28.547859Z", - "iopub.status.idle": "2024-07-17T17:40:30.600696Z", - "shell.execute_reply": "2024-07-17T17:40:30.600090Z" + "iopub.execute_input": "2024-07-19T16:01:09.338826Z", + "iopub.status.busy": "2024-07-19T16:01:09.338321Z", + "iopub.status.idle": "2024-07-19T16:01:12.068354Z", + "shell.execute_reply": "2024-07-19T16:01:12.067771Z" } }, "outputs": [ @@ -49,7 +49,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:180: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.\n", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:194: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.\n", " warnings.warn(('WARNING: Starting in March 2024, the NWIS qw data endpoint is '\n" ] } @@ -94,10 +94,10 @@ "execution_count": 3, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:30.603148Z", - "iopub.status.busy": "2024-07-17T17:40:30.602950Z", - "iopub.status.idle": "2024-07-17T17:40:30.870370Z", - "shell.execute_reply": "2024-07-17T17:40:30.869875Z" + "iopub.execute_input": "2024-07-19T16:01:12.070964Z", + "iopub.status.busy": "2024-07-19T16:01:12.070595Z", + "iopub.status.idle": "2024-07-19T16:01:12.438532Z", + "shell.execute_reply": "2024-07-19T16:01:12.437934Z" } }, "outputs": [], @@ -116,10 +116,10 @@ "execution_count": 4, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:30.872710Z", - "iopub.status.busy": "2024-07-17T17:40:30.872493Z", - "iopub.status.idle": "2024-07-17T17:40:31.008475Z", - "shell.execute_reply": "2024-07-17T17:40:31.007912Z" + "iopub.execute_input": "2024-07-19T16:01:12.441087Z", + "iopub.status.busy": "2024-07-19T16:01:12.440903Z", + "iopub.status.idle": "2024-07-19T16:01:12.624422Z", + "shell.execute_reply": "2024-07-19T16:01:12.623888Z" } }, "outputs": [], @@ -139,10 +139,10 @@ "execution_count": 5, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:31.010616Z", - "iopub.status.busy": "2024-07-17T17:40:31.010438Z", - "iopub.status.idle": "2024-07-17T17:40:31.323942Z", - "shell.execute_reply": "2024-07-17T17:40:31.323382Z" + "iopub.execute_input": "2024-07-19T16:01:12.627162Z", + "iopub.status.busy": "2024-07-19T16:01:12.626819Z", + "iopub.status.idle": "2024-07-19T16:01:12.879967Z", + "shell.execute_reply": "2024-07-19T16:01:12.879349Z" }, "pycharm": { "is_executing": false @@ -164,10 +164,10 @@ "execution_count": 6, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:31.326345Z", - "iopub.status.busy": "2024-07-17T17:40:31.326158Z", - "iopub.status.idle": "2024-07-17T17:40:31.571214Z", - "shell.execute_reply": "2024-07-17T17:40:31.570682Z" + "iopub.execute_input": "2024-07-19T16:01:12.882601Z", + "iopub.status.busy": "2024-07-19T16:01:12.882408Z", + "iopub.status.idle": "2024-07-19T16:01:13.063668Z", + "shell.execute_reply": "2024-07-19T16:01:13.063071Z" } }, "outputs": [], @@ -196,10 +196,10 @@ "execution_count": 7, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:31.573361Z", - "iopub.status.busy": "2024-07-17T17:40:31.573183Z", - "iopub.status.idle": "2024-07-17T17:40:31.710710Z", - "shell.execute_reply": "2024-07-17T17:40:31.710163Z" + "iopub.execute_input": "2024-07-19T16:01:13.066313Z", + "iopub.status.busy": "2024-07-19T16:01:13.065959Z", + "iopub.status.idle": "2024-07-19T16:01:13.444316Z", + "shell.execute_reply": "2024-07-19T16:01:13.443650Z" } }, "outputs": [], @@ -229,10 +229,10 @@ "execution_count": 8, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:31.713081Z", - "iopub.status.busy": "2024-07-17T17:40:31.712902Z", - "iopub.status.idle": "2024-07-17T17:40:31.953386Z", - "shell.execute_reply": "2024-07-17T17:40:31.952875Z" + "iopub.execute_input": "2024-07-19T16:01:13.446898Z", + "iopub.status.busy": "2024-07-19T16:01:13.446712Z", + "iopub.status.idle": "2024-07-19T16:01:13.711410Z", + "shell.execute_reply": "2024-07-19T16:01:13.710751Z" } }, "outputs": [], @@ -257,10 +257,10 @@ "execution_count": 9, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:31.955462Z", - "iopub.status.busy": "2024-07-17T17:40:31.955286Z", - "iopub.status.idle": "2024-07-17T17:40:34.097097Z", - "shell.execute_reply": "2024-07-17T17:40:34.096541Z" + "iopub.execute_input": "2024-07-19T16:01:13.714181Z", + "iopub.status.busy": "2024-07-19T16:01:13.713801Z", + "iopub.status.idle": "2024-07-19T16:01:15.305404Z", + "shell.execute_reply": "2024-07-19T16:01:15.304821Z" } }, "outputs": [ @@ -268,7 +268,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:180: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.\n", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:194: UserWarning: WARNING: Starting in March 2024, the NWIS qw data endpoint is retiring and no longer receives updates. For more information, refer to https://waterdata.usgs.gov.nwis/qwdata and https://doi-usgs.github.io/dataRetrieval/articles/Status.html or email CompTools@usgs.gov.\n", " warnings.warn(('WARNING: Starting in March 2024, the NWIS qw data endpoint is '\n" ] } @@ -298,10 +298,10 @@ "execution_count": 10, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:34.099464Z", - "iopub.status.busy": "2024-07-17T17:40:34.099280Z", - "iopub.status.idle": "2024-07-17T17:40:34.205799Z", - "shell.execute_reply": "2024-07-17T17:40:34.205183Z" + "iopub.execute_input": "2024-07-19T16:01:15.307969Z", + "iopub.status.busy": "2024-07-19T16:01:15.307598Z", + "iopub.status.idle": "2024-07-19T16:01:15.470612Z", + "shell.execute_reply": "2024-07-19T16:01:15.469995Z" } }, "outputs": [ @@ -328,10 +328,10 @@ "execution_count": 11, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:34.207836Z", - "iopub.status.busy": "2024-07-17T17:40:34.207658Z", - "iopub.status.idle": "2024-07-17T17:40:34.472772Z", - "shell.execute_reply": "2024-07-17T17:40:34.472184Z" + "iopub.execute_input": "2024-07-19T16:01:15.473052Z", + "iopub.status.busy": "2024-07-19T16:01:15.472674Z", + "iopub.status.idle": "2024-07-19T16:01:15.813610Z", + "shell.execute_reply": "2024-07-19T16:01:15.813037Z" } }, "outputs": [], @@ -349,10 +349,10 @@ "execution_count": 12, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:34.475001Z", - "iopub.status.busy": "2024-07-17T17:40:34.474822Z", - "iopub.status.idle": "2024-07-17T17:40:34.574037Z", - "shell.execute_reply": "2024-07-17T17:40:34.573603Z" + "iopub.execute_input": "2024-07-19T16:01:15.816289Z", + "iopub.status.busy": "2024-07-19T16:01:15.815891Z", + "iopub.status.idle": "2024-07-19T16:01:15.942248Z", + "shell.execute_reply": "2024-07-19T16:01:15.941671Z" } }, "outputs": [], @@ -369,10 +369,10 @@ "execution_count": 13, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:34.576088Z", - "iopub.status.busy": "2024-07-17T17:40:34.575889Z", - "iopub.status.idle": "2024-07-17T17:40:35.043087Z", - "shell.execute_reply": "2024-07-17T17:40:35.042537Z" + "iopub.execute_input": "2024-07-19T16:01:15.944797Z", + "iopub.status.busy": "2024-07-19T16:01:15.944609Z", + "iopub.status.idle": "2024-07-19T16:01:16.287002Z", + "shell.execute_reply": "2024-07-19T16:01:16.286415Z" } }, "outputs": [], @@ -387,10 +387,10 @@ "execution_count": 14, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:35.045539Z", - "iopub.status.busy": "2024-07-17T17:40:35.045259Z", - "iopub.status.idle": "2024-07-17T17:40:36.738693Z", - "shell.execute_reply": "2024-07-17T17:40:36.738129Z" + "iopub.execute_input": "2024-07-19T16:01:16.289504Z", + "iopub.status.busy": "2024-07-19T16:01:16.289316Z", + "iopub.status.idle": "2024-07-19T16:01:18.033395Z", + "shell.execute_reply": "2024-07-19T16:01:18.032794Z" } }, "outputs": [], @@ -412,10 +412,10 @@ "execution_count": 15, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:36.741330Z", - "iopub.status.busy": "2024-07-17T17:40:36.740909Z", - "iopub.status.idle": "2024-07-17T17:40:36.938072Z", - "shell.execute_reply": "2024-07-17T17:40:36.937507Z" + "iopub.execute_input": "2024-07-19T16:01:18.035840Z", + "iopub.status.busy": "2024-07-19T16:01:18.035649Z", + "iopub.status.idle": "2024-07-19T16:01:18.432356Z", + "shell.execute_reply": "2024-07-19T16:01:18.431775Z" } }, "outputs": [], @@ -433,10 +433,10 @@ "execution_count": 16, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:36.940242Z", - "iopub.status.busy": "2024-07-17T17:40:36.940039Z", - "iopub.status.idle": "2024-07-17T17:40:36.942729Z", - "shell.execute_reply": "2024-07-17T17:40:36.942186Z" + "iopub.execute_input": "2024-07-19T16:01:18.434926Z", + "iopub.status.busy": "2024-07-19T16:01:18.434733Z", + "iopub.status.idle": "2024-07-19T16:01:18.437331Z", + "shell.execute_reply": "2024-07-19T16:01:18.436821Z" } }, "outputs": [], @@ -456,10 +456,10 @@ "execution_count": 17, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:36.944841Z", - "iopub.status.busy": "2024-07-17T17:40:36.944517Z", - "iopub.status.idle": "2024-07-17T17:40:36.946819Z", - "shell.execute_reply": "2024-07-17T17:40:36.946305Z" + "iopub.execute_input": "2024-07-19T16:01:18.439466Z", + "iopub.status.busy": "2024-07-19T16:01:18.439070Z", + "iopub.status.idle": "2024-07-19T16:01:18.441564Z", + "shell.execute_reply": "2024-07-19T16:01:18.441045Z" } }, "outputs": [], @@ -479,10 +479,10 @@ "execution_count": 18, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:36.948931Z", - "iopub.status.busy": "2024-07-17T17:40:36.948592Z", - "iopub.status.idle": "2024-07-17T17:40:36.950871Z", - "shell.execute_reply": "2024-07-17T17:40:36.950377Z" + "iopub.execute_input": "2024-07-19T16:01:18.443454Z", + "iopub.status.busy": "2024-07-19T16:01:18.443281Z", + "iopub.status.idle": "2024-07-19T16:01:18.445739Z", + "shell.execute_reply": "2024-07-19T16:01:18.445278Z" } }, "outputs": [], @@ -499,10 +499,10 @@ "execution_count": 19, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:36.952977Z", - "iopub.status.busy": "2024-07-17T17:40:36.952642Z", - "iopub.status.idle": "2024-07-17T17:40:36.954943Z", - "shell.execute_reply": "2024-07-17T17:40:36.954486Z" + "iopub.execute_input": "2024-07-19T16:01:18.447864Z", + "iopub.status.busy": "2024-07-19T16:01:18.447523Z", + "iopub.status.idle": "2024-07-19T16:01:18.449916Z", + "shell.execute_reply": "2024-07-19T16:01:18.449460Z" } }, "outputs": [], @@ -519,10 +519,10 @@ "execution_count": 20, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:36.956889Z", - "iopub.status.busy": "2024-07-17T17:40:36.956711Z", - "iopub.status.idle": "2024-07-17T17:40:36.958973Z", - "shell.execute_reply": "2024-07-17T17:40:36.958491Z" + "iopub.execute_input": "2024-07-19T16:01:18.451977Z", + "iopub.status.busy": "2024-07-19T16:01:18.451635Z", + "iopub.status.idle": "2024-07-19T16:01:18.454031Z", + "shell.execute_reply": "2024-07-19T16:01:18.453568Z" } }, "outputs": [], @@ -540,10 +540,10 @@ "execution_count": 21, "metadata": { "execution": { - "iopub.execute_input": "2024-07-17T17:40:36.960974Z", - "iopub.status.busy": "2024-07-17T17:40:36.960657Z", - "iopub.status.idle": "2024-07-17T17:40:37.096825Z", - "shell.execute_reply": "2024-07-17T17:40:37.096237Z" + "iopub.execute_input": "2024-07-19T16:01:18.456034Z", + "iopub.status.busy": "2024-07-19T16:01:18.455693Z", + "iopub.status.idle": "2024-07-19T16:01:18.597890Z", + "shell.execute_reply": "2024-07-19T16:01:18.597267Z" } }, "outputs": [ @@ -568,10 +568,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-17T17:40:37.098990Z", - "iopub.status.busy": "2024-07-17T17:40:37.098633Z", - "iopub.status.idle": "2024-07-17T17:40:37.190542Z", - "shell.execute_reply": "2024-07-17T17:40:37.189965Z" + "iopub.execute_input": "2024-07-19T16:01:18.600358Z", + "iopub.status.busy": "2024-07-19T16:01:18.599996Z", + "iopub.status.idle": "2024-07-19T16:01:18.726052Z", + "shell.execute_reply": "2024-07-19T16:01:18.725461Z" }, "pycharm": { "name": "#%%\n" diff --git a/examples/siteinfo_examples.html b/examples/siteinfo_examples.html index 8b54703..8d411c9 100644 --- a/examples/siteinfo_examples.html +++ b/examples/siteinfo_examples.html @@ -4,7 +4,7 @@ - Retrieving site information — dataretrieval 0.1.dev1+gc434b13 documentation + Retrieving site information — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/genindex.html b/genindex.html index 091aa26..482649b 100644 --- a/genindex.html +++ b/genindex.html @@ -3,7 +3,7 @@ - Index — dataretrieval 0.1.dev1+gc434b13 documentation + Index — dataretrieval 0.1.dev1+g64a575d documentation @@ -14,7 +14,7 @@ - + diff --git a/index.html b/index.html index 81407b9..30733a0 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - Welcome — dataretrieval 0.1.dev1+gc434b13 documentation + Welcome — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/meta/contributing.html b/meta/contributing.html index b5d7673..a4f2de0 100644 --- a/meta/contributing.html +++ b/meta/contributing.html @@ -4,7 +4,7 @@ - Contributing — dataretrieval 0.1.dev1+gc434b13 documentation + Contributing — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/meta/installing.html b/meta/installing.html index 5fde87d..577aff3 100644 --- a/meta/installing.html +++ b/meta/installing.html @@ -4,7 +4,7 @@ - Installation Guide — dataretrieval 0.1.dev1+gc434b13 documentation + Installation Guide — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/meta/license.html b/meta/license.html index 1979cfc..23a7e92 100644 --- a/meta/license.html +++ b/meta/license.html @@ -4,7 +4,7 @@ - License and Disclaimer — dataretrieval 0.1.dev1+gc434b13 documentation + License and Disclaimer — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/py-modindex.html b/py-modindex.html index 8f5753d..8d82b82 100644 --- a/py-modindex.html +++ b/py-modindex.html @@ -3,7 +3,7 @@ - Python Module Index — dataretrieval 0.1.dev1+gc434b13 documentation + Python Module Index — dataretrieval 0.1.dev1+g64a575d documentation @@ -14,7 +14,7 @@ - + diff --git a/reference/index.html b/reference/index.html index d33ef15..ec66d29 100644 --- a/reference/index.html +++ b/reference/index.html @@ -4,7 +4,7 @@ - API reference — dataretrieval 0.1.dev1+gc434b13 documentation + API reference — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/reference/nadp.html b/reference/nadp.html index 657e6d3..0dbe9c3 100644 --- a/reference/nadp.html +++ b/reference/nadp.html @@ -4,7 +4,7 @@ - dataretrieval.nadp — dataretrieval 0.1.dev1+gc434b13 documentation + dataretrieval.nadp — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/reference/nwis.html b/reference/nwis.html index 3f0e2f4..1094c86 100644 --- a/reference/nwis.html +++ b/reference/nwis.html @@ -4,7 +4,7 @@ - dataretrieval.nwis — dataretrieval 0.1.dev1+gc434b13 documentation + dataretrieval.nwis — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/reference/streamstats.html b/reference/streamstats.html index 090c177..1a62a5a 100644 --- a/reference/streamstats.html +++ b/reference/streamstats.html @@ -4,7 +4,7 @@ - dataretrieval.streamstats — dataretrieval 0.1.dev1+gc434b13 documentation + dataretrieval.streamstats — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/reference/utils.html b/reference/utils.html index 660c3d5..fc9bade 100644 --- a/reference/utils.html +++ b/reference/utils.html @@ -4,7 +4,7 @@ - dataretrieval.utils — dataretrieval 0.1.dev1+gc434b13 documentation + dataretrieval.utils — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/reference/wqp.html b/reference/wqp.html index 6f24ce9..5a6bb7e 100644 --- a/reference/wqp.html +++ b/reference/wqp.html @@ -4,7 +4,7 @@ - dataretrieval.wqp — dataretrieval 0.1.dev1+gc434b13 documentation + dataretrieval.wqp — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/search.html b/search.html index 7f0f943..a1b5dcc 100644 --- a/search.html +++ b/search.html @@ -3,7 +3,7 @@ - Search — dataretrieval 0.1.dev1+gc434b13 documentation + Search — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/searchindex.js b/searchindex.js index 8e56562..78d8498 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"API reference": [[21, null]], "Acknowledgements": [[18, "acknowledgements"]], "Additional Examples": [[0, "Additional-Examples"], [1, "Additional-Examples"], [2, "Additional-Examples"], [4, "Additional-Examples"], [8, "Additional-Examples"], [9, "Additional-Examples"], [10, "Additional-Examples"]], "Basic Usage": [[0, "Basic-Usage"], [1, "Basic-Usage"], [2, "Basic-Usage"], [3, "Basic-Usage"], [4, "Basic-Usage"], [5, "Basic-Usage"], [8, "Basic-Usage"], [9, "Basic-Usage"], [10, "Basic-Usage"], [11, "Basic-Usage"]], "Basic usage": [[13, "Basic-usage"]], "Coding Standards": [[18, "coding-standards"]], "Contents": [[28, "contents"]], "Contributing": [[18, null]], "Contributor Guidelines": [[18, "contributor-guidelines"]], "Data Portals": [[27, null]], "Datetime Information": [[29, null]], "Developer Installation": [[19, "developer-installation"]], "Duplicating the R dataRetrieval vignettes functionality": [[12, "duplicating-the-r-dataretrieval-vignettes-functionality"]], "Embedded Metadata": [[15, "Embedded-Metadata"]], "Example 1: Get all of the annual mean discharge data for a single site": [[8, "Example-1:-Get-all-of-the-annual-mean-discharge-data-for-a-single-site"]], "Example 1: Get all water quality sample data for a single monitoring site": [[10, "Example-1:-Get-all-water-quality-sample-data-for-a-single-monitoring-site"]], "Example 1: Get unit value data for a specific parameter at a USGS NWIS monitoring site between a begin and end date": [[9, "Example-1:-Get-unit-value-data-for-a-specific-parameter-at-a-USGS-NWIS-monitoring-site-between-a-begin-and-end-date"]], "Example 1: Retrieve all water use data for a state": [[11, "Example-1:-Retrieve-all-water-use-data-for-a-state"]], "Example 2: Get all of the annual mean discharge data for two sites": [[8, "Example-2:-Get-all-of-the-annual-mean-discharge-data-for-two-sites"]], "Example 2: Get unit values for an individual site and parameter between a start and end date.": [[9, "Example-2:-Get-unit-values-for-an-individual-site-and-parameter-between-a-start-and-end-date."]], "Example 2: Get water quality sample data for multiple sites for a single parameter": [[10, "Example-2:-Get-water-quality-sample-data-for-multiple-sites-for-a-single-parameter"]], "Example 2: Retrieve data for an entire state for certain years": [[11, "Example-2:-Retrieve-data-for-an-entire-state-for-certain-years"]], "Example 3: Get unit values for an individual site for today": [[9, "Example-3:-Get-unit-values-for-an-individual-site-for-today"]], "Example 3: Request daily mean and median values for temperature and discharge for a site for years between 2000 and 2007": [[8, "Example-3:-Request-daily-mean-and-median-values-for-temperature-and-discharge-for-a-site-for-years-between-2000-and-2007"]], "Example 3: Retrieve two specific water use categories for an entire state": [[11, "Example-3:-Retrieve-two-specific-water-use-categories-for-an-entire-state"]], "Example 3: Retrieve water quality sample data for multiple sites, including a list of parameters, within a time period defined by start and end dates": [[10, "Example-3:-Retrieve-water-quality-sample-data-for-multiple-sites,-including-a-list-of-parameters,-within-a-time-period-defined-by-start-and-end-dates"]], "Example 4: Retrieve data using UTC times": [[9, "Example-4:-Retrieve-data-using-UTC-times"]], "Example 4: Retrieve water quality sample data for one site in serial format": [[10, "Example-4:-Retrieve-water-quality-sample-data-for-one-site-in-serial-format"]], "Example 5: Get unit values for two sites, for a single parameter, between a start and end date": [[9, "Example-5:-Get-unit-values-for-two-sites,-for-a-single-parameter,-between-a-start-and-end-date"]], "Example Notebooks from Hydroshare": [[12, "example-notebooks-from-hydroshare"]], "Examples": [[12, null]], "Examples from the Readme file on retrieving NWIS data": [[14, null]], "Fixing Bugs:": [[18, "fixing-bugs"]], "Implementing Features:": [[18, "implementing-features"]], "Inspecting Timestamps": [[29, "inspecting-timestamps"]], "Install the Package": [[0, "Install-the-Package"], [1, "Install-the-Package"], [2, "Install-the-Package"], [3, "Install-the-Package"], [4, "Install-the-Package"], [5, "Install-the-Package"], [8, "Install-the-Package"], [9, "Install-the-Package"], [10, "Install-the-Package"], [11, "Install-the-Package"]], "Installation Guide": [[19, null]], "Interpreting the Result": [[0, "Interpreting-the-Result"], [1, "Interpreting-the-Result"], [2, "Interpreting-the-Result"], [3, "Interpreting-the-Result"], [4, "Interpreting-the-Result"], [5, "Interpreting-the-Result"], [8, "Interpreting-the-Result"], [9, "Interpreting-the-Result"], [10, "Interpreting-the-Result"], [11, "Interpreting-the-Result"]], "Introduction": [[13, "Introduction"]], "License and Disclaimer": [[20, null]], "Mercury Deposition Network": [[22, "mercury-deposition-network"]], "National Trends Network": [[22, "national-trends-network"]], "National trends in peak annual streamflow": [[13, null]], "Plotting the results": [[13, "Plotting-the-results"]], "Preparing the analysis": [[13, "Preparing-the-analysis"]], "Preparing the regression": [[13, "Preparing-the-regression"]], "Pull Request Guidelines:": [[18, "pull-request-guidelines"]], "Python Equivalents to R Vignette Examples": [[15, null]], "Reporting Bugs:": [[18, "reporting-bugs"]], "Retrieving site information": [[16, null]], "Setup": [[13, "Setup"]], "Simple uses of the dataretrieval package": [[12, "simple-uses-of-the-dataretrieval-package"]], "Submitting Feedback:": [[18, "submitting-feedback"]], "Table of Contents": [[17, "table-of-contents"]], "Todo": [[22, "id1"], [23, "id1"], [26, "id1"]], "USGS dataretrieval Python Package get_discharge_measurements() Examples": [[2, null]], "USGS dataretrieval Python Package get_discharge_peaks() Examples": [[4, null]], "USGS dataretrieval Python Package get_dv() Examples": [[0, null]], "USGS dataretrieval Python Package get_gwlevels() Examples": [[1, null]], "USGS dataretrieval Python Package get_iv() Examples": [[9, null]], "USGS dataretrieval Python Package get_pmcodes() Examples": [[3, null]], "USGS dataretrieval Python Package get_qwdata() Examples": [[10, null]], "USGS dataretrieval Python Package get_ratings() Examples": [[5, null]], "USGS dataretrieval Python Package get_stats() Examples": [[8, null]], "USGS dataretrieval Python Package get_water_use() Examples": [[11, null]], "Updating Package Version:": [[18, "updating-package-version"]], "User Guide": [[28, null]], "User Installation": [[19, "user-installation"]], "Using dataretrieval to obtain nation trends in peak annual streamflow": [[12, "using-dataretrieval-to-obtain-nation-trends-in-peak-annual-streamflow"]], "Via conda:": [[19, "via-conda"]], "Via pip:": [[19, "via-pip"]], "Ways to contribute": [[18, "ways-to-contribute"]], "Welcome": [[17, null]], "Writing Documentation:": [[18, "writing-documentation"]], "dataretrieval.nadp": [[22, null]], "dataretrieval.nwis": [[23, null]], "dataretrieval.streamstats": [[24, null]], "dataretrieval.utils": [[25, null]], "dataretrieval.wqp": [[26, null]]}, "docnames": ["examples/USGS_dataretrieval_DailyValues_Examples", "examples/USGS_dataretrieval_GroundwaterLevels_Examples", "examples/USGS_dataretrieval_Measurements_Examples", "examples/USGS_dataretrieval_ParameterCodes_Examples", "examples/USGS_dataretrieval_Peaks_Examples", "examples/USGS_dataretrieval_Ratings_Examples", "examples/USGS_dataretrieval_SiteInfo_Examples", "examples/USGS_dataretrieval_SiteInventory_Examples", "examples/USGS_dataretrieval_Statistics_Examples", "examples/USGS_dataretrieval_UnitValues_Examples", "examples/USGS_dataretrieval_WaterSamples_Examples", "examples/USGS_dataretrieval_WaterUse_Examples", "examples/index", "examples/nwisdemo01", "examples/readme_examples", "examples/rvignettes", "examples/siteinfo_examples", "index", "meta/contributing", "meta/installing", "meta/license", "reference/index", "reference/nadp", "reference/nwis", "reference/streamstats", "reference/utils", "reference/wqp", "userguide/dataportals", "userguide/index", "userguide/timeconventions"], "envversion": {"nbsphinx": 4, "sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1}, "filenames": ["examples/USGS_dataretrieval_DailyValues_Examples.nblink", "examples/USGS_dataretrieval_GroundwaterLevels_Examples.nblink", "examples/USGS_dataretrieval_Measurements_Examples.nblink", "examples/USGS_dataretrieval_ParameterCodes_Examples.nblink", "examples/USGS_dataretrieval_Peaks_Examples.nblink", "examples/USGS_dataretrieval_Ratings_Examples.nblink", "examples/USGS_dataretrieval_SiteInfo_Examples.nblink", "examples/USGS_dataretrieval_SiteInventory_Examples.nblink", "examples/USGS_dataretrieval_Statistics_Examples.nblink", "examples/USGS_dataretrieval_UnitValues_Examples.nblink", "examples/USGS_dataretrieval_WaterSamples_Examples.nblink", "examples/USGS_dataretrieval_WaterUse_Examples.nblink", "examples/index.rst", "examples/nwisdemo01.nblink", "examples/readme_examples.rst", "examples/rvignettes.nblink", "examples/siteinfo_examples.rst", "index.rst", "meta/contributing.rst", "meta/installing.rst", "meta/license.rst", "reference/index.rst", "reference/nadp.rst", "reference/nwis.rst", "reference/streamstats.rst", "reference/utils.rst", "reference/wqp.rst", "userguide/dataportals.rst", "userguide/index.rst", "userguide/timeconventions.rst"], "indexentries": {"__init__() (dataretrieval.nwis.nwis_metadata method)": [[23, "dataretrieval.nwis.NWIS_Metadata.__init__", false]], "__init__() (dataretrieval.streamstats.watershed method)": [[24, "dataretrieval.streamstats.Watershed.__init__", false]], "__init__() (dataretrieval.utils.basemetadata method)": [[25, "dataretrieval.utils.BaseMetadata.__init__", false]], "__init__() (dataretrieval.utils.nositeserror method)": [[25, "dataretrieval.utils.NoSitesError.__init__", false]], "__init__() (dataretrieval.wqp.wqp_metadata method)": [[26, "dataretrieval.wqp.WQP_Metadata.__init__", false]], "__repr__() (dataretrieval.utils.basemetadata method)": [[25, "dataretrieval.utils.BaseMetadata.__repr__", false]], "__str__() (dataretrieval.utils.nositeserror method)": [[25, "dataretrieval.utils.NoSitesError.__str__", false]], "__weakref__ (dataretrieval.streamstats.watershed attribute)": [[24, "dataretrieval.streamstats.Watershed.__weakref__", false]], "__weakref__ (dataretrieval.utils.basemetadata attribute)": [[25, "dataretrieval.utils.BaseMetadata.__weakref__", false]], "__weakref__ (dataretrieval.utils.nositeserror attribute)": [[25, "dataretrieval.utils.NoSitesError.__weakref__", false]], "_alter_kwargs() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp._alter_kwargs", false]], "_read_json() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis._read_json", false]], "_read_rdb() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis._read_rdb", false]], "_warn_v3_profiles_outage() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp._warn_v3_profiles_outage", false]], "basemetadata (class in dataretrieval.utils)": [[25, "dataretrieval.utils.BaseMetadata", false]], "comments (dataretrieval.nwis.nwis_metadata attribute)": [[23, "dataretrieval.nwis.NWIS_Metadata.comments", false]], "comments (dataretrieval.wqp.wqp_metadata attribute)": [[26, "dataretrieval.wqp.WQP_Metadata.comments", false]], "dataretrieval.nadp": [[22, "module-dataretrieval.nadp", false]], "dataretrieval.nwis": [[23, "module-dataretrieval.nwis", false]], "dataretrieval.streamstats": [[24, "module-dataretrieval.streamstats", false]], "dataretrieval.utils": [[25, "module-dataretrieval.utils", false]], "dataretrieval.wqp": [[26, "module-dataretrieval.wqp", false]], "download_workspace() (in module dataretrieval.streamstats)": [[24, "dataretrieval.streamstats.download_workspace", false]], "format_datetime() (in module dataretrieval.utils)": [[25, "dataretrieval.utils.format_datetime", false]], "format_response() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.format_response", false]], "from_streamstats_json() (dataretrieval.streamstats.watershed class method)": [[24, "dataretrieval.streamstats.Watershed.from_streamstats_json", false]], "get_annual_mdn_map() (in module dataretrieval.nadp)": [[22, "dataretrieval.nadp.get_annual_MDN_map", false]], "get_annual_ntn_map() (in module dataretrieval.nadp)": [[22, "dataretrieval.nadp.get_annual_NTN_map", false]], "get_discharge_measurements() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_discharge_measurements", false]], "get_discharge_peaks() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_discharge_peaks", false]], "get_dv() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_dv", false]], "get_gwlevels() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_gwlevels", false]], "get_info() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_info", false]], "get_iv() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_iv", false]], "get_pmcodes() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_pmcodes", false]], "get_qwdata() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_qwdata", false]], "get_ratings() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_ratings", false]], "get_record() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_record", false]], "get_results() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.get_results", false]], "get_sample_watershed() (in module dataretrieval.streamstats)": [[24, "dataretrieval.streamstats.get_sample_watershed", false]], "get_stats() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_stats", false]], "get_water_use() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_water_use", false]], "get_watershed() (in module dataretrieval.streamstats)": [[24, "dataretrieval.streamstats.get_watershed", false]], "get_zip() (in module dataretrieval.nadp)": [[22, "dataretrieval.nadp.get_zip", false]], "header (dataretrieval.nwis.nwis_metadata attribute)": [[23, "dataretrieval.nwis.NWIS_Metadata.header", false]], "header (dataretrieval.utils.basemetadata attribute)": [[25, "dataretrieval.utils.BaseMetadata.header", false]], "header (dataretrieval.wqp.wqp_metadata attribute)": [[26, "dataretrieval.wqp.WQP_Metadata.header", false]], "module": [[22, "module-dataretrieval.nadp", false], [23, "module-dataretrieval.nwis", false], [24, "module-dataretrieval.streamstats", false], [25, "module-dataretrieval.utils", false], [26, "module-dataretrieval.wqp", false]], "nadp_zipfile (class in dataretrieval.nadp)": [[22, "dataretrieval.nadp.NADP_ZipFile", false]], "nositeserror": [[25, "dataretrieval.utils.NoSitesError", false]], "nwis_metadata (class in dataretrieval.nwis)": [[23, "dataretrieval.nwis.NWIS_Metadata", false]], "preformat_peaks_response() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.preformat_peaks_response", false]], "query() (in module dataretrieval.utils)": [[25, "dataretrieval.utils.query", false]], "query_time (dataretrieval.nwis.nwis_metadata attribute)": [[23, "dataretrieval.nwis.NWIS_Metadata.query_time", false]], "query_time (dataretrieval.utils.basemetadata attribute)": [[25, "dataretrieval.utils.BaseMetadata.query_time", false]], "query_time (dataretrieval.wqp.wqp_metadata attribute)": [[26, "dataretrieval.wqp.WQP_Metadata.query_time", false]], "query_waterdata() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.query_waterdata", false]], "query_waterservices() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.query_waterservices", false]], "site_info (dataretrieval.nwis.nwis_metadata attribute)": [[23, "dataretrieval.nwis.NWIS_Metadata.site_info", false]], "site_info (dataretrieval.nwis.nwis_metadata property)": [[23, "id0", false]], "site_info (dataretrieval.wqp.wqp_metadata attribute)": [[26, "dataretrieval.wqp.WQP_Metadata.site_info", false]], "tif() (dataretrieval.nadp.nadp_zipfile method)": [[22, "dataretrieval.nadp.NADP_ZipFile.tif", false]], "tif_name() (dataretrieval.nadp.nadp_zipfile method)": [[22, "dataretrieval.nadp.NADP_ZipFile.tif_name", false]], "to_str() (in module dataretrieval.utils)": [[25, "dataretrieval.utils.to_str", false]], "url (dataretrieval.nwis.nwis_metadata attribute)": [[23, "dataretrieval.nwis.NWIS_Metadata.url", false]], "url (dataretrieval.utils.basemetadata attribute)": [[25, "dataretrieval.utils.BaseMetadata.url", false]], "url (dataretrieval.wqp.wqp_metadata attribute)": [[26, "dataretrieval.wqp.WQP_Metadata.url", false]], "variable_info (dataretrieval.nwis.nwis_metadata attribute)": [[23, "dataretrieval.nwis.NWIS_Metadata.variable_info", false]], "watershed (class in dataretrieval.streamstats)": [[24, "dataretrieval.streamstats.Watershed", false]], "what_activities() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_activities", false]], "what_activity_metrics() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_activity_metrics", false]], "what_detection_limits() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_detection_limits", false]], "what_habitat_metrics() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_habitat_metrics", false]], "what_organizations() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_organizations", false]], "what_project_weights() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_project_weights", false]], "what_projects() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_projects", false]], "what_sites() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.what_sites", false]], "what_sites() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_sites", false]], "wqp_metadata (class in dataretrieval.wqp)": [[26, "dataretrieval.wqp.WQP_Metadata", false]], "wqp_url() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.wqp_url", false]]}, "objects": {"dataretrieval": [[22, 0, 0, "-", "nadp"], [23, 0, 0, "-", "nwis"], [24, 0, 0, "-", "streamstats"], [25, 0, 0, "-", "utils"], [26, 0, 0, "-", "wqp"]], "dataretrieval.nadp": [[22, 1, 1, "", "NADP_ZipFile"], [22, 3, 1, "", "get_annual_MDN_map"], [22, 3, 1, "", "get_annual_NTN_map"], [22, 3, 1, "", "get_zip"]], "dataretrieval.nadp.NADP_ZipFile": [[22, 2, 1, "", "tif"], [22, 2, 1, "", "tif_name"]], "dataretrieval.nwis": [[23, 1, 1, "", "NWIS_Metadata"], [23, 3, 1, "", "_read_json"], [23, 3, 1, "", "_read_rdb"], [23, 3, 1, "", "format_response"], [23, 3, 1, "", "get_discharge_measurements"], [23, 3, 1, "", "get_discharge_peaks"], [23, 3, 1, "", "get_dv"], [23, 3, 1, "", "get_gwlevels"], [23, 3, 1, "", "get_info"], [23, 3, 1, "", "get_iv"], [23, 3, 1, "", "get_pmcodes"], [23, 3, 1, "", "get_qwdata"], [23, 3, 1, "", "get_ratings"], [23, 3, 1, "", "get_record"], [23, 3, 1, "", "get_stats"], [23, 3, 1, "", "get_water_use"], [23, 3, 1, "", "preformat_peaks_response"], [23, 3, 1, "", "query_waterdata"], [23, 3, 1, "", "query_waterservices"], [23, 3, 1, "", "what_sites"]], "dataretrieval.nwis.NWIS_Metadata": [[23, 2, 1, "", "__init__"], [23, 4, 1, "", "comments"], [23, 4, 1, "", "header"], [23, 4, 1, "", "query_time"], [23, 5, 1, "id0", "site_info"], [23, 4, 1, "", "url"], [23, 4, 1, "", "variable_info"]], "dataretrieval.streamstats": [[24, 1, 1, "", "Watershed"], [24, 3, 1, "", "download_workspace"], [24, 3, 1, "", "get_sample_watershed"], [24, 3, 1, "", "get_watershed"]], "dataretrieval.streamstats.Watershed": [[24, 2, 1, "", "__init__"], [24, 4, 1, "", "__weakref__"], [24, 2, 1, "", "from_streamstats_json"]], "dataretrieval.utils": [[25, 1, 1, "", "BaseMetadata"], [25, 6, 1, "", "NoSitesError"], [25, 3, 1, "", "format_datetime"], [25, 3, 1, "", "query"], [25, 3, 1, "", "to_str"]], "dataretrieval.utils.BaseMetadata": [[25, 2, 1, "", "__init__"], [25, 2, 1, "", "__repr__"], [25, 4, 1, "", "__weakref__"], [25, 4, 1, "", "header"], [25, 4, 1, "", "query_time"], [25, 4, 1, "", "url"]], "dataretrieval.utils.NoSitesError": [[25, 2, 1, "", "__init__"], [25, 2, 1, "", "__str__"], [25, 4, 1, "", "__weakref__"]], "dataretrieval.wqp": [[26, 1, 1, "", "WQP_Metadata"], [26, 3, 1, "", "_alter_kwargs"], [26, 3, 1, "", "_warn_v3_profiles_outage"], [26, 3, 1, "", "get_results"], [26, 3, 1, "", "what_activities"], [26, 3, 1, "", "what_activity_metrics"], [26, 3, 1, "", "what_detection_limits"], [26, 3, 1, "", "what_habitat_metrics"], [26, 3, 1, "", "what_organizations"], [26, 3, 1, "", "what_project_weights"], [26, 3, 1, "", "what_projects"], [26, 3, 1, "", "what_sites"], [26, 3, 1, "", "wqp_url"]], "dataretrieval.wqp.WQP_Metadata": [[26, 2, 1, "", "__init__"], [26, 4, 1, "", "comments"], [26, 4, 1, "", "header"], [26, 4, 1, "", "query_time"], [26, 4, 1, "", "site_info"], [26, 4, 1, "", "url"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "attribute", "Python attribute"], "5": ["py", "property", "Python property"], "6": ["py", "exception", "Python exception"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function", "4": "py:attribute", "5": "py:property", "6": "py:exception"}, "terms": {"": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 18, 23, 29], "0": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 22, 23, 25, 26], "00": [0, 1, 2, 4, 5, 8, 9, 10, 11, 14, 29], "000": 11, "0000": [1, 29], "000000": [0, 1, 9], "00001": [0, 15], "00003": [0, 15, 23], "00010": [0, 8, 14, 15], "00010_cd": 14, "00010_discontinued_maximum": 0, "00010_discontinued_maximum_cd": 0, "00010_discontinued_mean": 0, "00010_discontinued_mean_cd": 0, "00010_maximum": 0, "00010_maximum_cd": 0, "00010_mean": 0, "00010_mean_cd": 0, "00060": [0, 8, 9, 14, 15, 16, 23], "00060_cd": [9, 14], "00060_mean": 0, "00060_mean_cd": 0, "00065": 10, "0008": 18, "001": 23, "0024": 14, "003": 15, "00300": 10, "00400": 3, "00618": 15, "00665": [7, 23], "009": 11, "00gq41400": 10, "00z": 9, "01": [0, 1, 2, 4, 6, 7, 9, 10, 11, 13, 14, 15, 23, 26, 29], "014": 11, "0141": 14, "01491000": [0, 15, 23], "01585200": 23, "01594440": [2, 4, 5, 15, 23], "016": 11, "01645000": [0, 15], "01646500": 23, "0165": 14, "0180147": 10, "019": 11, "02": [0, 1, 2, 4, 5, 9, 10, 11, 23, 26], "02171500": 8, "02319394": [8, 15], "025": 15, "0270113": 10, "03": [0, 1, 2, 4, 9, 10, 11, 23], "03339000": [13, 14, 29], "0380062": 10, "04": [0, 1, 2, 4, 9, 10, 29], "04024000": [9, 10], "04024430": [9, 10], "040851325": [2, 4], "04085427": [0, 23], "05": [0, 1, 2, 4, 9, 10, 11, 13, 15, 29], "0500": 10, "05114000": [6, 7, 9, 23], "05212700": 0, "0540032": 10, "06": [0, 1, 2, 4, 9, 10, 14, 23, 29], "0600": 10, "06011000": 4, "07": [0, 1, 2, 4, 7, 9, 10, 11, 14, 26, 29], "0700": 10, "074": 11, "0740087": 10, "08": [1, 2, 4, 9, 10, 11, 29], "09": [0, 1, 2, 4, 9, 10, 11, 15, 23, 29], "0900013": 10, "09423350": [6, 23], "099": 11, "1": [0, 1, 2, 3, 4, 5, 6, 7, 13, 14, 15, 18, 23, 25], "10": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 23, 25, 29], "100": [0, 13, 14], "100000": 9, "10032762": 15, "10109000": [0, 2, 5, 6, 9, 10], "1020": 4, "1027": 1, "1028": 1, "1029": 8, "1030": [1, 4], "1034": 2, "1035": [1, 2], "1036": [1, 2], "1037": [1, 2], "1038": [1, 2], "1039": 2, "1040": 2, "1041": 2, "1042": 2, "106": [0, 11], "1060": 2, "10600": 4, "108": [10, 11], "10800": 4, "1088": 2, "1089": 2, "1090": 2, "1091": 2, "1092": 2, "10t00": 9, "10t23": 9, "11": [0, 1, 2, 4, 5, 8, 9, 10, 11, 14, 15, 23, 26, 29], "110": 0, "1110047": 10, "112": [2, 11], "11447650": 23, "11500": 4, "1180039": 10, "12": [1, 2, 4, 8, 9, 10, 11, 14, 15, 23, 26, 29], "1200": 4, "1210024": 10, "1215": 8, "122": 2, "1220123": 10, "123": 11, "1230062": 10, "125": 11, "125737": 8, "126": 2, "127": [0, 2], "12700": 4, "127500": 1, "127915": 9, "129": 0, "13": [1, 2, 4, 8, 9, 10, 11, 15], "133": [2, 11], "135": 10, "1360": 4, "138": 14, "139": 14, "1390189": 10, "14": [1, 2, 4, 8, 9, 10, 11, 15, 29], "140": [11, 14], "1404": 8, "146": 2, "146872": 0, "148": 2, "15": [0, 1, 2, 4, 8, 9, 10, 11, 13, 14, 15, 29], "150": 4, "1500157": 10, "151": [2, 10], "1510": 4, "152": 2, "1520": 4, "153": 2, "1541": 1, "1542": 1, "1544": 1, "1545": 1, "1546": 1, "1547": 1, "1548": 1, "1549": 1, "155": [0, 10], "1550": 1, "1551": 1, "1552": 1, "1553": 1, "1554": 1, "1556": 1, "1557": 1, "1558": 1, "156": 10, "15600": 4, "1578": 1, "1579": 1, "1580": 1, "1581": 1, "1582": 1, "16": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 14, 15, 29], "160": 11, "16010203": 6, "162": [0, 2], "1640": 4, "1665": 8, "167": 2, "16800": 4, "1684": 8, "17": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 14, 15, 26, 29], "17000": 29, "1710114": 10, "173": 11, "1740217": 10, "175": [2, 11], "1779": 1, "1780": 1, "1781": 1, "1782": 1, "1783": 1, "18": [0, 1, 2, 4, 5, 8, 10, 11, 15, 29], "180": [0, 10, 13, 15], "180049066381200": 29, "1801": 8, "1803": 1, "1804": 1, "1805": 1, "1806": 1, "1807": 1, "1808": 1, "181": 13, "1851": [1, 23], "186": 2, "188": 10, "189": [1, 10, 15], "19": [0, 1, 2, 4, 8, 10, 11, 15, 26, 29], "192": 9, "1920083": 10, "193": 0, "1937": 4, "1938": 4, "1939": 4, "1940": 4, "1941": 4, "1942": 4, "1943": 8, "1944": 8, "1945": [1, 4, 8], "1946": [4, 8], "1947": 4, "1948": 4, "1949": 4, "1950": 4, "1951": [2, 4], "1952": [2, 4], "1953": 4, "1954": 4, "1955": 2, "1956": 4, "1957": 4, "1958": 4, "1959": 4, "196": 10, "1960": 4, "1961": [4, 8], "1962": 4, "1963": 4, "1964": 4, "1965": 4, "1966": 4, "1967": [4, 10], "1968": 10, "1970": 13, "1971": 7, "1972": [4, 10], "1978": 4, "1979": 4, "1980": [1, 15, 23], "1981": 4, "1982": 4, "1983": [4, 10], "1984": [4, 10], "1985": [4, 10, 11, 15], "1986": 4, "1987": 4, "1988": 10, "1989": [4, 10], "199": 11, "1990": [4, 6, 7, 11, 23], "1991": 4, "1992": 4, "1993": 4, "1995": [4, 11], "1996": 4, "1998": [1, 4], "1999": [1, 4], "2": [0, 1, 2, 3, 4, 5, 6, 7, 13, 15, 23, 24, 25, 26], "20": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15, 16, 26, 29], "2000": [1, 4, 11, 23], "200000": [0, 9], "2001": [1, 4, 8], "2002": [1, 4, 8], "2003": [1, 4, 8], "2004": [1, 8], "2005": [1, 4, 8, 11, 23], "2006": [1, 4, 8, 26], "2007": [1, 4, 10], "2008": [1, 4, 8], "2009": [1, 4, 8, 15, 26], "2010": [1, 4, 10, 11, 15, 22, 23], "2010133": 10, "2011": [1, 4, 15], "2012": [0, 1, 4, 8, 10, 15, 23], "2013": [1, 4, 8, 9, 10, 23], "2014": [0, 1, 2, 4, 8, 9, 10], "2015": [1, 4, 8, 10, 11, 22, 29], "2016": [1, 2, 4, 8, 10], "2017": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 14, 23, 29], "2018": [4, 8, 10, 14, 23], "2019": [2, 8, 14, 26], "2020": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 26], "2021": [0, 4, 7, 8, 9, 26, 29], "2022": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 29], "2023": 8, "2024": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15, 23], "203": 2, "205": 0, "207": 1, "209": 11, "21": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 14, 15], "210": 10, "2125": 8, "2175": 5, "218": 11, "2186": [5, 8], "219": 11, "2197": 5, "21_cd": 14, "22": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15, 29], "2208": 5, "2220": 5, "2258": 8, "227": 11, "2280252": 10, "229": 11, "23": [1, 2, 4, 9, 10, 11], "230": 11, "2336": 1, "2337": 1, "2339": 1, "234": 11, "2340": 1, "2341": 1, "2358": 1, "2359": 1, "2360": 1, "2361": 1, "2362": 1, "2363": 1, "2364": 1, "24": [1, 2, 4, 5, 9, 10, 11], "2465": 10, "2471": 8, "248": 1, "25": [0, 1, 2, 4, 6, 7, 9, 10, 11, 23], "2500209": 10, "25100": 29, "257": 11, "2577": 8, "259": 11, "26": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 29], "260": 11, "261": 11, "262": 11, "2620": 8, "263": 11, "264": 11, "26452": 8, "265540": 1, "267": 4, "27": [0, 1, 2, 4, 8, 10, 11], "270": 11, "271": 0, "277": 1, "278": 1, "279": [1, 11], "28": [0, 1, 2, 4, 7, 8, 10, 11, 29], "280": 11, "281": 10, "283": 11, "2847": 8, "285": 11, "2860068": 10, "288": 4, "2880": 9, "29": [0, 1, 2, 4, 5, 8, 10, 29], "290": 11, "290000095192602": 29, "291": 11, "2929": 8, "294": 1, "295": 1, "296": 1, "299": 11, "2c040851325": 4, "3": [0, 1, 2, 3, 4, 5, 6, 7, 13, 14, 15, 18, 24, 26], "30": [0, 1, 2, 4, 8, 9, 10, 14, 15, 23, 26, 29], "300": [4, 11], "301": 4, "30234": 10, "3026": 8, "304": 11, "3060": 14, "306223": 8, "309": 1, "31": [1, 2, 4, 8, 10, 11, 14, 23, 29], "310": 2, "311": 1, "31100": 4, "3140": 4, "317": 1, "32": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "3200": 4, "321": 1, "32104": 10, "322": 11, "3240067": 10, "326": 1, "3274": 8, "328": 1, "33": [1, 2, 10, 14], "330": [1, 11], "332": 1, "3330": 4, "3330046": 10, "336": 11, "337": 2, "3380": 4, "3395": 8, "34": [1, 2, 5, 11, 15, 16], "34220": 10, "34247": 10, "345": 10, "35": [1, 2, 4, 10], "3510": 4, "352": 4, "3560065": 10, "3582": 8, "36": [1, 10, 11, 13], "362": 11, "364": 0, "3640": 4, "365": [0, 8], "366": 8, "37": 4, "375000": 1, "375907091432201": 1, "37600": 29, "3764": 8, "379": 2, "38": [1, 10, 26], "3800": 4, "381": 11, "386": 4, "39": [0, 1, 2, 8, 9, 10, 11, 13, 15], "3940": 4, "3966": 8, "4": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 14, 15, 29], "40": [1, 2, 10, 13], "4000": 4, "400000": 9, "4000000": 13, "400603": 14, "4060": 4, "408": 11, "409": [4, 5], "41": [0, 1, 2, 4, 11], "410": 5, "4100": 4, "411": 5, "412": 5, "413": 5, "4130": 4, "414": 5, "42": [1, 2, 4, 11, 14, 25], "421": 11, "425957088141001": 1, "429": 4, "43": [2, 4, 10, 11, 24, 29], "430": [4, 11], "4326": 24, "434": 11, "4340": 4, "434400121275801": [1, 15, 23], "436": 4, "44": [4, 11, 13, 26], "440": 11, "442": 11, "4433": 10, "445": 1, "446": 1, "447": 1, "448": 1, "44934a": 10, "45": [0, 1, 2, 4, 9, 10, 11, 14, 29], "454": 11, "45749a": 10, "4590": 4, "46": [1, 2, 5, 11, 26], "464": 11, "465": 11, "466": 11, "467": 11, "468": 11, "469": 11, "47": [1, 4, 10, 29], "47133a": 10, "473": 11, "4730": 4, "475": 2, "4750": 4, "47591a": 10, "476": 2, "477": 2, "478": [2, 9], "479": [2, 11], "48": 11, "480": [2, 9], "481": 9, "4840": 4, "486": 4, "488": 11, "49": [1, 9, 11], "4900": 4, "495000": 1, "4960": 4, "499": [1, 11], "5": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 23, 26, 29], "50": [0, 1, 2, 4, 9, 10, 14, 15], "500": 1, "500000": 9, "501": 1, "502": 1, "503": 1, "506": 2, "51": [9, 10], "52": [1, 4], "520": 11, "5210": 4, "524": [4, 24], "53": [0, 1, 2, 4, 9], "54": [0, 1, 2, 4, 9, 11, 29], "546": 4, "549": 15, "55": [1, 2, 4, 9, 10, 15], "550": 11, "5500000": 13, "5520": 4, "5549": 18, "5550": 4, "56": [0, 2, 4, 9, 11], "56190": 18, "567": 9, "57": [1, 2, 9], "5750": 4, "5780": 4, "5790": 4, "58": [1, 4, 9, 11, 29], "589": 8, "59": [1, 2, 4, 9, 10, 11], "590": 4, "596": [4, 11], "59z": 9, "6": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 18], "60": [2, 4, 10, 11], "600": 11, "604": 4, "605": 8, "61": [5, 14], "610": 8, "6140": 4, "615": 11, "616": 8, "62": [1, 10, 11], "621": 8, "624": 8, "626": 8, "628": 8, "629": [8, 11], "63": [1, 10], "630000": 1, "630243": 9, "631": 8, "63680_hach": 14, "63680_hach_cd": 14, "63680_ysi": 14, "64": [2, 4, 10], "640": 4, "65": [2, 4], "652": 2, "66": [4, 29], "660": 11, "6610": 4, "67": [2, 4], "671": 1, "672": 1, "673": 1, "674": 1, "675": 1, "68": 2, "681": 4, "688": 8, "69": 1, "6900": 4, "690605": 1, "6960": 4, "6990": 4, "7": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 23], "70": [1, 11], "708": 8, "709": [2, 8], "71": [1, 11], "710": [8, 11], "711": 8, "712": 8, "713": 8, "715": 4, "71851": 15, "72": [1, 5], "7220": 4, "726": [4, 11], "73": [1, 4, 5, 11], "730": 11, "731": 11, "732": 11, "733": 11, "734": 11, "735": 11, "738": 11, "74": [4, 5, 24], "749": 11, "75": [0, 1, 2, 4, 5, 9], "750": 11, "751": 4, "76": [2, 4, 5, 9], "77": [4, 11], "78": [1, 2, 11], "781": 4, "784": 8, "7860": 4, "79": 11, "790": 11, "795": 8, "795616": 0, "799": 2, "8": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15, 18, 23, 26], "80": [2, 4], "800": 4, "800000": 0, "801": 11, "81": [4, 5], "813": 11, "82": [2, 5, 11], "820": [4, 11], "8200": 4, "8280": 4, "829": 4, "83": [2, 5, 10, 29], "830": 11, "835": 11, "8360": 4, "84": [0, 2, 4, 5, 11], "85": [0, 1, 5, 11], "850": 11, "86": 11, "860": 11, "8601": [6, 7, 23, 25], "867": 11, "87": [2, 4, 5, 11], "873550": 14, "88": [0, 2, 26], "883": 4, "885": 11, "89": [1, 4, 10, 15], "9": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 26], "90": [0, 2, 4, 13], "900": 4, "900000": [0, 1], "908": 11, "91": [0, 2, 4, 5, 8, 11, 13], "9190": 4, "92": [0, 1, 4, 8, 10, 11, 26], "920": 11, "928": 11, "929": 11, "93": [0, 1, 2, 8], "938": 2, "939": [2, 24], "94": [1, 2, 8], "940": 2, "941": 2, "942": 2, "943": 2, "95": [0, 1, 2, 4, 8, 11], "958": 4, "96": [0, 2, 4, 8, 9], "961": 4, "964": 4, "97": 2, "971": 11, "972": [1, 11], "973": 1, "974": 1, "975": 1, "98": 4, "985": 11, "99": [4, 11], "99133": 14, "99133_cd": 14, "997": 11, "A": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 18, 23, 24, 25, 26, 29], "But": 13, "By": [9, 16], "For": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 18, 20, 22, 23, 29], "IT": 11, "If": [0, 1, 2, 4, 5, 9, 10, 15, 18, 23, 25, 26], "In": [1, 13, 18, 19, 29], "NEAR": [0, 9, 14], "No": 13, "Not": [5, 24, 26], "One": 26, "Or": 15, "The": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 18, 19, 22, 23, 24, 25], "Then": 19, "There": [0, 18], "These": 29, "To": [13, 15, 19, 29], "__call__": 1, "__init__": [1, 23, 24, 25, 26], "__repr__": 25, "__str__": 25, "__weakref__": [24, 25], "_add_tabl": 1, "_alter_kwarg": 26, "_append_legend_handles_label": 1, "_ax": 1, "_axesbas": 1, "_base": 1, "_child": 1, "_children": 1, "_compute_plot_data": 1, "_convert_1d": 1, "_core": 1, "_get_lin": 1, "_get_stacked_valu": 1, "_initialize_stack": 1, "_invalidi": 1, "_invalidx": 1, "_is_ts_plot": 1, "_lib": 1, "_make_error_func": 1, "_make_legend": 1, "_make_plot": 1, "_mark_right_label": 1, "_matplotlib": 1, "_path": 1, "_plot": 1, "_read_json": 23, "_read_rdb": 23, "_request_autoscale_view": 1, "_to_unmasked_float_arrai": 1, "_update_line_limit": 1, "_update_stack": 1, "_warn_v3_profiles_outag": 26, "_xorig": 1, "abbrevi": [5, 11, 22, 23], "about": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 17, 18, 20, 23, 26, 28], "abov": [0, 1, 9, 13, 29], "accept": [23, 26], "access": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10], "access_cd": 16, "acr": 11, "across": 22, "action": 18, "activ": [0, 5, 6, 7, 23, 26], "ad": 9, "adam": 11, "adapt": 18, "add": [13, 18, 19, 22], "add_lin": 1, "addit": [3, 5, 6, 7, 11, 13, 15, 16, 17, 23, 28], "address": 27, "advanc": [13, 26], "aea": 13, "afp": 2, "after": [6, 7, 13, 23], "ag_dt": [4, 29], "ag_gage_ht": [4, 29], "ag_gage_ht_cd": [4, 29], "ag_tm": [4, 29], "agenc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 20, 23, 26], "agency_cd": [1, 2, 4, 8, 10, 14, 16, 29], "aggreg": [6, 7, 8, 23], "agre": 3, "agt": 2, "airmon": 22, "ajd": 2, "ak": 23, "alaska": 23, "all": [2, 5, 6, 7, 13, 15, 18, 22, 23, 24, 26], "allegheni": 15, "allen": 11, "allow": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 19, 23], "allowzip64": 22, "along": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13], "alreadi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "also": [1, 13, 19, 29], "alt_acy_va": 16, "alt_datum_cd": 16, "alt_meth_cd": 16, "alt_va": 16, "altern": [13, 17], "alwai": [1, 18], "america": 29, "amnet": 22, "amon": 22, "amp": [0, 1, 2, 4, 5, 8, 9, 10], "an": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 15, 16, 18, 19, 20, 23, 25, 26], "analysi": 12, "analyz": 10, "ani": [6, 7, 13, 15, 18, 23, 26], "anl_dt": 10, "anl_ent_cd": 10, "anl_set_no": 10, "annual": [15, 23], "anyth": 18, "apach": 23, "api": [17, 23, 24, 25, 26], "append": 13, "appli": 13, "applic": 13, "appreci": 18, "appropri": 18, "april": 10, "aqfr_cd": [10, 14, 16], "aqfr_type_cd": [14, 16], "ar": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 19, 22, 23, 24, 26, 29], "arang": 13, "area": [11, 24], "aren": 18, "arg": 1, "argument": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 23, 26], "argumentsn": [6, 7], "arizona": 23, "around": 18, "arr": 18, "arrai": 1, "articl": [10, 15, 18, 23], "artist": 1, "asarrai": 1, "aspect": 28, "assembl": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10], "assign": 29, "associ": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "assum": 25, "astimezon": 1, "atmospher": 22, "attach": 15, "attempt": [18, 29], "attr": 15, "attribut": [6, 7, 15, 23], "avail": [0, 5, 6, 8, 11, 12, 15, 23, 26, 29], "avast": 18, "awar": 26, "ax": [0, 1, 8, 9], "axi": 1, "b": 10, "backward": 18, "base": [5, 6, 7, 15, 23, 24, 25], "basemap": 13, "basemetadata": [23, 25, 26], "basi": 13, "basic": [6, 7, 12, 14, 18, 23], "basin": 16, "basin_cd": 16, "bbox": [6, 7, 23, 26], "becaus": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 20, 23, 29], "been": [7, 12, 13], "befor": [13, 18], "begin": [0, 1, 2, 4, 6, 7, 10, 13, 15, 23], "begin_d": [1, 2, 4, 10, 16, 23], "begin_yr": 8, "behind": 29, "being": [24, 26], "below": [1, 12, 13, 16, 27], "best": 18, "between": [0, 1, 2, 4, 6, 7, 23, 25, 26], "bgal": 23, "blob": 18, "block": 19, "blog": 18, "blue": 13, "body_part_id": 10, "bool": [18, 23, 24, 25, 26], "boolean": [6, 7, 10, 24], "both": [0, 18, 19, 23], "bottl": 10, "bound": 26, "boundari": 13, "box": 26, "branch": 19, "break": 18, "brief_list": 10, "browser": 19, "bsr": 2, "bt": 10, "btc": 10, "btr": 2, "build": 19, "built": 29, "burden": 13, "c": [15, 19, 26, 29], "calendar": [6, 7, 23], "call": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 23, 24, 25], "came": 20, "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 18, 19, 23, 24, 26, 29], "canada": 22, "cannot": [6, 7, 23], "capabl": 23, "capit": 22, "case": [22, 26, 29], "caseinsensitivedict": [23, 25, 26], "casrn": 3, "catalog": 7, "categor": 13, "categori": [5, 23], "caus": 1, "cd": 19, "cdt": 2, "cell": [1, 6, 7, 13], "cell_typ": [6, 7], "certain": [6, 7, 23], "certif": [23, 25, 26], "certifi": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "cf": [0, 8, 9], "chang": [1, 5, 6, 7, 15, 18, 19, 23], "channel": 19, "charact": 24, "characterist": 26, "characteristicnam": [15, 26], "charset": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "check": [18, 19, 23, 25, 26], "chemistri": 22, "chlorid": 15, "choos": 29, "chop_tank_info": 15, "choptank": 15, "choptankinfo": 15, "cl": 1, "class": [18, 22, 23, 24, 25, 26], "classmethod": 24, "clear": 2, "clone": 19, "cm": 13, "coastlin": 13, "code": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 19, 23, 24, 26], "codemirror_mod": [6, 7], "coll_ent_cd": 10, "collaps": [6, 7], "collect": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 23, 26], "colon": [6, 7, 23, 26], "color": 13, "column": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 14, 16, 23, 25, 29], "column_num": 1, "com": [18, 19], "combin": [13, 18], "comma": [1, 5, 6, 7, 11, 23, 24, 25], "command": 19, "comment": [12, 13, 15, 23, 26], "compat": [15, 18], "compress": [22, 26], "compresslevel": 22, "comptool": [10, 15, 23], "comput": 24, "conc": 22, "concaten": 26, "concentr": 22, "conduct": 15, "conf": 18, "configur": 24, "consid": [1, 10, 15], "consist": 13, "constitu": 22, "construct": 26, "construction_dt": 16, "consumpt": 11, "contain": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 20, 22, 23, 24, 25, 29], "content": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 24], "contigu": [6, 7, 13, 23], "contin": 8, "continu": [15, 18], "contrib_drain_area_va": 16, "contribut": 17, "control": 24, "control_type_cd": 2, "convers": 29, "conversionerror": 1, "convert": [1, 13, 23, 25, 29], "convert_unit": 1, "convert_xunit": 1, "convey": 11, "cookiecutt": 18, "coord_acy_cd": 16, "coord_datum_cd": 16, "coord_meth_cd": 16, "core": [1, 25], "cornflowerblu": 13, "corr": [5, 23], "correct": 5, "correspond": 27, "corrindep": 5, "could": [13, 18], "count": [0, 1, 9, 18], "count_nu": [8, 16], "counti": [5, 6, 7, 11, 15, 23, 26], "country_cd": 16, "county_cd": [11, 16], "county_nm": 11, "county_queri": [6, 7, 23], "countycd": [6, 7, 15, 23], "countycod": [15, 26], "cover": 13, "cr": 24, "creat": [6, 10, 13, 15, 23, 24, 25, 29], "criteria": 25, "cross": 10, "csv": [13, 26], "cubic": 5, "current": [5, 13, 18, 19, 22, 23, 26], "curv": 5, "custom": [23, 24, 25, 26], "d": [1, 8, 11, 13, 26], "dai": [1, 13, 23], "daili": [0, 1, 6, 7, 9, 15, 23], "dailydataavail": 15, "dailymultisit": 0, "dailyqandt": 0, "dailystreamflow": 0, "dakota": 26, "dam": [0, 9], "danvil": 14, "dash": 13, "data": [0, 1, 2, 3, 4, 5, 6, 7, 12, 13, 15, 16, 17, 18, 22, 23, 25, 26, 28, 29], "data2": 1, "data3": [1, 4], "data4": [1, 4], "data_path": 22, "data_retriev": 13, "data_type_cd": 16, "datafram": [0, 13, 15, 16, 23, 25, 26, 29], "datalim": 1, "dataph": 15, "dataretriev": [6, 7, 13, 14, 15, 16, 17, 18, 19, 21, 27, 28, 29], "dataset": 13, "date": [0, 1, 2, 4, 6, 7, 13, 15, 16, 23, 25, 26], "date2num": 1, "date_field": 25, "date_format": 10, "datetim": [0, 1, 4, 9, 10, 13, 14, 23, 25, 28], "datetime64": 1, "datetime_index": [1, 10, 15, 23], "datetimeconvert": 1, "datetimeindex": 1, "datetm": [23, 25, 26], "dateutil": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "day_nu": 8, "daylight": 29, "dd": [10, 23, 26, 29], "dec_coord_datum_cd": 16, "dec_lat_va": [13, 16], "dec_long_va": [13, 16], "decim": [6, 7, 23, 26], "decreas": 13, "def": [1, 13, 18], "default": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15, 16, 22, 23, 24, 25, 26, 29], "defin": [0, 1, 2, 4, 5, 6, 7, 8, 9, 13, 19, 23, 24, 25], "degre": [6, 7, 23, 26], "delimit": [1, 5, 11, 23, 25, 26], "deliv": 23, "demo": 12, "demonstr": [13, 18], "dep": [5, 22], "depart": 20, "depend": [6, 7, 19, 29], "deposit": 27, "deprec": 18, "depth_src_cd": [14, 16], "deriv": [23, 26], "describ": [0, 1, 9], "descript": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 18, 23], "desir": [24, 26], "detail": [6, 7, 16, 17, 18, 23, 29], "detect": 26, "determin": 24, "dev": 19, "dev1": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "develop": 18, "df": [13, 14, 16, 23, 25, 26, 29], "df2": 14, "df3": 14, "df_out": 13, "dflong": 15, "dfwide": 15, "dgb": 2, "dict": [23, 25], "dictionari": [23, 26], "differ": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 23], "digit": [5, 6, 7, 18, 23, 26], "direct": 1, "directli": [8, 17], "directori": [19, 22], "discharg": [0, 2, 4, 9, 13, 15, 23], "discharge2": 9, "discharge_cd": 2, "discharge_multisit": 9, "discharge_stat": 15, "discharge_todai": 9, "discharge_utc": 9, "discharge_va": 2, "dischargeunit": 15, "dischargewi": 15, "disclaim": 17, "discontinu": 14, "discret": [15, 23], "displai": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16], "display_nam": [6, 7], "dissolv": 15, "dist": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "distanc": 26, "district_cd": 16, "dlo": 2, "do": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 18, 23, 25, 29], "doc": [6, 7, 18, 19, 23, 26], "docexpans": 26, "docstr": [18, 22], "doctest": 18, "document": [16, 17, 19, 23, 24, 26], "doe": [1, 26], "doesn": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "doi": [10, 15, 18, 19, 23], "domain": 20, "domest": 23, "done": [18, 19], "doubl": 18, "download": [12, 13, 14, 16, 18, 22, 23, 24, 26], "download_workspac": 24, "downstream": 24, "dqi_cd": 10, "drain_area_va": 16, "drainareamin": 15, "draw": 1, "drawcoastlin": 13, "drawcountri": 13, "drawmeridian": 13, "drawparallel": 13, "drawriv": 13, "drawstat": 13, "drop": 13, "dropna": 13, "dt": 1, "dtype": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 16], "due": 29, "durat": 23, "dure": [6, 7, 11, 23, 26, 29], "dv": [0, 7, 15, 23], "e": [1, 3, 10, 12, 19, 23, 25], "each": [6, 7, 10, 11, 13, 23, 29], "earliest": 26, "easi": 13, "easier": 18, "east": [6, 7, 23], "echo": 15, "edit": 19, "edt": 2, "edu": [22, 27], "ehqm": 2, "eight": 26, "either": [12, 22, 24, 29], "elaps": [23, 25, 26], "els": [1, 13], "email": [10, 15, 23], "embed": 12, "emphas": 18, "empti": [0, 13], "enc": 2, "end": [0, 1, 2, 4, 6, 7, 11, 14, 15, 23, 29], "end_dat": [1, 2, 4, 10, 16, 23], "end_yr": 8, "enddat": [0, 1, 9, 10, 15], "enddt": [0, 6, 7, 8, 9, 23], "endpoint": [10, 15, 23], "english": 18, "enhanc": 18, "entir": 13, "entri": [25, 29], "environ": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 19], "environment": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "epa": 17, "epa_equival": 3, "equival": 12, "error": [13, 25], "errorbar": 1, "errorcheck": 22, "espsg": 24, "esri": 24, "est": 2, "etc": [23, 26], "eval": 15, "evalu": 9, "even": 18, "eventu": 23, "everi": 11, "exact": 23, "examin": 1, "exampl": [6, 7, 16, 17, 18, 22, 23, 25, 26], "examplesn": [6, 7], "exce": [6, 7, 23], "excel": 2, "except": [1, 25, 29], "execut": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 12], "execution_count": [6, 7], "exist": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 23, 29], "expand": [6, 7, 10, 16, 23], "expect": [23, 29], "explain": 18, "explor": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "expos": 22, "express": [18, 26], "exsa": [5, 23], "extend": 22, "extract": [22, 24], "f": 1, "f6x7h": 10, "facad": 13, "facil": 11, "fail": 1, "fair": 2, "fall": 7, "fals": [1, 6, 7, 10, 13, 15, 16, 18, 23, 24, 25, 26], "featur": [19, 24], "feet": [1, 5], "fetch": [16, 19], "few": 13, "field": [3, 13, 18, 25], "fig": [1, 13], "figsiz": 13, "figur": [1, 13], "file": [1, 10, 12, 18, 19, 20, 22, 24], "file_extens": [6, 7], "file_typ": [5, 15, 23], "filenam": 22, "filter": 23, "final": 13, "final_df": 13, "find": 1, "finish": 22, "fip": [6, 7, 23, 26], "first": [6, 7, 14, 16, 18, 19, 22, 23, 29], "five": 26, "fix": [5, 23], "flag": 24, "flexibl": 22, "float": 24, "float64": [0, 1, 2, 4, 5, 8, 9, 10], "flow": [5, 8, 24], "fmt": [6, 7, 23], "follow": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 19, 23], "foo": 18, "forg": 19, "fork": 19, "format": [0, 1, 2, 4, 6, 7, 8, 9, 15, 18, 23, 24, 25, 26, 29], "format_datetim": 25, "format_respons": 23, "formatstrformatt": 8, "forn": 6, "found": [1, 10, 15, 26], "frame": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 23, 25], "freq": 1, "fresh": 11, "from": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27], "from_streamstats_json": 24, "full": [0, 11, 13, 19, 23], "func": 1, "function": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 22, 23, 24, 25, 26, 27, 29], "functool": 1, "further": 24, "futur": 18, "g": [12, 23, 25], "gage": 5, "gage_height_va": 2, "gage_ht": [4, 29], "gage_ht_cd": [4, 29], "gage_va_chang": 2, "gage_va_tim": 2, "gc434b13": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "gcc": 10, "gdal": 22, "gener": [1, 11, 13, 23, 25, 26], "geodatabas": 24, "geojson": [24, 26], "geolog": [0, 1, 2, 4, 5, 6, 8, 9, 10, 20], "geospati": 13, "get": [0, 1, 2, 3, 4, 5, 6, 7, 11, 13, 14, 19, 22, 23, 24, 25, 26], "get_annual_mdn_map": 22, "get_annual_ntn_map": 22, "get_clip_path": 1, "get_discharge_measur": [12, 15, 23], "get_discharge_peak": [12, 15, 23], "get_dv": [4, 12, 15, 23], "get_gwlevel": [12, 15, 23], "get_info": [6, 15, 23], "get_iv": [12, 15, 23], "get_label": 1, "get_level_valu": 13, "get_path": 1, "get_pmcod": [12, 15, 23], "get_qwdata": [12, 15, 23], "get_rat": [12, 15, 23], "get_record": [13, 14, 15, 16, 23, 29], "get_result": [15, 26], "get_sample_watersh": 24, "get_stat": [12, 15, 23], "get_water_us": [12, 15, 23], "get_watersh": 24, "get_zip": 22, "getattr": 1, "getsit": 15, "gh28021": 1, "gigawatt": 11, "git": 19, "github": [10, 15, 16, 18, 19, 23], "given": [1, 18, 26], "glri": 10, "go": 1, "good": 2, "googl": [6, 7, 23], "got": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "gov": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 23, 24, 27], "gr11nq00e": 10, "gr12nk00e": 10, "gr13nk00e": 10, "gr14nk00f": 10, "gr15nk00f": 10, "gradient": 22, "greater": 10, "greatli": 18, "greensboro": 15, "grid": 22, "groundwat": [1, 11, 15, 23], "group": [3, 13, 18], "groupbi": 13, "gt": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13], "guid": 17, "gw": [1, 29], "gw_file_cd": 16, "gwlevel": [1, 23, 29], "ha": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 23, 29], "habitat": 26, "handl": [22, 23, 25], "hard": 26, "have": [1, 5, 6, 7, 12, 15, 23, 29], "hawaii": 23, "head": [13, 14], "header": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 15, 23, 25, 26], "height": [5, 13], "help": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 18, 23], "here": 29, "hg": 22, "hh": 29, "hi": 23, "histor": 13, "hole_depth_va": [14, 16], "home": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15], "hour": [11, 29], "how": [12, 13, 18], "howev": [13, 16, 18, 24], "html": [6, 7, 10, 15, 19, 23, 26], "http": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 18, 19, 22, 23, 24, 26, 27], "huc": [6, 7, 16, 23, 26], "huc_cd": 16, "huc_list": 6, "hyd_cond_cd": 10, "hyd_event_cd": 10, "hydroelectr": 11, "hydrolog": [6, 7, 23, 26], "hydrologi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "hyphen": 26, "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29], "id": [5, 11, 23, 24], "identif": 26, "identifi": [0, 1, 4, 6, 8, 9, 10, 13, 24], "idna": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "il": [13, 14], "illinoi": 26, "illioi": 13, "illustr": 16, "iloc": 13, "implement": [24, 26], "import": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 23, 29], "includ": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 15, 18, 22, 23, 24, 26], "includefeatur": 24, "includeflowtyp": 24, "includeparamet": 24, "incomplet": [1, 10, 15, 29], "increas": 13, "indep": 5, "index": [0, 1, 9, 10, 13, 16, 19, 23, 26, 29], "indic": [5, 6, 7, 9, 18, 23], "info": [14, 22], "inform": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 20, 22, 23, 24, 25, 26, 27, 28], "informationn": 6, "init": 24, "initi": 29, "input": 9, "insignific": 13, "instal": [6, 7, 13, 17], "instantan": [9, 14, 23], "instead": [13, 16], "instream": 11, "instruments_cd": 16, "int": 18, "int64": [1, 4, 8, 10, 11], "integ": [24, 29], "integr": 18, "intercept": 13, "interest": [11, 12], "interfac": [13, 18], "interior": 20, "intern": 18, "interpol": 18, "interpret": [6, 7], "introduct": 12, "inventori": 7, "inventory_dt": 16, "inventory_output": 10, "io": [10, 15, 23], "ipykernel": [6, 7], "ipynb": 12, "ipython": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "ipython3": [6, 7], "irrig": 11, "is_errorbar": 1, "is_pir": 18, "island": 26, "isn": 13, "iso": [6, 7, 23, 25], "issu": [16, 18], "its": 18, "iv": [9, 14, 23], "j": 10, "jmd": 2, "json": [0, 9, 23, 24], "jupyt": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "just": [1, 15], "k": [10, 11, 13], "kansa": 11, "keep": 18, "kernelspec": [6, 7], "keyword": [16, 23, 26], "kind": [1, 6, 7, 23], "kwarg": [1, 23, 26], "kwd": 1, "l": [10, 13, 23], "lab_std_va": 10, "label": [1, 13], "label_kw": 1, "label_nam": 1, "land": 1, "land_net_d": 16, "languag": [6, 7, 18], "language_info": [6, 7], "larg": 13, "larger": 12, "last": [1, 6, 7, 13, 23, 26], "lat": [13, 26], "lat_0": 13, "lat_1": 13, "lat_2": 13, "lat_va": [14, 16], "later": 13, "latest": [19, 23], "latitud": [6, 7, 13, 23, 26], "latlon": 13, "least": [13, 24], "left_ax": 1, "left_on": 13, "legaci": 15, "len": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "length": 11, "let": 13, "letter": [5, 11, 13, 22, 23], "lev_acy_cd": [1, 29], "lev_age_cd": [1, 29], "lev_agency_cd": 1, "lev_dt": [1, 29], "lev_dt_acy_cd": [1, 29], "lev_meth_cd": [1, 29], "lev_src_cd": [1, 29], "lev_status_cd": 1, "lev_tm": [1, 29], "lev_tz_cd": [1, 29], "lev_va": 1, "level": [1, 23], "li": 11, "lib": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15], "librari": 15, "licens": 17, "light": 18, "light_messag": 18, "lights_messag": 18, "like": [6, 7, 8, 18, 19, 23, 25, 26], "limit": [1, 6, 8, 26], "line": [1, 13], "line2d": 1, "lineplot": 1, "linestyl": 13, "linewidth": 13, "link": 19, "linregress": 13, "list": [0, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 18, 19, 23, 24, 25, 27], "listcomp": 1, "listlik": [5, 11, 25], "liter": 18, "littl": 13, "livestock": [11, 23], "ll": 13, "load": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13], "loc_web_d": [8, 16], "local": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15, 18, 19, 23, 29], "local_time_fg": 16, "locat": [13, 18, 24, 27], "logan": [0, 9], "lon": 13, "lon_0": 13, "long": [22, 26], "long_va": [14, 16], "longer": [10, 15, 18], "longitud": [6, 7, 23, 26], "longtitud": 13, "look": [8, 18, 22], "lookup": [5, 11, 23], "loss": 11, "lower": 22, "lt": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "m": [1, 10, 13, 29], "machin": 13, "mai": [6, 7, 10, 23], "main": [18, 19], "maintain": 18, "major": [6, 7, 16, 23], "make": [0, 1, 8, 9, 18, 19, 24], "manipul": 26, "map": [6, 7, 13, 22, 23], "map_nm": 16, "map_scale_fc": 16, "march": [10, 15, 23], "markdown": [6, 7], "mass": 18, "match": 23, "materi": 20, "matplotlib": [1, 8, 13], "matter": 13, "max": [0, 1, 8, 9, 23], "maximum": [0, 15], "md": [15, 18, 20, 23, 25, 26], "mdate": 1, "mdn": [6, 7, 22], "mdt": 2, "mean": [0, 1, 6, 7, 9, 13, 15, 18, 23], "mean_va": 8, "measur": [2, 13, 22, 23, 26], "measured_rating_diff": 2, "measurement_dt": 2, "measurement_nu": 2, "measurement_typ": 22, "measurements1": 2, "measurements2": 2, "measurements3": 2, "median": 23, "medium_cd": 10, "medium_grp_cd": 16, "meet": 18, "memori": 22, "mercuri": 27, "merg": 13, "meridian": 13, "messag": [18, 26], "metadata": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 23, 25, 26], "method": [15, 24], "metric": 26, "mgal": 11, "microirrig": 11, "might": 18, "mile": 26, "mimetyp": [6, 7, 26], "min": [0, 1, 8, 9, 13, 23], "minor": [6, 7, 23], "minut": [6, 7, 13, 23], "mjf": 2, "mm": [10, 23, 26, 29], "mn": 10, "mo005": 1, "mode": 22, "model": 23, "modifiedsinc": [6, 7, 23], "modul": [13, 22, 23, 24, 25, 26], "modulenotfounderror": 13, "monitor": [0, 1, 2, 4, 5, 6, 8], "month": 1, "month_nu": 8, "monthli": [8, 23], "more": [3, 6, 7, 10, 13, 15, 18, 20, 22, 23, 24, 26, 29], "most": [1, 13, 23, 24, 29], "mpl_toolkit": 13, "mplplot": 1, "mst": 2, "multi": [13, 23, 29], "multi_index": 23, "multipl": [0, 1, 2, 6, 8, 13, 18, 23, 29], "mung": 25, "munit": 1, "must": [6, 7, 11, 18, 22, 23], "n": [1, 6, 7, 10], "nadp": [21, 27], "nadp_zipfil": 22, "naiv": 1, "name": [1, 6, 7, 11, 13, 16, 18, 22, 23, 25, 26], "nameerror": 13, "nan": [0, 1, 2, 3, 4, 5, 8, 10, 14, 29], "narrow": 18, "nat": [1, 10], "nat_aqfr_cd": 16, "nation": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 23, 27], "nattyp": 1, "natur": 18, "navig": 12, "nbconvert_export": [6, 7], "nbformat": [6, 7], "nbformat_minor": [6, 7], "ndap": 22, "necessari": 19, "need": [0, 1, 8, 9, 13, 18], "network": 27, "new": [15, 18, 23, 29], "new_york": 29, "newlin": 1, "next": 13, "nitrat": 15, "nitrit": 26, "nml": 2, "none": [1, 2, 13, 18, 22, 23, 25, 26], "normal": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13, 29], "north": [6, 7, 23, 26], "nositeserror": 25, "notact": 0, "note": [0, 5, 6, 7, 8, 9, 13, 15, 20, 22, 23, 29], "notebook": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13], "notic": 13, "now": [6, 7, 13, 23, 29], "np": [1, 13], "ntn": 22, "null": [6, 7, 15], "num": 13, "number": [1, 5, 6, 7, 11, 13, 23, 26, 27, 29], "number_of_light": 18, "numer": [6, 7, 10, 23, 26], "numpi": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13, 18], "nwi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 18, 21, 26, 27, 29], "nwis_metadata": [23, 26], "nwisn": [6, 7], "nwisweb": [5, 23], "ny": 24, "o": 1, "object": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 23, 24, 25, 26, 29], "observ": [0, 3, 8, 9, 10], "obtain": [15, 17], "offici": 18, "offset": 29, "offstream": 11, "oh": [7, 11, 23], "ohio": [7, 11, 23], "onc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "one": [0, 6, 7, 11, 13, 23], "onesit": 7, "onli": [1, 6, 7, 8, 11, 13, 15, 23, 26], "onlin": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "open": [18, 19, 22], "oper": 18, "option": [6, 7, 16, 23, 24, 25, 26], "order": 19, "ordinari": 13, "org": 18, "organ": [11, 26], "orient": [6, 7, 23], "origin": 20, "other": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 23, 26], "otherwis": [18, 20], "our": 13, "out": [1, 12, 13, 15], "outlin": 15, "output": [6, 7, 16, 23, 26], "outputdatatypecd": [6, 7, 23], "outputn": 7, "outputs_hidden": [6, 7], "over": [18, 23], "overal": 24, "overlap": 0, "overwrit": [0, 1, 2, 4, 5, 9, 10, 23], "own": [12, 18, 19], "p": [9, 13, 29], "p00003": 10, "p00004": 10, "p00009": 10, "p00010": 10, "p00020": 10, "p00028": 10, "p00060": 10, "p00061": 10, "p00065": 10, "p00095": 10, "p00191": 10, "p00400": 10, "p00405": 10, "p00410": 10, "p00440": 10, "p00445": 10, "p00618": 10, "p00660": 10, "p00900": 10, "p00902": 10, "p00915": 10, "p00925": 10, "p00931": 10, "p00932": 10, "p00933": 10, "p00940": 10, "p00945": 10, "p00955": 10, "p10w": [6, 7, 23], "p1d": 23, "p1y": 23, "p30207": 10, "p30208": 10, "p30209": 10, "p30234": 10, "p32104": 10, "p34220": 10, "p34247": 10, "p50280": 10, "p50_va": 8, "p70300": 10, "p70301": 10, "p70302": 10, "p70303": 10, "p71851": 10, "p71999": 10, "p80154": 14, "p81903": 10, "p82398": [10, 14], "p84164": [10, 14], "p91157": 14, "p91158": 14, "p91159": 14, "p99111": 10, "p_valu": 13, "pa": [11, 15], "packag": [6, 7, 15, 17, 19, 23], "packagen": [6, 7], "pair": 5, "panda": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 23, 25, 26, 29], "pandas_convert": 1, "parallel": 13, "param1": 18, "param2": 18, "paramet": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 15, 16, 18, 22, 23, 24, 25, 26], "parameter_cd": [3, 8], "parameter_cod": [3, 10], "parametercd": [0, 3, 6, 7, 8, 9, 10, 15, 16, 23], "parametercod": [0, 8, 9], "parameterinfo": 15, "parametersn": [6, 7], "parm_cd": 16, "parm_grp_cd": 16, "parm_nm": 3, "parm_unit": 3, "pars": [11, 23], "part": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 18], "partial": 23, "particular": 23, "party_nm": 2, "pass": [1, 8, 18, 25, 26], "past": [6, 7, 23], "patch": 1, "path": [1, 22], "payload": 25, "pcode": [15, 23, 26], "pcr": 2, "pd": [13, 23, 26], "peak": [4, 23, 29], "peak_cd": [4, 29], "peak_d": 13, "peak_dat": 13, "peak_data": 4, "peak_discharge_trend": 13, "peak_dt": 13, "peak_tm": [4, 29], "peak_trend_analysi": 13, "peak_trend_regress": 13, "peak_va": [4, 13, 29], "peakdata": 15, "pennsylvania": [11, 15], "pep": 18, "pep8": 18, "per": [5, 6, 7, 10, 13, 23], "perform": [6, 7, 23], "period": [0, 1, 2, 4, 6, 7, 8, 9, 11, 16, 23, 26], "pertain": 26, "ph": [3, 15], "phosphoru": [7, 23], "physic": 3, "pip": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "pipelin": 18, "pirat": 18, "place": [18, 19, 25], "platform": 12, "pleas": 18, "plot": [0, 1, 8, 9, 12], "plot_backend": 1, "plot_class": 1, "plot_obj": 1, "plotaccessor": 1, "plotf": 1, "plt": 13, "pm_cd_compar": 10, "pmcode": 23, "point": [5, 6, 7, 23, 24, 26], "poor": 2, "popul": [11, 23], "portal": [17, 18, 26, 28], "possibl": [18, 23], "post": 18, "post0": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "postal": [6, 7, 23], "power": 11, "pr": 29, "precip": 22, "precipit": 22, "precis": [6, 7, 23], "predownload": 13, "prefer": [18, 23], "prefix": [6, 7, 23], "preformat_peaks_respons": 23, "prep_dt": 10, "prep_set_no": 10, "prepar": 12, "present": 23, "prevent": 1, "previou": [15, 18], "print": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 16, 29], "privat": 26, "process": 24, "product": [6, 7, 23], "profil": [15, 26], "program": 22, "project": [12, 13, 18, 20, 26], "project_cd": 10, "project_no": [14, 16], "prompt": 16, "properli": 23, "properti": 23, "propos": [18, 19], "protect": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "provid": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 23, 27, 28], "public": [11, 18, 20], "public_srsnam": 26, "pull": [13, 15, 19, 23], "put": [13, 18], "py": [1, 6, 7, 10, 15, 18], "pycharm": [6, 7], "pygments_lex": [6, 7], "pypi": 19, "pyplot": 13, "pytest": 19, "python": [6, 7, 12, 17, 18, 19], "python3": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15], "pytz": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "pyx": 1, "q_meas_used_fg": 2, "qualiti": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 14, 15, 17, 26, 27], "queri": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 23, 25, 26], "query_tim": [15, 23, 25, 26], "query_waterdata": 23, "query_waterservic": 23, "question": [15, 23], "quick": [0, 1, 8, 9], "quickli": 13, "quot": 18, "qw": [10, 15, 23], "qw_sample_wid": 10, "qwdata": [2, 10, 14, 15, 23], "r": [1, 13, 17, 18, 19, 22, 23, 24], "r_valu": 13, "radial": 26, "rais": [1, 26], "rang": [6, 7, 23], "rate": [5, 15, 23], "rather": [9, 11], "ratingdata": [5, 15], "ratings_data": 15, "ravel": 1, "raw": [15, 18], "rawdailydata": 15, "rcode": 24, "rdb": [1, 2, 4, 8, 10, 23], "rdb_compress": 10, "rdb_inventory_output": 10, "rdb_qw_attribut": 10, "re": 18, "read": [18, 22, 23], "read_csv": 13, "readm": [12, 18], "readnwisdata": 15, "readnwisdv": 15, "readnwisgwl": 15, "readnwismea": 15, "readnwispcod": 15, "readnwispeak": 15, "readnwisqw": 15, "readnwisr": 15, "readnwissit": 15, "readnwisstat": 15, "readnwisus": 15, "readnwisuv": 15, "readwqpdata": 15, "readwqpqw": 15, "realli": 13, "reason": [6, 7, 23], "recach": 1, "recal": 13, "receiv": [10, 15, 24], "recent": [1, 13, 15, 23], "reclaim": 11, "recommend": 19, "record": [6, 7, 11, 13, 16, 22, 23], "red": 13, "refer": [10, 15, 16, 17, 24, 25, 26], "region": [7, 23, 24, 26], "register_pandas_matplotlib_convert": 1, "regress": 12, "regular": 18, "relat": 5, "releas": [11, 18, 19], "reliability_cd": 16, "remain": 15, "remot": [13, 19], "remov": 18, "repeat": 16, "replac": 1, "report": [8, 11], "repositori": [12, 19], "repr": 25, "repres": [10, 22], "represent": 23, "reproduc": 18, "request": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 19, 23, 24, 25, 26, 29], "requir": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13, 19], "reset": 1, "reshap": 15, "resid": 18, "resolut": 13, "resour": 13, "resourc": 27, "respect": 22, "respons": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 15, 23, 24, 25, 26], "restrict": [6, 7, 23], "result": [6, 7, 12, 15, 16, 24, 26, 29], "result_lab_cm_tx": 10, "result_particle_size_basi": 3, "result_sample_fract": 3, "result_statistical_basi": 3, "result_temperature_basi": 3, "result_time_basi": 3, "result_weight_basi": 3, "resultn": [6, 7], "ret": 1, "retir": [10, 15, 23], "retriev": [0, 1, 2, 3, 4, 5, 6, 7, 8, 12, 22, 23, 27], "retriv": 8, "return": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 22, 23, 24, 25, 26, 29], "rev": 10, "rhode": 26, "ri": 23, "rich": [6, 7, 23], "right_index": 13, "river": [0, 9, 13, 14, 15], "row": [0, 1, 2, 5, 8, 9, 10, 11, 13, 14, 23, 29], "rpt_lev_cd": 10, "rpt_lev_va": 10, "rule": 18, "run": [12, 13, 19], "runner": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15], "salin": 11, "same": [1, 16, 23, 26], "samp_type_cd": 10, "sampl": [14, 15, 23, 24], "sample_dt": [10, 14], "sample_end_dt": [10, 14], "sample_end_tm": [10, 14], "sample_lab_cm_txt": 10, "sample_start_time_datum_cd": 10, "sample_tm": [10, 14], "satisfi": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "save": 29, "scalei": 1, "scalex": 1, "scatter": 13, "sch": 10, "sch4433": 10, "scipi": 13, "scope": 18, "search": [7, 18, 23, 26], "second": [5, 6, 7, 10, 18, 23, 29], "see": [0, 1, 3, 6, 7, 17, 20, 22, 23, 24, 26, 29], "select": [6, 7, 23, 25], "self": [1, 11, 25], "semant": 18, "semicolon": 26, "send": [18, 25], "sensit": 26, "sent": 1, "separ": [6, 7, 23, 24, 25, 26], "seri": [0, 1, 7, 8, 9, 13, 23, 25], "seriescatalogoutput": [6, 7, 16, 23], "serv": [11, 22], "servic": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 23, 24, 26, 27, 29], "set": [0, 1, 3, 8, 9, 10, 12, 15, 16, 19, 23, 25, 26, 29], "set_clip_path": 1, "set_label": 1, "set_major_formatt": 8, "set_xlabel": [0, 1, 8, 9], "set_ylabel": [0, 1, 8, 9], "setup": [12, 18, 23], "sever": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 27], "shape": 24, "shapefil": 24, "shift": 5, "should": [1, 8, 18], "show": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 15], "shown": 13, "simpl": 13, "simplifi": 24, "sinc": 13, "singil": 13, "singl": [0, 1, 2, 4, 7, 13, 18, 23, 29], "site": [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 15, 23, 25, 26, 29], "site_df": 13, "site_id": [1, 4, 5, 9, 10], "site_info": [15, 23, 26], "site_no": [0, 1, 2, 4, 5, 8, 9, 10, 13, 14, 16, 23, 26, 29], "site_tp_cd": [1, 6, 7, 14, 16, 23, 29], "site_visit_coll_agency_cd": 2, "siteid": [0, 6, 9, 10, 15, 26], "siteinfo": [6, 15], "siteinfo_huc": 6, "siteinfo_multi": 6, "siteinfo_st": 6, "sitelistpho": 7, "sitenumb": [0, 8, 15], "siteoutput": [6, 7, 23], "sitesn": 6, "sitesnj": 15, "sitetyp": [6, 7, 15, 23], "six": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 23], "size": 1, "sl_datum_cd": 1, "sl_lev_va": 1, "slh": [22, 27], "slightli": 13, "slope": 13, "small": 18, "smaller": 18, "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 18, 26], "solid": 13, "some": [1, 12, 13, 26], "somepath": 22, "someth": 19, "sort": 13, "sound": 18, "sourc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 17, 18, 22, 23, 24, 25, 26], "south": [6, 7, 23], "spatial": 24, "specif": [0, 7, 15, 17, 18, 23, 26], "specifi": [1, 5, 6, 7, 8, 13, 14, 22, 23, 26], "specific_cond": 15, "specificcond": 15, "spin": 13, "spring": [6, 7, 23], "sprinkler": 11, "squar": 13, "srs_id": 16, "srsname": 3, "ss": [10, 29], "ssl": [23, 25, 26], "ssl_check": [23, 25, 26], "st": [6, 7, 14, 23], "stabl": 19, "stack": 13, "stacking_id": 1, "stackoverflow": 18, "stage": 5, "stamp": 9, "stand": 14, "standard": [3, 13, 23, 25, 26], "start": [0, 1, 2, 4, 6, 7, 13, 14, 15, 23, 29], "start_dat": 13, "startdat": [0, 1, 9, 10, 15], "startdatehi": [15, 26], "startdatelo": [15, 26], "startdt": [0, 1, 6, 7, 8, 9, 23], "stat": [8, 13, 23], "stat_cd": 16, "stat_cod": 0, "statcd": [0, 15, 23], "state": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 20, 22, 23, 24, 26], "state_cd": [11, 13, 16], "state_cod": 13, "state_nam": 11, "statecd": [6, 7, 15, 23], "statecod": [15, 26], "staten": 6, "station": [4, 13, 23], "station_nm": [14, 16], "statist": [0, 1, 8, 9, 13, 23, 24], "statreporttyp": [8, 15, 23], "stattypecd": [8, 15, 23], "statu": [10, 15, 23], "statyeartyp": 23, "std": [0, 1, 3, 9, 13], "std_error": 13, "step": [18, 19], "still": 9, "stor": 5, "store": 24, "str": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 18, 23, 25, 26], "stream": [6, 7, 15, 23, 26], "streamflow": [0, 1, 4, 5, 6, 7, 9, 17, 23], "streamgag": 23, "streamlin": 18, "streamstat": [21, 27], "streamstats_json": 24, "streamstatsservic": 24, "streamtyp": 15, "strict_timestamp": 22, "string": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 18, 22, 23, 24, 25, 26], "structur": [23, 25, 26], "studi": 24, "style": 1, "subdirectori": 12, "submitted_form": 10, "submodul": 18, "success": 18, "summari": [0, 1, 9, 11], "suppli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 23, 26], "support": [0, 1, 3, 8, 9, 10, 11, 26], "surfac": [1, 2, 11], "surface_data": 15, "surfacedata": 15, "survei": [0, 1, 2, 4, 5, 6, 8, 9, 10, 20], "swagger": 26, "switch": [6, 7, 16, 23], "symbol": 18, "system": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 18, 23, 27], "t": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 18], "tabl": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 23, 27], "tablen": [6, 7], "tabul": 10, "tag": 18, "take": 13, "team": 18, "temp": 13, "temperatur": [0, 15], "temperatureandflow": 15, "ten": [6, 7, 23], "term": 22, "termin": 19, "test": [0, 18, 19, 22, 23], "text": [0, 1, 6, 7, 8, 9], "than": [9, 10, 11, 23], "thank": 18, "thar": 18, "thei": [6, 7, 8, 9, 18, 23, 26], "them": 26, "therefor": 29, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 19, 20, 22, 23, 24, 26, 29], "thing": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11], "those": [6, 7, 23], "thousand": 11, "through": [13, 18], "ticker": 8, "tif": 22, "tif_nam": 22, "time": [0, 1, 2, 6, 7, 8, 12, 13, 15, 23, 25, 26, 29], "time_field": 25, "timedelta": [23, 25, 26], "timedelta64": 13, "timestamp": [1, 9, 23], "timezon": [23, 25, 29], "tm_datum_rlbty_cd": 10, "to_csv": 13, "to_datetim": [13, 29], "to_str": 25, "todo": 1, "tolist": 13, "took": 15, "tool": [15, 22, 26], "topic": 28, "topo_cd": 16, "total": [3, 11, 22, 23], "tox": 10, "tp": 23, "traceback": [1, 13], "tradit": 5, "transform": [13, 15], "translat": 25, "treatment": 11, "trend": 27, "tri": 23, "tripl": 18, "troubleshoot": 18, "true": [6, 7, 10, 13, 15, 16, 18, 22, 23, 24, 25, 26], "try": 1, "ts_id": [8, 16], "tslib": 1, "tu_id": 10, "tupl": [15, 23, 26], "turn": [8, 25], "two": [4, 5, 6, 7, 13, 18, 23], "txt": 19, "type": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 15, 18, 22, 23, 24, 25, 26], "typic": 5, "tz": [1, 29], "tz_cd": [2, 16], "tz_convert": 29, "tz_field": 25, "tz_local": 29, "tzdata": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "tzi": 1, "tzinfo": 1, "tzoutput": 10, "u": [6, 7, 15, 23, 26, 27], "ugli": 13, "ui": 26, "uncom": 13, "uncompress": 26, "unfilt": 3, "uniform": 27, "unit": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 20, 22, 23, 26], "unless": 20, "unpack": [23, 26], "unspecifi": 2, "unsupport": 1, "up": [1, 6, 7, 13, 23], "updat": [1, 10, 15, 23, 29], "upstream": 19, "url": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 15, 22, 23, 25, 26, 27], "urllib3": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "us": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 15, 16, 17, 18, 19, 23, 24, 25, 26, 29], "usag": [12, 15, 18], "usagen": [6, 7], "usepa": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "user": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13, 17, 23, 26], "userwarn": [1, 10, 15], "usg": [6, 7, 12, 14, 15, 17, 18, 19, 23, 24, 26, 27, 29], "usgsmnwc": 10, "usr": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "usual": [5, 23], "ut": [0, 6, 7, 9], "utah": 7, "utc": [1, 23, 29], "util": [1, 10, 13, 15, 21, 23, 26], "utsit": 7, "v": 1, "v3": 26, "valid": [6, 7, 23], "valu": [0, 1, 2, 4, 5, 6, 7, 10, 13, 14, 23, 25, 29], "valueerror": 1, "variabl": [0, 3, 8, 9, 10, 23], "variable_info": 23, "variou": [13, 28], "ve": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13], "vegetationlight": 2, "vegetationmoder": 2, "vermilion": 14, "version": [1, 6, 7, 12, 19], "vertic": 1, "via": [6, 18], "view": [1, 15, 19], "vignett": 23, "virtual": 19, "virtualenv": 19, "visit": [12, 15, 22, 23], "visual": [6, 7, 23], "w": 10, "wa": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 15, 18, 22, 23, 29], "wai": [1, 13], "want": [1, 6, 7, 14, 18, 23], "warn": [1, 10, 13, 15, 18, 23, 26], "washington": 26, "wastewat": 11, "water": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 15, 16, 17, 23, 26, 27], "water_us": 23, "waterdata": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 15, 23, 27], "waterqualitydata": [26, 27], "waterservic": [0, 1, 6, 7, 8, 9, 23, 27], "watersh": [6, 7, 23, 24], "we": [12, 13, 14, 19], "weak": [24, 25], "web": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 18, 23, 27, 29], "webservic": 17, "webservices_document": 26, "week": [6, 7, 23], "weight": 26, "welcom": 18, "well": [6, 7, 23], "well_depth_va": [14, 16], "were": [6, 7, 23], "west": [6, 7, 23], "wgs84": 26, "what": 8, "what_act": 26, "what_activity_metr": 26, "what_detection_limit": 26, "what_habitat_metr": 26, "what_organ": 26, "what_project": 26, "what_project_weight": 26, "what_sit": [7, 15, 23, 26], "whatnwisdata": 15, "whatwqpdata": 15, "whatwqpmetr": 15, "whatwqpsampl": 15, "whatwqpsit": 15, "when": [0, 13, 18, 22, 25, 29], "where": [1, 5, 6, 7, 18, 23, 24], "wherea": 13, "whether": [6, 7, 18, 19, 23, 24], "which": [0, 1, 2, 3, 4, 6, 8, 9, 10, 11, 13, 14, 18, 22, 23, 26], "whole": [6, 7, 11, 23], "whomev": 18, "wi": 15, "wide": [10, 12, 15, 23], "wide_format": [10, 23], "widnr_wqx": 15, "width": 13, "window": [1, 8], "wisc": [22, 27], "wish": 16, "withdraw": 11, "within": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 18, 19, 23, 26], "without": [1, 13], "wnj": 2, "wood": 11, "work": [18, 19, 22, 23], "workspac": 24, "workspaceid": 24, "would": [13, 18, 24], "wq_data": 10, "wq_data2": 10, "wq_multi_sit": 10, "wqp": [15, 21], "wqp_metadata": 26, "wqp_url": 26, "wqx": 26, "wrap": 1, "wrapper": [1, 24, 25], "wrd": 10, "writeabl": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "written": 18, "www": 26, "wyandot": 11, "wyandott": 11, "x": [1, 6, 7, 8, 13, 14, 24, 29], "x1": 8, "x2": 8, "x3": 8, "xaxi": [1, 8], "xconv": 1, "xlim": 1, "xlocat": 24, "y": [0, 1, 8, 9, 13, 24], "y_valu": 1, "ye": [2, 26], "year": [1, 22, 23, 29], "year_last_pk": [4, 29], "year_nu": 8, "yet": [6, 24], "ylocat": 24, "yohoho": 18, "york": [11, 29], "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 18, 19, 23], "your": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 18, 19, 29], "yyyi": [10, 22, 23, 26, 29], "z": 9, "zip": [22, 24, 26], "zipfil": [22, 24], "zone": 25}, "titles": ["USGS dataretrieval Python Package get_dv() Examples", "USGS dataretrieval Python Package get_gwlevels() Examples", "USGS dataretrieval Python Package get_discharge_measurements() Examples", "USGS dataretrieval Python Package get_pmcodes() Examples", "USGS dataretrieval Python Package get_discharge_peaks() Examples", "USGS dataretrieval Python Package get_ratings() Examples", "<no title>", "<no title>", "USGS dataretrieval Python Package get_stats() Examples", "USGS dataretrieval Python Package get_iv() Examples", "USGS dataretrieval Python Package get_qwdata() Examples", "USGS dataretrieval Python Package get_water_use() Examples", "Examples", "National trends in peak annual streamflow", "Examples from the Readme file on retrieving NWIS data", "Python Equivalents to R Vignette Examples", "Retrieving site information", "Welcome", "Contributing", "Installation Guide", "License and Disclaimer", "API reference", "dataretrieval.nadp", "dataretrieval.nwis", "dataretrieval.streamstats", "dataretrieval.utils", "dataretrieval.wqp", "Data Portals", "User Guide", "Datetime Information"], "titleterms": {"1": [8, 9, 10, 11], "2": [8, 9, 10, 11], "2000": 8, "2007": 8, "3": [8, 9, 10, 11], "4": [9, 10], "5": 9, "acknowledg": 18, "addit": [0, 1, 2, 4, 8, 9, 10], "all": [8, 10, 11], "an": [9, 11], "analysi": 13, "annual": [8, 12, 13], "api": 21, "basic": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13], "begin": 9, "between": [8, 9], "bug": 18, "categori": 11, "certain": 11, "code": 18, "conda": 19, "content": [17, 28], "contribut": 18, "contributor": 18, "daili": 8, "data": [8, 9, 10, 11, 14, 27], "dataretriev": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 22, 23, 24, 25, 26], "date": [9, 10], "datetim": 29, "defin": 10, "deposit": 22, "develop": 19, "discharg": 8, "disclaim": 20, "document": 18, "duplic": 12, "embed": 15, "end": [9, 10], "entir": 11, "equival": 15, "exampl": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 14, 15], "featur": 18, "feedback": 18, "file": 14, "fix": 18, "format": 10, "from": [12, 14], "function": 12, "get": [8, 9, 10], "get_discharge_measur": 2, "get_discharge_peak": 4, "get_dv": 0, "get_gwlevel": 1, "get_iv": 9, "get_pmcod": 3, "get_qwdata": 10, "get_rat": 5, "get_stat": 8, "get_water_us": 11, "guid": [19, 28], "guidelin": 18, "hydroshar": 12, "implement": 18, "includ": 10, "individu": 9, "inform": [16, 29], "inspect": 29, "instal": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 19], "interpret": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "introduct": 13, "licens": 20, "list": 10, "mean": 8, "median": 8, "mercuri": 22, "metadata": 15, "monitor": [9, 10], "multipl": 10, "nadp": 22, "nation": [12, 13, 22], "network": 22, "notebook": 12, "nwi": [9, 14, 23], "obtain": 12, "one": 10, "packag": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 18], "paramet": [9, 10], "peak": [12, 13], "period": 10, "pip": 19, "plot": 13, "portal": 27, "prepar": 13, "pull": 18, "python": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15], "qualiti": 10, "r": [12, 15], "readm": 14, "refer": 21, "regress": 13, "report": 18, "request": [8, 18], "result": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13], "retriev": [9, 10, 11, 14, 16], "sampl": 10, "serial": 10, "setup": 13, "simpl": 12, "singl": [8, 9, 10], "site": [8, 9, 10, 16], "specif": [9, 11], "standard": 18, "start": [9, 10], "state": 11, "streamflow": [12, 13], "streamstat": 24, "submit": 18, "tabl": 17, "temperatur": 8, "time": [9, 10], "timestamp": 29, "todai": 9, "todo": [22, 23, 26], "trend": [12, 13, 22], "two": [8, 9, 11], "unit": 9, "updat": 18, "us": [9, 11, 12], "usag": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13], "user": [19, 28], "usg": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "utc": 9, "util": 25, "valu": [8, 9], "version": 18, "via": 19, "vignett": [12, 15], "wai": 18, "water": [10, 11], "welcom": 17, "within": 10, "wqp": 26, "write": 18, "year": [8, 11]}}) \ No newline at end of file +Search.setIndex({"alltitles": {"API reference": [[21, null]], "Acknowledgements": [[18, "acknowledgements"]], "Additional Examples": [[0, "Additional-Examples"], [1, "Additional-Examples"], [2, "Additional-Examples"], [4, "Additional-Examples"], [8, "Additional-Examples"], [9, "Additional-Examples"], [10, "Additional-Examples"]], "Basic Usage": [[0, "Basic-Usage"], [1, "Basic-Usage"], [2, "Basic-Usage"], [3, "Basic-Usage"], [4, "Basic-Usage"], [5, "Basic-Usage"], [8, "Basic-Usage"], [9, "Basic-Usage"], [10, "Basic-Usage"], [11, "Basic-Usage"]], "Basic usage": [[13, "Basic-usage"]], "Coding Standards": [[18, "coding-standards"]], "Contents": [[28, "contents"]], "Contributing": [[18, null]], "Contributor Guidelines": [[18, "contributor-guidelines"]], "Data Portals": [[27, null]], "Datetime Information": [[29, null]], "Developer Installation": [[19, "developer-installation"]], "Duplicating the R dataRetrieval vignettes functionality": [[12, "duplicating-the-r-dataretrieval-vignettes-functionality"]], "Embedded Metadata": [[15, "Embedded-Metadata"]], "Example 1: Get all of the annual mean discharge data for a single site": [[8, "Example-1:-Get-all-of-the-annual-mean-discharge-data-for-a-single-site"]], "Example 1: Get all water quality sample data for a single monitoring site": [[10, "Example-1:-Get-all-water-quality-sample-data-for-a-single-monitoring-site"]], "Example 1: Get unit value data for a specific parameter at a USGS NWIS monitoring site between a begin and end date": [[9, "Example-1:-Get-unit-value-data-for-a-specific-parameter-at-a-USGS-NWIS-monitoring-site-between-a-begin-and-end-date"]], "Example 1: Retrieve all water use data for a state": [[11, "Example-1:-Retrieve-all-water-use-data-for-a-state"]], "Example 2: Get all of the annual mean discharge data for two sites": [[8, "Example-2:-Get-all-of-the-annual-mean-discharge-data-for-two-sites"]], "Example 2: Get unit values for an individual site and parameter between a start and end date.": [[9, "Example-2:-Get-unit-values-for-an-individual-site-and-parameter-between-a-start-and-end-date."]], "Example 2: Get water quality sample data for multiple sites for a single parameter": [[10, "Example-2:-Get-water-quality-sample-data-for-multiple-sites-for-a-single-parameter"]], "Example 2: Retrieve data for an entire state for certain years": [[11, "Example-2:-Retrieve-data-for-an-entire-state-for-certain-years"]], "Example 3: Get unit values for an individual site for today": [[9, "Example-3:-Get-unit-values-for-an-individual-site-for-today"]], "Example 3: Request daily mean and median values for temperature and discharge for a site for years between 2000 and 2007": [[8, "Example-3:-Request-daily-mean-and-median-values-for-temperature-and-discharge-for-a-site-for-years-between-2000-and-2007"]], "Example 3: Retrieve two specific water use categories for an entire state": [[11, "Example-3:-Retrieve-two-specific-water-use-categories-for-an-entire-state"]], "Example 3: Retrieve water quality sample data for multiple sites, including a list of parameters, within a time period defined by start and end dates": [[10, "Example-3:-Retrieve-water-quality-sample-data-for-multiple-sites,-including-a-list-of-parameters,-within-a-time-period-defined-by-start-and-end-dates"]], "Example 4: Retrieve data using UTC times": [[9, "Example-4:-Retrieve-data-using-UTC-times"]], "Example 4: Retrieve water quality sample data for one site in serial format": [[10, "Example-4:-Retrieve-water-quality-sample-data-for-one-site-in-serial-format"]], "Example 5: Get unit values for two sites, for a single parameter, between a start and end date": [[9, "Example-5:-Get-unit-values-for-two-sites,-for-a-single-parameter,-between-a-start-and-end-date"]], "Example Notebooks from Hydroshare": [[12, "example-notebooks-from-hydroshare"]], "Examples": [[12, null]], "Examples from the Readme file on retrieving NWIS data": [[14, null]], "Fixing Bugs:": [[18, "fixing-bugs"]], "Implementing Features:": [[18, "implementing-features"]], "Inspecting Timestamps": [[29, "inspecting-timestamps"]], "Install the Package": [[0, "Install-the-Package"], [1, "Install-the-Package"], [2, "Install-the-Package"], [3, "Install-the-Package"], [4, "Install-the-Package"], [5, "Install-the-Package"], [8, "Install-the-Package"], [9, "Install-the-Package"], [10, "Install-the-Package"], [11, "Install-the-Package"]], "Installation Guide": [[19, null]], "Interpreting the Result": [[0, "Interpreting-the-Result"], [1, "Interpreting-the-Result"], [2, "Interpreting-the-Result"], [3, "Interpreting-the-Result"], [4, "Interpreting-the-Result"], [5, "Interpreting-the-Result"], [8, "Interpreting-the-Result"], [9, "Interpreting-the-Result"], [10, "Interpreting-the-Result"], [11, "Interpreting-the-Result"]], "Introduction": [[13, "Introduction"]], "License and Disclaimer": [[20, null]], "Mercury Deposition Network": [[22, "mercury-deposition-network"]], "National Trends Network": [[22, "national-trends-network"]], "National trends in peak annual streamflow": [[13, null]], "Plotting the results": [[13, "Plotting-the-results"]], "Preparing the analysis": [[13, "Preparing-the-analysis"]], "Preparing the regression": [[13, "Preparing-the-regression"]], "Pull Request Guidelines:": [[18, "pull-request-guidelines"]], "Python Equivalents to R Vignette Examples": [[15, null]], "Reporting Bugs:": [[18, "reporting-bugs"]], "Retrieving site information": [[16, null]], "Setup": [[13, "Setup"]], "Simple uses of the dataretrieval package": [[12, "simple-uses-of-the-dataretrieval-package"]], "Submitting Feedback:": [[18, "submitting-feedback"]], "Table of Contents": [[17, "table-of-contents"]], "Todo": [[22, "id1"], [23, "id1"], [26, "id1"]], "USGS dataretrieval Python Package get_discharge_measurements() Examples": [[2, null]], "USGS dataretrieval Python Package get_discharge_peaks() Examples": [[4, null]], "USGS dataretrieval Python Package get_dv() Examples": [[0, null]], "USGS dataretrieval Python Package get_gwlevels() Examples": [[1, null]], "USGS dataretrieval Python Package get_iv() Examples": [[9, null]], "USGS dataretrieval Python Package get_pmcodes() Examples": [[3, null]], "USGS dataretrieval Python Package get_qwdata() Examples": [[10, null]], "USGS dataretrieval Python Package get_ratings() Examples": [[5, null]], "USGS dataretrieval Python Package get_stats() Examples": [[8, null]], "USGS dataretrieval Python Package get_water_use() Examples": [[11, null]], "Updating Package Version:": [[18, "updating-package-version"]], "User Guide": [[28, null]], "User Installation": [[19, "user-installation"]], "Using dataretrieval to obtain nation trends in peak annual streamflow": [[12, "using-dataretrieval-to-obtain-nation-trends-in-peak-annual-streamflow"]], "Via conda:": [[19, "via-conda"]], "Via pip:": [[19, "via-pip"]], "Ways to contribute": [[18, "ways-to-contribute"]], "Welcome": [[17, null]], "Writing Documentation:": [[18, "writing-documentation"]], "dataretrieval.nadp": [[22, null]], "dataretrieval.nwis": [[23, null]], "dataretrieval.streamstats": [[24, null]], "dataretrieval.utils": [[25, null]], "dataretrieval.wqp": [[26, null]]}, "docnames": ["examples/USGS_dataretrieval_DailyValues_Examples", "examples/USGS_dataretrieval_GroundwaterLevels_Examples", "examples/USGS_dataretrieval_Measurements_Examples", "examples/USGS_dataretrieval_ParameterCodes_Examples", "examples/USGS_dataretrieval_Peaks_Examples", "examples/USGS_dataretrieval_Ratings_Examples", "examples/USGS_dataretrieval_SiteInfo_Examples", "examples/USGS_dataretrieval_SiteInventory_Examples", "examples/USGS_dataretrieval_Statistics_Examples", "examples/USGS_dataretrieval_UnitValues_Examples", "examples/USGS_dataretrieval_WaterSamples_Examples", "examples/USGS_dataretrieval_WaterUse_Examples", "examples/index", "examples/nwisdemo01", "examples/readme_examples", "examples/rvignettes", "examples/siteinfo_examples", "index", "meta/contributing", "meta/installing", "meta/license", "reference/index", "reference/nadp", "reference/nwis", "reference/streamstats", "reference/utils", "reference/wqp", "userguide/dataportals", "userguide/index", "userguide/timeconventions"], "envversion": {"nbsphinx": 4, "sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1}, "filenames": ["examples/USGS_dataretrieval_DailyValues_Examples.nblink", "examples/USGS_dataretrieval_GroundwaterLevels_Examples.nblink", "examples/USGS_dataretrieval_Measurements_Examples.nblink", "examples/USGS_dataretrieval_ParameterCodes_Examples.nblink", "examples/USGS_dataretrieval_Peaks_Examples.nblink", "examples/USGS_dataretrieval_Ratings_Examples.nblink", "examples/USGS_dataretrieval_SiteInfo_Examples.nblink", "examples/USGS_dataretrieval_SiteInventory_Examples.nblink", "examples/USGS_dataretrieval_Statistics_Examples.nblink", "examples/USGS_dataretrieval_UnitValues_Examples.nblink", "examples/USGS_dataretrieval_WaterSamples_Examples.nblink", "examples/USGS_dataretrieval_WaterUse_Examples.nblink", "examples/index.rst", "examples/nwisdemo01.nblink", "examples/readme_examples.rst", "examples/rvignettes.nblink", "examples/siteinfo_examples.rst", "index.rst", "meta/contributing.rst", "meta/installing.rst", "meta/license.rst", "reference/index.rst", "reference/nadp.rst", "reference/nwis.rst", "reference/streamstats.rst", "reference/utils.rst", "reference/wqp.rst", "userguide/dataportals.rst", "userguide/index.rst", "userguide/timeconventions.rst"], "indexentries": {"__init__() (dataretrieval.nwis.nwis_metadata method)": [[23, "dataretrieval.nwis.NWIS_Metadata.__init__", false]], "__init__() (dataretrieval.streamstats.watershed method)": [[24, "dataretrieval.streamstats.Watershed.__init__", false]], "__init__() (dataretrieval.utils.basemetadata method)": [[25, "dataretrieval.utils.BaseMetadata.__init__", false]], "__init__() (dataretrieval.utils.nositeserror method)": [[25, "dataretrieval.utils.NoSitesError.__init__", false]], "__init__() (dataretrieval.wqp.wqp_metadata method)": [[26, "dataretrieval.wqp.WQP_Metadata.__init__", false]], "__repr__() (dataretrieval.utils.basemetadata method)": [[25, "dataretrieval.utils.BaseMetadata.__repr__", false]], "__str__() (dataretrieval.utils.nositeserror method)": [[25, "dataretrieval.utils.NoSitesError.__str__", false]], "__weakref__ (dataretrieval.streamstats.watershed attribute)": [[24, "dataretrieval.streamstats.Watershed.__weakref__", false]], "__weakref__ (dataretrieval.utils.basemetadata attribute)": [[25, "dataretrieval.utils.BaseMetadata.__weakref__", false]], "__weakref__ (dataretrieval.utils.nositeserror attribute)": [[25, "dataretrieval.utils.NoSitesError.__weakref__", false]], "_alter_kwargs() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp._alter_kwargs", false]], "_read_json() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis._read_json", false]], "_read_rdb() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis._read_rdb", false]], "_warn_v3_profiles_outage() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp._warn_v3_profiles_outage", false]], "basemetadata (class in dataretrieval.utils)": [[25, "dataretrieval.utils.BaseMetadata", false]], "comments (dataretrieval.nwis.nwis_metadata attribute)": [[23, "dataretrieval.nwis.NWIS_Metadata.comments", false]], "comments (dataretrieval.wqp.wqp_metadata attribute)": [[26, "dataretrieval.wqp.WQP_Metadata.comments", false]], "dataretrieval.nadp": [[22, "module-dataretrieval.nadp", false]], "dataretrieval.nwis": [[23, "module-dataretrieval.nwis", false]], "dataretrieval.streamstats": [[24, "module-dataretrieval.streamstats", false]], "dataretrieval.utils": [[25, "module-dataretrieval.utils", false]], "dataretrieval.wqp": [[26, "module-dataretrieval.wqp", false]], "download_workspace() (in module dataretrieval.streamstats)": [[24, "dataretrieval.streamstats.download_workspace", false]], "format_datetime() (in module dataretrieval.utils)": [[25, "dataretrieval.utils.format_datetime", false]], "format_response() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.format_response", false]], "from_streamstats_json() (dataretrieval.streamstats.watershed class method)": [[24, "dataretrieval.streamstats.Watershed.from_streamstats_json", false]], "get_annual_mdn_map() (in module dataretrieval.nadp)": [[22, "dataretrieval.nadp.get_annual_MDN_map", false]], "get_annual_ntn_map() (in module dataretrieval.nadp)": [[22, "dataretrieval.nadp.get_annual_NTN_map", false]], "get_discharge_measurements() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_discharge_measurements", false]], "get_discharge_peaks() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_discharge_peaks", false]], "get_dv() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_dv", false]], "get_gwlevels() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_gwlevels", false]], "get_info() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_info", false]], "get_iv() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_iv", false]], "get_pmcodes() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_pmcodes", false]], "get_qwdata() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_qwdata", false]], "get_ratings() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_ratings", false]], "get_record() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_record", false]], "get_results() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.get_results", false]], "get_sample_watershed() (in module dataretrieval.streamstats)": [[24, "dataretrieval.streamstats.get_sample_watershed", false]], "get_stats() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_stats", false]], "get_water_use() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.get_water_use", false]], "get_watershed() (in module dataretrieval.streamstats)": [[24, "dataretrieval.streamstats.get_watershed", false]], "get_zip() (in module dataretrieval.nadp)": [[22, "dataretrieval.nadp.get_zip", false]], "header (dataretrieval.nwis.nwis_metadata attribute)": [[23, "dataretrieval.nwis.NWIS_Metadata.header", false]], "header (dataretrieval.utils.basemetadata attribute)": [[25, "dataretrieval.utils.BaseMetadata.header", false]], "header (dataretrieval.wqp.wqp_metadata attribute)": [[26, "dataretrieval.wqp.WQP_Metadata.header", false]], "module": [[22, "module-dataretrieval.nadp", false], [23, "module-dataretrieval.nwis", false], [24, "module-dataretrieval.streamstats", false], [25, "module-dataretrieval.utils", false], [26, "module-dataretrieval.wqp", false]], "nadp_zipfile (class in dataretrieval.nadp)": [[22, "dataretrieval.nadp.NADP_ZipFile", false]], "nositeserror": [[25, "dataretrieval.utils.NoSitesError", false]], "nwis_metadata (class in dataretrieval.nwis)": [[23, "dataretrieval.nwis.NWIS_Metadata", false]], "preformat_peaks_response() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.preformat_peaks_response", false]], "query() (in module dataretrieval.utils)": [[25, "dataretrieval.utils.query", false]], "query_time (dataretrieval.nwis.nwis_metadata attribute)": [[23, "dataretrieval.nwis.NWIS_Metadata.query_time", false]], "query_time (dataretrieval.utils.basemetadata attribute)": [[25, "dataretrieval.utils.BaseMetadata.query_time", false]], "query_time (dataretrieval.wqp.wqp_metadata attribute)": [[26, "dataretrieval.wqp.WQP_Metadata.query_time", false]], "query_waterdata() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.query_waterdata", false]], "query_waterservices() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.query_waterservices", false]], "site_info (dataretrieval.nwis.nwis_metadata attribute)": [[23, "dataretrieval.nwis.NWIS_Metadata.site_info", false]], "site_info (dataretrieval.nwis.nwis_metadata property)": [[23, "id0", false]], "site_info (dataretrieval.wqp.wqp_metadata attribute)": [[26, "dataretrieval.wqp.WQP_Metadata.site_info", false]], "tif() (dataretrieval.nadp.nadp_zipfile method)": [[22, "dataretrieval.nadp.NADP_ZipFile.tif", false]], "tif_name() (dataretrieval.nadp.nadp_zipfile method)": [[22, "dataretrieval.nadp.NADP_ZipFile.tif_name", false]], "to_str() (in module dataretrieval.utils)": [[25, "dataretrieval.utils.to_str", false]], "url (dataretrieval.nwis.nwis_metadata attribute)": [[23, "dataretrieval.nwis.NWIS_Metadata.url", false]], "url (dataretrieval.utils.basemetadata attribute)": [[25, "dataretrieval.utils.BaseMetadata.url", false]], "url (dataretrieval.wqp.wqp_metadata attribute)": [[26, "dataretrieval.wqp.WQP_Metadata.url", false]], "variable_info (dataretrieval.nwis.nwis_metadata attribute)": [[23, "dataretrieval.nwis.NWIS_Metadata.variable_info", false]], "watershed (class in dataretrieval.streamstats)": [[24, "dataretrieval.streamstats.Watershed", false]], "what_activities() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_activities", false]], "what_activity_metrics() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_activity_metrics", false]], "what_detection_limits() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_detection_limits", false]], "what_habitat_metrics() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_habitat_metrics", false]], "what_organizations() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_organizations", false]], "what_project_weights() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_project_weights", false]], "what_projects() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_projects", false]], "what_sites() (in module dataretrieval.nwis)": [[23, "dataretrieval.nwis.what_sites", false]], "what_sites() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.what_sites", false]], "wqp_metadata (class in dataretrieval.wqp)": [[26, "dataretrieval.wqp.WQP_Metadata", false]], "wqp_url() (in module dataretrieval.wqp)": [[26, "dataretrieval.wqp.wqp_url", false]]}, "objects": {"dataretrieval": [[22, 0, 0, "-", "nadp"], [23, 0, 0, "-", "nwis"], [24, 0, 0, "-", "streamstats"], [25, 0, 0, "-", "utils"], [26, 0, 0, "-", "wqp"]], "dataretrieval.nadp": [[22, 1, 1, "", "NADP_ZipFile"], [22, 3, 1, "", "get_annual_MDN_map"], [22, 3, 1, "", "get_annual_NTN_map"], [22, 3, 1, "", "get_zip"]], "dataretrieval.nadp.NADP_ZipFile": [[22, 2, 1, "", "tif"], [22, 2, 1, "", "tif_name"]], "dataretrieval.nwis": [[23, 1, 1, "", "NWIS_Metadata"], [23, 3, 1, "", "_read_json"], [23, 3, 1, "", "_read_rdb"], [23, 3, 1, "", "format_response"], [23, 3, 1, "", "get_discharge_measurements"], [23, 3, 1, "", "get_discharge_peaks"], [23, 3, 1, "", "get_dv"], [23, 3, 1, "", "get_gwlevels"], [23, 3, 1, "", "get_info"], [23, 3, 1, "", "get_iv"], [23, 3, 1, "", "get_pmcodes"], [23, 3, 1, "", "get_qwdata"], [23, 3, 1, "", "get_ratings"], [23, 3, 1, "", "get_record"], [23, 3, 1, "", "get_stats"], [23, 3, 1, "", "get_water_use"], [23, 3, 1, "", "preformat_peaks_response"], [23, 3, 1, "", "query_waterdata"], [23, 3, 1, "", "query_waterservices"], [23, 3, 1, "", "what_sites"]], "dataretrieval.nwis.NWIS_Metadata": [[23, 2, 1, "", "__init__"], [23, 4, 1, "", "comments"], [23, 4, 1, "", "header"], [23, 4, 1, "", "query_time"], [23, 5, 1, "id0", "site_info"], [23, 4, 1, "", "url"], [23, 4, 1, "", "variable_info"]], "dataretrieval.streamstats": [[24, 1, 1, "", "Watershed"], [24, 3, 1, "", "download_workspace"], [24, 3, 1, "", "get_sample_watershed"], [24, 3, 1, "", "get_watershed"]], "dataretrieval.streamstats.Watershed": [[24, 2, 1, "", "__init__"], [24, 4, 1, "", "__weakref__"], [24, 2, 1, "", "from_streamstats_json"]], "dataretrieval.utils": [[25, 1, 1, "", "BaseMetadata"], [25, 6, 1, "", "NoSitesError"], [25, 3, 1, "", "format_datetime"], [25, 3, 1, "", "query"], [25, 3, 1, "", "to_str"]], "dataretrieval.utils.BaseMetadata": [[25, 2, 1, "", "__init__"], [25, 2, 1, "", "__repr__"], [25, 4, 1, "", "__weakref__"], [25, 4, 1, "", "header"], [25, 4, 1, "", "query_time"], [25, 4, 1, "", "url"]], "dataretrieval.utils.NoSitesError": [[25, 2, 1, "", "__init__"], [25, 2, 1, "", "__str__"], [25, 4, 1, "", "__weakref__"]], "dataretrieval.wqp": [[26, 1, 1, "", "WQP_Metadata"], [26, 3, 1, "", "_alter_kwargs"], [26, 3, 1, "", "_warn_v3_profiles_outage"], [26, 3, 1, "", "get_results"], [26, 3, 1, "", "what_activities"], [26, 3, 1, "", "what_activity_metrics"], [26, 3, 1, "", "what_detection_limits"], [26, 3, 1, "", "what_habitat_metrics"], [26, 3, 1, "", "what_organizations"], [26, 3, 1, "", "what_project_weights"], [26, 3, 1, "", "what_projects"], [26, 3, 1, "", "what_sites"], [26, 3, 1, "", "wqp_url"]], "dataretrieval.wqp.WQP_Metadata": [[26, 2, 1, "", "__init__"], [26, 4, 1, "", "comments"], [26, 4, 1, "", "header"], [26, 4, 1, "", "query_time"], [26, 4, 1, "", "site_info"], [26, 4, 1, "", "url"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "attribute", "Python attribute"], "5": ["py", "property", "Python property"], "6": ["py", "exception", "Python exception"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function", "4": "py:attribute", "5": "py:property", "6": "py:exception"}, "terms": {"": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 18, 23, 29], "0": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 22, 23, 25, 26], "00": [0, 1, 2, 4, 5, 8, 9, 10, 11, 14, 29], "000": 11, "0000": [1, 29], "000000": [0, 1, 9], "00001": [0, 15], "00003": [0, 15, 23], "00010": [0, 8, 14, 15], "00010_cd": 14, "00010_discontinued_maximum": 0, "00010_discontinued_maximum_cd": 0, "00010_discontinued_mean": 0, "00010_discontinued_mean_cd": 0, "00010_maximum": 0, "00010_maximum_cd": 0, "00010_mean": 0, "00010_mean_cd": 0, "00060": [0, 8, 9, 14, 15, 16, 23], "00060_cd": [9, 14], "00060_mean": 0, "00060_mean_cd": 0, "00065": 10, "0008": 18, "001": 23, "0024": 14, "003": 15, "00300": 10, "00400": 3, "00618": 15, "00665": [7, 23], "009": 11, "00gq41400": 10, "00z": 9, "01": [0, 1, 2, 4, 6, 7, 9, 10, 11, 13, 14, 15, 23, 26, 29], "014": 11, "0141": 14, "01491000": [0, 15, 23], "01585200": 23, "01594440": [2, 4, 5, 15, 23], "016": 11, "01645000": [0, 15], "01646500": 23, "0165": 14, "0180147": 10, "019": 11, "02": [0, 1, 2, 4, 5, 9, 10, 11, 23, 26], "02171500": 8, "02319394": [8, 15], "025": 15, "0270113": 10, "03": [0, 1, 2, 4, 9, 10, 11, 23], "03339000": [13, 14, 29], "0380062": 10, "04": [0, 1, 2, 4, 9, 10, 29], "04024000": [9, 10], "04024430": [9, 10], "040851325": [2, 4], "04085427": [0, 23], "05": [0, 1, 2, 4, 9, 10, 11, 13, 15, 29], "0500": 10, "05114000": [6, 7, 9, 23], "05212700": 0, "0540032": 10, "06": [0, 1, 2, 4, 9, 10, 14, 23, 29], "0600": 10, "06011000": 4, "07": [0, 1, 2, 4, 7, 9, 10, 11, 14, 26, 29], "0700": 10, "074": 11, "0740087": 10, "08": [1, 2, 4, 9, 10, 11, 29], "09": [0, 1, 2, 4, 9, 10, 11, 15, 23, 29], "0900013": 10, "09423350": [6, 23], "099": 11, "1": [0, 1, 2, 3, 4, 5, 6, 7, 13, 14, 15, 18, 23, 25], "10": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 23, 25, 29], "100": [0, 13, 14], "100000": 9, "10032762": 15, "10109000": [0, 2, 5, 6, 9, 10], "1020": 4, "1027": 1, "1028": 1, "1029": 8, "1030": [1, 4], "1034": 2, "1035": [1, 2], "1036": [1, 2], "1037": [1, 2], "1038": [1, 2], "1039": 2, "1040": 2, "1041": 2, "1042": 2, "106": [0, 11], "1060": 2, "10600": 4, "108": [10, 11], "10800": 4, "1088": 2, "1089": 2, "1090": 2, "1091": 2, "1092": 2, "10t00": 9, "10t23": 9, "11": [0, 1, 2, 4, 5, 8, 9, 10, 11, 14, 15, 23, 26, 29], "110": 0, "1110047": 10, "112": [2, 11], "11447650": 23, "11500": 4, "1180039": 10, "12": [1, 2, 4, 8, 9, 10, 11, 14, 15, 23, 26, 29], "1200": 4, "1210024": 10, "1215": 8, "122": 2, "1220123": 10, "123": 11, "1230062": 10, "125": 11, "125737": 8, "126": 2, "127": [0, 2], "12700": 4, "127500": 1, "127915": 9, "129": 0, "13": [1, 2, 4, 8, 9, 10, 11, 15], "133": [2, 11], "135": 10, "1360": 4, "138": 14, "139": 14, "1390189": 10, "14": [1, 2, 4, 8, 9, 10, 11, 15, 29], "140": [11, 14], "1404": 8, "146": 2, "146872": 0, "148": 2, "15": [0, 1, 2, 4, 8, 9, 10, 11, 13, 14, 15, 29], "150": 4, "1500157": 10, "151": [2, 10], "1510": 4, "152": 2, "1520": 4, "153": 2, "1541": 1, "1542": 1, "1544": 1, "1545": 1, "1546": 1, "1547": 1, "1548": 1, "1549": 1, "155": [0, 10], "1550": 1, "1551": 1, "1552": 1, "1553": 1, "1554": 1, "1556": 1, "1557": 1, "1558": 1, "156": 10, "15600": 4, "1578": 1, "1579": 1, "1580": 1, "1581": 1, "1582": 1, "16": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 14, 15, 29], "160": 11, "16010203": 6, "162": [0, 2], "1640": 4, "1665": 8, "167": 2, "16800": 4, "1684": 8, "17": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 14, 15, 26, 29], "17000": 29, "1710114": 10, "173": 11, "1740217": 10, "175": [2, 11], "1779": 1, "1780": 1, "1781": 1, "1782": 1, "1783": 1, "18": [0, 1, 2, 4, 5, 8, 10, 11, 15, 29], "180": [0, 13], "180049066381200": 29, "1801": 8, "1803": 1, "1804": 1, "1805": 1, "1806": 1, "1807": 1, "1808": 1, "181": 13, "1851": [1, 23], "186": 2, "188": 10, "189": [1, 10, 15], "19": [0, 1, 2, 4, 8, 9, 10, 11, 15, 26, 29], "192": 9, "1920083": 10, "193": 0, "1937": 4, "1938": 4, "1939": 4, "194": [10, 15], "1940": 4, "1941": 4, "1942": 4, "1943": 8, "1944": 8, "1945": [1, 4, 8], "1946": [4, 8], "1947": 4, "1948": 4, "1949": 4, "1950": 4, "1951": [2, 4], "1952": [2, 4], "1953": 4, "1954": 4, "1955": 2, "1956": 4, "1957": 4, "1958": 4, "1959": 4, "196": 10, "1960": 4, "1961": [4, 8], "1962": 4, "1963": 4, "1964": 4, "1965": 4, "1966": 4, "1967": [4, 10], "1968": 10, "1970": 13, "1971": 7, "1972": [4, 10], "1978": 4, "1979": 4, "1980": [1, 15, 23], "1981": 4, "1982": 4, "1983": [4, 10], "1984": [4, 10], "1985": [4, 10, 11, 15], "1986": 4, "1987": 4, "1988": 10, "1989": [4, 10], "199": 11, "1990": [4, 6, 7, 11, 23], "1991": 4, "1992": 4, "1993": 4, "1995": [4, 11], "1996": 4, "1998": [1, 4], "1999": [1, 4], "2": [0, 1, 2, 3, 4, 5, 6, 7, 13, 15, 23, 24, 25, 26], "20": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15, 16, 26, 29], "2000": [1, 4, 11, 23], "200000": [0, 9], "2001": [1, 4, 8], "2002": [1, 4, 8], "2003": [1, 4, 8], "2004": [1, 8], "2005": [1, 4, 8, 11, 23], "2006": [1, 4, 8, 26], "2007": [1, 4, 10], "2008": [1, 4, 8], "2009": [1, 4, 8, 15, 26], "2010": [1, 4, 10, 11, 15, 22, 23], "2010133": 10, "2011": [1, 4, 15], "2012": [0, 1, 4, 8, 10, 15, 23], "2013": [1, 4, 8, 9, 10, 23], "2014": [0, 1, 2, 4, 8, 9, 10], "2015": [1, 4, 8, 10, 11, 22, 29], "2016": [1, 2, 4, 8, 10], "2017": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 14, 23, 29], "2018": [4, 8, 10, 14, 23], "2019": [2, 8, 14, 26], "2020": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 26], "2021": [0, 4, 7, 8, 9, 26, 29], "2022": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 29], "2023": 8, "2024": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15, 23], "203": 2, "205": 0, "207": 1, "209": 11, "21": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 14, 15], "210": 10, "2125": 8, "2175": 5, "218": 11, "2186": [5, 8], "219": 11, "2197": 5, "21_cd": 14, "22": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15, 29], "2208": 5, "2220": 5, "2258": 8, "227": 11, "2280252": 10, "229": 11, "23": [1, 2, 4, 9, 10, 11], "230": 11, "2336": 1, "2337": 1, "2339": 1, "234": 11, "2340": 1, "2341": 1, "2358": 1, "2359": 1, "2360": 1, "2361": 1, "2362": 1, "2363": 1, "2364": 1, "24": [1, 2, 4, 5, 9, 10, 11], "2465": 10, "2471": 8, "248": 1, "25": [0, 1, 2, 4, 6, 7, 9, 10, 11, 23], "2500209": 10, "25100": 29, "257": 11, "2577": 8, "259": 11, "26": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 29], "260": 11, "261": 11, "262": 11, "2620": 8, "263": 11, "264": 11, "26452": 8, "265540": 1, "267": 4, "27": [0, 1, 2, 4, 8, 10, 11], "270": 11, "271": 0, "277": 1, "278": 1, "279": [1, 11], "28": [0, 1, 2, 4, 7, 8, 10, 11, 29], "280": 11, "281": 10, "283": 11, "2847": 8, "285": 11, "2860068": 10, "288": 4, "2880": 9, "29": [0, 1, 2, 4, 5, 8, 10, 29], "290": 11, "290000095192602": 29, "291": 11, "2929": 8, "294": 1, "295": 1, "296": 1, "299": 11, "2c040851325": 4, "3": [0, 1, 2, 3, 4, 5, 6, 7, 13, 14, 15, 18, 24, 26], "30": [0, 1, 2, 4, 8, 9, 10, 14, 15, 23, 26, 29], "300": [4, 11], "301": 4, "30234": 10, "3026": 8, "304": 11, "3060": 14, "306223": 8, "309": 1, "31": [1, 2, 4, 8, 10, 11, 14, 23, 29], "310": 2, "311": 1, "31100": 4, "3140": 4, "317": 1, "32": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "3200": 4, "321": 1, "32104": 10, "322": 11, "3240067": 10, "326": 1, "3274": 8, "328": 1, "33": [1, 2, 10, 14], "330": [1, 11], "332": 1, "3330": 4, "3330046": 10, "336": 11, "337": 2, "3380": 4, "3395": 8, "34": [1, 2, 5, 11, 15, 16], "34220": 10, "34247": 10, "345": 10, "35": [1, 2, 4, 10], "3510": 4, "352": 4, "3560065": 10, "3582": 8, "36": [1, 10, 11, 13], "362": 11, "364": 0, "3640": 4, "365": [0, 8], "366": 8, "37": 4, "375000": 1, "375907091432201": 1, "37600": 29, "3764": 8, "379": 2, "38": [1, 10, 26], "3800": 4, "381": 11, "386": 4, "39": [0, 1, 2, 8, 9, 10, 11, 13, 15], "3940": 4, "3966": 8, "4": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 14, 15, 29], "40": [1, 2, 10, 13], "4000": 4, "400000": 9, "4000000": 13, "400603": 14, "4060": 4, "408": 11, "409": [4, 5], "41": [0, 1, 2, 4, 11], "410": 5, "4100": 4, "411": 5, "412": 5, "413": 5, "4130": 4, "414": 5, "42": [1, 2, 4, 11, 14, 25], "421": 11, "425957088141001": 1, "429": 4, "43": [2, 4, 10, 11, 24, 29], "430": [4, 11], "4326": 24, "434": 11, "4340": 4, "434400121275801": [1, 15, 23], "436": 4, "44": [4, 9, 11, 13, 26], "440": 11, "442": 11, "4433": 10, "445": 1, "446": 1, "447": 1, "448": 1, "44934a": 10, "45": [0, 1, 2, 4, 9, 10, 11, 14, 29], "454": 11, "45749a": 10, "4590": 4, "46": [1, 2, 5, 11, 26], "464": 11, "465": 11, "466": 11, "467": 11, "468": 11, "469": 11, "47": [1, 4, 10, 29], "47133a": 10, "473": 11, "4730": 4, "475": 2, "4750": 4, "47591a": 10, "476": 2, "477": 2, "478": [2, 9], "479": [2, 11], "48": 11, "480": [2, 9], "481": 9, "4840": 4, "486": 4, "488": 11, "49": [1, 9, 11], "4900": 4, "495000": 1, "4960": 4, "499": [1, 11], "5": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 23, 26, 29], "50": [0, 1, 2, 4, 9, 10, 14, 15], "500": 1, "500000": 9, "501": 1, "502": 1, "503": 1, "506": 2, "51": [9, 10], "52": [1, 4, 9], "520": 11, "5210": 4, "524": [4, 24], "53": [0, 1, 2, 4, 9], "54": [0, 1, 2, 4, 9, 11, 29], "546": 4, "549": 15, "55": [1, 2, 4, 9, 10, 15], "550": 11, "5500000": 13, "5520": 4, "5549": 18, "5550": 4, "56": [0, 2, 4, 11], "56190": 18, "567": 9, "57": [1, 2], "5750": 4, "5780": 4, "5790": 4, "58": [1, 4, 11, 29], "589": 8, "59": [1, 2, 4, 9, 10, 11], "590": 4, "596": [4, 11], "59z": 9, "6": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 18], "60": [2, 4, 10, 11], "600": 11, "604": 4, "605": 8, "61": [5, 14], "610": 8, "6140": 4, "615": 11, "616": 8, "62": [1, 10, 11], "621": 8, "624": 8, "626": 8, "628": 8, "629": [8, 11], "63": [1, 10], "630000": 1, "630243": 9, "631": 8, "63680_hach": 14, "63680_hach_cd": 14, "63680_ysi": 14, "64": [2, 4, 10], "640": 4, "65": [2, 4], "652": 2, "66": [4, 29], "660": 11, "6610": 4, "67": [2, 4], "671": 1, "672": 1, "673": 1, "674": 1, "675": 1, "68": 2, "681": 4, "688": 8, "69": 1, "6900": 4, "690605": 1, "6960": 4, "6990": 4, "7": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 23], "70": [1, 11], "708": 8, "709": [2, 8], "71": [1, 11], "710": [8, 11], "711": 8, "712": 8, "713": 8, "715": 4, "71851": 15, "72": [1, 5], "7220": 4, "726": [4, 11], "73": [1, 4, 5, 11], "730": 11, "731": 11, "732": 11, "733": 11, "734": 11, "735": 11, "738": 11, "74": [4, 5, 24], "749": 11, "75": [0, 1, 2, 4, 5, 9], "750": 11, "751": 4, "76": [2, 4, 5, 9], "77": [4, 11], "78": [1, 2, 11], "781": 4, "784": 8, "7860": 4, "79": 11, "790": 11, "795": 8, "795616": 0, "799": 2, "8": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15, 18, 23, 26], "80": [2, 4], "800": 4, "800000": 0, "801": 11, "81": [4, 5], "813": 11, "82": [2, 5, 11], "820": [4, 11], "8200": 4, "8280": 4, "829": 4, "83": [2, 5, 10, 29], "830": 11, "835": 11, "8360": 4, "84": [0, 2, 4, 5, 11], "85": [0, 1, 5, 11], "850": 11, "86": 11, "860": 11, "8601": [6, 7, 23, 25], "867": 11, "87": [2, 4, 5, 11], "873550": 14, "88": [0, 2, 26], "883": 4, "885": 11, "89": [1, 4, 10, 15], "9": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 26], "90": [0, 2, 4, 13], "900": 4, "900000": [0, 1], "908": 11, "91": [0, 2, 4, 5, 8, 11, 13], "9190": 4, "92": [0, 1, 4, 8, 10, 11, 26], "920": 11, "928": 11, "929": 11, "93": [0, 1, 2, 8], "938": 2, "939": [2, 24], "94": [1, 2, 8], "940": 2, "941": 2, "942": 2, "943": 2, "95": [0, 1, 2, 4, 8, 11], "958": 4, "96": [0, 2, 4, 8, 9], "961": 4, "964": 4, "97": 2, "971": 11, "972": [1, 11], "973": 1, "974": 1, "975": 1, "98": 4, "985": 11, "99": [4, 11], "99133": 14, "99133_cd": 14, "997": 11, "A": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 18, 23, 24, 25, 26, 29], "But": 13, "By": [9, 16], "For": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 18, 20, 22, 23, 29], "IT": 11, "If": [0, 1, 2, 4, 5, 9, 10, 15, 18, 23, 25, 26], "In": [1, 13, 18, 19, 29], "NEAR": [0, 9, 14], "No": 13, "Not": [5, 24, 26], "One": 26, "Or": 15, "The": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 18, 19, 22, 23, 24, 25], "Then": 19, "There": [0, 18], "These": 29, "To": [13, 15, 19, 29], "__call__": 1, "__init__": [1, 23, 24, 25, 26], "__repr__": 25, "__str__": 25, "__weakref__": [24, 25], "_add_tabl": 1, "_alter_kwarg": 26, "_append_legend_handles_label": 1, "_ax": 1, "_axesbas": 1, "_base": 1, "_child": 1, "_children": 1, "_compute_plot_data": 1, "_convert_1d": 1, "_core": 1, "_get_lin": 1, "_get_stacked_valu": 1, "_initialize_stack": 1, "_invalidi": 1, "_invalidx": 1, "_is_ts_plot": 1, "_lib": 1, "_make_error_func": 1, "_make_legend": 1, "_make_plot": 1, "_mark_right_label": 1, "_matplotlib": 1, "_path": 1, "_plot": 1, "_read_json": 23, "_read_rdb": 23, "_request_autoscale_view": 1, "_to_unmasked_float_arrai": 1, "_update_line_limit": 1, "_update_stack": 1, "_warn_v3_profiles_outag": 26, "_xorig": 1, "abbrevi": [5, 11, 22, 23], "about": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 17, 18, 20, 23, 26, 28], "abov": [0, 1, 9, 13, 29], "accept": [23, 26], "access": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10], "access_cd": 16, "acr": 11, "across": 22, "action": 18, "activ": [0, 5, 6, 7, 23, 26], "ad": 9, "adam": 11, "adapt": 18, "add": [13, 18, 19, 22], "add_lin": 1, "addit": [3, 5, 6, 7, 11, 13, 15, 16, 17, 23, 28], "address": 27, "advanc": [13, 26], "aea": 13, "afp": 2, "after": [6, 7, 13, 23], "ag_dt": [4, 29], "ag_gage_ht": [4, 29], "ag_gage_ht_cd": [4, 29], "ag_tm": [4, 29], "agenc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 20, 23, 26], "agency_cd": [1, 2, 4, 8, 10, 14, 16, 29], "aggreg": [6, 7, 8, 23], "agre": 3, "agt": 2, "airmon": 22, "ajd": 2, "ak": 23, "alaska": 23, "all": [2, 5, 6, 7, 13, 15, 18, 22, 23, 24, 26], "allegheni": 15, "allen": 11, "allow": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 19, 23], "allowzip64": 22, "along": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13], "alreadi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "also": [1, 13, 19, 29], "alt_acy_va": 16, "alt_datum_cd": 16, "alt_meth_cd": 16, "alt_va": 16, "altern": [13, 17], "alwai": [1, 18], "america": 29, "amnet": 22, "amon": 22, "amp": [0, 1, 2, 4, 5, 8, 9, 10], "an": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 15, 16, 18, 19, 20, 23, 25, 26], "analysi": 12, "analyz": 10, "ani": [6, 7, 13, 15, 18, 23, 26], "anl_dt": 10, "anl_ent_cd": 10, "anl_set_no": 10, "annual": [15, 23], "anyth": 18, "apach": 23, "api": [17, 23, 24, 25, 26], "append": 13, "appli": 13, "applic": 13, "appreci": 18, "appropri": 18, "april": 10, "aqfr_cd": [10, 14, 16], "aqfr_type_cd": [14, 16], "ar": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 19, 22, 23, 24, 26, 29], "arang": 13, "area": [11, 24], "aren": 18, "arg": 1, "argument": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 23, 26], "argumentsn": [6, 7], "arizona": 23, "around": 18, "arr": 18, "arrai": 1, "articl": [10, 15, 18, 23], "artist": 1, "asarrai": 1, "aspect": 28, "assembl": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10], "assign": 29, "associ": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "assum": 25, "astimezon": 1, "atmospher": 22, "attach": 15, "attempt": [18, 29], "attr": 15, "attribut": [6, 7, 15, 23], "avail": [0, 5, 6, 8, 11, 12, 15, 23, 26, 29], "avast": 18, "awar": 26, "ax": [0, 1, 8, 9], "axi": 1, "b": 10, "backward": 18, "base": [5, 6, 7, 15, 23, 24, 25], "basemap": 13, "basemetadata": [23, 25, 26], "basi": 13, "basic": [6, 7, 12, 14, 18, 23], "basin": 16, "basin_cd": 16, "bbox": [6, 7, 23, 26], "becaus": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 20, 23, 29], "been": [7, 12, 13], "befor": [13, 18], "begin": [0, 1, 2, 4, 6, 7, 10, 13, 15, 23], "begin_d": [1, 2, 4, 10, 16, 23], "begin_yr": 8, "behind": 29, "being": [24, 26], "below": [1, 12, 13, 16, 27], "best": 18, "between": [0, 1, 2, 4, 6, 7, 23, 25, 26], "bgal": 23, "blob": 18, "block": 19, "blog": 18, "blue": 13, "body_part_id": 10, "bool": [18, 23, 24, 25, 26], "boolean": [6, 7, 10, 24], "both": [0, 18, 19, 23], "bottl": 10, "bound": 26, "boundari": 13, "box": 26, "branch": 19, "break": 18, "brief_list": 10, "browser": 19, "bsr": 2, "bt": 10, "btc": 10, "btr": 2, "build": 19, "built": 29, "burden": 13, "c": [15, 19, 26, 29], "calendar": [6, 7, 23], "call": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 23, 24, 25], "came": 20, "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 18, 19, 23, 24, 26, 29], "canada": 22, "cannot": [6, 7, 23], "capabl": 23, "capit": 22, "case": [22, 26, 29], "caseinsensitivedict": [23, 25, 26], "casrn": 3, "catalog": 7, "categor": 13, "categori": [5, 23], "caus": 1, "cd": 19, "cdt": 2, "cell": [1, 6, 7, 13], "cell_typ": [6, 7], "certain": [6, 7, 23], "certif": [23, 25, 26], "certifi": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "cf": [0, 8, 9], "chang": [1, 5, 6, 7, 15, 18, 19, 23], "channel": 19, "charact": 24, "characterist": 26, "characteristicnam": [15, 26], "charset": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "check": [18, 19, 23, 25, 26], "chemistri": 22, "chlorid": 15, "choos": 29, "chop_tank_info": 15, "choptank": 15, "choptankinfo": 15, "cl": 1, "class": [18, 22, 23, 24, 25, 26], "classmethod": 24, "clear": 2, "clone": 19, "cm": 13, "coastlin": 13, "code": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 19, 23, 24, 26], "codemirror_mod": [6, 7], "coll_ent_cd": 10, "collaps": [6, 7], "collect": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 23, 26], "colon": [6, 7, 23, 26], "color": 13, "column": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 14, 16, 23, 25, 29], "column_num": 1, "com": [18, 19], "combin": [13, 18], "comma": [1, 5, 6, 7, 11, 23, 24, 25], "command": 19, "comment": [12, 13, 15, 23, 26], "compat": [15, 18], "compress": [22, 26], "compresslevel": 22, "comptool": [10, 15, 23], "comput": 24, "conc": 22, "concaten": 26, "concentr": 22, "conduct": 15, "conf": 18, "configur": 24, "consid": [1, 10, 15], "consist": 13, "constitu": 22, "construct": 26, "construction_dt": 16, "consumpt": 11, "contain": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 20, 22, 23, 24, 25, 29], "content": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 24], "contigu": [6, 7, 13, 23], "contin": 8, "continu": [15, 18], "contrib_drain_area_va": 16, "contribut": 17, "control": 24, "control_type_cd": 2, "convers": 29, "conversionerror": 1, "convert": [1, 13, 23, 25, 29], "convert_unit": 1, "convert_xunit": 1, "convey": 11, "cookiecutt": 18, "coord_acy_cd": 16, "coord_datum_cd": 16, "coord_meth_cd": 16, "core": [1, 25], "cornflowerblu": 13, "corr": [5, 23], "correct": 5, "correspond": 27, "corrindep": 5, "could": [13, 18], "count": [0, 1, 9, 18], "count_nu": [8, 16], "counti": [5, 6, 7, 11, 15, 23, 26], "country_cd": 16, "county_cd": [11, 16], "county_nm": 11, "county_queri": [6, 7, 23], "countycd": [6, 7, 15, 23], "countycod": [15, 26], "cover": 13, "cr": 24, "creat": [6, 10, 13, 15, 23, 24, 25, 29], "criteria": 25, "cross": 10, "csv": [13, 26], "cubic": 5, "current": [5, 13, 18, 19, 22, 23, 26], "curv": 5, "custom": [23, 24, 25, 26], "d": [1, 8, 11, 13, 26], "dai": [1, 13, 23], "daili": [0, 1, 6, 7, 9, 15, 23], "dailydataavail": 15, "dailymultisit": 0, "dailyqandt": 0, "dailystreamflow": 0, "dakota": 26, "dam": [0, 9], "danvil": 14, "dash": 13, "data": [0, 1, 2, 3, 4, 5, 6, 7, 12, 13, 15, 16, 17, 18, 22, 23, 25, 26, 28, 29], "data2": 1, "data3": [1, 4], "data4": [1, 4], "data_path": 22, "data_retriev": 13, "data_type_cd": 16, "datafram": [0, 13, 15, 16, 23, 25, 26, 29], "datalim": 1, "dataph": 15, "dataretriev": [6, 7, 13, 14, 15, 16, 17, 18, 19, 21, 27, 28, 29], "dataset": 13, "date": [0, 1, 2, 4, 6, 7, 13, 15, 16, 23, 25, 26], "date2num": 1, "date_field": 25, "date_format": 10, "datetim": [0, 1, 4, 9, 10, 13, 14, 23, 25, 28], "datetime64": 1, "datetime_index": [1, 10, 15, 23], "datetimeconvert": 1, "datetimeindex": 1, "datetm": [23, 25, 26], "dateutil": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "day_nu": 8, "daylight": 29, "dd": [10, 23, 26, 29], "dec_coord_datum_cd": 16, "dec_lat_va": [13, 16], "dec_long_va": [13, 16], "decim": [6, 7, 23, 26], "decreas": 13, "def": [1, 13, 18], "default": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15, 16, 22, 23, 24, 25, 26, 29], "defin": [0, 1, 2, 4, 5, 6, 7, 8, 9, 13, 19, 23, 24, 25], "degre": [6, 7, 23, 26], "delimit": [1, 5, 11, 23, 25, 26], "deliv": 23, "demo": 12, "demonstr": [13, 18], "dep": [5, 22], "depart": 20, "depend": [6, 7, 19, 29], "deposit": 27, "deprec": 18, "depth_src_cd": [14, 16], "deriv": [23, 26], "describ": [0, 1, 9], "descript": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 18, 23], "desir": [24, 26], "detail": [6, 7, 16, 17, 18, 23, 29], "detect": 26, "determin": 24, "dev": 19, "dev1": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "develop": 18, "df": [13, 14, 16, 23, 25, 26, 29], "df2": 14, "df3": 14, "df_out": 13, "dflong": 15, "dfwide": 15, "dgb": 2, "dict": [23, 25], "dictionari": [23, 26], "differ": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 23], "digit": [5, 6, 7, 18, 23, 26], "direct": 1, "directli": [8, 17], "directori": [19, 22], "discharg": [0, 2, 4, 9, 13, 15, 23], "discharge2": 9, "discharge_cd": 2, "discharge_multisit": 9, "discharge_stat": 15, "discharge_todai": 9, "discharge_utc": 9, "discharge_va": 2, "dischargeunit": 15, "dischargewi": 15, "disclaim": 17, "discontinu": 14, "discret": [15, 23], "displai": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16], "display_nam": [6, 7], "dissolv": 15, "dist": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "distanc": 26, "district_cd": 16, "dlo": 2, "do": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 18, 23, 25, 29], "doc": [6, 7, 18, 19, 23, 26], "docexpans": 26, "docstr": [18, 22], "doctest": 18, "document": [16, 17, 19, 23, 24, 26], "doe": [1, 26], "doesn": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "doi": [10, 15, 18, 19, 23], "domain": 20, "domest": 23, "done": [18, 19], "doubl": 18, "download": [12, 13, 14, 16, 18, 22, 23, 24, 26], "download_workspac": 24, "downstream": 24, "dqi_cd": 10, "drain_area_va": 16, "drainareamin": 15, "draw": 1, "drawcoastlin": 13, "drawcountri": 13, "drawmeridian": 13, "drawparallel": 13, "drawriv": 13, "drawstat": 13, "drop": 13, "dropna": 13, "dt": 1, "dtype": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 16], "due": 29, "durat": 23, "dure": [6, 7, 11, 23, 26, 29], "dv": [0, 7, 15, 23], "e": [1, 3, 10, 12, 19, 23, 25], "each": [6, 7, 10, 11, 13, 23, 29], "earliest": 26, "easi": 13, "easier": 18, "east": [6, 7, 23], "echo": 15, "edit": 19, "edt": 2, "edu": [22, 27], "ehqm": 2, "eight": 26, "either": [12, 22, 24, 29], "elaps": [23, 25, 26], "els": [1, 13], "email": [10, 15, 23], "embed": 12, "emphas": 18, "empti": [0, 13], "enc": 2, "end": [0, 1, 2, 4, 6, 7, 11, 14, 15, 23, 29], "end_dat": [1, 2, 4, 10, 16, 23], "end_yr": 8, "enddat": [0, 1, 9, 10, 15], "enddt": [0, 6, 7, 8, 9, 23], "endpoint": [10, 15, 23], "english": 18, "enhanc": 18, "entir": 13, "entri": [25, 29], "environ": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 19], "environment": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "epa": 17, "epa_equival": 3, "equival": 12, "error": [13, 25], "errorbar": 1, "errorcheck": 22, "espsg": 24, "esri": 24, "est": 2, "etc": [23, 26], "eval": 15, "evalu": 9, "even": 18, "eventu": 23, "everi": 11, "exact": 23, "examin": 1, "exampl": [6, 7, 16, 17, 18, 22, 23, 25, 26], "examplesn": [6, 7], "exce": [6, 7, 23], "excel": 2, "except": [1, 25, 29], "execut": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 12], "execution_count": [6, 7], "exist": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 23, 29], "expand": [6, 7, 10, 16, 23], "expect": [23, 29], "explain": 18, "explor": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "expos": 22, "express": [18, 26], "exsa": [5, 23], "extend": 22, "extract": [22, 24], "f": 1, "f6x7h": 10, "facad": 13, "facil": 11, "fail": 1, "fair": 2, "fall": 7, "fals": [1, 6, 7, 10, 13, 15, 16, 18, 23, 24, 25, 26], "featur": [19, 24], "feet": [1, 5], "fetch": [16, 19], "few": 13, "field": [3, 13, 18, 25], "fig": [1, 13], "figsiz": 13, "figur": [1, 13], "file": [1, 10, 12, 18, 19, 20, 22, 24], "file_extens": [6, 7], "file_typ": [5, 15, 23], "filenam": 22, "filter": 23, "final": 13, "final_df": 13, "find": 1, "finish": 22, "fip": [6, 7, 23, 26], "first": [6, 7, 14, 16, 18, 19, 22, 23, 29], "five": 26, "fix": [5, 23], "flag": 24, "flexibl": 22, "float": 24, "float64": [0, 1, 2, 4, 5, 8, 9, 10], "flow": [5, 8, 24], "fmt": [6, 7, 23], "follow": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 19, 23], "foo": 18, "forg": 19, "fork": 19, "format": [0, 1, 2, 4, 6, 7, 8, 9, 15, 18, 23, 24, 25, 26, 29], "format_datetim": 25, "format_respons": 23, "formatstrformatt": 8, "forn": 6, "found": [1, 10, 15, 26], "frame": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 23, 25], "freq": 1, "fresh": 11, "from": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27], "from_streamstats_json": 24, "full": [0, 11, 13, 19, 23], "func": 1, "function": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 22, 23, 24, 25, 26, 27, 29], "functool": 1, "further": 24, "futur": 18, "g": [12, 23, 25], "g64a575d": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "gage": 5, "gage_height_va": 2, "gage_ht": [4, 29], "gage_ht_cd": [4, 29], "gage_va_chang": 2, "gage_va_tim": 2, "gcc": 10, "gdal": 22, "gener": [1, 11, 13, 23, 25, 26], "geodatabas": 24, "geojson": [24, 26], "geolog": [0, 1, 2, 4, 5, 6, 8, 9, 10, 20], "geospati": 13, "get": [0, 1, 2, 3, 4, 5, 6, 7, 11, 13, 14, 19, 22, 23, 24, 25, 26], "get_annual_mdn_map": 22, "get_annual_ntn_map": 22, "get_clip_path": 1, "get_discharge_measur": [12, 15, 23], "get_discharge_peak": [12, 15, 23], "get_dv": [4, 12, 15, 23], "get_gwlevel": [12, 15, 23], "get_info": [6, 15, 23], "get_iv": [12, 15, 23], "get_label": 1, "get_level_valu": 13, "get_path": 1, "get_pmcod": [12, 15, 23], "get_qwdata": [12, 15, 23], "get_rat": [12, 15, 23], "get_record": [13, 14, 15, 16, 23, 29], "get_result": [15, 26], "get_sample_watersh": 24, "get_stat": [12, 15, 23], "get_water_us": [12, 15, 23], "get_watersh": 24, "get_zip": 22, "getattr": 1, "getsit": 15, "gh28021": 1, "gigawatt": 11, "git": 19, "github": [10, 15, 16, 18, 19, 23], "given": [1, 18, 26], "glri": 10, "go": 1, "good": 2, "googl": [6, 7, 23], "got": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "gov": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 23, 24, 27], "gr11nq00e": 10, "gr12nk00e": 10, "gr13nk00e": 10, "gr14nk00f": 10, "gr15nk00f": 10, "gradient": 22, "greater": 10, "greatli": 18, "greensboro": 15, "grid": 22, "groundwat": [1, 11, 15, 23], "group": [3, 13, 18], "groupbi": 13, "gt": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13], "guid": 17, "gw": [1, 29], "gw_file_cd": 16, "gwlevel": [1, 23, 29], "ha": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 23, 29], "habitat": 26, "handl": [22, 23, 25], "hard": 26, "have": [1, 5, 6, 7, 12, 15, 23, 29], "hawaii": 23, "head": [13, 14], "header": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 15, 23, 25, 26], "height": [5, 13], "help": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 18, 23], "here": 29, "hg": 22, "hh": 29, "hi": 23, "histor": 13, "hole_depth_va": [14, 16], "home": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15], "hour": [11, 29], "how": [12, 13, 18], "howev": [13, 16, 18, 24], "html": [6, 7, 10, 15, 19, 23, 26], "http": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 18, 19, 22, 23, 24, 26, 27], "huc": [6, 7, 16, 23, 26], "huc_cd": 16, "huc_list": 6, "hyd_cond_cd": 10, "hyd_event_cd": 10, "hydroelectr": 11, "hydrolog": [6, 7, 23, 26], "hydrologi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "hyphen": 26, "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29], "id": [5, 11, 23, 24], "identif": 26, "identifi": [0, 1, 4, 6, 8, 9, 10, 13, 24], "idna": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "il": [13, 14], "illinoi": 26, "illioi": 13, "illustr": 16, "iloc": 13, "implement": [24, 26], "import": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 23, 29], "includ": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 15, 18, 22, 23, 24, 26], "includefeatur": 24, "includeflowtyp": 24, "includeparamet": 24, "incomplet": [1, 10, 15, 29], "increas": 13, "indep": 5, "index": [0, 1, 9, 10, 13, 16, 19, 23, 26, 29], "indic": [5, 6, 7, 9, 18, 23], "info": [14, 22], "inform": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 20, 22, 23, 24, 25, 26, 27, 28], "informationn": 6, "init": 24, "initi": 29, "input": 9, "insignific": 13, "instal": [6, 7, 13, 17], "instantan": [9, 14, 23], "instead": [13, 16], "instream": 11, "instruments_cd": 16, "int": 18, "int64": [1, 4, 8, 10, 11], "integ": [24, 29], "integr": 18, "intercept": 13, "interest": [11, 12], "interfac": [13, 18], "interior": 20, "intern": 18, "interpol": 18, "interpret": [6, 7], "introduct": 12, "inventori": 7, "inventory_dt": 16, "inventory_output": 10, "io": [10, 15, 23], "ipykernel": [6, 7], "ipynb": 12, "ipython": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "ipython3": [6, 7], "irrig": 11, "is_errorbar": 1, "is_pir": 18, "island": 26, "isn": 13, "iso": [6, 7, 23, 25], "issu": [16, 18], "its": 18, "iv": [9, 14, 23], "j": 10, "jmd": 2, "json": [0, 9, 23, 24], "jupyt": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "just": [1, 15], "k": [10, 11, 13], "kansa": 11, "keep": 18, "kernelspec": [6, 7], "keyword": [16, 23, 26], "kind": [1, 6, 7, 23], "kwarg": [1, 23, 26], "kwd": 1, "l": [10, 13, 23], "lab_std_va": 10, "label": [1, 13], "label_kw": 1, "label_nam": 1, "land": 1, "land_net_d": 16, "languag": [6, 7, 18], "language_info": [6, 7], "larg": 13, "larger": 12, "last": [1, 6, 7, 13, 23, 26], "lat": [13, 26], "lat_0": 13, "lat_1": 13, "lat_2": 13, "lat_va": [14, 16], "later": 13, "latest": [19, 23], "latitud": [6, 7, 13, 23, 26], "latlon": 13, "least": [13, 24], "left_ax": 1, "left_on": 13, "legaci": 15, "len": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "length": 11, "let": 13, "letter": [5, 11, 13, 22, 23], "lev_acy_cd": [1, 29], "lev_age_cd": [1, 29], "lev_agency_cd": 1, "lev_dt": [1, 29], "lev_dt_acy_cd": [1, 29], "lev_meth_cd": [1, 29], "lev_src_cd": [1, 29], "lev_status_cd": 1, "lev_tm": [1, 29], "lev_tz_cd": [1, 29], "lev_va": 1, "level": [1, 23], "li": 11, "lib": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15], "librari": 15, "licens": 17, "light": 18, "light_messag": 18, "lights_messag": 18, "like": [6, 7, 8, 18, 19, 23, 25, 26], "limit": [1, 6, 8, 26], "line": [1, 13], "line2d": 1, "lineplot": 1, "linestyl": 13, "linewidth": 13, "link": 19, "linregress": 13, "list": [0, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 18, 19, 23, 24, 25, 27], "listcomp": 1, "listlik": [5, 11, 25], "liter": 18, "littl": 13, "livestock": [11, 23], "ll": 13, "load": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13], "loc_web_d": [8, 16], "local": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15, 18, 19, 23, 29], "local_time_fg": 16, "locat": [13, 18, 24, 27], "logan": [0, 9], "lon": 13, "lon_0": 13, "long": [22, 26], "long_va": [14, 16], "longer": [10, 15, 18], "longitud": [6, 7, 23, 26], "longtitud": 13, "look": [8, 18, 22], "lookup": [5, 11, 23], "loss": 11, "lower": 22, "lt": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "m": [1, 10, 13, 29], "machin": 13, "mai": [6, 7, 10, 23], "main": [18, 19], "maintain": 18, "major": [6, 7, 16, 23], "make": [0, 1, 8, 9, 18, 19, 24], "manipul": 26, "map": [6, 7, 13, 22, 23], "map_nm": 16, "map_scale_fc": 16, "march": [10, 15, 23], "markdown": [6, 7], "mass": 18, "match": 23, "materi": 20, "matplotlib": [1, 8, 13], "matter": 13, "max": [0, 1, 8, 9, 23], "maximum": [0, 15], "md": [15, 18, 20, 23, 25, 26], "mdate": 1, "mdn": [6, 7, 22], "mdt": 2, "mean": [0, 1, 6, 7, 9, 13, 15, 18, 23], "mean_va": 8, "measur": [2, 13, 22, 23, 26], "measured_rating_diff": 2, "measurement_dt": 2, "measurement_nu": 2, "measurement_typ": 22, "measurements1": 2, "measurements2": 2, "measurements3": 2, "median": 23, "medium_cd": 10, "medium_grp_cd": 16, "meet": 18, "memori": 22, "mercuri": 27, "merg": 13, "meridian": 13, "messag": [18, 26], "metadata": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 23, 25, 26], "method": [15, 24], "metric": 26, "mgal": 11, "microirrig": 11, "might": 18, "mile": 26, "mimetyp": [6, 7, 26], "min": [0, 1, 8, 9, 13, 23], "minor": [6, 7, 23], "minut": [6, 7, 13, 23], "mjf": 2, "mm": [10, 23, 26, 29], "mn": 10, "mo005": 1, "mode": 22, "model": 23, "modifiedsinc": [6, 7, 23], "modul": [13, 22, 23, 24, 25, 26], "modulenotfounderror": 13, "monitor": [0, 1, 2, 4, 5, 6, 8], "month": 1, "month_nu": 8, "monthli": [8, 23], "more": [3, 6, 7, 10, 13, 15, 18, 20, 22, 23, 24, 26, 29], "most": [1, 13, 23, 24, 29], "mpl_toolkit": 13, "mplplot": 1, "mst": 2, "multi": [13, 23, 29], "multi_index": 23, "multipl": [0, 1, 2, 6, 8, 13, 18, 23, 29], "mung": 25, "munit": 1, "must": [6, 7, 11, 18, 22, 23], "n": [1, 6, 7, 10], "nadp": [21, 27], "nadp_zipfil": 22, "naiv": 1, "name": [1, 6, 7, 11, 13, 16, 18, 22, 23, 25, 26], "nameerror": 13, "nan": [0, 1, 2, 3, 4, 5, 8, 10, 14, 29], "narrow": 18, "nat": [1, 10], "nat_aqfr_cd": 16, "nation": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 23, 27], "nattyp": 1, "natur": 18, "navig": 12, "nbconvert_export": [6, 7], "nbformat": [6, 7], "nbformat_minor": [6, 7], "ndap": 22, "necessari": 19, "need": [0, 1, 8, 9, 13, 18], "network": 27, "new": [15, 18, 23, 29], "new_york": 29, "newlin": 1, "next": 13, "nitrat": 15, "nitrit": 26, "nml": 2, "none": [1, 2, 13, 18, 22, 23, 25, 26], "normal": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13, 29], "north": [6, 7, 23, 26], "nositeserror": 25, "notact": 0, "note": [0, 5, 6, 7, 8, 9, 13, 15, 20, 22, 23, 29], "notebook": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13], "notic": 13, "now": [6, 7, 13, 23, 29], "np": [1, 13], "ntn": 22, "null": [6, 7, 15], "num": 13, "number": [1, 5, 6, 7, 11, 13, 23, 26, 27, 29], "number_of_light": 18, "numer": [6, 7, 10, 23, 26], "numpi": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13, 18], "nwi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 15, 16, 18, 21, 26, 27, 29], "nwis_metadata": [23, 26], "nwisn": [6, 7], "nwisweb": [5, 23], "ny": 24, "o": 1, "object": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 23, 24, 25, 26, 29], "observ": [0, 3, 8, 9, 10], "obtain": [15, 17], "offici": 18, "offset": 29, "offstream": 11, "oh": [7, 11, 23], "ohio": [7, 11, 23], "onc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "one": [0, 6, 7, 11, 13, 23], "onesit": 7, "onli": [1, 6, 7, 8, 11, 13, 15, 23, 26], "onlin": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "open": [18, 19, 22], "oper": 18, "option": [6, 7, 16, 23, 24, 25, 26], "order": 19, "ordinari": 13, "org": 18, "organ": [11, 26], "orient": [6, 7, 23], "origin": 20, "other": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 23, 26], "otherwis": [18, 20], "our": 13, "out": [1, 12, 13, 15], "outlin": 15, "output": [6, 7, 16, 23, 26], "outputdatatypecd": [6, 7, 23], "outputn": 7, "outputs_hidden": [6, 7], "over": [18, 23], "overal": 24, "overlap": 0, "overwrit": [0, 1, 2, 4, 5, 9, 10, 23], "own": [12, 18, 19], "p": [9, 13, 29], "p00003": 10, "p00004": 10, "p00009": 10, "p00010": 10, "p00020": 10, "p00028": 10, "p00060": 10, "p00061": 10, "p00065": 10, "p00095": 10, "p00191": 10, "p00400": 10, "p00405": 10, "p00410": 10, "p00440": 10, "p00445": 10, "p00618": 10, "p00660": 10, "p00900": 10, "p00902": 10, "p00915": 10, "p00925": 10, "p00931": 10, "p00932": 10, "p00933": 10, "p00940": 10, "p00945": 10, "p00955": 10, "p10w": [6, 7, 23], "p1d": 23, "p1y": 23, "p30207": 10, "p30208": 10, "p30209": 10, "p30234": 10, "p32104": 10, "p34220": 10, "p34247": 10, "p50280": 10, "p50_va": 8, "p70300": 10, "p70301": 10, "p70302": 10, "p70303": 10, "p71851": 10, "p71999": 10, "p80154": 14, "p81903": 10, "p82398": [10, 14], "p84164": [10, 14], "p91157": 14, "p91158": 14, "p91159": 14, "p99111": 10, "p_valu": 13, "pa": [11, 15], "packag": [6, 7, 15, 17, 19, 23], "packagen": [6, 7], "pair": 5, "panda": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 23, 25, 26, 29], "pandas_convert": 1, "parallel": 13, "param1": 18, "param2": 18, "paramet": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 15, 16, 18, 22, 23, 24, 25, 26], "parameter_cd": [3, 8], "parameter_cod": [3, 10], "parametercd": [0, 3, 6, 7, 8, 9, 10, 15, 16, 23], "parametercod": [0, 8, 9], "parameterinfo": 15, "parametersn": [6, 7], "parm_cd": 16, "parm_grp_cd": 16, "parm_nm": 3, "parm_unit": 3, "pars": [11, 23], "part": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 18], "partial": 23, "particular": 23, "party_nm": 2, "pass": [1, 8, 18, 25, 26], "past": [6, 7, 23], "patch": 1, "path": [1, 22], "payload": 25, "pcode": [15, 23, 26], "pcr": 2, "pd": [13, 23, 26], "peak": [4, 23, 29], "peak_cd": [4, 29], "peak_d": 13, "peak_dat": 13, "peak_data": 4, "peak_discharge_trend": 13, "peak_dt": 13, "peak_tm": [4, 29], "peak_trend_analysi": 13, "peak_trend_regress": 13, "peak_va": [4, 13, 29], "peakdata": 15, "pennsylvania": [11, 15], "pep": 18, "pep8": 18, "per": [5, 6, 7, 10, 13, 23], "perform": [6, 7, 23], "period": [0, 1, 2, 4, 6, 7, 8, 9, 11, 16, 23, 26], "pertain": 26, "ph": [3, 15], "phosphoru": [7, 23], "physic": 3, "pip": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "pipelin": 18, "pirat": 18, "place": [18, 19, 25], "platform": 12, "pleas": 18, "plot": [0, 1, 8, 9, 12], "plot_backend": 1, "plot_class": 1, "plot_obj": 1, "plotaccessor": 1, "plotf": 1, "plt": 13, "pm_cd_compar": 10, "pmcode": 23, "point": [5, 6, 7, 23, 24, 26], "poor": 2, "popul": [11, 23], "portal": [17, 18, 26, 28], "possibl": [18, 23], "post": 18, "post0": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "postal": [6, 7, 23], "power": 11, "pr": 29, "precip": 22, "precipit": 22, "precis": [6, 7, 23], "predownload": 13, "prefer": [18, 23], "prefix": [6, 7, 23], "preformat_peaks_respons": 23, "prep_dt": 10, "prep_set_no": 10, "prepar": 12, "present": 23, "prevent": 1, "previou": [15, 18], "print": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 16, 29], "privat": 26, "process": 24, "product": [6, 7, 23], "profil": [15, 26], "program": 22, "project": [12, 13, 18, 20, 26], "project_cd": 10, "project_no": [14, 16], "prompt": 16, "properli": 23, "properti": 23, "propos": [18, 19], "protect": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "provid": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 23, 27, 28], "public": [11, 18, 20], "public_srsnam": 26, "pull": [13, 15, 19, 23], "put": [13, 18], "py": [1, 6, 7, 10, 15, 18], "pycharm": [6, 7], "pygments_lex": [6, 7], "pypi": 19, "pyplot": 13, "pytest": 19, "python": [6, 7, 12, 17, 18, 19], "python3": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15], "pytz": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "pyx": 1, "q_meas_used_fg": 2, "qualiti": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 14, 15, 17, 26, 27], "queri": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 23, 25, 26], "query_tim": [15, 23, 25, 26], "query_waterdata": 23, "query_waterservic": 23, "question": [15, 23], "quick": [0, 1, 8, 9], "quickli": 13, "quot": 18, "qw": [10, 15, 23], "qw_sample_wid": 10, "qwdata": [2, 10, 14, 15, 23], "r": [1, 13, 17, 18, 19, 22, 23, 24], "r_valu": 13, "radial": 26, "rais": [1, 26], "rang": [6, 7, 23], "rate": [5, 15, 23], "rather": [9, 11], "ratingdata": [5, 15], "ratings_data": 15, "ravel": 1, "raw": [15, 18], "rawdailydata": 15, "rcode": 24, "rdb": [1, 2, 4, 8, 10, 23], "rdb_compress": 10, "rdb_inventory_output": 10, "rdb_qw_attribut": 10, "re": 18, "read": [18, 22, 23], "read_csv": 13, "readm": [12, 18], "readnwisdata": 15, "readnwisdv": 15, "readnwisgwl": 15, "readnwismea": 15, "readnwispcod": 15, "readnwispeak": 15, "readnwisqw": 15, "readnwisr": 15, "readnwissit": 15, "readnwisstat": 15, "readnwisus": 15, "readnwisuv": 15, "readwqpdata": 15, "readwqpqw": 15, "realli": 13, "reason": [6, 7, 23], "recach": 1, "recal": 13, "receiv": [10, 15, 24], "recent": [1, 13, 15, 23], "reclaim": 11, "recommend": 19, "record": [6, 7, 11, 13, 16, 22, 23], "red": 13, "refer": [10, 15, 16, 17, 24, 25, 26], "region": [7, 23, 24, 26], "register_pandas_matplotlib_convert": 1, "regress": 12, "regular": 18, "relat": 5, "releas": [11, 18, 19], "reliability_cd": 16, "remain": 15, "remot": [13, 19], "remov": 18, "repeat": 16, "replac": 1, "report": [8, 11], "repositori": [12, 19], "repr": 25, "repres": [10, 22], "represent": 23, "reproduc": 18, "request": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 19, 23, 24, 25, 26, 29], "requir": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13, 19], "reset": 1, "reshap": 15, "resid": 18, "resolut": 13, "resour": 13, "resourc": 27, "respect": 22, "respons": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 15, 23, 24, 25, 26], "restrict": [6, 7, 23], "result": [6, 7, 12, 15, 16, 24, 26, 29], "result_lab_cm_tx": 10, "result_particle_size_basi": 3, "result_sample_fract": 3, "result_statistical_basi": 3, "result_temperature_basi": 3, "result_time_basi": 3, "result_weight_basi": 3, "resultn": [6, 7], "ret": 1, "retir": [10, 15, 23], "retriev": [0, 1, 2, 3, 4, 5, 6, 7, 8, 12, 22, 23, 27], "retriv": 8, "return": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 22, 23, 24, 25, 26, 29], "rev": 10, "rhode": 26, "ri": 23, "rich": [6, 7, 23], "right_index": 13, "river": [0, 9, 13, 14, 15], "row": [0, 1, 2, 5, 8, 9, 10, 11, 13, 14, 23, 29], "rpt_lev_cd": 10, "rpt_lev_va": 10, "rule": 18, "run": [12, 13, 19], "runner": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15], "salin": 11, "same": [1, 16, 23, 26], "samp_type_cd": 10, "sampl": [14, 15, 23, 24], "sample_dt": [10, 14], "sample_end_dt": [10, 14], "sample_end_tm": [10, 14], "sample_lab_cm_txt": 10, "sample_start_time_datum_cd": 10, "sample_tm": [10, 14], "satisfi": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "save": 29, "scalei": 1, "scalex": 1, "scatter": 13, "sch": 10, "sch4433": 10, "scipi": 13, "scope": 18, "search": [7, 18, 23, 26], "second": [5, 6, 7, 10, 18, 23, 29], "see": [0, 1, 3, 6, 7, 17, 20, 22, 23, 24, 26, 29], "select": [6, 7, 23, 25], "self": [1, 11, 25], "semant": 18, "semicolon": 26, "send": [18, 25], "sensit": 26, "sent": 1, "separ": [6, 7, 23, 24, 25, 26], "seri": [0, 1, 7, 8, 9, 13, 23, 25], "seriescatalogoutput": [6, 7, 16, 23], "serv": [11, 22], "servic": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 23, 24, 26, 27, 29], "set": [0, 1, 3, 8, 9, 10, 12, 15, 16, 19, 23, 25, 26, 29], "set_clip_path": 1, "set_label": 1, "set_major_formatt": 8, "set_xlabel": [0, 1, 8, 9], "set_ylabel": [0, 1, 8, 9], "setup": [12, 18, 23], "sever": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 27], "shape": 24, "shapefil": 24, "shift": 5, "should": [1, 8, 18], "show": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 15], "shown": 13, "simpl": 13, "simplifi": 24, "sinc": 13, "singil": 13, "singl": [0, 1, 2, 4, 7, 13, 18, 23, 29], "site": [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 15, 23, 25, 26, 29], "site_df": 13, "site_id": [1, 4, 5, 9, 10], "site_info": [15, 23, 26], "site_no": [0, 1, 2, 4, 5, 8, 9, 10, 13, 14, 16, 23, 26, 29], "site_tp_cd": [1, 6, 7, 14, 16, 23, 29], "site_visit_coll_agency_cd": 2, "siteid": [0, 6, 9, 10, 15, 26], "siteinfo": [6, 15], "siteinfo_huc": 6, "siteinfo_multi": 6, "siteinfo_st": 6, "sitelistpho": 7, "sitenumb": [0, 8, 15], "siteoutput": [6, 7, 23], "sitesn": 6, "sitesnj": 15, "sitetyp": [6, 7, 15, 23], "six": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 23], "size": 1, "sl_datum_cd": 1, "sl_lev_va": 1, "slh": [22, 27], "slightli": 13, "slope": 13, "small": 18, "smaller": 18, "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 18, 26], "solid": 13, "some": [1, 12, 13, 26], "somepath": 22, "someth": 19, "sort": 13, "sound": 18, "sourc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 17, 18, 22, 23, 24, 25, 26], "south": [6, 7, 23], "spatial": 24, "specif": [0, 7, 15, 17, 18, 23, 26], "specifi": [1, 5, 6, 7, 8, 13, 14, 22, 23, 26], "specific_cond": 15, "specificcond": 15, "spin": 13, "spring": [6, 7, 23], "sprinkler": 11, "squar": 13, "srs_id": 16, "srsname": 3, "ss": [10, 29], "ssl": [23, 25, 26], "ssl_check": [23, 25, 26], "st": [6, 7, 14, 23], "stabl": 19, "stack": 13, "stacking_id": 1, "stackoverflow": 18, "stage": 5, "stamp": 9, "stand": 14, "standard": [3, 13, 23, 25, 26], "start": [0, 1, 2, 4, 6, 7, 13, 14, 15, 23, 29], "start_dat": 13, "startdat": [0, 1, 9, 10, 15], "startdatehi": [15, 26], "startdatelo": [15, 26], "startdt": [0, 1, 6, 7, 8, 9, 23], "stat": [8, 13, 23], "stat_cd": 16, "stat_cod": 0, "statcd": [0, 15, 23], "state": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 20, 22, 23, 24, 26], "state_cd": [11, 13, 16], "state_cod": 13, "state_nam": 11, "statecd": [6, 7, 15, 23], "statecod": [15, 26], "staten": 6, "station": [4, 13, 23], "station_nm": [14, 16], "statist": [0, 1, 8, 9, 13, 23, 24], "statreporttyp": [8, 15, 23], "stattypecd": [8, 15, 23], "statu": [10, 15, 23], "statyeartyp": 23, "std": [0, 1, 3, 9, 13], "std_error": 13, "step": [18, 19], "still": 9, "stor": 5, "store": 24, "str": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 18, 23, 25, 26], "stream": [6, 7, 15, 23, 26], "streamflow": [0, 1, 4, 5, 6, 7, 9, 17, 23], "streamgag": 23, "streamlin": 18, "streamstat": [21, 27], "streamstats_json": 24, "streamstatsservic": 24, "streamtyp": 15, "strict_timestamp": 22, "string": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 18, 22, 23, 24, 25, 26], "structur": [23, 25, 26], "studi": 24, "style": 1, "subdirectori": 12, "submitted_form": 10, "submodul": 18, "success": 18, "summari": [0, 1, 9, 11], "suppli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 23, 26], "support": [0, 1, 3, 8, 9, 10, 11, 26], "surfac": [1, 2, 11], "surface_data": 15, "surfacedata": 15, "survei": [0, 1, 2, 4, 5, 6, 8, 9, 10, 20], "swagger": 26, "switch": [6, 7, 16, 23], "symbol": 18, "system": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 18, 23, 27], "t": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 18], "tabl": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 23, 27], "tablen": [6, 7], "tabul": 10, "tag": 18, "take": 13, "team": 18, "temp": 13, "temperatur": [0, 15], "temperatureandflow": 15, "ten": [6, 7, 23], "term": 22, "termin": 19, "test": [0, 18, 19, 22, 23], "text": [0, 1, 6, 7, 8, 9], "than": [9, 10, 11, 23], "thank": 18, "thar": 18, "thei": [6, 7, 8, 9, 18, 23, 26], "them": 26, "therefor": 29, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 19, 20, 22, 23, 24, 26, 29], "thing": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11], "those": [6, 7, 23], "thousand": 11, "through": [13, 18], "ticker": 8, "tif": 22, "tif_nam": 22, "time": [0, 1, 2, 6, 7, 8, 12, 13, 15, 23, 25, 26, 29], "time_field": 25, "timedelta": [23, 25, 26], "timedelta64": 13, "timestamp": [1, 9, 23], "timezon": [23, 25, 29], "tm_datum_rlbty_cd": 10, "to_csv": 13, "to_datetim": [13, 29], "to_str": 25, "todo": 1, "tolist": 13, "took": 15, "tool": [15, 22, 26], "topic": 28, "topo_cd": 16, "total": [3, 11, 22, 23], "tox": 10, "tp": 23, "traceback": [1, 13], "tradit": 5, "transform": [13, 15], "translat": 25, "treatment": 11, "trend": 27, "tri": 23, "tripl": 18, "troubleshoot": 18, "true": [6, 7, 10, 13, 15, 16, 18, 22, 23, 24, 25, 26], "try": 1, "ts_id": [8, 16], "tslib": 1, "tu_id": 10, "tupl": [15, 23, 26], "turn": [8, 25], "two": [4, 5, 6, 7, 13, 18, 23], "txt": 19, "type": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 15, 18, 22, 23, 24, 25, 26], "typic": 5, "tz": [1, 29], "tz_cd": [2, 16], "tz_convert": 29, "tz_field": 25, "tz_local": 29, "tzdata": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "tzi": 1, "tzinfo": 1, "tzoutput": 10, "u": [6, 7, 15, 23, 26, 27], "ugli": 13, "ui": 26, "uncom": 13, "uncompress": 26, "unfilt": 3, "uniform": 27, "unit": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 20, 22, 23, 26], "unless": 20, "unpack": [23, 26], "unspecifi": 2, "unsupport": 1, "up": [1, 6, 7, 13, 23], "updat": [1, 10, 15, 23, 29], "upstream": 19, "url": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 15, 22, 23, 25, 26, 27], "urllib3": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "us": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 15, 16, 17, 18, 19, 23, 24, 25, 26, 29], "usag": [12, 15, 18], "usagen": [6, 7], "usepa": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "user": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13, 17, 23, 26], "userwarn": [1, 10, 15], "usg": [6, 7, 12, 14, 15, 17, 18, 19, 23, 24, 26, 27, 29], "usgsmnwc": 10, "usr": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "usual": [5, 23], "ut": [0, 6, 7, 9], "utah": 7, "utc": [1, 23, 29], "util": [1, 10, 13, 15, 21, 23, 26], "utsit": 7, "v": 1, "v3": 26, "valid": [6, 7, 23], "valu": [0, 1, 2, 4, 5, 6, 7, 10, 13, 14, 23, 25, 29], "valueerror": 1, "variabl": [0, 3, 8, 9, 10, 23], "variable_info": 23, "variou": [13, 28], "ve": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13], "vegetationlight": 2, "vegetationmoder": 2, "vermilion": 14, "version": [1, 6, 7, 12, 19], "vertic": 1, "via": [6, 18], "view": [1, 15, 19], "vignett": 23, "virtual": 19, "virtualenv": 19, "visit": [12, 15, 22, 23], "visual": [6, 7, 23], "w": 10, "wa": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 15, 18, 22, 23, 29], "wai": [1, 13], "want": [1, 6, 7, 14, 18, 23], "warn": [1, 10, 13, 15, 18, 23, 26], "washington": 26, "wastewat": 11, "water": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 15, 16, 17, 23, 26, 27], "water_us": 23, "waterdata": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 15, 23, 27], "waterqualitydata": [26, 27], "waterservic": [0, 1, 6, 7, 8, 9, 23, 27], "watersh": [6, 7, 23, 24], "we": [12, 13, 14, 19], "weak": [24, 25], "web": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 18, 23, 27, 29], "webservic": 17, "webservices_document": 26, "week": [6, 7, 23], "weight": 26, "welcom": 18, "well": [6, 7, 23], "well_depth_va": [14, 16], "were": [6, 7, 23], "west": [6, 7, 23], "wgs84": 26, "what": 8, "what_act": 26, "what_activity_metr": 26, "what_detection_limit": 26, "what_habitat_metr": 26, "what_organ": 26, "what_project": 26, "what_project_weight": 26, "what_sit": [7, 15, 23, 26], "whatnwisdata": 15, "whatwqpdata": 15, "whatwqpmetr": 15, "whatwqpsampl": 15, "whatwqpsit": 15, "when": [0, 13, 18, 22, 25, 29], "where": [1, 5, 6, 7, 18, 23, 24], "wherea": 13, "whether": [6, 7, 18, 19, 23, 24], "which": [0, 1, 2, 3, 4, 6, 8, 9, 10, 11, 13, 14, 18, 22, 23, 26], "whole": [6, 7, 11, 23], "whomev": 18, "wi": 15, "wide": [10, 12, 15, 23], "wide_format": [10, 23], "widnr_wqx": 15, "width": 13, "window": [1, 8], "wisc": [22, 27], "wish": 16, "withdraw": 11, "within": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 18, 19, 23, 26], "without": [1, 13], "wnj": 2, "wood": 11, "work": [18, 19, 22, 23], "workspac": 24, "workspaceid": 24, "would": [13, 18, 24], "wq_data": 10, "wq_data2": 10, "wq_multi_sit": 10, "wqp": [15, 21], "wqp_metadata": 26, "wqp_url": 26, "wqx": 26, "wrap": 1, "wrapper": [1, 24, 25], "wrd": 10, "writeabl": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "written": 18, "www": 26, "wyandot": 11, "wyandott": 11, "x": [1, 6, 7, 8, 13, 14, 24, 29], "x1": 8, "x2": 8, "x3": 8, "xaxi": [1, 8], "xconv": 1, "xlim": 1, "xlocat": 24, "y": [0, 1, 8, 9, 13, 24], "y_valu": 1, "ye": [2, 26], "year": [1, 22, 23, 29], "year_last_pk": [4, 29], "year_nu": 8, "yet": [6, 24], "ylocat": 24, "yohoho": 18, "york": [11, 29], "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 18, 19, 23], "your": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 18, 19, 29], "yyyi": [10, 22, 23, 26, 29], "z": 9, "zip": [22, 24, 26], "zipfil": [22, 24], "zone": 25}, "titles": ["USGS dataretrieval Python Package get_dv() Examples", "USGS dataretrieval Python Package get_gwlevels() Examples", "USGS dataretrieval Python Package get_discharge_measurements() Examples", "USGS dataretrieval Python Package get_pmcodes() Examples", "USGS dataretrieval Python Package get_discharge_peaks() Examples", "USGS dataretrieval Python Package get_ratings() Examples", "<no title>", "<no title>", "USGS dataretrieval Python Package get_stats() Examples", "USGS dataretrieval Python Package get_iv() Examples", "USGS dataretrieval Python Package get_qwdata() Examples", "USGS dataretrieval Python Package get_water_use() Examples", "Examples", "National trends in peak annual streamflow", "Examples from the Readme file on retrieving NWIS data", "Python Equivalents to R Vignette Examples", "Retrieving site information", "Welcome", "Contributing", "Installation Guide", "License and Disclaimer", "API reference", "dataretrieval.nadp", "dataretrieval.nwis", "dataretrieval.streamstats", "dataretrieval.utils", "dataretrieval.wqp", "Data Portals", "User Guide", "Datetime Information"], "titleterms": {"1": [8, 9, 10, 11], "2": [8, 9, 10, 11], "2000": 8, "2007": 8, "3": [8, 9, 10, 11], "4": [9, 10], "5": 9, "acknowledg": 18, "addit": [0, 1, 2, 4, 8, 9, 10], "all": [8, 10, 11], "an": [9, 11], "analysi": 13, "annual": [8, 12, 13], "api": 21, "basic": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13], "begin": 9, "between": [8, 9], "bug": 18, "categori": 11, "certain": 11, "code": 18, "conda": 19, "content": [17, 28], "contribut": 18, "contributor": 18, "daili": 8, "data": [8, 9, 10, 11, 14, 27], "dataretriev": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 22, 23, 24, 25, 26], "date": [9, 10], "datetim": 29, "defin": 10, "deposit": 22, "develop": 19, "discharg": 8, "disclaim": 20, "document": 18, "duplic": 12, "embed": 15, "end": [9, 10], "entir": 11, "equival": 15, "exampl": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 14, 15], "featur": 18, "feedback": 18, "file": 14, "fix": 18, "format": 10, "from": [12, 14], "function": 12, "get": [8, 9, 10], "get_discharge_measur": 2, "get_discharge_peak": 4, "get_dv": 0, "get_gwlevel": 1, "get_iv": 9, "get_pmcod": 3, "get_qwdata": 10, "get_rat": 5, "get_stat": 8, "get_water_us": 11, "guid": [19, 28], "guidelin": 18, "hydroshar": 12, "implement": 18, "includ": 10, "individu": 9, "inform": [16, 29], "inspect": 29, "instal": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 19], "interpret": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "introduct": 13, "licens": 20, "list": 10, "mean": 8, "median": 8, "mercuri": 22, "metadata": 15, "monitor": [9, 10], "multipl": 10, "nadp": 22, "nation": [12, 13, 22], "network": 22, "notebook": 12, "nwi": [9, 14, 23], "obtain": 12, "one": 10, "packag": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 18], "paramet": [9, 10], "peak": [12, 13], "period": 10, "pip": 19, "plot": 13, "portal": 27, "prepar": 13, "pull": 18, "python": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 15], "qualiti": 10, "r": [12, 15], "readm": 14, "refer": 21, "regress": 13, "report": 18, "request": [8, 18], "result": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13], "retriev": [9, 10, 11, 14, 16], "sampl": 10, "serial": 10, "setup": 13, "simpl": 12, "singl": [8, 9, 10], "site": [8, 9, 10, 16], "specif": [9, 11], "standard": 18, "start": [9, 10], "state": 11, "streamflow": [12, 13], "streamstat": 24, "submit": 18, "tabl": 17, "temperatur": 8, "time": [9, 10], "timestamp": 29, "todai": 9, "todo": [22, 23, 26], "trend": [12, 13, 22], "two": [8, 9, 11], "unit": 9, "updat": 18, "us": [9, 11, 12], "usag": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13], "user": [19, 28], "usg": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "utc": 9, "util": 25, "valu": [8, 9], "version": 18, "via": 19, "vignett": [12, 15], "wai": 18, "water": [10, 11], "welcom": 17, "within": 10, "wqp": 26, "write": 18, "year": [8, 11]}}) \ No newline at end of file diff --git a/userguide/dataportals.html b/userguide/dataportals.html index 06c8e66..2f2584c 100644 --- a/userguide/dataportals.html +++ b/userguide/dataportals.html @@ -4,7 +4,7 @@ - Data Portals — dataretrieval 0.1.dev1+gc434b13 documentation + Data Portals — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/userguide/index.html b/userguide/index.html index 4a52b85..0a274ef 100644 --- a/userguide/index.html +++ b/userguide/index.html @@ -4,7 +4,7 @@ - User Guide — dataretrieval 0.1.dev1+gc434b13 documentation + User Guide — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - + diff --git a/userguide/timeconventions.html b/userguide/timeconventions.html index 137c86a..828ba4a 100644 --- a/userguide/timeconventions.html +++ b/userguide/timeconventions.html @@ -4,7 +4,7 @@ - Datetime Information — dataretrieval 0.1.dev1+gc434b13 documentation + Datetime Information — dataretrieval 0.1.dev1+g64a575d documentation @@ -15,7 +15,7 @@ - +