diff --git a/.buildinfo b/.buildinfo index 3234f26..d794abe 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: d1a812aa4fc5d2a936e7f08eb4fd2f4a +config: e433821e94cede3a1e26616fe9095f71 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_images/examples_USGS_dataretrieval_GroundwaterLevels_Examples_16_1.png b/_images/examples_USGS_dataretrieval_GroundwaterLevels_Examples_16_1.png index 0a77bd0..ffeaa10 100644 Binary files a/_images/examples_USGS_dataretrieval_GroundwaterLevels_Examples_16_1.png and b/_images/examples_USGS_dataretrieval_GroundwaterLevels_Examples_16_1.png differ diff --git a/_modules/dataretrieval/nadp.html b/_modules/dataretrieval/nadp.html index be27965..fad5f67 100644 --- a/_modules/dataretrieval/nadp.html +++ b/_modules/dataretrieval/nadp.html @@ -3,7 +3,7 @@ - dataretrieval.nadp — dataretrieval 0.1.dev1+g64a575d documentation + dataretrieval.nadp — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -14,7 +14,7 @@ - + diff --git a/_modules/dataretrieval/nwis.html b/_modules/dataretrieval/nwis.html index 3c6361b..070f722 100644 --- a/_modules/dataretrieval/nwis.html +++ b/_modules/dataretrieval/nwis.html @@ -3,7 +3,7 @@ - dataretrieval.nwis — dataretrieval 0.1.dev1+g64a575d documentation + dataretrieval.nwis — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -14,7 +14,7 @@ - + @@ -115,9 +115,10 @@

Source code for dataretrieval.nwis

 PARAMCODES_URL = 'https://help.waterdata.usgs.gov/code/parameter_cd_nm_query?'
 ALLPARAMCODES_URL = 'https://help.waterdata.usgs.gov/code/parameter_cd_query?'
 
-WATERSERVICES_SERVICES = ['dv', 'iv', 'site', 'stat', 'gwlevels']
+WATERSERVICES_SERVICES = ['dv', 'iv', 'site', 'stat']
 WATERDATA_SERVICES = [
     'qwdata',
+    'gwlevels',
     'measurements',
     'peaks',
     'pmcodes',
@@ -532,12 +533,23 @@ 

Source code for dataretrieval.nwis

     """
     _check_sites_value_types(sites)
 
-    kwargs['startDT'] = kwargs.pop('startDT', start)
-    kwargs['endDT'] = kwargs.pop('endDT', end)
-    kwargs['sites'] = kwargs.pop('sites', sites)
+    # Make kwargs backwards compatible with waterservices
+    # vocabulary
+    if 'startDT' in kwargs:
+        kwargs['begin_date'] = kwargs.pop('startDT')
+    if 'endDT' in kwargs:
+        kwargs['end_date'] = kwargs.pop('endDT')
+    if 'sites' in kwargs:
+        kwargs['site_no'] = kwargs.pop('sites')
+    if 'stateCd'in kwargs:
+        kwargs['state_cd'] = kwargs.pop('stateCd')
+
+    kwargs['begin_date'] = kwargs.pop('begin_date', start)
+    kwargs['end_date'] = kwargs.pop('end_date', end)
+    kwargs['site_no'] = kwargs.pop('site_no', sites)
     kwargs['multi_index'] = multi_index
 
-    response = query_waterservices('gwlevels', ssl_check=ssl_check, **kwargs)
+    response = query_waterdata('gwlevels', format = 'rdb', ssl_check=ssl_check, **kwargs)
 
     df = _read_rdb(response.text)
 
diff --git a/_modules/dataretrieval/streamstats.html b/_modules/dataretrieval/streamstats.html
index aa380ca..220011c 100644
--- a/_modules/dataretrieval/streamstats.html
+++ b/_modules/dataretrieval/streamstats.html
@@ -3,7 +3,7 @@
 
   
   
-  dataretrieval.streamstats — dataretrieval 0.1.dev1+g64a575d documentation
+  dataretrieval.streamstats — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
 
@@ -14,7 +14,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/_modules/dataretrieval/utils.html b/_modules/dataretrieval/utils.html
index 64e44e3..035cbe4 100644
--- a/_modules/dataretrieval/utils.html
+++ b/_modules/dataretrieval/utils.html
@@ -3,7 +3,7 @@
 
   
   
-  dataretrieval.utils — dataretrieval 0.1.dev1+g64a575d documentation
+  dataretrieval.utils — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
 
@@ -14,7 +14,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/_modules/dataretrieval/wqp.html b/_modules/dataretrieval/wqp.html
index c0ece7e..6654047 100644
--- a/_modules/dataretrieval/wqp.html
+++ b/_modules/dataretrieval/wqp.html
@@ -3,7 +3,7 @@
 
   
   
-  dataretrieval.wqp — dataretrieval 0.1.dev1+g64a575d documentation
+  dataretrieval.wqp — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
 
@@ -14,7 +14,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/_modules/index.html b/_modules/index.html
index 9ccfa91..589456e 100644
--- a/_modules/index.html
+++ b/_modules/index.html
@@ -3,7 +3,7 @@
 
   
   
-  Overview: module code — dataretrieval 0.1.dev1+g64a575d documentation
+  Overview: module code — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
 
@@ -14,7 +14,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/_static/documentation_options.js b/_static/documentation_options.js
index f6917d4..6fc38cd 100644
--- a/_static/documentation_options.js
+++ b/_static/documentation_options.js
@@ -1,5 +1,5 @@
 const DOCUMENTATION_OPTIONS = {
-    VERSION: '0.1.dev1+g64a575d',
+    VERSION: '0.1.dev1+gd3865a2',
     LANGUAGE: 'en',
     COLLAPSE_INDEX: false,
     BUILDER: 'html',
diff --git a/examples/USGS_dataretrieval_DailyValues_Examples.html b/examples/USGS_dataretrieval_DailyValues_Examples.html
index e73de01..790b3c3 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+g64a575d documentation
+  USGS dataretrieval Python Package get_dv() Examples — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,10 +129,10 @@ 

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+g64a575d)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)
 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)
+Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)
 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)
 Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)
 Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)
diff --git a/examples/USGS_dataretrieval_DailyValues_Examples.ipynb b/examples/USGS_dataretrieval_DailyValues_Examples.ipynb
index 4e9386c..8b162e2 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-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"
+     "iopub.execute_input": "2024-08-02T00:48:17.042734Z",
+     "iopub.status.busy": "2024-08-02T00:48:17.042556Z",
+     "iopub.status.idle": "2024-08-02T00:48:17.774766Z",
+     "shell.execute_reply": "2024-08-02T00:48:17.774121Z"
     },
     "pycharm": {
      "is_executing": true,
@@ -45,16 +45,16 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)\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: 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.1)\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",
@@ -82,10 +82,10 @@
    "execution_count": 2,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:17.777690Z",
+     "iopub.status.busy": "2024-08-02T00:48:17.777253Z",
+     "iopub.status.idle": "2024-08-02T00:48:18.064942Z",
+     "shell.execute_reply": "2024-08-02T00:48:18.064406Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -131,10 +131,10 @@
    "execution_count": 3,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:18.067662Z",
+     "iopub.status.busy": "2024-08-02T00:48:18.067253Z",
+     "iopub.status.idle": "2024-08-02T00:48:18.575195Z",
+     "shell.execute_reply": "2024-08-02T00:48:18.574685Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -177,10 +177,10 @@
    "execution_count": 4,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:18.577406Z",
+     "iopub.status.busy": "2024-08-02T00:48:18.577054Z",
+     "iopub.status.idle": "2024-08-02T00:48:18.586387Z",
+     "shell.execute_reply": "2024-08-02T00:48:18.585935Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -336,10 +336,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:18.588540Z",
+     "iopub.status.busy": "2024-08-02T00:48:18.588195Z",
+     "iopub.status.idle": "2024-08-02T00:48:18.591396Z",
+     "shell.execute_reply": "2024-08-02T00:48:18.590864Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -378,10 +378,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:18.593506Z",
+     "iopub.status.busy": "2024-08-02T00:48:18.593164Z",
+     "iopub.status.idle": "2024-08-02T00:48:18.600001Z",
+     "shell.execute_reply": "2024-08-02T00:48:18.599516Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -487,10 +487,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:18.602083Z",
+     "iopub.status.busy": "2024-08-02T00:48:18.601697Z",
+     "iopub.status.idle": "2024-08-02T00:48:19.149825Z",
+     "shell.execute_reply": "2024-08-02T00:48:19.149192Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -536,10 +536,10 @@
    "execution_count": 8,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:19.152276Z",
+     "iopub.status.busy": "2024-08-02T00:48:19.151929Z",
+     "iopub.status.idle": "2024-08-02T00:48:19.155294Z",
+     "shell.execute_reply": "2024-08-02T00:48:19.154728Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -584,10 +584,10 @@
    "execution_count": 9,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:19.157612Z",
+     "iopub.status.busy": "2024-08-02T00:48:19.157204Z",
+     "iopub.status.idle": "2024-08-02T00:48:19.329694Z",
+     "shell.execute_reply": "2024-08-02T00:48:19.329183Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -806,10 +806,10 @@
    "execution_count": 10,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:19.331994Z",
+     "iopub.status.busy": "2024-08-02T00:48:19.331609Z",
+     "iopub.status.idle": "2024-08-02T00:48:19.526667Z",
+     "shell.execute_reply": "2024-08-02T00:48:19.526156Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -1060,10 +1060,10 @@
    "execution_count": 11,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:19.528903Z",
+     "iopub.status.busy": "2024-08-02T00:48:19.528540Z",
+     "iopub.status.idle": "2024-08-02T00:48:19.971285Z",
+     "shell.execute_reply": "2024-08-02T00:48:19.970785Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_GroundwaterLevels_Examples.html b/examples/USGS_dataretrieval_GroundwaterLevels_Examples.html
index 84eeddb..b8b84e3 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+g64a575d documentation
+  USGS dataretrieval Python Package get_gwlevels() Examples — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,10 +129,10 @@ 

Install the Package

@@ -246,6 +246,7 @@

Interpreting the Resultlev_src_cd lev_meth_cd lev_age_cd + parameter_cd datetime @@ -265,6 +266,7 @@

Interpreting the Result + @@ -276,9 +278,9 @@

Interpreting the Result1945-10-12 22:35 +0000 - 27.35 - NaN NaN + 4192.65 + NGVD29 1 USGS m @@ -286,35 +288,37 @@

Interpreting the ResultS O A + 62610 - 1999-06-04 18:00:00+00:00 + 1945-10-12 22:35:00+00:00 USGS 434400121275801 GW - 1999-06-04 - 18:00 + 1945-10-12 + 22:35 +0000 - 16.78 - NaN NaN + 4196.67 + NAVD88 1 USGS m 2 S - S + O A + 62611 - 1999-08-19 17:25:00+00:00 + 1945-10-12 22:35:00+00:00 USGS 434400121275801 GW - 1999-08-19 - 17:25 + 1945-10-12 + 22:35 +0000 - 15.06 + 27.35 NaN NaN 1 @@ -322,20 +326,21 @@

Interpreting the Resultm 2 S - V + O A + 72019 - 1999-11-19 18:40:00+00:00 + 1999-06-04 18:00:00+00:00 USGS 434400121275801 GW - 1999-11-19 - 18:40 + 1999-06-04 + 18:00 +0000 - 17.62 - NaN NaN + 4203.22 + NGVD29 1 USGS m @@ -343,18 +348,19 @@

Interpreting the ResultS S A + 62610 - 2000-02-11 17:25:00+00:00 + 1999-06-04 18:00:00+00:00 USGS 434400121275801 GW - 2000-02-11 - 17:25 + 1999-06-04 + 18:00 +0000 - 21.00 - NaN NaN + 4207.24 + NAVD88 1 USGS m @@ -362,6 +368,7 @@

Interpreting the ResultS S A + 62611 ... @@ -381,18 +388,19 @@

Interpreting the Result... ... ... + ... NaT USGS 434400121275801 GW - 1998-09-25 + 1999-03-19 NaN - +0000 - 17.36 NaN NaN + 4204.97 + NAVD88 1 NaN D @@ -400,37 +408,39 @@

Interpreting the ResultNaN S A + 62611 NaT USGS 434400121275801 GW - 1998-11-19 + 1999-03-19 NaN - +0000 - 19.85 + NaN + 19.05 NaN NaN 1 - USGS + NaN D 2 - S + NaN S A + 72019 NaT USGS 434400121275801 GW - 1998-12-15 + 1999-05-14 NaN - +0000 - 20.33 NaN NaN + 4201.99 + NGVD29 1 USGS D @@ -438,25 +448,27 @@

Interpreting the ResultS S A + 62610 NaT USGS 434400121275801 GW - 1999-03-19 + 1999-05-14 NaN - +0000 - 19.05 NaN NaN + 4206.01 + NAVD88 1 - NaN + USGS D 2 - NaN + S S A + 62611 NaT @@ -465,7 +477,7 @@

Interpreting the ResultGW 1999-05-14 NaN - +0000 + NaN 18.01 NaN NaN @@ -476,10 +488,11 @@

Interpreting the ResultS S A + 72019 -

248 rows × 16 columns

+

744 rows × 17 columns

Show the data types of the columns in the resulting data frame.

@@ -504,7 +517,7 @@

Interpreting the ResultInterpreting the Result @@ -546,236 +560,19 @@

Interpreting the Result
[7]:
 
-
ax = data[0].plot(y='lev_va')
+
ax = data[0].plot(x = 'lev_dt', y='lev_va')
 ax.set_xlabel('Date')
 ax.set_ylabel('Water Level (feet below land surface)')
 
-
+
[7]:
+
----------------------------------------------------------------------------
-ValueError                                Traceback (most recent call last)
-File ~/.local/lib/python3.10/site-packages/matplotlib/axis.py:1804, in Axis.convert_units(self, x)
-   1803 try:
--> 1804     ret = self.converter.convert(x, self.units, self)
-   1805 except Exception as e:
-
-File ~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/converter.py:295, in DatetimeConverter.convert(values, unit, axis)
-    294 else:
---> 295     values = DatetimeConverter._convert_1d(values, unit, axis)
-    296 return values
-
-File ~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/converter.py:330, in DatetimeConverter._convert_1d(values, unit, axis)
-    328         pass
---> 330     values = mdates.date2num(values)
-    332 return values
-
-File ~/.local/lib/python3.10/site-packages/matplotlib/dates.py:447, in date2num(d)
-    445 if tzi is not None:
-    446     # make datetime naive:
---> 447     d = [dt.astimezone(UTC).replace(tzinfo=None) for dt in d]
-    448     d = np.asarray(d)
-
-File ~/.local/lib/python3.10/site-packages/matplotlib/dates.py:447, in <listcomp>(.0)
-    445 if tzi is not None:
-    446     # make datetime naive:
---> 447     d = [dt.astimezone(UTC).replace(tzinfo=None) for dt in d]
-    448     d = np.asarray(d)
-
-File nattype.pyx:54, in pandas._libs.tslibs.nattype._make_error_func.f()
-
-ValueError: NaTType does not support astimezone
-
-The above exception was the direct cause of the following exception:
-
-ConversionError                           Traceback (most recent call last)
-Cell In[7], line 1
-----> 1 ax = data[0].plot(y='lev_va')
-      2 ax.set_xlabel('Date')
-      3 ax.set_ylabel('Water Level (feet below land surface)')
-
-File ~/.local/lib/python3.10/site-packages/pandas/plotting/_core.py:1030, in PlotAccessor.__call__(self, *args, **kwargs)
-   1027             label_name = label_kw or data.columns
-   1028             data.columns = label_name
--> 1030 return plot_backend.plot(data, kind=kind, **kwargs)
-
-File ~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/__init__.py:71, in plot(data, kind, **kwargs)
-     69         kwargs["ax"] = getattr(ax, "left_ax", ax)
-     70 plot_obj = PLOT_CLASSES[kind](data, **kwargs)
----> 71 plot_obj.generate()
-     72 plot_obj.draw()
-     73 return plot_obj.result
-
-File ~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:501, in MPLPlot.generate(self)
-    499 self._compute_plot_data()
-    500 fig = self.fig
---> 501 self._make_plot(fig)
-    502 self._add_table()
-    503 self._make_legend()
-
-File ~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:1544, in LinePlot._make_plot(self, fig)
-   1541 label = self._mark_right_label(label, index=i)
-   1542 kwds["label"] = label
--> 1544 newlines = plotf(
-   1545     ax,
-   1546     x,
-   1547     y,
-   1548     style=style,
-   1549     column_num=i,
-   1550     stacking_id=stacking_id,
-   1551     is_errorbar=is_errorbar,
-   1552     **kwds,
-   1553 )
-   1554 self._append_legend_handles_labels(newlines[0], label)
-   1556 if self._is_ts_plot():
-   1557     # reset of xlim should be used for ts data
-   1558     # TODO: GH28021, should find a way to change view limit on xaxis
-
-File ~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:1580, in LinePlot._plot(cls, ax, x, y, style, column_num, stacking_id, **kwds)
-   1578     cls._initialize_stacker(ax, stacking_id, len(y))
-   1579 y_values = cls._get_stacked_values(ax, stacking_id, y, kwds["label"])
--> 1580 lines = MPLPlot._plot(ax, x, y_values, style=style, **kwds)
-   1581 cls._update_stacker(ax, stacking_id, y)
-   1582 return lines
-
-File ~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/converter.py:95, in register_pandas_matplotlib_converters.<locals>.wrapper(*args, **kwargs)
-     92 @functools.wraps(func)
-     93 def wrapper(*args, **kwargs):
-     94     with pandas_converters():
----> 95         return func(*args, **kwargs)
-
-File ~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:975, in MPLPlot._plot(cls, ax, x, y, style, is_errorbar, **kwds)
-    972 else:
-    973     # prevent style kwarg from going to errorbar, where it is unsupported
-    974     args = (x, y, style) if style is not None else (x, y)
---> 975     return ax.plot(*args, **kwds)
-
-File ~/.local/lib/python3.10/site-packages/matplotlib/axes/_axes.py:1781, in Axes.plot(self, scalex, scaley, data, *args, **kwargs)
-   1779 lines = [*self._get_lines(self, *args, data=data, **kwargs)]
-   1780 for line in lines:
--> 1781     self.add_line(line)
-   1782 if scalex:
-   1783     self._request_autoscale_view("x")
-
-File ~/.local/lib/python3.10/site-packages/matplotlib/axes/_base.py:2339, in _AxesBase.add_line(self, line)
-   2336 if line.get_clip_path() is None:
-   2337     line.set_clip_path(self.patch)
--> 2339 self._update_line_limits(line)
-   2340 if not line.get_label():
-   2341     line.set_label(f'_child{len(self._children)}')
-
-File ~/.local/lib/python3.10/site-packages/matplotlib/axes/_base.py:2362, in _AxesBase._update_line_limits(self, line)
-   2358 def _update_line_limits(self, line):
-   2359     """
-   2360     Figures out the data limit of the given line, updating self.dataLim.
-   2361     """
--> 2362     path = line.get_path()
-   2363     if path.vertices.size == 0:
-   2364         return
-
-File ~/.local/lib/python3.10/site-packages/matplotlib/lines.py:1037, in Line2D.get_path(self)
-   1035 """Return the `~matplotlib.path.Path` associated with this line."""
-   1036 if self._invalidy or self._invalidx:
--> 1037     self.recache()
-   1038 return self._path
-
-File ~/.local/lib/python3.10/site-packages/matplotlib/lines.py:673, in Line2D.recache(self, always)
-    671 def recache(self, always=False):
-    672     if always or self._invalidx:
---> 673         xconv = self.convert_xunits(self._xorig)
-    674         x = _to_unmasked_float_array(xconv).ravel()
-    675     else:
-
-File ~/.local/lib/python3.10/site-packages/matplotlib/artist.py:279, in Artist.convert_xunits(self, x)
-    277 if ax is None or ax.xaxis is None:
-    278     return x
---> 279 return ax.xaxis.convert_units(x)
-
-File ~/.local/lib/python3.10/site-packages/matplotlib/axis.py:1806, in Axis.convert_units(self, x)
-   1804     ret = self.converter.convert(x, self.units, self)
-   1805 except Exception as e:
--> 1806     raise munits.ConversionError('Failed to convert value(s) to axis '
-   1807                                  f'units: {x!r}') from e
-   1808 return ret
-
-ConversionError: Failed to convert value(s) to axis units: array([Timestamp('1945-10-12 22:35:00+0000', tz='UTC'),
-       Timestamp('1999-06-04 18:00:00+0000', tz='UTC'),
-       Timestamp('1999-08-19 17:25:00+0000', tz='UTC'),
-       Timestamp('1999-11-19 18:40:00+0000', tz='UTC'),
-       Timestamp('2000-02-11 17:25:00+0000', tz='UTC'),
-       Timestamp('2000-03-09 22:30:00+0000', tz='UTC'),
-       Timestamp('2000-05-26 16:00:00+0000', tz='UTC'),
-       Timestamp('2000-08-22 21:55:00+0000', tz='UTC'),
-       Timestamp('2000-11-15 21:59:00+0000', tz='UTC'),
-       Timestamp('2001-03-21 00:03:00+0000', tz='UTC'),
-       Timestamp('2001-05-05 01:10:00+0000', tz='UTC'),
-       Timestamp('2001-05-30 20:13:00+0000', tz='UTC'),
-       Timestamp('2001-07-18 17:15:00+0000', tz='UTC'),
-       Timestamp('2001-08-30 15:34:00+0000', tz='UTC'),
-       Timestamp('2001-09-26 15:49:00+0000', tz='UTC'),
-       Timestamp('2001-10-30 23:09:00+0000', tz='UTC'),
-       Timestamp('2001-11-29 18:00:00+0000', tz='UTC'),
-       Timestamp('2001-12-27 22:33:00+0000', tz='UTC'),
-       Timestamp('2002-01-28 22:09:00+0000', tz='UTC'),
-       Timestamp('2002-02-25 22:50:00+0000', tz='UTC'),
-       Timestamp('2002-03-25 22:01:00+0000', tz='UTC'),
-       Timestamp('2002-04-30 16:50:00+0000', tz='UTC'),
-       Timestamp('2002-05-30 22:05:00+0000', tz='UTC'),
-       Timestamp('2002-08-14 18:24:00+0000', tz='UTC'),
-       Timestamp('2002-09-12 15:41:00+0000', tz='UTC'),
-       Timestamp('2002-11-13 22:45:00+0000', tz='UTC'),
-       Timestamp('2003-02-11 22:57:00+0000', tz='UTC'),
-       Timestamp('2003-05-13 21:23:00+0000', tz='UTC'),
-       Timestamp('2003-09-09 23:29:00+0000', tz='UTC'),
-       Timestamp('2003-12-01 22:59:00+0000', tz='UTC'),
-       Timestamp('2004-01-18 22:42:00+0000', tz='UTC'),
-       Timestamp('2004-04-30 19:46:00+0000', tz='UTC'),
-       Timestamp('2004-07-15 17:53:00+0000', tz='UTC'),
-       Timestamp('2004-10-15 17:38:00+0000', tz='UTC'),
-       Timestamp('2005-01-07 18:24:00+0000', tz='UTC'),
-       Timestamp('2005-04-08 17:13:00+0000', tz='UTC'),
-       Timestamp('2005-07-15 16:47:00+0000', tz='UTC'),
-       Timestamp('2005-10-07 17:52:00+0000', tz='UTC'),
-       Timestamp('2006-01-13 19:23:00+0000', tz='UTC'),
-       Timestamp('2006-05-26 14:16:00+0000', tz='UTC'),
-       Timestamp('2006-07-14 18:22:00+0000', tz='UTC'),
-       Timestamp('2006-10-19 23:15:00+0000', tz='UTC'),
-       Timestamp('2007-01-12 19:10:00+0000', tz='UTC'),
-       Timestamp('2007-04-06 15:34:00+0000', tz='UTC'),
-       Timestamp('2007-10-04 23:40:00+0000', tz='UTC'),
-       Timestamp('2008-04-03 21:55:00+0000', tz='UTC'),
-       Timestamp('2008-10-29 21:33:00+0000', tz='UTC'),
-       Timestamp('2009-05-20 18:29:00+0000', tz='UTC'),
-       Timestamp('2009-06-09 16:33:00+0000', tz='UTC'),
-       Timestamp('2009-11-25 17:33:00+0000', tz='UTC'),
-       Timestamp('2010-05-28 16:50:00+0000', tz='UTC'),
-       Timestamp('2010-11-29 23:20:00+0000', tz='UTC'),
-       Timestamp('2011-10-07 18:58:00+0000', tz='UTC'),
-       Timestamp('2012-10-11 21:24:00+0000', tz='UTC'),
-       Timestamp('2012-10-12 01:49:00+0000', tz='UTC'),
-       Timestamp('2013-10-31 17:42:00+0000', tz='UTC'),
-       Timestamp('2014-10-15 21:07:00+0000', tz='UTC'),
-       Timestamp('2015-10-22 17:52:00+0000', tz='UTC'),
-       Timestamp('2016-10-26 16:22:00+0000', tz='UTC'), NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,
-       NaT, NaT, NaT, NaT], dtype=object)
+Text(0, 0.5, 'Water Level (feet below land surface)')
 
@@ -823,7 +620,7 @@

Additional Examples
-Retrieved 311 data values.
+Retrieved 933 data values.
 

@@ -873,6 +670,7 @@

Additional Examples434400121275801 NaT USGS GW - 1998-09-25 + 1999-03-19 NaN - +0000 - 17.36 NaN NaN + 4204.97 + NAVD88 1 NaN D @@ -1023,35 +828,37 @@

Additional Examples
-Retrieved 34 data values.
+Retrieved 102 data values.
 DatetimeIndex(['NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT',
+               'NaT',
+               ...
                'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT',
-               'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT',
-               'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT'],
-              dtype='datetime64[ns, UTC]', name='datetime', freq=None)
+               'NaT'],
+              dtype='datetime64[ns, UTC]', name='datetime', length=102, freq=None)
 
@@ -1153,7 +964,7 @@

Additional Examples
-You can examine the data retrieved from NWIS at: https://waterservices.usgs.gov/nwis/gwlevels?startDT=1851-01-01&sites=425957088141001&format=rdb
+You can examine the data retrieved from NWIS at: https://nwis.waterdata.usgs.gov/nwis/gwlevels?format=rdb&begin_date=1851-01-01&site_no=425957088141001
 

You can also retrieve data for a site within a specified time window by specifying a start date and an end date.

@@ -1172,7 +983,7 @@

Additional Examples
-Retrieved 71 data values.
+Retrieved 213 data values.
 
diff --git a/examples/USGS_dataretrieval_GroundwaterLevels_Examples.ipynb b/examples/USGS_dataretrieval_GroundwaterLevels_Examples.ipynb index e208706..ee785d1 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-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" + "iopub.execute_input": "2024-08-02T00:48:21.592274Z", + "iopub.status.busy": "2024-08-02T00:48:21.592100Z", + "iopub.status.idle": "2024-08-02T00:48:22.329727Z", + "shell.execute_reply": "2024-08-02T00:48:22.329146Z" }, "pycharm": { "name": "#%%\n" @@ -52,20 +52,20 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n", + "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)\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.1)\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", @@ -92,10 +92,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:22.332263Z", + "iopub.status.busy": "2024-08-02T00:48:22.332073Z", + "iopub.status.idle": "2024-08-02T00:48:22.618009Z", + "shell.execute_reply": "2024-08-02T00:48:22.617496Z" }, "pycharm": { "name": "#%%\n" @@ -142,10 +142,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:22.620878Z", + "iopub.status.busy": "2024-08-02T00:48:22.620368Z", + "iopub.status.idle": "2024-08-02T00:48:23.276024Z", + "shell.execute_reply": "2024-08-02T00:48:23.275366Z" }, "pycharm": { "name": "#%%\n" @@ -156,14 +156,14 @@ "name": "stdout", "output_type": "stream", "text": [ - "Retrieved 248 data values.\n" + "Retrieved 744 data values.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/utils.py:89: UserWarning: Warning: 189 incomplete dates found, consider setting datetime_index to False.\n", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/utils.py:89: UserWarning: Warning: 567 incomplete dates found, consider setting datetime_index to False.\n", " warnings.warn(\n" ] } @@ -208,10 +208,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:23.278278Z", + "iopub.status.busy": "2024-08-02T00:48:23.277910Z", + "iopub.status.idle": "2024-08-02T00:48:23.292561Z", + "shell.execute_reply": "2024-08-02T00:48:23.292026Z" }, "pycharm": { "name": "#%%\n" @@ -255,6 +255,7 @@ " lev_src_cd\n", " lev_meth_cd\n", " lev_age_cd\n", + " parameter_cd\n", " \n", " \n", " datetime\n", @@ -274,6 +275,7 @@ " \n", " \n", " \n", + " \n", " \n", " \n", " \n", @@ -285,9 +287,9 @@ " 1945-10-12\n", " 22:35\n", " +0000\n", - " 27.35\n", - " NaN\n", " NaN\n", + " 4192.65\n", + " NGVD29\n", " 1\n", " USGS\n", " m\n", @@ -295,35 +297,37 @@ " S\n", " O\n", " A\n", + " 62610\n", " \n", " \n", - " 1999-06-04 18:00:00+00:00\n", + " 1945-10-12 22:35:00+00:00\n", " USGS\n", " 434400121275801\n", " GW\n", - " 1999-06-04\n", - " 18:00\n", + " 1945-10-12\n", + " 22:35\n", " +0000\n", - " 16.78\n", - " NaN\n", " NaN\n", + " 4196.67\n", + " NAVD88\n", " 1\n", " USGS\n", " m\n", " 2\n", " S\n", - " S\n", + " O\n", " A\n", + " 62611\n", " \n", " \n", - " 1999-08-19 17:25:00+00:00\n", + " 1945-10-12 22:35:00+00:00\n", " USGS\n", " 434400121275801\n", " GW\n", - " 1999-08-19\n", - " 17:25\n", + " 1945-10-12\n", + " 22:35\n", " +0000\n", - " 15.06\n", + " 27.35\n", " NaN\n", " NaN\n", " 1\n", @@ -331,20 +335,21 @@ " m\n", " 2\n", " S\n", - " V\n", + " O\n", " A\n", + " 72019\n", " \n", " \n", - " 1999-11-19 18:40:00+00:00\n", + " 1999-06-04 18:00:00+00:00\n", " USGS\n", " 434400121275801\n", " GW\n", - " 1999-11-19\n", - " 18:40\n", + " 1999-06-04\n", + " 18:00\n", " +0000\n", - " 17.62\n", - " NaN\n", " NaN\n", + " 4203.22\n", + " NGVD29\n", " 1\n", " USGS\n", " m\n", @@ -352,18 +357,19 @@ " S\n", " S\n", " A\n", + " 62610\n", " \n", " \n", - " 2000-02-11 17:25:00+00:00\n", + " 1999-06-04 18:00:00+00:00\n", " USGS\n", " 434400121275801\n", " GW\n", - " 2000-02-11\n", - " 17:25\n", + " 1999-06-04\n", + " 18:00\n", " +0000\n", - " 21.00\n", - " NaN\n", " NaN\n", + " 4207.24\n", + " NAVD88\n", " 1\n", " USGS\n", " m\n", @@ -371,6 +377,7 @@ " S\n", " S\n", " A\n", + " 62611\n", " \n", " \n", " ...\n", @@ -390,18 +397,19 @@ " ...\n", " ...\n", " ...\n", + " ...\n", " \n", " \n", " NaT\n", " USGS\n", " 434400121275801\n", " GW\n", - " 1998-09-25\n", + " 1999-03-19\n", " NaN\n", - " +0000\n", - " 17.36\n", " NaN\n", " NaN\n", + " 4204.97\n", + " NAVD88\n", " 1\n", " NaN\n", " D\n", @@ -409,37 +417,39 @@ " NaN\n", " S\n", " A\n", + " 62611\n", " \n", " \n", " NaT\n", " USGS\n", " 434400121275801\n", " GW\n", - " 1998-11-19\n", + " 1999-03-19\n", " NaN\n", - " +0000\n", - " 19.85\n", + " NaN\n", + " 19.05\n", " NaN\n", " NaN\n", " 1\n", - " USGS\n", + " NaN\n", " D\n", " 2\n", - " S\n", + " NaN\n", " S\n", " A\n", + " 72019\n", " \n", " \n", " NaT\n", " USGS\n", " 434400121275801\n", " GW\n", - " 1998-12-15\n", + " 1999-05-14\n", " NaN\n", - " +0000\n", - " 20.33\n", " NaN\n", " NaN\n", + " 4201.99\n", + " NGVD29\n", " 1\n", " USGS\n", " D\n", @@ -447,25 +457,27 @@ " S\n", " S\n", " A\n", + " 62610\n", " \n", " \n", " NaT\n", " USGS\n", " 434400121275801\n", " GW\n", - " 1999-03-19\n", + " 1999-05-14\n", " NaN\n", - " +0000\n", - " 19.05\n", " NaN\n", " NaN\n", + " 4206.01\n", + " NAVD88\n", " 1\n", - " NaN\n", + " USGS\n", " D\n", " 2\n", - " NaN\n", + " S\n", " S\n", " A\n", + " 62611\n", " \n", " \n", " NaT\n", @@ -474,7 +486,7 @@ " GW\n", " 1999-05-14\n", " NaN\n", - " +0000\n", + " NaN\n", " 18.01\n", " NaN\n", " NaN\n", @@ -485,70 +497,85 @@ " S\n", " S\n", " A\n", + " 72019\n", " \n", " \n", "\n", - "

248 rows × 16 columns

\n", + "

744 rows × 17 columns

\n", "" ], "text/plain": [ " agency_cd site_no site_tp_cd lev_dt \\\n", "datetime \n", "1945-10-12 22:35:00+00:00 USGS 434400121275801 GW 1945-10-12 \n", + "1945-10-12 22:35:00+00:00 USGS 434400121275801 GW 1945-10-12 \n", + "1945-10-12 22:35:00+00:00 USGS 434400121275801 GW 1945-10-12 \n", + "1999-06-04 18:00:00+00:00 USGS 434400121275801 GW 1999-06-04 \n", "1999-06-04 18:00:00+00:00 USGS 434400121275801 GW 1999-06-04 \n", - "1999-08-19 17:25:00+00:00 USGS 434400121275801 GW 1999-08-19 \n", - "1999-11-19 18:40:00+00:00 USGS 434400121275801 GW 1999-11-19 \n", - "2000-02-11 17:25:00+00:00 USGS 434400121275801 GW 2000-02-11 \n", "... ... ... ... ... \n", - "NaT USGS 434400121275801 GW 1998-09-25 \n", - "NaT USGS 434400121275801 GW 1998-11-19 \n", - "NaT USGS 434400121275801 GW 1998-12-15 \n", "NaT USGS 434400121275801 GW 1999-03-19 \n", + "NaT USGS 434400121275801 GW 1999-03-19 \n", + "NaT USGS 434400121275801 GW 1999-05-14 \n", + "NaT USGS 434400121275801 GW 1999-05-14 \n", "NaT USGS 434400121275801 GW 1999-05-14 \n", "\n", - " lev_tm lev_tz_cd lev_va sl_lev_va sl_datum_cd \\\n", - "datetime \n", - "1945-10-12 22:35:00+00:00 22:35 +0000 27.35 NaN NaN \n", - "1999-06-04 18:00:00+00:00 18:00 +0000 16.78 NaN NaN \n", - "1999-08-19 17:25:00+00:00 17:25 +0000 15.06 NaN NaN \n", - "1999-11-19 18:40:00+00:00 18:40 +0000 17.62 NaN NaN \n", - "2000-02-11 17:25:00+00:00 17:25 +0000 21.00 NaN NaN \n", - "... ... ... ... ... ... \n", - "NaT NaN +0000 17.36 NaN NaN \n", - "NaT NaN +0000 19.85 NaN NaN \n", - "NaT NaN +0000 20.33 NaN NaN \n", - "NaT NaN +0000 19.05 NaN NaN \n", - "NaT NaN +0000 18.01 NaN NaN \n", + " lev_tm lev_tz_cd lev_va sl_lev_va sl_datum_cd \\\n", + "datetime \n", + "1945-10-12 22:35:00+00:00 22:35 +0000 NaN 4192.65 NGVD29 \n", + "1945-10-12 22:35:00+00:00 22:35 +0000 NaN 4196.67 NAVD88 \n", + "1945-10-12 22:35:00+00:00 22:35 +0000 27.35 NaN NaN \n", + "1999-06-04 18:00:00+00:00 18:00 +0000 NaN 4203.22 NGVD29 \n", + "1999-06-04 18:00:00+00:00 18:00 +0000 NaN 4207.24 NAVD88 \n", + "... ... ... ... ... ... \n", + "NaT NaN NaN NaN 4204.97 NAVD88 \n", + "NaT NaN NaN 19.05 NaN NaN \n", + "NaT NaN NaN NaN 4201.99 NGVD29 \n", + "NaT NaN NaN NaN 4206.01 NAVD88 \n", + "NaT NaN NaN 18.01 NaN NaN \n", "\n", " lev_status_cd lev_agency_cd lev_dt_acy_cd \\\n", "datetime \n", "1945-10-12 22:35:00+00:00 1 USGS m \n", + "1945-10-12 22:35:00+00:00 1 USGS m \n", + "1945-10-12 22:35:00+00:00 1 USGS m \n", + "1999-06-04 18:00:00+00:00 1 USGS m \n", "1999-06-04 18:00:00+00:00 1 USGS m \n", - "1999-08-19 17:25:00+00:00 1 USGS m \n", - "1999-11-19 18:40:00+00:00 1 USGS m \n", - "2000-02-11 17:25:00+00:00 1 USGS m \n", "... ... ... ... \n", "NaT 1 NaN D \n", + "NaT 1 NaN D \n", "NaT 1 USGS D \n", "NaT 1 USGS D \n", - "NaT 1 NaN D \n", "NaT 1 USGS D \n", "\n", - " lev_acy_cd lev_src_cd lev_meth_cd lev_age_cd \n", - "datetime \n", - "1945-10-12 22:35:00+00:00 2 S O A \n", - "1999-06-04 18:00:00+00:00 2 S S A \n", - "1999-08-19 17:25:00+00:00 2 S V A \n", - "1999-11-19 18:40:00+00:00 2 S S A \n", - "2000-02-11 17:25:00+00:00 2 S S A \n", - "... ... ... ... ... \n", - "NaT 2 NaN S A \n", - "NaT 2 S S A \n", - "NaT 2 S S A \n", - "NaT 2 NaN S A \n", - "NaT 2 S S A \n", + " lev_acy_cd lev_src_cd lev_meth_cd lev_age_cd \\\n", + "datetime \n", + "1945-10-12 22:35:00+00:00 2 S O A \n", + "1945-10-12 22:35:00+00:00 2 S O A \n", + "1945-10-12 22:35:00+00:00 2 S O A \n", + "1999-06-04 18:00:00+00:00 2 S S A \n", + "1999-06-04 18:00:00+00:00 2 S S A \n", + "... ... ... ... ... \n", + "NaT 2 NaN S A \n", + "NaT 2 NaN S A \n", + "NaT 2 S S A \n", + "NaT 2 S S A \n", + "NaT 2 S S A \n", + "\n", + " parameter_cd \n", + "datetime \n", + "1945-10-12 22:35:00+00:00 62610 \n", + "1945-10-12 22:35:00+00:00 62611 \n", + "1945-10-12 22:35:00+00:00 72019 \n", + "1999-06-04 18:00:00+00:00 62610 \n", + "1999-06-04 18:00:00+00:00 62611 \n", + "... ... \n", + "NaT 62611 \n", + "NaT 72019 \n", + "NaT 62610 \n", + "NaT 62611 \n", + "NaT 72019 \n", "\n", - "[248 rows x 16 columns]" + "[744 rows x 17 columns]" ] }, "metadata": {}, @@ -577,10 +604,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:23.294776Z", + "iopub.status.busy": "2024-08-02T00:48:23.294592Z", + "iopub.status.idle": "2024-08-02T00:48:23.297795Z", + "shell.execute_reply": "2024-08-02T00:48:23.297330Z" }, "pycharm": { "name": "#%%\n" @@ -599,7 +626,7 @@ "lev_tz_cd object\n", "lev_va float64\n", "sl_lev_va float64\n", - "sl_datum_cd float64\n", + "sl_datum_cd object\n", "lev_status_cd object\n", "lev_agency_cd object\n", "lev_dt_acy_cd object\n", @@ -607,6 +634,7 @@ "lev_src_cd object\n", "lev_meth_cd object\n", "lev_age_cd object\n", + "parameter_cd object\n", "dtype: object\n" ] } @@ -633,10 +661,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:23.299960Z", + "iopub.status.busy": "2024-08-02T00:48:23.299543Z", + "iopub.status.idle": "2024-08-02T00:48:23.305376Z", + "shell.execute_reply": "2024-08-02T00:48:23.304922Z" }, "pycharm": { "name": "#%%\n" @@ -684,10 +712,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:23.307463Z", + "iopub.status.busy": "2024-08-02T00:48:23.307114Z", + "iopub.status.idle": "2024-08-02T00:48:23.688763Z", + "shell.execute_reply": "2024-08-02T00:48:23.688138Z" }, "pycharm": { "name": "#%%\n" @@ -695,42 +723,18 @@ }, "outputs": [ { - "ename": "ConversionError", - "evalue": "Failed to convert value(s) to axis units: array([Timestamp('1945-10-12 22:35:00+0000', tz='UTC'),\n Timestamp('1999-06-04 18:00:00+0000', tz='UTC'),\n Timestamp('1999-08-19 17:25:00+0000', tz='UTC'),\n Timestamp('1999-11-19 18:40:00+0000', tz='UTC'),\n Timestamp('2000-02-11 17:25:00+0000', tz='UTC'),\n Timestamp('2000-03-09 22:30:00+0000', tz='UTC'),\n Timestamp('2000-05-26 16:00:00+0000', tz='UTC'),\n Timestamp('2000-08-22 21:55:00+0000', tz='UTC'),\n Timestamp('2000-11-15 21:59:00+0000', tz='UTC'),\n Timestamp('2001-03-21 00:03:00+0000', tz='UTC'),\n Timestamp('2001-05-05 01:10:00+0000', tz='UTC'),\n Timestamp('2001-05-30 20:13:00+0000', tz='UTC'),\n Timestamp('2001-07-18 17:15:00+0000', tz='UTC'),\n Timestamp('2001-08-30 15:34:00+0000', tz='UTC'),\n Timestamp('2001-09-26 15:49:00+0000', tz='UTC'),\n Timestamp('2001-10-30 23:09:00+0000', tz='UTC'),\n Timestamp('2001-11-29 18:00:00+0000', tz='UTC'),\n Timestamp('2001-12-27 22:33:00+0000', tz='UTC'),\n Timestamp('2002-01-28 22:09:00+0000', tz='UTC'),\n Timestamp('2002-02-25 22:50:00+0000', tz='UTC'),\n Timestamp('2002-03-25 22:01:00+0000', tz='UTC'),\n Timestamp('2002-04-30 16:50:00+0000', tz='UTC'),\n Timestamp('2002-05-30 22:05:00+0000', tz='UTC'),\n Timestamp('2002-08-14 18:24:00+0000', tz='UTC'),\n Timestamp('2002-09-12 15:41:00+0000', tz='UTC'),\n Timestamp('2002-11-13 22:45:00+0000', tz='UTC'),\n Timestamp('2003-02-11 22:57:00+0000', tz='UTC'),\n Timestamp('2003-05-13 21:23:00+0000', tz='UTC'),\n Timestamp('2003-09-09 23:29:00+0000', tz='UTC'),\n Timestamp('2003-12-01 22:59:00+0000', tz='UTC'),\n Timestamp('2004-01-18 22:42:00+0000', tz='UTC'),\n Timestamp('2004-04-30 19:46:00+0000', tz='UTC'),\n Timestamp('2004-07-15 17:53:00+0000', tz='UTC'),\n Timestamp('2004-10-15 17:38:00+0000', tz='UTC'),\n Timestamp('2005-01-07 18:24:00+0000', tz='UTC'),\n Timestamp('2005-04-08 17:13:00+0000', tz='UTC'),\n Timestamp('2005-07-15 16:47:00+0000', tz='UTC'),\n Timestamp('2005-10-07 17:52:00+0000', tz='UTC'),\n Timestamp('2006-01-13 19:23:00+0000', tz='UTC'),\n Timestamp('2006-05-26 14:16:00+0000', tz='UTC'),\n Timestamp('2006-07-14 18:22:00+0000', tz='UTC'),\n Timestamp('2006-10-19 23:15:00+0000', tz='UTC'),\n Timestamp('2007-01-12 19:10:00+0000', tz='UTC'),\n Timestamp('2007-04-06 15:34:00+0000', tz='UTC'),\n Timestamp('2007-10-04 23:40:00+0000', tz='UTC'),\n Timestamp('2008-04-03 21:55:00+0000', tz='UTC'),\n Timestamp('2008-10-29 21:33:00+0000', tz='UTC'),\n Timestamp('2009-05-20 18:29:00+0000', tz='UTC'),\n Timestamp('2009-06-09 16:33:00+0000', tz='UTC'),\n Timestamp('2009-11-25 17:33:00+0000', tz='UTC'),\n Timestamp('2010-05-28 16:50:00+0000', tz='UTC'),\n Timestamp('2010-11-29 23:20:00+0000', tz='UTC'),\n Timestamp('2011-10-07 18:58:00+0000', tz='UTC'),\n Timestamp('2012-10-11 21:24:00+0000', tz='UTC'),\n Timestamp('2012-10-12 01:49:00+0000', tz='UTC'),\n Timestamp('2013-10-31 17:42:00+0000', tz='UTC'),\n Timestamp('2014-10-15 21:07:00+0000', tz='UTC'),\n Timestamp('2015-10-22 17:52:00+0000', tz='UTC'),\n Timestamp('2016-10-26 16:22:00+0000', tz='UTC'), NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT], dtype=object)", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/matplotlib/axis.py:1804\u001b[0m, in \u001b[0;36mAxis.convert_units\u001b[0;34m(self, x)\u001b[0m\n\u001b[1;32m 1803\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1804\u001b[0m ret \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mconverter\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mconvert\u001b[49m\u001b[43m(\u001b[49m\u001b[43mx\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43munits\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1805\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/converter.py:295\u001b[0m, in \u001b[0;36mDatetimeConverter.convert\u001b[0;34m(values, unit, axis)\u001b[0m\n\u001b[1;32m 294\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m--> 295\u001b[0m values \u001b[38;5;241m=\u001b[39m \u001b[43mDatetimeConverter\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_convert_1d\u001b[49m\u001b[43m(\u001b[49m\u001b[43mvalues\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43munit\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 296\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m values\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/converter.py:330\u001b[0m, in \u001b[0;36mDatetimeConverter._convert_1d\u001b[0;34m(values, unit, axis)\u001b[0m\n\u001b[1;32m 328\u001b[0m \u001b[38;5;28;01mpass\u001b[39;00m\n\u001b[0;32m--> 330\u001b[0m values \u001b[38;5;241m=\u001b[39m \u001b[43mmdates\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdate2num\u001b[49m\u001b[43m(\u001b[49m\u001b[43mvalues\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 332\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m values\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/matplotlib/dates.py:447\u001b[0m, in \u001b[0;36mdate2num\u001b[0;34m(d)\u001b[0m\n\u001b[1;32m 445\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m tzi \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 446\u001b[0m \u001b[38;5;66;03m# make datetime naive:\u001b[39;00m\n\u001b[0;32m--> 447\u001b[0m d \u001b[38;5;241m=\u001b[39m [dt\u001b[38;5;241m.\u001b[39mastimezone(UTC)\u001b[38;5;241m.\u001b[39mreplace(tzinfo\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m) \u001b[38;5;28;01mfor\u001b[39;00m dt \u001b[38;5;129;01min\u001b[39;00m d]\n\u001b[1;32m 448\u001b[0m d \u001b[38;5;241m=\u001b[39m np\u001b[38;5;241m.\u001b[39masarray(d)\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/matplotlib/dates.py:447\u001b[0m, in \u001b[0;36m\u001b[0;34m(.0)\u001b[0m\n\u001b[1;32m 445\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m tzi \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 446\u001b[0m \u001b[38;5;66;03m# make datetime naive:\u001b[39;00m\n\u001b[0;32m--> 447\u001b[0m d \u001b[38;5;241m=\u001b[39m [\u001b[43mdt\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mastimezone\u001b[49m\u001b[43m(\u001b[49m\u001b[43mUTC\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241m.\u001b[39mreplace(tzinfo\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m) \u001b[38;5;28;01mfor\u001b[39;00m dt \u001b[38;5;129;01min\u001b[39;00m d]\n\u001b[1;32m 448\u001b[0m d \u001b[38;5;241m=\u001b[39m np\u001b[38;5;241m.\u001b[39masarray(d)\n", - "File \u001b[0;32mnattype.pyx:54\u001b[0m, in \u001b[0;36mpandas._libs.tslibs.nattype._make_error_func.f\u001b[0;34m()\u001b[0m\n", - "\u001b[0;31mValueError\u001b[0m: NaTType does not support astimezone", - "\nThe above exception was the direct cause of the following exception:\n", - "\u001b[0;31mConversionError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[7], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m ax \u001b[38;5;241m=\u001b[39m \u001b[43mdata\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m0\u001b[39;49m\u001b[43m]\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mplot\u001b[49m\u001b[43m(\u001b[49m\u001b[43my\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mlev_va\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 2\u001b[0m ax\u001b[38;5;241m.\u001b[39mset_xlabel(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mDate\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[1;32m 3\u001b[0m ax\u001b[38;5;241m.\u001b[39mset_ylabel(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mWater Level (feet below land surface)\u001b[39m\u001b[38;5;124m'\u001b[39m)\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/plotting/_core.py:1030\u001b[0m, in \u001b[0;36mPlotAccessor.__call__\u001b[0;34m(self, *args, **kwargs)\u001b[0m\n\u001b[1;32m 1027\u001b[0m label_name \u001b[38;5;241m=\u001b[39m label_kw \u001b[38;5;129;01mor\u001b[39;00m data\u001b[38;5;241m.\u001b[39mcolumns\n\u001b[1;32m 1028\u001b[0m data\u001b[38;5;241m.\u001b[39mcolumns \u001b[38;5;241m=\u001b[39m label_name\n\u001b[0;32m-> 1030\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mplot_backend\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mplot\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdata\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mkind\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mkind\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/__init__.py:71\u001b[0m, in \u001b[0;36mplot\u001b[0;34m(data, kind, **kwargs)\u001b[0m\n\u001b[1;32m 69\u001b[0m kwargs[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124max\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mgetattr\u001b[39m(ax, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mleft_ax\u001b[39m\u001b[38;5;124m\"\u001b[39m, ax)\n\u001b[1;32m 70\u001b[0m plot_obj \u001b[38;5;241m=\u001b[39m PLOT_CLASSES[kind](data, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[0;32m---> 71\u001b[0m \u001b[43mplot_obj\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgenerate\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 72\u001b[0m plot_obj\u001b[38;5;241m.\u001b[39mdraw()\n\u001b[1;32m 73\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m plot_obj\u001b[38;5;241m.\u001b[39mresult\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:501\u001b[0m, in \u001b[0;36mMPLPlot.generate\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 499\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_compute_plot_data()\n\u001b[1;32m 500\u001b[0m fig \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfig\n\u001b[0;32m--> 501\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_make_plot\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfig\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 502\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_add_table()\n\u001b[1;32m 503\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_make_legend()\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:1544\u001b[0m, in \u001b[0;36mLinePlot._make_plot\u001b[0;34m(self, fig)\u001b[0m\n\u001b[1;32m 1541\u001b[0m label \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_mark_right_label(label, index\u001b[38;5;241m=\u001b[39mi)\n\u001b[1;32m 1542\u001b[0m kwds[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mlabel\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m label\n\u001b[0;32m-> 1544\u001b[0m newlines \u001b[38;5;241m=\u001b[39m \u001b[43mplotf\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1545\u001b[0m \u001b[43m \u001b[49m\u001b[43max\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1546\u001b[0m \u001b[43m \u001b[49m\u001b[43mx\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1547\u001b[0m \u001b[43m \u001b[49m\u001b[43my\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1548\u001b[0m \u001b[43m \u001b[49m\u001b[43mstyle\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mstyle\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1549\u001b[0m \u001b[43m \u001b[49m\u001b[43mcolumn_num\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mi\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1550\u001b[0m \u001b[43m \u001b[49m\u001b[43mstacking_id\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mstacking_id\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1551\u001b[0m \u001b[43m \u001b[49m\u001b[43mis_errorbar\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mis_errorbar\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1552\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwds\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1553\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1554\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_append_legend_handles_labels(newlines[\u001b[38;5;241m0\u001b[39m], label)\n\u001b[1;32m 1556\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_is_ts_plot():\n\u001b[1;32m 1557\u001b[0m \u001b[38;5;66;03m# reset of xlim should be used for ts data\u001b[39;00m\n\u001b[1;32m 1558\u001b[0m \u001b[38;5;66;03m# TODO: GH28021, should find a way to change view limit on xaxis\u001b[39;00m\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:1580\u001b[0m, in \u001b[0;36mLinePlot._plot\u001b[0;34m(cls, ax, x, y, style, column_num, stacking_id, **kwds)\u001b[0m\n\u001b[1;32m 1578\u001b[0m \u001b[38;5;28mcls\u001b[39m\u001b[38;5;241m.\u001b[39m_initialize_stacker(ax, stacking_id, \u001b[38;5;28mlen\u001b[39m(y))\n\u001b[1;32m 1579\u001b[0m y_values \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mcls\u001b[39m\u001b[38;5;241m.\u001b[39m_get_stacked_values(ax, stacking_id, y, kwds[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mlabel\u001b[39m\u001b[38;5;124m\"\u001b[39m])\n\u001b[0;32m-> 1580\u001b[0m lines \u001b[38;5;241m=\u001b[39m \u001b[43mMPLPlot\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_plot\u001b[49m\u001b[43m(\u001b[49m\u001b[43max\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mx\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43my_values\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mstyle\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mstyle\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwds\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1581\u001b[0m \u001b[38;5;28mcls\u001b[39m\u001b[38;5;241m.\u001b[39m_update_stacker(ax, stacking_id, y)\n\u001b[1;32m 1582\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m lines\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/converter.py:95\u001b[0m, in \u001b[0;36mregister_pandas_matplotlib_converters..wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 92\u001b[0m \u001b[38;5;129m@functools\u001b[39m\u001b[38;5;241m.\u001b[39mwraps(func)\n\u001b[1;32m 93\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mwrapper\u001b[39m(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs):\n\u001b[1;32m 94\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m pandas_converters():\n\u001b[0;32m---> 95\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mfunc\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/pandas/plotting/_matplotlib/core.py:975\u001b[0m, in \u001b[0;36mMPLPlot._plot\u001b[0;34m(cls, ax, x, y, style, is_errorbar, **kwds)\u001b[0m\n\u001b[1;32m 972\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 973\u001b[0m \u001b[38;5;66;03m# prevent style kwarg from going to errorbar, where it is unsupported\u001b[39;00m\n\u001b[1;32m 974\u001b[0m args \u001b[38;5;241m=\u001b[39m (x, y, style) \u001b[38;5;28;01mif\u001b[39;00m style \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;28;01melse\u001b[39;00m (x, y)\n\u001b[0;32m--> 975\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43max\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mplot\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwds\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/matplotlib/axes/_axes.py:1781\u001b[0m, in \u001b[0;36mAxes.plot\u001b[0;34m(self, scalex, scaley, data, *args, **kwargs)\u001b[0m\n\u001b[1;32m 1779\u001b[0m lines \u001b[38;5;241m=\u001b[39m [\u001b[38;5;241m*\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_get_lines(\u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39margs, data\u001b[38;5;241m=\u001b[39mdata, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)]\n\u001b[1;32m 1780\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m line \u001b[38;5;129;01min\u001b[39;00m lines:\n\u001b[0;32m-> 1781\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43madd_line\u001b[49m\u001b[43m(\u001b[49m\u001b[43mline\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1782\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m scalex:\n\u001b[1;32m 1783\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_request_autoscale_view(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mx\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/matplotlib/axes/_base.py:2339\u001b[0m, in \u001b[0;36m_AxesBase.add_line\u001b[0;34m(self, line)\u001b[0m\n\u001b[1;32m 2336\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m line\u001b[38;5;241m.\u001b[39mget_clip_path() \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 2337\u001b[0m line\u001b[38;5;241m.\u001b[39mset_clip_path(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mpatch)\n\u001b[0;32m-> 2339\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_update_line_limits\u001b[49m\u001b[43m(\u001b[49m\u001b[43mline\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 2340\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m line\u001b[38;5;241m.\u001b[39mget_label():\n\u001b[1;32m 2341\u001b[0m line\u001b[38;5;241m.\u001b[39mset_label(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m_child\u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mlen\u001b[39m(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_children)\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m)\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/matplotlib/axes/_base.py:2362\u001b[0m, in \u001b[0;36m_AxesBase._update_line_limits\u001b[0;34m(self, line)\u001b[0m\n\u001b[1;32m 2358\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_update_line_limits\u001b[39m(\u001b[38;5;28mself\u001b[39m, line):\n\u001b[1;32m 2359\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 2360\u001b[0m \u001b[38;5;124;03m Figures out the data limit of the given line, updating self.dataLim.\u001b[39;00m\n\u001b[1;32m 2361\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m-> 2362\u001b[0m path \u001b[38;5;241m=\u001b[39m \u001b[43mline\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget_path\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 2363\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m path\u001b[38;5;241m.\u001b[39mvertices\u001b[38;5;241m.\u001b[39msize \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m0\u001b[39m:\n\u001b[1;32m 2364\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/matplotlib/lines.py:1037\u001b[0m, in \u001b[0;36mLine2D.get_path\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1035\u001b[0m \u001b[38;5;250m\u001b[39m\u001b[38;5;124;03m\"\"\"Return the `~matplotlib.path.Path` associated with this line.\"\"\"\u001b[39;00m\n\u001b[1;32m 1036\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_invalidy \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_invalidx:\n\u001b[0;32m-> 1037\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrecache\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1038\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_path\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/matplotlib/lines.py:673\u001b[0m, in \u001b[0;36mLine2D.recache\u001b[0;34m(self, always)\u001b[0m\n\u001b[1;32m 671\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mrecache\u001b[39m(\u001b[38;5;28mself\u001b[39m, always\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m):\n\u001b[1;32m 672\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m always \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_invalidx:\n\u001b[0;32m--> 673\u001b[0m xconv \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mconvert_xunits\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_xorig\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 674\u001b[0m x \u001b[38;5;241m=\u001b[39m _to_unmasked_float_array(xconv)\u001b[38;5;241m.\u001b[39mravel()\n\u001b[1;32m 675\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/matplotlib/artist.py:279\u001b[0m, in \u001b[0;36mArtist.convert_xunits\u001b[0;34m(self, x)\u001b[0m\n\u001b[1;32m 277\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m ax \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;129;01mor\u001b[39;00m ax\u001b[38;5;241m.\u001b[39mxaxis \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 278\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m x\n\u001b[0;32m--> 279\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43max\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mxaxis\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mconvert_units\u001b[49m\u001b[43m(\u001b[49m\u001b[43mx\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/matplotlib/axis.py:1806\u001b[0m, in \u001b[0;36mAxis.convert_units\u001b[0;34m(self, x)\u001b[0m\n\u001b[1;32m 1804\u001b[0m ret \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mconverter\u001b[38;5;241m.\u001b[39mconvert(x, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39munits, \u001b[38;5;28mself\u001b[39m)\n\u001b[1;32m 1805\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[0;32m-> 1806\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m munits\u001b[38;5;241m.\u001b[39mConversionError(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mFailed to convert value(s) to axis \u001b[39m\u001b[38;5;124m'\u001b[39m\n\u001b[1;32m 1807\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124munits: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mx\u001b[38;5;132;01m!r}\u001b[39;00m\u001b[38;5;124m'\u001b[39m) \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01me\u001b[39;00m\n\u001b[1;32m 1808\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ret\n", - "\u001b[0;31mConversionError\u001b[0m: Failed to convert value(s) to axis units: array([Timestamp('1945-10-12 22:35:00+0000', tz='UTC'),\n Timestamp('1999-06-04 18:00:00+0000', tz='UTC'),\n Timestamp('1999-08-19 17:25:00+0000', tz='UTC'),\n Timestamp('1999-11-19 18:40:00+0000', tz='UTC'),\n Timestamp('2000-02-11 17:25:00+0000', tz='UTC'),\n Timestamp('2000-03-09 22:30:00+0000', tz='UTC'),\n Timestamp('2000-05-26 16:00:00+0000', tz='UTC'),\n Timestamp('2000-08-22 21:55:00+0000', tz='UTC'),\n Timestamp('2000-11-15 21:59:00+0000', tz='UTC'),\n Timestamp('2001-03-21 00:03:00+0000', tz='UTC'),\n Timestamp('2001-05-05 01:10:00+0000', tz='UTC'),\n Timestamp('2001-05-30 20:13:00+0000', tz='UTC'),\n Timestamp('2001-07-18 17:15:00+0000', tz='UTC'),\n Timestamp('2001-08-30 15:34:00+0000', tz='UTC'),\n Timestamp('2001-09-26 15:49:00+0000', tz='UTC'),\n Timestamp('2001-10-30 23:09:00+0000', tz='UTC'),\n Timestamp('2001-11-29 18:00:00+0000', tz='UTC'),\n Timestamp('2001-12-27 22:33:00+0000', tz='UTC'),\n Timestamp('2002-01-28 22:09:00+0000', tz='UTC'),\n Timestamp('2002-02-25 22:50:00+0000', tz='UTC'),\n Timestamp('2002-03-25 22:01:00+0000', tz='UTC'),\n Timestamp('2002-04-30 16:50:00+0000', tz='UTC'),\n Timestamp('2002-05-30 22:05:00+0000', tz='UTC'),\n Timestamp('2002-08-14 18:24:00+0000', tz='UTC'),\n Timestamp('2002-09-12 15:41:00+0000', tz='UTC'),\n Timestamp('2002-11-13 22:45:00+0000', tz='UTC'),\n Timestamp('2003-02-11 22:57:00+0000', tz='UTC'),\n Timestamp('2003-05-13 21:23:00+0000', tz='UTC'),\n Timestamp('2003-09-09 23:29:00+0000', tz='UTC'),\n Timestamp('2003-12-01 22:59:00+0000', tz='UTC'),\n Timestamp('2004-01-18 22:42:00+0000', tz='UTC'),\n Timestamp('2004-04-30 19:46:00+0000', tz='UTC'),\n Timestamp('2004-07-15 17:53:00+0000', tz='UTC'),\n Timestamp('2004-10-15 17:38:00+0000', tz='UTC'),\n Timestamp('2005-01-07 18:24:00+0000', tz='UTC'),\n Timestamp('2005-04-08 17:13:00+0000', tz='UTC'),\n Timestamp('2005-07-15 16:47:00+0000', tz='UTC'),\n Timestamp('2005-10-07 17:52:00+0000', tz='UTC'),\n Timestamp('2006-01-13 19:23:00+0000', tz='UTC'),\n Timestamp('2006-05-26 14:16:00+0000', tz='UTC'),\n Timestamp('2006-07-14 18:22:00+0000', tz='UTC'),\n Timestamp('2006-10-19 23:15:00+0000', tz='UTC'),\n Timestamp('2007-01-12 19:10:00+0000', tz='UTC'),\n Timestamp('2007-04-06 15:34:00+0000', tz='UTC'),\n Timestamp('2007-10-04 23:40:00+0000', tz='UTC'),\n Timestamp('2008-04-03 21:55:00+0000', tz='UTC'),\n Timestamp('2008-10-29 21:33:00+0000', tz='UTC'),\n Timestamp('2009-05-20 18:29:00+0000', tz='UTC'),\n Timestamp('2009-06-09 16:33:00+0000', tz='UTC'),\n Timestamp('2009-11-25 17:33:00+0000', tz='UTC'),\n Timestamp('2010-05-28 16:50:00+0000', tz='UTC'),\n Timestamp('2010-11-29 23:20:00+0000', tz='UTC'),\n Timestamp('2011-10-07 18:58:00+0000', tz='UTC'),\n Timestamp('2012-10-11 21:24:00+0000', tz='UTC'),\n Timestamp('2012-10-12 01:49:00+0000', tz='UTC'),\n Timestamp('2013-10-31 17:42:00+0000', tz='UTC'),\n Timestamp('2014-10-15 21:07:00+0000', tz='UTC'),\n Timestamp('2015-10-22 17:52:00+0000', tz='UTC'),\n Timestamp('2016-10-26 16:22:00+0000', tz='UTC'), NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT, NaT,\n NaT, NaT, NaT, NaT], dtype=object)" - ] + "data": { + "text/plain": [ + "Text(0, 0.5, 'Water Level (feet below land surface)')" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" }, { "data": { - "image/png": "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fqqGhgb3sb179yomJqbRoAEAAGgOr59+crlcWrx4sV588UXt2rVLEyZMUE1NjcaOHStJGj16tDIyMtzrJ0yYoC+//FKTJ0/W3r17tX79ej322GOaOHFiy00BAAAuel5/Tk16erqOHDmiOXPmqLy8XImJicrLy3O/eLi0tFSBgd+3UlxcnN5++21NnTpVV111lWJjYzV58mRNnz695aYAAAAXPa8/p+Z84HNqAADwPxf059QAAABcqIgaAABgBaIGAABYgagBAABWIGoAAIAViBoAAGAFogYAAFiBqAEAAFYgagAAgBWIGgAAYAWiBgAAWIGoAQAAViBqAACAFYgaAABgBaIGAABYgagBAABWIGoAAIAViBoAAGAFogYAAFiBqAEAAFYgagAAgBWIGgAAYAWiBgAAWIGoAQAAViBqAACAFYgaAABgBaIGAABYgagBAABWIGoAAIAViBoAAGAFogYAAFiBqAEAAFYgagAAgBWIGgAAYAWiBgAAWIGoAQAAViBqAACAFYgaAABgBaIGAABYgagBAABWIGoAAIAViBoAAGAFogYAAFiBqAEAAFYgagAAgBWIGgAAYAWiBgAAWIGoAQAAViBqAACAFYgaAABgBaIGAABYgagBAABWIGoAAIAViBoAAGAFogYAAFiBqAEAAFYgagAAgBWIGgAAYAWiBgAAWIGoAQAAViBqAACAFYgaAABgBaIGAABYoVlRk5OTo/j4eIWGhio5OVnbtm07q/NWrVqlgIAADR8+vDmXBQAAaJLXUbN69Wq5XC5lZmaqqKhICQkJSktL0+HDh8943sGDB/XQQw/p+uuvb/ZmAQAAmuJ11MybN0/33Xefxo4dqz59+mjRokUKDw/XsmXLmjynvr5ed999t7KystSjR4+fvEZtba2qq6s9bgAAAGfiVdTU1dWpsLBQqamp399BYKBSU1NVUFDQ5HmPPvqoOnfurHvvvfesrpOdna3IyEj3LS4uzpttAgCAi5BXUXP06FHV19fL6XR6HHc6nSovL2/0nC1btmjp0qVavHjxWV8nIyNDVVVV7ltZWZk32wQAABeh4Na882PHjmnUqFFavHixoqKizvo8h8Mhh8PRijsDAAC28SpqoqKiFBQUpIqKCo/jFRUVio6OPm39vn37dPDgQQ0bNsx9rKGh4bsLBwdrz549uuyyy5qzbwAAAA9ePf0U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GRkZpk2bNqaoqMiv5igqKjIrV640JSUl5sCBA+all14y4eHh5rnnnvOrOU756quvTI8ePczQoUNNQkKCX82wadMmI8ns2bPHHDp0yH2rr6/3qzmMMeb22283ycnJZuPGjebAgQNm69atZsuWLX4zQ2VlpcffQVlZmenYsaPJzMw85xl8OceWLVtMYGCg+ctf/mL2799v3n//fdO3b19zxx13+NUcubm5pl27dmbVqlVm37595uWXXzZt27Y169atuyBmMMaYSZMmmYULF5pRo0Y1+r2nqqrKOJ1Oc/fdd5uSkhLz8ssvm7CwMK+/1/okan7s8OHDRpJ57733jDHf/QNp06aNefXVV91rdu3aZSSZgoICY4wxGzZsMIGBgaa8vNy95tlnnzURERGmtrbWGGPMww8/bPr27etxrfT0dJOWluZXc/zQjTfe2KJRcz5mOKVPnz4mKyvL7+e44447zD333OOXc6Snp5tZs2aZzMzMFosaX81wKmq++uqrVtm3r+Z46623TGRkpPniiy/8doYfe+ONN0xAQIA5ePCgX83x5JNPmh49enhca8GCBSY2Ntav5khJSTEPPfSQx7VcLpcZMmTIBTHDDzX1vSc3N9d06NDB4/+x6dOnm169enm1v/PympqqqipJcv/WzsLCQp08eVKpqanuNb1791a3bt1UUFAgSSooKFD//v09fuN3Wlqaqqur9dFHH7nX/PA+Tq05dR/+Mocv+WqGhoYGHTt2rNV+U6uv5tixY4e2bt2qG2+80e/mWL58ufbv36/MzMxW2bsvZpCkxMRExcTE6JZbbtEHH3zgd3OsW7dOAwcO1Ny5cxUbG6uePXvqoYce0tdff+03M/zY0qVLlZqaqu7du7f4DK05R0pKisrKyrRhwwYZY1RRUaE1a9a02ofDttYctbW1Cg0N9bhWWFiYtm3bppMnT573Gc5GQUGBbrjhBoWEhLiPpaWlac+ePfrqq6/O+n58HjUNDQ2aMmWKhgwZon79+kmSysvLFRISovbt23usdTqd7ufLy8vLPf5ST/35qT8705rq6uoW/4bRmnP4ii9neOqpp3T8+HHdddddLTyFb+bo2rWrHA6HBg4cqIkTJ2rcuHF+Nccnn3yiGTNm6O9//7uCg73+7SgXxAwxMTFatGiRXnvtNb322muKi4vTTTfdpKKiIr+aY//+/dqyZYtKSkr0xhtvaP78+VqzZo3uv/9+v5nhh/73v//prbfeapV/E1LrzjFkyBCtWLFC6enpCgkJUXR0tCIjI5WTk+NXc6SlpWnJkiUqLCyUMUbbt2/XkiVLdPLkSR09evS8z3A2WupnY+t9d2vCxIkTVVJSoi1btvj60i3Khjl8NcPKlSuVlZWlf/zjH+rcuXOL378v5nj//fd1/Phx/etf/9KMGTN0+eWXa8SIES16jdaao76+XiNHjlRWVpZ69uzZovf9Y635d9GrVy/16tXL/fW1116rffv26ZlnntFLL73UotdqzTkaGhoUEBCgFStWKDIyUpI0b9483XnnncrNzVVYWFiLXMdX/75ffPFFtW/fXsOHD2+V+2/NOT7++GNNnjxZc+bMUVpamg4dOqRp06Zp/PjxWrp0aYteqzXnmD17tsrLy3XNNdfIGCOn06kxY8Zo7ty5Cgxsuccu/OHnnk8fqXnggQf05ptvatOmTeratav7eHR0tOrq6lRZWemxvqKiQtHR0e41P3419amvf2pNREREi32j8MUcvuCrGVatWqVx48bplVdeOe2pQX+a49JLL1X//v113333aerUqXrkkUf8Zo5jx45p+/bteuCBBxQcHKzg4GA9+uij+vDDDxUcHKx33333gp+hKYMHD9ann37aIvs/pbXniImJUWxsrDtoJOnKK6+UMUafffaZX8xwijFGy5Yt06hRozyeNmgprT1Hdna2hgwZomnTpumqq65SWlqacnNztWzZMh06dMhv5ggLC9OyZct04sQJHTx4UKWlpYqPj1e7du3UqVOn8z7D2Wixn41evQKnmRoaGszEiRNNly5dzN69e0/781MvNFqzZo372O7duxt9sVRFRYV7zXPPPWciIiLMN998Y4z57oXC/fr187jvESNGtNgLhX01xw+19AuFfTnDypUrTWhoqFm7dm2L7f98zPFjWVlZpnv37n4zR319vdm5c6fHbcKECaZXr15m586dHu9iuFBnaEpqamqLvVPFV3M899xzJiwszBw7dsy9Zu3atSYwMNCcOHHCL2Y45dSLt3fu3HlO+z5fc/ziF78wd911l8d9b9261Ugyn3/+ud/M0ZgbbrjBjBgx4oKY4Yd+6oXCdXV17mMZGRlev1DYJ1EzYcIEExkZaTZv3uzxNsAf/gMeP3686datm3n33XfN9u3bTUpKiklJSXH/+am3tQ0dOtQUFxebvLw806lTp0bf0j1t2jSza9cuk5OT06Jv6fbVHMYYs2PHDrNjxw6TlJRkRo4caXbs2GE++ugjv5lhxYoVJjg42OTk5Hhcp7Ky8pxn8OUcCxcuNOvWrTN79+41e/fuNUuWLDHt2rUzM2fO9Ks5fqwl3/3kqxmeeeYZs3btWvPJJ5+YnTt3msmTJ5vAwEDzzjvv+NUcx44dM127djV33nmn+eijj8x7771nrrjiCjNu3Di/meGUe+65xyQnJ5/zvs/XHMuXLzfBwcEmNzfX7Nu3z2zZssUMHDjQDB482K/m2LNnj3nppZfM3r17zb///W+Tnp5uOnbsaA4cOHBBzGCMMZ988onZsWOH+d3vfmd69uzp/hl36t1OlZWVxul0mlGjRpmSkhKzatWqZn18hk+iRlKjt+XLl7vXfP311+b+++83HTp0MOHh4eaOO+4whw4d8rifgwcPmp/97GcmLCzMREVFmd///vfm5MmTHms2bdpkEhMTTUhIiOnRo4fHNfxpjsau0xKPDvhqhhtvvLHR64wZM+acZ/DlHAsWLDB9+/Y14eHhJiIiwgwYMMDk5ua22Gej+PL/qR9qyajx1QxPPPGEueyyy0xoaKjp2LGjuemmm8y7777bIjP4cg5jvnvLa2pqqgkLCzNdu3Y1LpfrnB+l8fUMlZWVJiwszDz//PPnvO/zOceCBQtMnz59TFhYmImJiTF33323+eyzz/xqjo8//tgkJiaasLAwExERYX7+85+b3bt3X1AzNPUz4Yfh9eGHH5rrrrvOOBwOExsbax5//HGv9xvw/5sGAADwa/zuJwAAYAWiBgAAWIGoAQAAViBqAACAFYgaAABgBaIGAABYgagBAABWIGoAAIAViBoAAGAFogYAAFiBqAEAAFb4P5QmrgB4KRHBAAAAAElFTkSuQmCC", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjIAAAGwCAYAAACzXI8XAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/TGe4hAAAACXBIWXMAAA9hAAAPYQGoP6dpAABZRUlEQVR4nO3deVhU5dsH8O8MMMCwDLKLguK+72ngkqIJaO5vuZB7maVloqWWuWViWi5ZWrlnkqm5VUopiFu4ISpupIhiCmIqDIsMMDzvH/5mcmQbhmEZ/X6ua65LzjnzzP14Dmdunu1IhBACRERERCZIWtkBEBERERmKiQwRERGZLCYyREREZLKYyBAREZHJYiJDREREJouJDBEREZksJjJERERksswrO4Dylp+fjzt37sDOzg4SiaSywyEiIiI9CCGQnp4ODw8PSKVFt7s884nMnTt34OnpWdlhEBERkQFu3bqFmjVrFrn/mU9k7OzsADz+j7C3t6/kaIiIiEgfSqUSnp6e2u/xojzziYymO8ne3p6JDBERkYkpaVgIB/sSERGRyWIiQ0RERCaLiQwRERGZrGd+jAwREZG+1Go1cnNzKzuM54KFhQXMzMzKXA4TGSIieu4JIZCcnIzU1NTKDuW54uDgAHd39zKt88ZEhoiInnuaJMbV1RVyuZwLqJYzIQSysrKQkpICAKhevbrBZTGRISKi55pardYmMU5OTpUdznPD2toaAJCSkgJXV1eDu5k42JeIiJ5rmjExcrm8kiN5/mj+z8syLomJDBEREUpeeI2Mzxj/50xkiIiIyGQxkSEiIiKTxUSGiIjIRHXt2hXvv/9+ZYdRqZjIEBERkcliIkNEREQmi4kMERHRU4QQyMrJq5SXEMKgmFUqFaZOnYoaNWrAxsYGHTp0QGRkJABAqVTC2toa+/bt03nPzp07YWdnh6ysrGLL9vX1xbRp03S23bt3DxYWFjh8+DAAYNOmTWjXrh3s7Ozg7u6OYcOGaRe8K09cEI+IiOgpj3LVaDLrj0r57Evz/CGXlf7reeLEibh06RK2bNkCDw8P7Ny5EwEBAYiNjUX9+vXxyiuvIDQ0FIGBgdr3bN68Gf379y9xDZ2goCAsWrQICxcu1E6Z/vnnn+Hh4YHOnTsDeLwWzKeffoqGDRsiJSUFwcHBGDVqFPbu3VvqupQGW2SIiIhMXGJiItavX49t27ahc+fOqFu3LqZOnYpOnTph/fr1AB4nI7t27dK2viiVSvz+++8ICgoqsfzXXnsNd+7cwdGjR7XbQkNDMXToUG1iM2bMGAQGBqJOnTp48cUX8dVXX2Hfvn3IyMgohxr/hy0yRERET7G2MMOlef6V9tmlFRsbC7VajQYNGuhsV6lU2scu9OrVCxYWFtizZw+GDBmCX375Bfb29ujRo0eJ5bu4uKBnz57YvHkzOnfujISEBERFReG7777THhMdHY05c+bg3LlzePjwIfLz8wE8TrKaNGlS6jrpi4kMERHRUyQSiUHdO5UlIyMDZmZmiI6OLvDMIltbWwCATCbD//3f/yE0NBRDhgxBaGgoBg8eDHNz/eoZFBSE9957DytWrEBoaCiaN2+O5s2bAwAyMzPh7+8Pf39/bN68GS4uLkhMTIS/vz9ycnKMW9mnmM5ZIiIiokK1bt0aarUaKSkp2jErhQkKCsLLL7+MixcvIiIiAvPnz9f7M/r164dx48YhLCwMoaGhGDFihHbflStXcP/+fSxcuBCenp4AgNOnTxteoVLgGBkiIiIT16BBAwQFBWHEiBHYsWMHEhIScPLkSYSEhOD333/XHtelSxe4u7sjKCgI3t7e6NChg96fYWNjg/79++OTTz7B5cuXMXToUO0+Ly8vyGQyrFixAtevX8eePXvw6aefGrWORWEiQ0RE9AxYv349RowYgSlTpqBhw4bo378/Tp06BS8vL+0xEokEQ4cOxblz5/Qa5Pu0oKAgnDt3Dp07d9Yp18XFBRs2bMC2bdvQpEkTLFy4EF988YVR6lUSiTB0wrqJUCqVUCgUSEtLg729fWWHQ0REVUx2djYSEhLg7e0NKyuryg7nuVLc/72+399skSEiIiKTxUSGiIjoObdgwQLY2toW+npyAb2qiLOWiIiInnPjx4/Ha6+9Vug+a2vrCo6mdJjIEBERPeccHR3h6OhY2WEYhF1LREREgHYlWqo4xvg/rzItMgsXLsSMGTMwadIkLFu2DMDj0cxTpkzBli1boFKp4O/vj5UrV8LNza1ygyUiomeGTCaDVCrFnTt34OLiAplMpn1+EJUPIQRycnJw7949SKVSyGQyg8uqEonMqVOn8N1336FFixY62ydPnozff/8d27Ztg0KhwMSJEzFw4EAcO3askiIlIqJnjVQqhbe3N5KSknDnzp3KDue5IpfL4eXlBanU8A6iSk9kMjIyEBQUhNWrV+sslZyWloa1a9ciNDQUfn5+AB4v9tO4cWMcP34cL774YmWFTEREzxiZTAYvLy/k5eVBrVZXdjjPBTMzM5ibm5e59avSE5kJEyagd+/e6NGjh04iEx0djdzcXJ2ncjZq1AheXl6IiooqMpFRqVRQqVTan5VKZfkFT0REzwyJRAILCwtYWFhUdihUCpWayGzZsgVnzpzBqVOnCuxLTk6GTCaDg4ODznY3NzckJycXWWZISAjmzp1r7FCJiIioCqq0WUu3bt3CpEmTsHnzZqMuCT1jxgykpaVpX7du3TJa2URERFS1VFoiEx0djZSUFLRp0wbm5uYwNzfHoUOH8NVXX8Hc3Bxubm7IyclBamqqzvvu3r0Ld3f3Isu1tLSEvb29zouIiIieTZXWtdS9e3fExsbqbBs9ejQaNWqEadOmwdPTExYWFggPD8egQYMAAHFxcUhMTISPj09lhExERERVTKUlMnZ2dmjWrJnONhsbGzg5OWm3jx07FsHBwXB0dIS9vT3effdd+Pj4cMYSERERAagCs5aKs3TpUkilUgwaNEhnQTwiIiIiAJAIIURlB1GelEolFAoF0tLSOF6GiIjIROj7/c1nLREREZHJYiJDREREJouJDBEREZksJjJERERkspjIEBERkcliIkNEREQmi4kMERERmSwmMkRERGSymMgQERGRyWIiQ0RERCaLiQwRERGZLCYyREREZLKYyBAREZHJYiJDREREJouJDBEREZksc0PelJCQgCNHjuDmzZvIysqCi4sLWrduDR8fH1hZWRk7RiIiIqJClSqR2bx5M5YvX47Tp0/Dzc0NHh4esLa2xoMHDxAfHw8rKysEBQVh2rRpqFWrVnnFTERERASgFIlM69atIZPJMGrUKPzyyy/w9PTU2a9SqRAVFYUtW7agXbt2WLlyJV599VWjB0xERESkIRFCCH0O/OOPP+Dv769Xoffv38eNGzfQtm3bMgVnDEqlEgqFAmlpabC3t6/scIiIiEgP+n5/690io28SAwBOTk5wcnLS+3giIiIiQxg8ayk+Ph4zZ87E0KFDkZKSAgDYt28fLl68aLTgiIiIiIpjUCJz6NAhNG/eHCdOnMCOHTuQkZEBADh37hxmz55t1ACJiIiIimJQIjN9+nTMnz8f+/fvh0wm0273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puL777+HXC7H559/Dg8PDzRv3hwTJ07E9u3btY8qKC///PMP7t+//9yuHkxERES6StW19LT09HQcPXpUO17m3LlzqF+/Pi5cuKDX+zMyMrStK61bt8aSJUvQrVs3ODo6wtHREXPnzsWgQYPg7u6O+Ph4fPjhh0hPT0dsbKze07D1bZoiIiKiqkPf72+DZy0BgI2NjTbpqFatGszNzXH58mW933/69Gl069ZN+3NwcDAAYOTIkVi1ahXOnz+PjRs3IjU1FR4eHujZsyc+/fTTKruWDBEREVWsUrXI5Ofn4/Tp04iMjMTBgwdx7NgxZGZmokaNGtoF8bp164ZatWqVZ8ylwhYZIiIi01MuLTIODg7IzMyEu7s7unXrhqVLl6Jr166oW7dumQMmIiIiKq1SJTKLFy9Gt27d0KBBg/KKh4iIiEhvpUpk3nrrrfKKg4iIiKjUuJ4+ERERmSwmMkRERGSymMgQERGRyWIiQ0RERCaLiQwRERGZLCYyREREZLKYyBAREZHJYiJDREREJouJDBEREZksJjJERERkspjIEBERkcliIkNEREQmi4kMERERmSwmMkRERGSymMgQERGRyWIiQ0RERCaLiQwRERGZLCYyREREZLKYyBAREZHJYiJDREREJouJDBEREZksJjJERERkspjIEBERkcliIkNEREQmi4kMERERmSwmMkRERGSymMgQERGRyWIiQ0RERCaLiQwRERGZLCYyREREZLKYyBAREZHJYiJDREREJouJDBEREZksJjJERERkspjIEBERkcliIkNEREQmi4kMERERmSwmMkRERGSymMgQERGRyWIiQ0RERCaLiQwRERGZrEpNZA4fPow+ffrAw8MDEokEu3bt0tkvhMCsWbNQvXp1WFtbo0ePHrh69WrlBEtERERVTqUmMpmZmWjZsiW++eabQvcvWrQIX331Fb799lucOHECNjY28Pf3R3Z2dgVHSkRERFWReWV+eGBgIAIDAwvdJ4TAsmXLMHPmTPTr1w8A8MMPP8DNzQ27du3CkCFDKjJUIiIiqoKq7BiZhIQEJCcno0ePHtptCoUCHTp0QFRUVJHvU6lUUCqVOi8iIiJ6NlXZRCY5ORkA4ObmprPdzc1Nu68wISEhUCgU2penp2e5xklERESVp8omMoaaMWMG0tLStK9bt25VdkhERERUTqpsIuPu7g4A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", "text/plain": [ "
" ] @@ -740,7 +744,7 @@ } ], "source": [ - "ax = data[0].plot(y='lev_va')\n", + "ax = data[0].plot(x = 'lev_dt', y='lev_va')\n", "ax.set_xlabel('Date')\n", "ax.set_ylabel('Water Level (feet below land surface)')" ] @@ -763,10 +767,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:23.691243Z", + "iopub.status.busy": "2024-08-02T00:48:23.690731Z", + "iopub.status.idle": "2024-08-02T00:48:23.694165Z", + "shell.execute_reply": "2024-08-02T00:48:23.693581Z" }, "pycharm": { "name": "#%%\n" @@ -777,7 +781,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "The query URL used to retrieve the data from NWIS was: https://waterservices.usgs.gov/nwis/gwlevels?startDT=1851-01-01&sites=434400121275801&format=rdb\n" + "The query URL used to retrieve the data from NWIS was: https://nwis.waterdata.usgs.gov/nwis/gwlevels?format=rdb&begin_date=1851-01-01&site_no=434400121275801\n" ] } ], @@ -804,10 +808,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:23.696227Z", + "iopub.status.busy": "2024-08-02T00:48:23.695900Z", + "iopub.status.idle": "2024-08-02T00:48:24.385573Z", + "shell.execute_reply": "2024-08-02T00:48:24.384994Z" }, "pycharm": { "name": "#%%\n" @@ -818,14 +822,14 @@ "name": "stdout", "output_type": "stream", "text": [ - "Retrieved 311 data values.\n" + "Retrieved 933 data values.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/utils.py:89: UserWarning: Warning: 207 incomplete dates found, consider setting datetime_index to False.\n", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/utils.py:89: UserWarning: Warning: 621 incomplete dates found, consider setting datetime_index to False.\n", " warnings.warn(\n" ] }, @@ -866,6 +870,7 @@ " lev_src_cd\n", " lev_meth_cd\n", " lev_age_cd\n", + " parameter_cd\n", " \n", " \n", " site_no\n", @@ -885,6 +890,7 @@ " \n", " \n", " \n", + " \n", " \n", " \n", " \n", @@ -896,9 +902,9 @@ " 2007-01-26\n", " 17:08\n", " +0000\n", - " 317.21\n", - " NaN\n", " NaN\n", + " 871.79\n", + " NGVD29\n", " 1\n", " USGS\n", " m\n", @@ -906,53 +912,56 @@ " S\n", " V\n", " A\n", + " 62610\n", " \n", " \n", - " 2007-06-11 19:30:00+00:00\n", + " 2007-01-26 17:08:00+00:00\n", " USGS\n", " GW\n", - " 2007-06-11\n", - " 19:30\n", + " 2007-01-26\n", + " 17:08\n", " +0000\n", - " 309.32\n", - " NaN\n", " NaN\n", + " 871.93\n", + " NAVD88\n", " 1\n", - " MO005\n", + " USGS\n", " m\n", " 2\n", + " S\n", + " V\n", " A\n", - " T\n", - " A\n", + " 62611\n", " \n", " \n", - " 2007-07-23 14:30:00+00:00\n", + " 2007-01-26 17:08:00+00:00\n", " USGS\n", " GW\n", - " 2007-07-23\n", - " 14:30\n", + " 2007-01-26\n", + " 17:08\n", " +0000\n", - " 321.35\n", + " 317.21\n", " NaN\n", " NaN\n", " 1\n", - " MO005\n", + " USGS\n", " m\n", " 2\n", + " S\n", + " V\n", " A\n", - " T\n", - " A\n", + " 72019\n", " \n", " \n", - " 2007-09-04 20:15:00+00:00\n", + " 2007-06-11 19:30:00+00:00\n", " USGS\n", " GW\n", - " 2007-09-04\n", - " 20:15\n", + " 2007-06-11\n", + " 19:30\n", " +0000\n", - " 326.55\n", - " NaN\n", " NaN\n", + " 879.68\n", + " NGVD29\n", " 1\n", " MO005\n", " m\n", @@ -960,17 +969,18 @@ " A\n", " T\n", " A\n", + " 62610\n", " \n", " \n", - " 2007-10-01 15:17:00+00:00\n", + " 2007-06-11 19:30:00+00:00\n", " USGS\n", " GW\n", - " 2007-10-01\n", - " 15:17\n", + " 2007-06-11\n", + " 19:30\n", " +0000\n", - " 317.01\n", - " NaN\n", " NaN\n", + " 879.82\n", + " NAVD88\n", " 1\n", " MO005\n", " m\n", @@ -978,6 +988,7 @@ " A\n", " T\n", " A\n", + " 62611\n", " \n", " \n", " ...\n", @@ -997,18 +1008,19 @@ " ...\n", " ...\n", " ...\n", + " ...\n", " \n", " \n", " 434400121275801\n", " NaT\n", " USGS\n", " GW\n", - " 1998-09-25\n", + " 1999-03-19\n", " NaN\n", - " +0000\n", - " 17.36\n", " NaN\n", " NaN\n", + " 4204.97\n", + " NAVD88\n", " 1\n", " NaN\n", " D\n", @@ -1016,35 +1028,37 @@ " NaN\n", " S\n", " A\n", + " 62611\n", " \n", " \n", " NaT\n", " USGS\n", " GW\n", - " 1998-11-19\n", + " 1999-03-19\n", " NaN\n", - " +0000\n", - " 19.85\n", + " NaN\n", + " 19.05\n", " NaN\n", " NaN\n", " 1\n", - " USGS\n", + " NaN\n", " D\n", " 2\n", - " S\n", + " NaN\n", " S\n", " A\n", + " 72019\n", " \n", " \n", " NaT\n", " USGS\n", " GW\n", - " 1998-12-15\n", + " 1999-05-14\n", " NaN\n", - " +0000\n", - " 20.33\n", " NaN\n", " NaN\n", + " 4201.99\n", + " NGVD29\n", " 1\n", " USGS\n", " D\n", @@ -1052,24 +1066,26 @@ " S\n", " S\n", " A\n", + " 62610\n", " \n", " \n", " NaT\n", " USGS\n", " GW\n", - " 1999-03-19\n", + " 1999-05-14\n", " NaN\n", - " +0000\n", - " 19.05\n", " NaN\n", " NaN\n", + " 4206.01\n", + " NAVD88\n", " 1\n", - " NaN\n", + " USGS\n", " D\n", " 2\n", - " NaN\n", + " S\n", " S\n", " A\n", + " 62611\n", " \n", " \n", " NaT\n", @@ -1077,7 +1093,7 @@ " GW\n", " 1999-05-14\n", " NaN\n", - " +0000\n", + " NaN\n", " 18.01\n", " NaN\n", " NaN\n", @@ -1088,98 +1104,99 @@ " S\n", " S\n", " A\n", + " 72019\n", " \n", " \n", "\n", - "

311 rows × 15 columns

\n", + "

933 rows × 16 columns

\n", "" ], "text/plain": [ " agency_cd site_tp_cd lev_dt \\\n", "site_no datetime \n", "375907091432201 2007-01-26 17:08:00+00:00 USGS GW 2007-01-26 \n", + " 2007-01-26 17:08:00+00:00 USGS GW 2007-01-26 \n", + " 2007-01-26 17:08:00+00:00 USGS GW 2007-01-26 \n", + " 2007-06-11 19:30:00+00:00 USGS GW 2007-06-11 \n", " 2007-06-11 19:30:00+00:00 USGS GW 2007-06-11 \n", - " 2007-07-23 14:30:00+00:00 USGS GW 2007-07-23 \n", - " 2007-09-04 20:15:00+00:00 USGS GW 2007-09-04 \n", - " 2007-10-01 15:17:00+00:00 USGS GW 2007-10-01 \n", "... ... ... ... \n", - "434400121275801 NaT USGS GW 1998-09-25 \n", - " NaT USGS GW 1998-11-19 \n", - " NaT USGS GW 1998-12-15 \n", + "434400121275801 NaT USGS GW 1999-03-19 \n", " NaT USGS GW 1999-03-19 \n", " NaT USGS GW 1999-05-14 \n", + " NaT USGS GW 1999-05-14 \n", + " NaT USGS GW 1999-05-14 \n", "\n", " lev_tm lev_tz_cd lev_va sl_lev_va \\\n", "site_no datetime \n", - "375907091432201 2007-01-26 17:08:00+00:00 17:08 +0000 317.21 NaN \n", - " 2007-06-11 19:30:00+00:00 19:30 +0000 309.32 NaN \n", - " 2007-07-23 14:30:00+00:00 14:30 +0000 321.35 NaN \n", - " 2007-09-04 20:15:00+00:00 20:15 +0000 326.55 NaN \n", - " 2007-10-01 15:17:00+00:00 15:17 +0000 317.01 NaN \n", + "375907091432201 2007-01-26 17:08:00+00:00 17:08 +0000 NaN 871.79 \n", + " 2007-01-26 17:08:00+00:00 17:08 +0000 NaN 871.93 \n", + " 2007-01-26 17:08:00+00:00 17:08 +0000 317.21 NaN \n", + " 2007-06-11 19:30:00+00:00 19:30 +0000 NaN 879.68 \n", + " 2007-06-11 19:30:00+00:00 19:30 +0000 NaN 879.82 \n", "... ... ... ... ... \n", - "434400121275801 NaT NaN +0000 17.36 NaN \n", - " NaT NaN +0000 19.85 NaN \n", - " NaT NaN +0000 20.33 NaN \n", - " NaT NaN +0000 19.05 NaN \n", - " NaT NaN +0000 18.01 NaN \n", + "434400121275801 NaT NaN NaN NaN 4204.97 \n", + " NaT NaN NaN 19.05 NaN \n", + " NaT NaN NaN NaN 4201.99 \n", + " NaT NaN NaN NaN 4206.01 \n", + " NaT NaN NaN 18.01 NaN \n", "\n", - " sl_datum_cd lev_status_cd \\\n", - "site_no datetime \n", - "375907091432201 2007-01-26 17:08:00+00:00 NaN 1 \n", - " 2007-06-11 19:30:00+00:00 NaN 1 \n", - " 2007-07-23 14:30:00+00:00 NaN 1 \n", - " 2007-09-04 20:15:00+00:00 NaN 1 \n", - " 2007-10-01 15:17:00+00:00 NaN 1 \n", - "... ... ... \n", - "434400121275801 NaT NaN 1 \n", - " NaT NaN 1 \n", - " NaT NaN 1 \n", - " NaT NaN 1 \n", - " NaT NaN 1 \n", + " sl_datum_cd lev_status_cd \\\n", + "site_no datetime \n", + "375907091432201 2007-01-26 17:08:00+00:00 NGVD29 1 \n", + " 2007-01-26 17:08:00+00:00 NAVD88 1 \n", + " 2007-01-26 17:08:00+00:00 NaN 1 \n", + " 2007-06-11 19:30:00+00:00 NGVD29 1 \n", + " 2007-06-11 19:30:00+00:00 NAVD88 1 \n", + "... ... ... \n", + "434400121275801 NaT NAVD88 1 \n", + " NaT NaN 1 \n", + " NaT NGVD29 1 \n", + " NaT NAVD88 1 \n", + " NaT NaN 1 \n", "\n", " lev_agency_cd lev_dt_acy_cd \\\n", "site_no datetime \n", "375907091432201 2007-01-26 17:08:00+00:00 USGS m \n", + " 2007-01-26 17:08:00+00:00 USGS m \n", + " 2007-01-26 17:08:00+00:00 USGS m \n", + " 2007-06-11 19:30:00+00:00 MO005 m \n", " 2007-06-11 19:30:00+00:00 MO005 m \n", - " 2007-07-23 14:30:00+00:00 MO005 m \n", - " 2007-09-04 20:15:00+00:00 MO005 m \n", - " 2007-10-01 15:17:00+00:00 MO005 m \n", "... ... ... \n", "434400121275801 NaT NaN D \n", + " NaT NaN D \n", " NaT USGS D \n", " NaT USGS D \n", - " NaT NaN D \n", " NaT USGS D \n", "\n", " lev_acy_cd lev_src_cd lev_meth_cd \\\n", "site_no datetime \n", "375907091432201 2007-01-26 17:08:00+00:00 2 S V \n", + " 2007-01-26 17:08:00+00:00 2 S V \n", + " 2007-01-26 17:08:00+00:00 2 S V \n", + " 2007-06-11 19:30:00+00:00 2 A T \n", " 2007-06-11 19:30:00+00:00 2 A T \n", - " 2007-07-23 14:30:00+00:00 2 A T \n", - " 2007-09-04 20:15:00+00:00 2 A T \n", - " 2007-10-01 15:17:00+00:00 2 A T \n", "... ... ... ... \n", "434400121275801 NaT 2 NaN S \n", + " NaT 2 NaN S \n", " NaT 2 S S \n", " NaT 2 S S \n", - " NaT 2 NaN S \n", " NaT 2 S S \n", "\n", - " lev_age_cd \n", - "site_no datetime \n", - "375907091432201 2007-01-26 17:08:00+00:00 A \n", - " 2007-06-11 19:30:00+00:00 A \n", - " 2007-07-23 14:30:00+00:00 A \n", - " 2007-09-04 20:15:00+00:00 A \n", - " 2007-10-01 15:17:00+00:00 A \n", - "... ... \n", - "434400121275801 NaT A \n", - " NaT A \n", - " NaT A \n", - " NaT A \n", - " NaT A \n", + " lev_age_cd parameter_cd \n", + "site_no datetime \n", + "375907091432201 2007-01-26 17:08:00+00:00 A 62610 \n", + " 2007-01-26 17:08:00+00:00 A 62611 \n", + " 2007-01-26 17:08:00+00:00 A 72019 \n", + " 2007-06-11 19:30:00+00:00 A 62610 \n", + " 2007-06-11 19:30:00+00:00 A 62611 \n", + "... ... ... \n", + "434400121275801 NaT A 62611 \n", + " NaT A 72019 \n", + " NaT A 62610 \n", + " NaT A 62611 \n", + " NaT A 72019 \n", "\n", - "[311 rows x 15 columns]" + "[933 rows x 16 columns]" ] }, "metadata": {}, @@ -1213,10 +1230,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:24.387849Z", + "iopub.status.busy": "2024-08-02T00:48:24.387467Z", + "iopub.status.idle": "2024-08-02T00:48:25.010291Z", + "shell.execute_reply": "2024-08-02T00:48:25.009720Z" }, "pycharm": { "name": "#%%\n" @@ -1227,19 +1244,20 @@ "name": "stdout", "output_type": "stream", "text": [ - "Retrieved 34 data values.\n", + "Retrieved 102 data values.\n", "DatetimeIndex(['NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT',\n", + " 'NaT',\n", + " ...\n", " 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT',\n", - " 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT',\n", - " 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT'],\n", - " dtype='datetime64[ns, UTC]', name='datetime', freq=None)\n" + " 'NaT'],\n", + " dtype='datetime64[ns, UTC]', name='datetime', length=102, freq=None)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/utils.py:89: UserWarning: Warning: 34 incomplete dates found, consider setting datetime_index to False.\n", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/utils.py:89: UserWarning: Warning: 102 incomplete dates found, consider setting datetime_index to False.\n", " warnings.warn(\n" ] } @@ -1271,10 +1289,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:25.012504Z", + "iopub.status.busy": "2024-08-02T00:48:25.012156Z", + "iopub.status.idle": "2024-08-02T00:48:25.015193Z", + "shell.execute_reply": "2024-08-02T00:48:25.014716Z" }, "pycharm": { "name": "#%%\n" @@ -1285,7 +1303,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "You can examine the data retrieved from NWIS at: https://waterservices.usgs.gov/nwis/gwlevels?startDT=1851-01-01&sites=425957088141001&format=rdb\n" + "You can examine the data retrieved from NWIS at: https://nwis.waterdata.usgs.gov/nwis/gwlevels?format=rdb&begin_date=1851-01-01&site_no=425957088141001\n" ] } ], @@ -1314,10 +1332,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:25.017311Z", + "iopub.status.busy": "2024-08-02T00:48:25.016968Z", + "iopub.status.idle": "2024-08-02T00:48:25.637630Z", + "shell.execute_reply": "2024-08-02T00:48:25.637067Z" }, "pycharm": { "name": "#%%\n" @@ -1328,14 +1346,14 @@ "name": "stdout", "output_type": "stream", "text": [ - "Retrieved 71 data values.\n" + "Retrieved 213 data values.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/utils.py:89: UserWarning: Warning: 63 incomplete dates found, consider setting datetime_index to False.\n", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/utils.py:89: UserWarning: Warning: 189 incomplete dates found, consider setting datetime_index to False.\n", " warnings.warn(\n" ] } diff --git a/examples/USGS_dataretrieval_Measurements_Examples.html b/examples/USGS_dataretrieval_Measurements_Examples.html index 21a614e..998940d 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+g64a575d documentation + USGS dataretrieval Python Package get_discharge_measurements() Examples — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -16,7 +16,7 @@ - + @@ -129,10 +129,10 @@

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+g64a575d)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)
 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)
+Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)
 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)
 Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)
 Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)
diff --git a/examples/USGS_dataretrieval_Measurements_Examples.ipynb b/examples/USGS_dataretrieval_Measurements_Examples.ipynb
index 480e73c..845861e 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-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"
+     "iopub.execute_input": "2024-08-02T00:48:27.613220Z",
+     "iopub.status.busy": "2024-08-02T00:48:27.613037Z",
+     "iopub.status.idle": "2024-08-02T00:48:28.350894Z",
+     "shell.execute_reply": "2024-08-02T00:48:28.350228Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -52,23 +52,23 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)\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: 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: 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.1)\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"
      ]
     }
@@ -92,10 +92,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:28.353732Z",
+     "iopub.status.busy": "2024-08-02T00:48:28.353324Z",
+     "iopub.status.idle": "2024-08-02T00:48:28.646537Z",
+     "shell.execute_reply": "2024-08-02T00:48:28.646029Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -139,10 +139,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:28.649385Z",
+     "iopub.status.busy": "2024-08-02T00:48:28.648958Z",
+     "iopub.status.idle": "2024-08-02T00:48:29.212175Z",
+     "shell.execute_reply": "2024-08-02T00:48:29.211602Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -193,10 +193,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:29.214533Z",
+     "iopub.status.busy": "2024-08-02T00:48:29.214176Z",
+     "iopub.status.idle": "2024-08-02T00:48:29.229878Z",
+     "shell.execute_reply": "2024-08-02T00:48:29.229392Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -524,10 +524,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:29.231985Z",
+     "iopub.status.busy": "2024-08-02T00:48:29.231621Z",
+     "iopub.status.idle": "2024-08-02T00:48:29.235290Z",
+     "shell.execute_reply": "2024-08-02T00:48:29.234701Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -576,10 +576,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:29.237552Z",
+     "iopub.status.busy": "2024-08-02T00:48:29.237124Z",
+     "iopub.status.idle": "2024-08-02T00:48:29.240266Z",
+     "shell.execute_reply": "2024-08-02T00:48:29.239679Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -615,10 +615,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:29.242573Z",
+     "iopub.status.busy": "2024-08-02T00:48:29.242130Z",
+     "iopub.status.idle": "2024-08-02T00:48:29.558822Z",
+     "shell.execute_reply": "2024-08-02T00:48:29.558342Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -911,10 +911,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:29.560901Z",
+     "iopub.status.busy": "2024-08-02T00:48:29.560581Z",
+     "iopub.status.idle": "2024-08-02T00:48:29.917597Z",
+     "shell.execute_reply": "2024-08-02T00:48:29.917138Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_ParameterCodes_Examples.html b/examples/USGS_dataretrieval_ParameterCodes_Examples.html
index 9e7202c..95d9ed4 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+g64a575d documentation
+  USGS dataretrieval Python Package get_pmcodes() Examples — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,10 +129,10 @@ 

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+g64a575d)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)
 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)
+Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)
 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)
 Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)
 Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)
diff --git a/examples/USGS_dataretrieval_ParameterCodes_Examples.ipynb b/examples/USGS_dataretrieval_ParameterCodes_Examples.ipynb
index 6854f92..d700f67 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-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"
+     "iopub.execute_input": "2024-08-02T00:48:31.384463Z",
+     "iopub.status.busy": "2024-08-02T00:48:31.384039Z",
+     "iopub.status.idle": "2024-08-02T00:48:32.117794Z",
+     "shell.execute_reply": "2024-08-02T00:48:32.117065Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -55,7 +55,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)\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"
      ]
@@ -64,7 +64,7 @@
      "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: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)\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",
@@ -95,10 +95,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:32.120572Z",
+     "iopub.status.busy": "2024-08-02T00:48:32.120177Z",
+     "iopub.status.idle": "2024-08-02T00:48:32.409676Z",
+     "shell.execute_reply": "2024-08-02T00:48:32.409164Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -140,10 +140,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:32.412202Z",
+     "iopub.status.busy": "2024-08-02T00:48:32.411967Z",
+     "iopub.status.idle": "2024-08-02T00:48:32.716731Z",
+     "shell.execute_reply": "2024-08-02T00:48:32.716218Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -182,10 +182,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:32.718948Z",
+     "iopub.status.busy": "2024-08-02T00:48:32.718601Z",
+     "iopub.status.idle": "2024-08-02T00:48:32.730201Z",
+     "shell.execute_reply": "2024-08-02T00:48:32.729746Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_Peaks_Examples.html b/examples/USGS_dataretrieval_Peaks_Examples.html
index 8efcf41..153e789 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+g64a575d documentation
+  USGS dataretrieval Python Package get_discharge_peaks() Examples — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,10 +129,10 @@ 

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+g64a575d)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)
 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)
+Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)
 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)
 Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)
 Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)
diff --git a/examples/USGS_dataretrieval_Peaks_Examples.ipynb b/examples/USGS_dataretrieval_Peaks_Examples.ipynb
index a8a1eb8..4d3b27b 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-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"
+     "iopub.execute_input": "2024-08-02T00:48:34.048493Z",
+     "iopub.status.busy": "2024-08-02T00:48:34.048317Z",
+     "iopub.status.idle": "2024-08-02T00:48:34.780099Z",
+     "shell.execute_reply": "2024-08-02T00:48:34.779351Z"
     },
     "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+g64a575d)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)\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.1)\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-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"
+     "iopub.execute_input": "2024-08-02T00:48:34.783044Z",
+     "iopub.status.busy": "2024-08-02T00:48:34.782671Z",
+     "iopub.status.idle": "2024-08-02T00:48:35.070623Z",
+     "shell.execute_reply": "2024-08-02T00:48:35.070116Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -136,10 +136,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:35.073377Z",
+     "iopub.status.busy": "2024-08-02T00:48:35.072965Z",
+     "iopub.status.idle": "2024-08-02T00:48:35.392575Z",
+     "shell.execute_reply": "2024-08-02T00:48:35.392056Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -182,10 +182,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:35.394680Z",
+     "iopub.status.busy": "2024-08-02T00:48:35.394499Z",
+     "iopub.status.idle": "2024-08-02T00:48:35.417421Z",
+     "shell.execute_reply": "2024-08-02T00:48:35.416950Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1277,10 +1277,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:35.419512Z",
+     "iopub.status.busy": "2024-08-02T00:48:35.419160Z",
+     "iopub.status.idle": "2024-08-02T00:48:35.422747Z",
+     "shell.execute_reply": "2024-08-02T00:48:35.422262Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1326,10 +1326,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:35.424897Z",
+     "iopub.status.busy": "2024-08-02T00:48:35.424559Z",
+     "iopub.status.idle": "2024-08-02T00:48:35.427691Z",
+     "shell.execute_reply": "2024-08-02T00:48:35.427205Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1366,10 +1366,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:35.429812Z",
+     "iopub.status.busy": "2024-08-02T00:48:35.429528Z",
+     "iopub.status.idle": "2024-08-02T00:48:35.772869Z",
+     "shell.execute_reply": "2024-08-02T00:48:35.772305Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1976,10 +1976,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:35.775160Z",
+     "iopub.status.busy": "2024-08-02T00:48:35.774749Z",
+     "iopub.status.idle": "2024-08-02T00:48:36.118318Z",
+     "shell.execute_reply": "2024-08-02T00:48:36.117760Z"
     },
     "jupyter": {
      "outputs_hidden": false
diff --git a/examples/USGS_dataretrieval_Ratings_Examples.html b/examples/USGS_dataretrieval_Ratings_Examples.html
index e2386f7..641bce3 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+g64a575d documentation
+  USGS dataretrieval Python Package get_ratings() Examples — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -128,10 +128,10 @@ 

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+g64a575d)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)
 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)
+Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)
 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)
 Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)
 Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)
diff --git a/examples/USGS_dataretrieval_Ratings_Examples.ipynb b/examples/USGS_dataretrieval_Ratings_Examples.ipynb
index 9d8b28c..b0ff1fa 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-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"
+     "iopub.execute_input": "2024-08-02T00:48:37.777425Z",
+     "iopub.status.busy": "2024-08-02T00:48:37.776998Z",
+     "iopub.status.idle": "2024-08-02T00:48:38.510858Z",
+     "shell.execute_reply": "2024-08-02T00:48:38.510269Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -49,7 +49,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g64a575d)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)\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"
      ]
@@ -58,7 +58,7 @@
      "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: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)\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",
@@ -89,10 +89,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:38.513598Z",
+     "iopub.status.busy": "2024-08-02T00:48:38.513231Z",
+     "iopub.status.idle": "2024-08-02T00:48:38.800104Z",
+     "shell.execute_reply": "2024-08-02T00:48:38.799557Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -142,10 +142,10 @@
    "metadata": {
     "collapsed": true,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:38.802711Z",
+     "iopub.status.busy": "2024-08-02T00:48:38.802427Z",
+     "iopub.status.idle": "2024-08-02T00:48:38.931886Z",
+     "shell.execute_reply": "2024-08-02T00:48:38.931358Z"
     }
    },
    "outputs": [
@@ -200,10 +200,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:38.934121Z",
+     "iopub.status.busy": "2024-08-02T00:48:38.933682Z",
+     "iopub.status.idle": "2024-08-02T00:48:38.944565Z",
+     "shell.execute_reply": "2024-08-02T00:48:38.944088Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -363,10 +363,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:38.946642Z",
+     "iopub.status.busy": "2024-08-02T00:48:38.946323Z",
+     "iopub.status.idle": "2024-08-02T00:48:38.949818Z",
+     "shell.execute_reply": "2024-08-02T00:48:38.949328Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -407,10 +407,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:38.951916Z",
+     "iopub.status.busy": "2024-08-02T00:48:38.951577Z",
+     "iopub.status.idle": "2024-08-02T00:48:38.954714Z",
+     "shell.execute_reply": "2024-08-02T00:48:38.954226Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -447,10 +447,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:38.956918Z",
+     "iopub.status.busy": "2024-08-02T00:48:38.956476Z",
+     "iopub.status.idle": "2024-08-02T00:48:39.093421Z",
+     "shell.execute_reply": "2024-08-02T00:48:39.092960Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_SiteInfo_Examples.html b/examples/USGS_dataretrieval_SiteInfo_Examples.html
index 16fb08e..132be56 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+g64a575d documentation
+  <no title> — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/USGS_dataretrieval_SiteInventory_Examples.html b/examples/USGS_dataretrieval_SiteInventory_Examples.html
index f47b575..ed22274 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+g64a575d documentation
+  <no title> — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/USGS_dataretrieval_Statistics_Examples.html b/examples/USGS_dataretrieval_Statistics_Examples.html
index 4633b09..deb92e5 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+g64a575d documentation
+  USGS dataretrieval Python Package get_stats() Examples — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,10 +129,10 @@ 

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+g64a575d)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)
 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)
+Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)
 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)
 Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)
 Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)
diff --git a/examples/USGS_dataretrieval_Statistics_Examples.ipynb b/examples/USGS_dataretrieval_Statistics_Examples.ipynb
index db5313d..411a694 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-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"
+     "iopub.execute_input": "2024-08-02T00:48:40.839342Z",
+     "iopub.status.busy": "2024-08-02T00:48:40.839169Z",
+     "iopub.status.idle": "2024-08-02T00:48:41.575396Z",
+     "shell.execute_reply": "2024-08-02T00:48:41.574809Z"
     },
     "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+g64a575d)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)\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"
      ]
@@ -61,7 +61,7 @@
      "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: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)\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",
@@ -90,10 +90,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:41.578215Z",
+     "iopub.status.busy": "2024-08-02T00:48:41.577903Z",
+     "iopub.status.idle": "2024-08-02T00:48:41.919157Z",
+     "shell.execute_reply": "2024-08-02T00:48:41.918524Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -138,10 +138,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:41.921938Z",
+     "iopub.status.busy": "2024-08-02T00:48:41.921614Z",
+     "iopub.status.idle": "2024-08-02T00:48:42.134633Z",
+     "shell.execute_reply": "2024-08-02T00:48:42.134159Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -186,10 +186,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:42.136723Z",
+     "iopub.status.busy": "2024-08-02T00:48:42.136538Z",
+     "iopub.status.idle": "2024-08-02T00:48:42.147931Z",
+     "shell.execute_reply": "2024-08-02T00:48:42.147318Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -523,10 +523,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:42.150061Z",
+     "iopub.status.busy": "2024-08-02T00:48:42.149717Z",
+     "iopub.status.idle": "2024-08-02T00:48:42.153254Z",
+     "shell.execute_reply": "2024-08-02T00:48:42.152708Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -569,10 +569,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:42.155421Z",
+     "iopub.status.busy": "2024-08-02T00:48:42.155113Z",
+     "iopub.status.idle": "2024-08-02T00:48:42.471630Z",
+     "shell.execute_reply": "2024-08-02T00:48:42.471091Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -623,10 +623,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:42.473941Z",
+     "iopub.status.busy": "2024-08-02T00:48:42.473606Z",
+     "iopub.status.idle": "2024-08-02T00:48:42.476898Z",
+     "shell.execute_reply": "2024-08-02T00:48:42.476416Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -674,10 +674,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:42.478836Z",
+     "iopub.status.busy": "2024-08-02T00:48:42.478663Z",
+     "iopub.status.idle": "2024-08-02T00:48:43.437428Z",
+     "shell.execute_reply": "2024-08-02T00:48:43.436916Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -904,10 +904,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:48:43.439492Z",
+     "iopub.status.busy": "2024-08-02T00:48:43.439312Z",
+     "iopub.status.idle": "2024-08-02T00:48:43.915946Z",
+     "shell.execute_reply": "2024-08-02T00:48:43.915349Z"
     },
     "jupyter": {
      "outputs_hidden": false
diff --git a/examples/USGS_dataretrieval_UnitValues_Examples.html b/examples/USGS_dataretrieval_UnitValues_Examples.html
index 3c049fc..9a645c0 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+g64a575d documentation
+  USGS dataretrieval Python Package get_iv() Examples — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,10 +129,10 @@ 

Install the Package

@@ -624,281 +624,13 @@

Example 3: Get unit values for an individual site for today site_no - 00060 - 00060_cd datetime - - - - 2024-07-19 05:00:00+00:00 - 05114000 - 52.0 - P - - - 2024-07-19 05:15:00+00:00 - 05114000 - 51.7 - P - - - 2024-07-19 05:30:00+00:00 - 05114000 - 52.1 - P - - - 2024-07-19 05:45:00+00:00 - 05114000 - 51.8 - P - - - 2024-07-19 06:00:00+00:00 - 05114000 - 51.6 - P - - - 2024-07-19 06:15:00+00:00 - 05114000 - 51.7 - P - - - 2024-07-19 06:30:00+00:00 - 05114000 - 51.8 - P - - - 2024-07-19 06:45:00+00:00 - 05114000 - 51.6 - P - - - 2024-07-19 07:00:00+00:00 - 05114000 - 51.5 - P - - - 2024-07-19 07:15:00+00:00 - 05114000 - 51.5 - P - - - 2024-07-19 07:30:00+00:00 - 05114000 - 51.8 - P - - - 2024-07-19 07:45:00+00:00 - 05114000 - 51.9 - P - - - 2024-07-19 08:00:00+00:00 - 05114000 - 51.1 - P - - - 2024-07-19 08:15:00+00:00 - 05114000 - 51.4 - P - - - 2024-07-19 08:30:00+00:00 - 05114000 - 51.3 - P - - - 2024-07-19 08:45:00+00:00 - 05114000 - 51.2 - P - - - 2024-07-19 09:00:00+00:00 - 05114000 - 51.2 - P - - - 2024-07-19 09:15:00+00:00 - 05114000 - 51.5 - P - - - 2024-07-19 09:30:00+00:00 - 05114000 - 51.3 - P - - - 2024-07-19 09:45:00+00:00 - 05114000 - 51.5 - P - - - 2024-07-19 10:00:00+00:00 - 05114000 - 51.7 - P - - - 2024-07-19 10:15:00+00:00 - 05114000 - 51.0 - P - - - 2024-07-19 10:30:00+00:00 - 05114000 - 51.4 - P - - - 2024-07-19 10:45:00+00:00 - 05114000 - 51.3 - P - - - 2024-07-19 11:00:00+00:00 - 05114000 - 51.3 - P - - - 2024-07-19 11:15:00+00:00 - 05114000 - 51.3 - P - - - 2024-07-19 11:30:00+00:00 - 05114000 - 51.3 - P - - - 2024-07-19 11:45:00+00:00 - 05114000 - 51.5 - P - - - 2024-07-19 12:00:00+00:00 - 05114000 - 51.6 - P - - - 2024-07-19 12:15:00+00:00 - 05114000 - 51.3 - P - - - 2024-07-19 12:30:00+00:00 - 05114000 - 51.3 - P - - - 2024-07-19 12:45:00+00:00 - 05114000 - 51.3 - P - - - 2024-07-19 13:00:00+00:00 - 05114000 - 51.3 - P - - - 2024-07-19 13:15:00+00:00 - 05114000 - 51.5 - P - - - 2024-07-19 13:30:00+00:00 - 05114000 - 51.3 - P - - - 2024-07-19 13:45:00+00:00 - 05114000 - 51.1 - P - - - 2024-07-19 14:00:00+00:00 - 05114000 - 51.4 - P - - - 2024-07-19 14:15:00+00:00 - 05114000 - 51.3 - P - - - 2024-07-19 14:30:00+00:00 - 05114000 - 51.5 - P - - - 2024-07-19 14:45:00+00:00 - 05114000 - 51.0 - P - - - 2024-07-19 15:00:00+00:00 - 05114000 - 51.4 - P - - - 2024-07-19 15:15:00+00:00 - 05114000 - 52.0 - P - - - 2024-07-19 15:30:00+00:00 - 05114000 - 50.9 - P - - - 2024-07-19 15:45:00+00:00 - 05114000 - 52.0 - P -

diff --git a/examples/USGS_dataretrieval_UnitValues_Examples.ipynb b/examples/USGS_dataretrieval_UnitValues_Examples.ipynb index 2515900..ab5daa0 100644 --- a/examples/USGS_dataretrieval_UnitValues_Examples.ipynb +++ b/examples/USGS_dataretrieval_UnitValues_Examples.ipynb @@ -28,10 +28,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-07-19T16:00:37.837999Z", - "iopub.status.busy": "2024-07-19T16:00:37.837299Z", - "iopub.status.idle": "2024-07-19T16:00:38.543637Z", - "shell.execute_reply": "2024-07-19T16:00:38.542862Z" + "iopub.execute_input": "2024-08-02T00:48:45.685256Z", + "iopub.status.busy": "2024-08-02T00:48:45.685078Z", + "iopub.status.idle": "2024-08-02T00:48:46.417487Z", + "shell.execute_reply": "2024-08-02T00:48:46.416895Z" }, "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+g64a575d)\r\n", + "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)\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" ] @@ -61,7 +61,7 @@ "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: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)\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", @@ -90,10 +90,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:46.420088Z", + "iopub.status.busy": "2024-08-02T00:48:46.419897Z", + "iopub.status.idle": "2024-08-02T00:48:46.707932Z", + "shell.execute_reply": "2024-08-02T00:48:46.707409Z" }, "jupyter": { "outputs_hidden": false @@ -136,10 +136,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:46.710749Z", + "iopub.status.busy": "2024-08-02T00:48:46.710299Z", + "iopub.status.idle": "2024-08-02T00:48:47.248975Z", + "shell.execute_reply": "2024-08-02T00:48:47.248502Z" }, "jupyter": { "outputs_hidden": false @@ -186,10 +186,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:47.251006Z", + "iopub.status.busy": "2024-08-02T00:48:47.250820Z", + "iopub.status.idle": "2024-08-02T00:48:47.260314Z", + "shell.execute_reply": "2024-08-02T00:48:47.259751Z" }, "jupyter": { "outputs_hidden": false @@ -343,10 +343,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:47.262528Z", + "iopub.status.busy": "2024-08-02T00:48:47.262114Z", + "iopub.status.idle": "2024-08-02T00:48:47.265851Z", + "shell.execute_reply": "2024-08-02T00:48:47.265281Z" }, "jupyter": { "outputs_hidden": false @@ -384,10 +384,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:47.268089Z", + "iopub.status.busy": "2024-08-02T00:48:47.267727Z", + "iopub.status.idle": "2024-08-02T00:48:47.275205Z", + "shell.execute_reply": "2024-08-02T00:48:47.274631Z" }, "jupyter": { "outputs_hidden": false @@ -492,10 +492,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:47.277592Z", + "iopub.status.busy": "2024-08-02T00:48:47.277189Z", + "iopub.status.idle": "2024-08-02T00:48:49.313956Z", + "shell.execute_reply": "2024-08-02T00:48:49.313390Z" }, "jupyter": { "outputs_hidden": false @@ -545,10 +545,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:49.316129Z", + "iopub.status.busy": "2024-08-02T00:48:49.315894Z", + "iopub.status.idle": "2024-08-02T00:48:49.318848Z", + "shell.execute_reply": "2024-08-02T00:48:49.318317Z" }, "jupyter": { "outputs_hidden": false @@ -587,10 +587,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:49.320849Z", + "iopub.status.busy": "2024-08-02T00:48:49.320677Z", + "iopub.status.idle": "2024-08-02T00:48:49.766785Z", + "shell.execute_reply": "2024-08-02T00:48:49.766298Z" }, "jupyter": { "outputs_hidden": false @@ -760,10 +760,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:49.768810Z", + "iopub.status.busy": "2024-08-02T00:48:49.768628Z", + "iopub.status.idle": "2024-08-02T00:48:49.896245Z", + "shell.execute_reply": "2024-08-02T00:48:49.895692Z" }, "jupyter": { "outputs_hidden": false @@ -777,7 +777,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Retrieved 44 data values.\n" + "Retrieved 0 data values.\n" ] }, { @@ -802,332 +802,21 @@ " \n", " \n", " site_no\n", - " 00060\n", - " 00060_cd\n", " \n", " \n", " datetime\n", " \n", - " \n", - " \n", " \n", " \n", " \n", - " \n", - " 2024-07-19 05:00:00+00:00\n", - " 05114000\n", - " 52.0\n", - " P\n", - " \n", - " \n", - " 2024-07-19 05:15:00+00:00\n", - " 05114000\n", - " 51.7\n", - " P\n", - " \n", - " \n", - " 2024-07-19 05:30:00+00:00\n", - " 05114000\n", - " 52.1\n", - " P\n", - " \n", - " \n", - " 2024-07-19 05:45:00+00:00\n", - " 05114000\n", - " 51.8\n", - " P\n", - " \n", - " \n", - " 2024-07-19 06:00:00+00:00\n", - " 05114000\n", - " 51.6\n", - " P\n", - " \n", - " \n", - " 2024-07-19 06:15:00+00:00\n", - " 05114000\n", - " 51.7\n", - " P\n", - " \n", - " \n", - " 2024-07-19 06:30:00+00:00\n", - " 05114000\n", - " 51.8\n", - " P\n", - " \n", - " \n", - " 2024-07-19 06:45:00+00:00\n", - " 05114000\n", - " 51.6\n", - " P\n", - " \n", - " \n", - " 2024-07-19 07:00:00+00:00\n", - " 05114000\n", - " 51.5\n", - " P\n", - " \n", - " \n", - " 2024-07-19 07:15:00+00:00\n", - " 05114000\n", - " 51.5\n", - " P\n", - " \n", - " \n", - " 2024-07-19 07:30:00+00:00\n", - " 05114000\n", - " 51.8\n", - " P\n", - " \n", - " \n", - " 2024-07-19 07:45:00+00:00\n", - " 05114000\n", - " 51.9\n", - " P\n", - " \n", - " \n", - " 2024-07-19 08:00:00+00:00\n", - " 05114000\n", - " 51.1\n", - " P\n", - " \n", - " \n", - " 2024-07-19 08:15:00+00:00\n", - " 05114000\n", - " 51.4\n", - " P\n", - " \n", - " \n", - " 2024-07-19 08:30:00+00:00\n", - " 05114000\n", - " 51.3\n", - " P\n", - " \n", - " \n", - " 2024-07-19 08:45:00+00:00\n", - " 05114000\n", - " 51.2\n", - " P\n", - " \n", - " \n", - " 2024-07-19 09:00:00+00:00\n", - " 05114000\n", - " 51.2\n", - " P\n", - " \n", - " \n", - " 2024-07-19 09:15:00+00:00\n", - " 05114000\n", - " 51.5\n", - " P\n", - " \n", - " \n", - " 2024-07-19 09:30:00+00:00\n", - " 05114000\n", - " 51.3\n", - " P\n", - " \n", - " \n", - " 2024-07-19 09:45:00+00:00\n", - " 05114000\n", - " 51.5\n", - " P\n", - " \n", - " \n", - " 2024-07-19 10:00:00+00:00\n", - " 05114000\n", - " 51.7\n", - " P\n", - " \n", - " \n", - " 2024-07-19 10:15:00+00:00\n", - " 05114000\n", - " 51.0\n", - " P\n", - " \n", - " \n", - " 2024-07-19 10:30:00+00:00\n", - " 05114000\n", - " 51.4\n", - " P\n", - " \n", - " \n", - " 2024-07-19 10:45:00+00:00\n", - " 05114000\n", - " 51.3\n", - " P\n", - " \n", - " \n", - " 2024-07-19 11:00:00+00:00\n", - " 05114000\n", - " 51.3\n", - " P\n", - " \n", - " \n", - " 2024-07-19 11:15:00+00:00\n", - " 05114000\n", - " 51.3\n", - " P\n", - " \n", - " \n", - " 2024-07-19 11:30:00+00:00\n", - " 05114000\n", - " 51.3\n", - " P\n", - " \n", - " \n", - " 2024-07-19 11:45:00+00:00\n", - " 05114000\n", - " 51.5\n", - " P\n", - " \n", - " \n", - " 2024-07-19 12:00:00+00:00\n", - " 05114000\n", - " 51.6\n", - " P\n", - " \n", - " \n", - " 2024-07-19 12:15:00+00:00\n", - " 05114000\n", - " 51.3\n", - " P\n", - " \n", - " \n", - " 2024-07-19 12:30:00+00:00\n", - " 05114000\n", - " 51.3\n", - " P\n", - " \n", - " \n", - " 2024-07-19 12:45:00+00:00\n", - " 05114000\n", - " 51.3\n", - " P\n", - " \n", - " \n", - " 2024-07-19 13:00:00+00:00\n", - " 05114000\n", - " 51.3\n", - " P\n", - " \n", - " \n", - " 2024-07-19 13:15:00+00:00\n", - " 05114000\n", - " 51.5\n", - " P\n", - " \n", - " \n", - " 2024-07-19 13:30:00+00:00\n", - " 05114000\n", - " 51.3\n", - " P\n", - " \n", - " \n", - " 2024-07-19 13:45:00+00:00\n", - " 05114000\n", - " 51.1\n", - " P\n", - " \n", - " \n", - " 2024-07-19 14:00:00+00:00\n", - " 05114000\n", - " 51.4\n", - " P\n", - " \n", - " \n", - " 2024-07-19 14:15:00+00:00\n", - " 05114000\n", - " 51.3\n", - " P\n", - " \n", - " \n", - " 2024-07-19 14:30:00+00:00\n", - " 05114000\n", - " 51.5\n", - " P\n", - " \n", - " \n", - " 2024-07-19 14:45:00+00:00\n", - " 05114000\n", - " 51.0\n", - " P\n", - " \n", - " \n", - " 2024-07-19 15:00:00+00:00\n", - " 05114000\n", - " 51.4\n", - " P\n", - " \n", - " \n", - " 2024-07-19 15:15:00+00:00\n", - " 05114000\n", - " 52.0\n", - " P\n", - " \n", - " \n", - " 2024-07-19 15:30:00+00:00\n", - " 05114000\n", - " 50.9\n", - " P\n", - " \n", - " \n", - " 2024-07-19 15:45:00+00:00\n", - " 05114000\n", - " 52.0\n", - " P\n", - " \n", " \n", "\n", "

" ], "text/plain": [ - " site_no 00060 00060_cd\n", - "datetime \n", - "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" + "Empty DataFrame\n", + "Columns: [site_no]\n", + "Index: []" ] }, "metadata": {}, @@ -1160,10 +849,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:49.898412Z", + "iopub.status.busy": "2024-08-02T00:48:49.898001Z", + "iopub.status.idle": "2024-08-02T00:48:50.156448Z", + "shell.execute_reply": "2024-08-02T00:48:50.155978Z" }, "jupyter": { "outputs_hidden": false @@ -1330,10 +1019,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:50.158621Z", + "iopub.status.busy": "2024-08-02T00:48:50.158228Z", + "iopub.status.idle": "2024-08-02T00:48:50.613862Z", + "shell.execute_reply": "2024-08-02T00:48:50.613386Z" }, "jupyter": { "outputs_hidden": false diff --git a/examples/USGS_dataretrieval_WaterSamples_Examples.html b/examples/USGS_dataretrieval_WaterSamples_Examples.html index 7b6a32d..fcb3f98 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+g64a575d documentation + USGS dataretrieval Python Package get_qwdata() Examples — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -16,7 +16,7 @@ - + @@ -129,10 +129,10 @@

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+g64a575d)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)
 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)
+Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)
 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)
 Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)
 Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)
@@ -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: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.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:195: 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: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.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:195: 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: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.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:195: 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: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.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:195: 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 1ee0bc3..1ae3fc5 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-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" + "iopub.execute_input": "2024-08-02T00:48:52.449208Z", + "iopub.status.busy": "2024-08-02T00:48:52.449036Z", + "iopub.status.idle": "2024-08-02T00:48:53.189478Z", + "shell.execute_reply": "2024-08-02T00:48:53.188904Z" }, "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+g64a575d)\r\n", + "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)\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" ] @@ -61,7 +61,7 @@ "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: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)\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", @@ -90,10 +90,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:53.192282Z", + "iopub.status.busy": "2024-08-02T00:48:53.191894Z", + "iopub.status.idle": "2024-08-02T00:48:53.480431Z", + "shell.execute_reply": "2024-08-02T00:48:53.479905Z" }, "jupyter": { "outputs_hidden": false @@ -139,10 +139,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:53.483064Z", + "iopub.status.busy": "2024-08-02T00:48:53.482673Z", + "iopub.status.idle": "2024-08-02T00:48:55.563823Z", + "shell.execute_reply": "2024-08-02T00:48:55.563227Z" }, "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: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", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:195: 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-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" + "iopub.execute_input": "2024-08-02T00:48:55.565971Z", + "iopub.status.busy": "2024-08-02T00:48:55.565779Z", + "iopub.status.idle": "2024-08-02T00:48:55.584844Z", + "shell.execute_reply": "2024-08-02T00:48:55.584390Z" }, "jupyter": { "outputs_hidden": false @@ -670,10 +670,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:55.586935Z", + "iopub.status.busy": "2024-08-02T00:48:55.586589Z", + "iopub.status.idle": "2024-08-02T00:48:55.590348Z", + "shell.execute_reply": "2024-08-02T00:48:55.589820Z" }, "jupyter": { "outputs_hidden": false @@ -768,10 +768,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:55.592408Z", + "iopub.status.busy": "2024-08-02T00:48:55.592098Z", + "iopub.status.idle": "2024-08-02T00:48:55.595178Z", + "shell.execute_reply": "2024-08-02T00:48:55.594601Z" }, "jupyter": { "outputs_hidden": false @@ -808,10 +808,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:48:55.597200Z", + "iopub.status.busy": "2024-08-02T00:48:55.597018Z", + "iopub.status.idle": "2024-08-02T00:48:56.939176Z", + "shell.execute_reply": "2024-08-02T00:48:56.938678Z" }, "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: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", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:195: 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-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" + "iopub.execute_input": "2024-08-02T00:48:56.941469Z", + "iopub.status.busy": "2024-08-02T00:48:56.941150Z", + "iopub.status.idle": "2024-08-02T00:48:59.505705Z", + "shell.execute_reply": "2024-08-02T00:48:59.505175Z" }, "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: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", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:195: 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-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" + "iopub.execute_input": "2024-08-02T00:48:59.507966Z", + "iopub.status.busy": "2024-08-02T00:48:59.507610Z", + "iopub.status.idle": "2024-08-02T00:49:00.438290Z", + "shell.execute_reply": "2024-08-02T00:49:00.437685Z" } }, "outputs": [ @@ -2661,7 +2661,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/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", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:195: 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 e9e5502..6940c3e 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+g64a575d documentation + USGS dataretrieval Python Package get_water_use() Examples — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -16,7 +16,7 @@ - + @@ -128,10 +128,10 @@

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+g64a575d)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)
 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)
+Requirement already satisfied: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)
 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)
 Requirement already satisfied: pytz>=2020.1 in /usr/lib/python3/dist-packages (from pandas==2.*->dataretrieval) (2022.1)
 Requirement already satisfied: tzdata>=2022.7 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2024.1)
diff --git a/examples/USGS_dataretrieval_WaterUse_Examples.ipynb b/examples/USGS_dataretrieval_WaterUse_Examples.ipynb
index 447499b..dd25f28 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-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"
+     "iopub.execute_input": "2024-08-02T00:49:02.114597Z",
+     "iopub.status.busy": "2024-08-02T00:49:02.114426Z",
+     "iopub.status.idle": "2024-08-02T00:49:02.853467Z",
+     "shell.execute_reply": "2024-08-02T00:49:02.852727Z"
     },
     "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+g64a575d)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gd3865a2)\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"
      ]
@@ -61,7 +61,7 @@
      "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: numpy>=1.22.4 in /home/runner/.local/lib/python3.10/site-packages (from pandas==2.*->dataretrieval) (2.0.1)\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",
@@ -90,10 +90,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:02.856601Z",
+     "iopub.status.busy": "2024-08-02T00:49:02.856212Z",
+     "iopub.status.idle": "2024-08-02T00:49:03.146061Z",
+     "shell.execute_reply": "2024-08-02T00:49:03.145543Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -141,10 +141,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:03.148949Z",
+     "iopub.status.busy": "2024-08-02T00:49:03.148495Z",
+     "iopub.status.idle": "2024-08-02T00:49:07.211210Z",
+     "shell.execute_reply": "2024-08-02T00:49:07.210598Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -195,10 +195,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:07.213414Z",
+     "iopub.status.busy": "2024-08-02T00:49:07.213225Z",
+     "iopub.status.idle": "2024-08-02T00:49:07.231068Z",
+     "shell.execute_reply": "2024-08-02T00:49:07.230495Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -755,10 +755,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:07.233208Z",
+     "iopub.status.busy": "2024-08-02T00:49:07.232890Z",
+     "iopub.status.idle": "2024-08-02T00:49:07.236562Z",
+     "shell.execute_reply": "2024-08-02T00:49:07.236003Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -810,10 +810,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:07.238642Z",
+     "iopub.status.busy": "2024-08-02T00:49:07.238308Z",
+     "iopub.status.idle": "2024-08-02T00:49:10.389695Z",
+     "shell.execute_reply": "2024-08-02T00:49:10.389205Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1383,10 +1383,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:10.391952Z",
+     "iopub.status.busy": "2024-08-02T00:49:10.391576Z",
+     "iopub.status.idle": "2024-08-02T00:49:11.952487Z",
+     "shell.execute_reply": "2024-08-02T00:49:11.952006Z"
     },
     "jupyter": {
      "outputs_hidden": false
diff --git a/examples/index.html b/examples/index.html
index 8ceff55..289cfde 100644
--- a/examples/index.html
+++ b/examples/index.html
@@ -4,7 +4,7 @@
   
 
   
-  Examples — dataretrieval 0.1.dev1+g64a575d documentation
+  Examples — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/nwisdemo01.html b/examples/nwisdemo01.html
index 6db0c66..b34e985 100644
--- a/examples/nwisdemo01.html
+++ b/examples/nwisdemo01.html
@@ -4,7 +4,7 @@
   
 
   
-  National trends in peak annual streamflow — dataretrieval 0.1.dev1+g64a575d documentation
+  National trends in peak annual streamflow — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/nwisdemo01.ipynb b/examples/nwisdemo01.ipynb
index 9d1292e..f198117 100644
--- a/examples/nwisdemo01.ipynb
+++ b/examples/nwisdemo01.ipynb
@@ -24,10 +24,10 @@
    "execution_count": 1,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:13.645433Z",
+     "iopub.status.busy": "2024-08-02T00:49:13.645261Z",
+     "iopub.status.idle": "2024-08-02T00:49:13.785291Z",
+     "shell.execute_reply": "2024-08-02T00:49:13.784772Z"
     }
    },
    "outputs": [
@@ -66,10 +66,10 @@
    "execution_count": 2,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:13.787296Z",
+     "iopub.status.busy": "2024-08-02T00:49:13.787117Z",
+     "iopub.status.idle": "2024-08-02T00:49:13.798457Z",
+     "shell.execute_reply": "2024-08-02T00:49:13.797993Z"
     }
    },
    "outputs": [
@@ -117,10 +117,10 @@
    "execution_count": 3,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:13.800545Z",
+     "iopub.status.busy": "2024-08-02T00:49:13.800206Z",
+     "iopub.status.idle": "2024-08-02T00:49:13.804167Z",
+     "shell.execute_reply": "2024-08-02T00:49:13.803668Z"
     }
    },
    "outputs": [],
@@ -157,10 +157,10 @@
    "execution_count": 4,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:13.806231Z",
+     "iopub.status.busy": "2024-08-02T00:49:13.805884Z",
+     "iopub.status.idle": "2024-08-02T00:49:13.810140Z",
+     "shell.execute_reply": "2024-08-02T00:49:13.809661Z"
     }
    },
    "outputs": [],
@@ -210,10 +210,10 @@
    "execution_count": 5,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:13.812061Z",
+     "iopub.status.busy": "2024-08-02T00:49:13.811895Z",
+     "iopub.status.idle": "2024-08-02T00:49:13.814453Z",
+     "shell.execute_reply": "2024-08-02T00:49:13.813988Z"
     }
    },
    "outputs": [],
@@ -239,10 +239,10 @@
    "execution_count": 6,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:13.816598Z",
+     "iopub.status.busy": "2024-08-02T00:49:13.816183Z",
+     "iopub.status.idle": "2024-08-02T00:49:13.826914Z",
+     "shell.execute_reply": "2024-08-02T00:49:13.826438Z"
     }
    },
    "outputs": [
@@ -283,10 +283,10 @@
    "execution_count": 7,
    "metadata": {
     "execution": {
-     "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"
+     "iopub.execute_input": "2024-08-02T00:49:13.829082Z",
+     "iopub.status.busy": "2024-08-02T00:49:13.828741Z",
+     "iopub.status.idle": "2024-08-02T00:49:13.831751Z",
+     "shell.execute_reply": "2024-08-02T00:49:13.831276Z"
     }
    },
    "outputs": [],
diff --git a/examples/readme_examples.html b/examples/readme_examples.html
index 60828e2..c6e2f64 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+g64a575d documentation
+  Examples from the Readme file on retrieving NWIS data — dataretrieval 0.1.dev1+gd3865a2 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/rvignettes.html b/examples/rvignettes.html
index 186798e..bf1ff23 100644
--- a/examples/rvignettes.html
+++ b/examples/rvignettes.html
@@ -4,7 +4,7 @@
   
 
   
-  Python Equivalents to R Vignette Examples — dataretrieval 0.1.dev1+g64a575d documentation
+  Python Equivalents to R Vignette Examples — dataretrieval 0.1.dev1+gd3865a2 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: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.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:195: 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: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.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:195: 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 '
 
@@ -319,7 +319,7 @@

Python Equivalents to R Vignette Examples
-/home/runner/.local/lib/python3.10/site-packages/dataretrieval/utils.py:89: UserWarning: Warning: 189 incomplete dates found, consider setting datetime_index to False.
+/home/runner/.local/lib/python3.10/site-packages/dataretrieval/utils.py:89: UserWarning: Warning: 567 incomplete dates found, consider setting datetime_index to False.
   warnings.warn(
 
diff --git a/examples/rvignettes.ipynb b/examples/rvignettes.ipynb index 51edad8..ee0b220 100644 --- a/examples/rvignettes.ipynb +++ b/examples/rvignettes.ipynb @@ -12,10 +12,10 @@ "execution_count": 1, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:15.160822Z", + "iopub.status.busy": "2024-08-02T00:49:15.160410Z", + "iopub.status.idle": "2024-08-02T00:49:15.445915Z", + "shell.execute_reply": "2024-08-02T00:49:15.445412Z" } }, "outputs": [], @@ -38,10 +38,10 @@ "execution_count": 2, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:15.448689Z", + "iopub.status.busy": "2024-08-02T00:49:15.448164Z", + "iopub.status.idle": "2024-08-02T00:49:17.964747Z", + "shell.execute_reply": "2024-08-02T00:49:17.964165Z" } }, "outputs": [ @@ -49,7 +49,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/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", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:195: 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-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" + "iopub.execute_input": "2024-08-02T00:49:17.966933Z", + "iopub.status.busy": "2024-08-02T00:49:17.966742Z", + "iopub.status.idle": "2024-08-02T00:49:18.158269Z", + "shell.execute_reply": "2024-08-02T00:49:18.157678Z" } }, "outputs": [], @@ -116,10 +116,10 @@ "execution_count": 4, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:18.160657Z", + "iopub.status.busy": "2024-08-02T00:49:18.160194Z", + "iopub.status.idle": "2024-08-02T00:49:18.569752Z", + "shell.execute_reply": "2024-08-02T00:49:18.569246Z" } }, "outputs": [], @@ -139,10 +139,10 @@ "execution_count": 5, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:18.571859Z", + "iopub.status.busy": "2024-08-02T00:49:18.571515Z", + "iopub.status.idle": "2024-08-02T00:49:18.824370Z", + "shell.execute_reply": "2024-08-02T00:49:18.823784Z" }, "pycharm": { "is_executing": false @@ -164,10 +164,10 @@ "execution_count": 6, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:18.826558Z", + "iopub.status.busy": "2024-08-02T00:49:18.826211Z", + "iopub.status.idle": "2024-08-02T00:49:18.975304Z", + "shell.execute_reply": "2024-08-02T00:49:18.974787Z" } }, "outputs": [], @@ -196,10 +196,10 @@ "execution_count": 7, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:18.977364Z", + "iopub.status.busy": "2024-08-02T00:49:18.977022Z", + "iopub.status.idle": "2024-08-02T00:49:19.154869Z", + "shell.execute_reply": "2024-08-02T00:49:19.154313Z" } }, "outputs": [], @@ -229,10 +229,10 @@ "execution_count": 8, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:19.157340Z", + "iopub.status.busy": "2024-08-02T00:49:19.156984Z", + "iopub.status.idle": "2024-08-02T00:49:19.435956Z", + "shell.execute_reply": "2024-08-02T00:49:19.435393Z" } }, "outputs": [], @@ -257,10 +257,10 @@ "execution_count": 9, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:19.438198Z", + "iopub.status.busy": "2024-08-02T00:49:19.437853Z", + "iopub.status.idle": "2024-08-02T00:49:20.862038Z", + "shell.execute_reply": "2024-08-02T00:49:20.861481Z" } }, "outputs": [ @@ -268,7 +268,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/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", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/nwis.py:195: 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-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" + "iopub.execute_input": "2024-08-02T00:49:20.864242Z", + "iopub.status.busy": "2024-08-02T00:49:20.864055Z", + "iopub.status.idle": "2024-08-02T00:49:21.486217Z", + "shell.execute_reply": "2024-08-02T00:49:21.485646Z" } }, "outputs": [ @@ -309,7 +309,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/utils.py:89: UserWarning: Warning: 189 incomplete dates found, consider setting datetime_index to False.\n", + "/home/runner/.local/lib/python3.10/site-packages/dataretrieval/utils.py:89: UserWarning: Warning: 567 incomplete dates found, consider setting datetime_index to False.\n", " warnings.warn(\n" ] } @@ -328,10 +328,10 @@ "execution_count": 11, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:21.488461Z", + "iopub.status.busy": "2024-08-02T00:49:21.488135Z", + "iopub.status.idle": "2024-08-02T00:49:21.807873Z", + "shell.execute_reply": "2024-08-02T00:49:21.807384Z" } }, "outputs": [], @@ -349,10 +349,10 @@ "execution_count": 12, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:21.810101Z", + "iopub.status.busy": "2024-08-02T00:49:21.809758Z", + "iopub.status.idle": "2024-08-02T00:49:21.956640Z", + "shell.execute_reply": "2024-08-02T00:49:21.956141Z" } }, "outputs": [], @@ -369,10 +369,10 @@ "execution_count": 13, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:21.958702Z", + "iopub.status.busy": "2024-08-02T00:49:21.958352Z", + "iopub.status.idle": "2024-08-02T00:49:22.328313Z", + "shell.execute_reply": "2024-08-02T00:49:22.327757Z" } }, "outputs": [], @@ -387,10 +387,10 @@ "execution_count": 14, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:22.330532Z", + "iopub.status.busy": "2024-08-02T00:49:22.330108Z", + "iopub.status.idle": "2024-08-02T00:49:23.853838Z", + "shell.execute_reply": "2024-08-02T00:49:23.853326Z" } }, "outputs": [], @@ -412,10 +412,10 @@ "execution_count": 15, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:23.855901Z", + "iopub.status.busy": "2024-08-02T00:49:23.855559Z", + "iopub.status.idle": "2024-08-02T00:49:24.042173Z", + "shell.execute_reply": "2024-08-02T00:49:24.041634Z" } }, "outputs": [], @@ -433,10 +433,10 @@ "execution_count": 16, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:24.044265Z", + "iopub.status.busy": "2024-08-02T00:49:24.044100Z", + "iopub.status.idle": "2024-08-02T00:49:24.046507Z", + "shell.execute_reply": "2024-08-02T00:49:24.046066Z" } }, "outputs": [], @@ -456,10 +456,10 @@ "execution_count": 17, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:24.048603Z", + "iopub.status.busy": "2024-08-02T00:49:24.048260Z", + "iopub.status.idle": "2024-08-02T00:49:24.050837Z", + "shell.execute_reply": "2024-08-02T00:49:24.050278Z" } }, "outputs": [], @@ -479,10 +479,10 @@ "execution_count": 18, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:24.053040Z", + "iopub.status.busy": "2024-08-02T00:49:24.052588Z", + "iopub.status.idle": "2024-08-02T00:49:24.055051Z", + "shell.execute_reply": "2024-08-02T00:49:24.054609Z" } }, "outputs": [], @@ -499,10 +499,10 @@ "execution_count": 19, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:24.057080Z", + "iopub.status.busy": "2024-08-02T00:49:24.056902Z", + "iopub.status.idle": "2024-08-02T00:49:24.059439Z", + "shell.execute_reply": "2024-08-02T00:49:24.058958Z" } }, "outputs": [], @@ -519,10 +519,10 @@ "execution_count": 20, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:24.061340Z", + "iopub.status.busy": "2024-08-02T00:49:24.061166Z", + "iopub.status.idle": "2024-08-02T00:49:24.063693Z", + "shell.execute_reply": "2024-08-02T00:49:24.063222Z" } }, "outputs": [], @@ -540,10 +540,10 @@ "execution_count": 21, "metadata": { "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:24.065691Z", + "iopub.status.busy": "2024-08-02T00:49:24.065517Z", + "iopub.status.idle": "2024-08-02T00:49:24.149252Z", + "shell.execute_reply": "2024-08-02T00:49:24.148685Z" } }, "outputs": [ @@ -568,10 +568,10 @@ "metadata": { "collapsed": false, "execution": { - "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" + "iopub.execute_input": "2024-08-02T00:49:24.151308Z", + "iopub.status.busy": "2024-08-02T00:49:24.151027Z", + "iopub.status.idle": "2024-08-02T00:49:24.201941Z", + "shell.execute_reply": "2024-08-02T00:49:24.201382Z" }, "pycharm": { "name": "#%%\n" diff --git a/examples/siteinfo_examples.html b/examples/siteinfo_examples.html index 8d411c9..7022e97 100644 --- a/examples/siteinfo_examples.html +++ b/examples/siteinfo_examples.html @@ -4,7 +4,7 @@ - Retrieving site information — dataretrieval 0.1.dev1+g64a575d documentation + Retrieving site information — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/genindex.html b/genindex.html index 482649b..e46e6c4 100644 --- a/genindex.html +++ b/genindex.html @@ -3,7 +3,7 @@ - Index — dataretrieval 0.1.dev1+g64a575d documentation + Index — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -14,7 +14,7 @@ - + diff --git a/index.html b/index.html index 30733a0..d226419 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - Welcome — dataretrieval 0.1.dev1+g64a575d documentation + Welcome — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/meta/contributing.html b/meta/contributing.html index a4f2de0..7096b2f 100644 --- a/meta/contributing.html +++ b/meta/contributing.html @@ -4,7 +4,7 @@ - Contributing — dataretrieval 0.1.dev1+g64a575d documentation + Contributing — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/meta/installing.html b/meta/installing.html index 577aff3..10900b2 100644 --- a/meta/installing.html +++ b/meta/installing.html @@ -4,7 +4,7 @@ - Installation Guide — dataretrieval 0.1.dev1+g64a575d documentation + Installation Guide — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/meta/license.html b/meta/license.html index 23a7e92..06b20dc 100644 --- a/meta/license.html +++ b/meta/license.html @@ -4,7 +4,7 @@ - License and Disclaimer — dataretrieval 0.1.dev1+g64a575d documentation + License and Disclaimer — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/py-modindex.html b/py-modindex.html index 8d82b82..e0286da 100644 --- a/py-modindex.html +++ b/py-modindex.html @@ -3,7 +3,7 @@ - Python Module Index — dataretrieval 0.1.dev1+g64a575d documentation + Python Module Index — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -14,7 +14,7 @@ - + diff --git a/reference/index.html b/reference/index.html index ec66d29..4274135 100644 --- a/reference/index.html +++ b/reference/index.html @@ -4,7 +4,7 @@ - API reference — dataretrieval 0.1.dev1+g64a575d documentation + API reference — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/reference/nadp.html b/reference/nadp.html index 0dbe9c3..c7a9a42 100644 --- a/reference/nadp.html +++ b/reference/nadp.html @@ -4,7 +4,7 @@ - dataretrieval.nadp — dataretrieval 0.1.dev1+g64a575d documentation + dataretrieval.nadp — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/reference/nwis.html b/reference/nwis.html index 1094c86..617ebaa 100644 --- a/reference/nwis.html +++ b/reference/nwis.html @@ -4,7 +4,7 @@ - dataretrieval.nwis — dataretrieval 0.1.dev1+g64a575d documentation + dataretrieval.nwis — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/reference/streamstats.html b/reference/streamstats.html index 1a62a5a..3cdb3d6 100644 --- a/reference/streamstats.html +++ b/reference/streamstats.html @@ -4,7 +4,7 @@ - dataretrieval.streamstats — dataretrieval 0.1.dev1+g64a575d documentation + dataretrieval.streamstats — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/reference/utils.html b/reference/utils.html index fc9bade..e6a8257 100644 --- a/reference/utils.html +++ b/reference/utils.html @@ -4,7 +4,7 @@ - dataretrieval.utils — dataretrieval 0.1.dev1+g64a575d documentation + dataretrieval.utils — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/reference/wqp.html b/reference/wqp.html index 5a6bb7e..55a0545 100644 --- a/reference/wqp.html +++ b/reference/wqp.html @@ -4,7 +4,7 @@ - dataretrieval.wqp — dataretrieval 0.1.dev1+g64a575d documentation + dataretrieval.wqp — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/search.html b/search.html index a1b5dcc..5776824 100644 --- a/search.html +++ b/search.html @@ -3,7 +3,7 @@ - Search — dataretrieval 0.1.dev1+g64a575d documentation + Search — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/searchindex.js b/searchindex.js index 78d8498..f025398 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, 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 +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, 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, 2, 4, 7, 9, 10, 11, 14, 26, 29], "0700": 10, "074": 11, "0740087": 10, "08": [1, 2, 4, 10, 11, 29], "09": [0, 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], "102": 1, "1020": 4, "1029": 8, "1030": 4, "1034": 2, "1035": 2, "1036": 2, "1037": 2, "1038": 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": [2, 4, 8, 10, 11, 15], "133": [2, 11], "135": 10, "1360": 4, "138": 14, "139": 14, "1390189": 10, "14": [1, 2, 4, 8, 10, 11, 15, 29], "140": [11, 14], "1404": 8, "146": 2, "146872": 0, "148": 2, "15": [0, 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, "155": [0, 10], "156": 10, "15600": 4, "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], "18": [0, 1, 2, 4, 5, 8, 10, 11, 15, 29], "180": [0, 13], "180049066381200": 29, "1801": 8, "181": 13, "1851": [1, 23], "186": 2, "188": 10, "189": [1, 10], "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, "195": [10, 15], "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": 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": [4, 8], "2002": [4, 8], "2003": [4, 8], "2004": 8, "2005": [4, 8, 11, 23], "2006": [4, 8, 26], "2007": [1, 4, 10], "2008": [4, 8], "2009": [4, 8, 15, 26], "2010": [4, 10, 11, 15, 22, 23], "2010133": 10, "2011": [4, 15], "2012": [0, 4, 8, 10, 15, 23], "2013": [4, 8, 9, 10, 23], "2014": [0, 2, 4, 8, 9, 10], "2015": [4, 8, 10, 11, 22, 29], "2016": [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, "209": 11, "21": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 14, 15], "210": 10, "2125": 8, "213": 1, "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, "234": 11, "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, "279": 11, "28": [0, 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, 2, 4, 5, 8, 10, 29], "290": 11, "290000095192602": 29, "291": 11, "2929": 8, "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, "31": [1, 2, 4, 8, 10, 11, 14, 23, 29], "310": 2, "31100": 4, "3140": 4, "317": 1, "32": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "3200": 4, "32104": 10, "322": 11, "3240067": 10, "3274": 8, "33": [2, 10, 14], "330": 11, "3330": 4, "3330046": 10, "336": 11, "337": 2, "3380": 4, "3395": 8, "34": [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": [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": [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": [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, "4192": 1, "4196": 1, "42": [2, 4, 11, 14, 25], "4201": 1, "4203": 1, "4204": 1, "4206": 1, "4207": 1, "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, "44934a": 10, "45": [0, 2, 4, 9, 10, 11, 14, 29], "454": 11, "45749a": 10, "4590": 4, "46": [2, 5, 11, 26], "464": 11, "465": 11, "466": 11, "467": 11, "468": 11, "469": 11, "47": [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": [9, 11], "4900": 4, "495000": 1, "4960": 4, "499": 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], "500000": 9, "506": 2, "51": [9, 10], "52": 4, "520": 11, "5210": 4, "524": [4, 24], "53": [0, 2, 4, 9], "54": [0, 2, 4, 9, 11, 29], "546": 4, "549": 15, "55": [2, 4, 9, 10, 15], "550": 11, "5500000": 13, "5520": 4, "5549": 18, "5550": 4, "56": [0, 2, 4, 11], "56190": 18, "567": [1, 9, 15], "57": 2, "5750": 4, "5780": 4, "5790": 4, "58": [4, 11, 29], "589": 8, "59": [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": [10, 11], "621": [1, 8], "624": 8, "626": 8, "62610": 1, "62611": 1, "628": 8, "629": [8, 11], "63": 10, "630000": 1, "630243": 9, "631": 8, "63680_hach": 14, "63680_hach_cd": 14, "63680_ysi": 14, "64": [2, 4, 10], "640": 4, "65": [1, 2, 4], "652": 2, "66": [4, 29], "660": 11, "6610": 4, "67": [1, 2, 4], "68": [1, 2], "681": 4, "688": 8, "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": 11, "708": 8, "709": [2, 8], "71": 11, "710": [8, 11], "711": 8, "712": 8, "713": 8, "715": 4, "71851": 15, "72": 5, "72019": 1, "7220": 4, "726": [4, 11], "73": [4, 5, 11], "730": 11, "731": 11, "732": 11, "733": 11, "734": 11, "735": 11, "738": 11, "74": [4, 5, 24], "744": 1, "749": 11, "75": [0, 1, 2, 4, 5, 9], "750": 11, "751": 4, "76": [2, 4, 5, 9], "77": [4, 11], "78": [2, 11], "781": 4, "784": 8, "7860": 4, "79": [1, 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": [1, 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, 5, 11], "850": 11, "86": 11, "860": 11, "8601": [6, 7, 23, 25], "867": 11, "87": [2, 4, 5, 11], "871": 1, "873550": 14, "879": 1, "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, 4, 8, 10, 11, 26], "920": 11, "928": 11, "929": 11, "93": [0, 1, 2, 8], "933": 1, "938": 2, "939": [2, 24], "94": [2, 8], "940": 2, "941": 2, "942": 2, "943": 2, "95": [0, 2, 4, 8, 11], "958": 4, "96": [0, 2, 4, 8, 9], "961": 4, "964": 4, "97": [1, 2], "971": 11, "972": 11, "98": 4, "985": 11, "99": [1, 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": [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], "__init__": [23, 24, 25, 26], "__repr__": 25, "__str__": 25, "__weakref__": [24, 25], "_alter_kwarg": 26, "_read_json": 23, "_read_rdb": 23, "_warn_v3_profiles_outag": 26, "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, 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], "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": 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, "argument": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 23, 26], "argumentsn": [6, 7], "arizona": 23, "around": 18, "arr": 18, "articl": [10, 15, 18, 23], "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, "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], "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], "cd": 19, "cdt": 2, "cell": [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": [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, "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], "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, "convert": [1, 13, 23, 25, 29], "convey": 11, "cookiecutt": 18, "coord_acy_cd": 16, "coord_datum_cd": 16, "coord_meth_cd": 16, "core": 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], "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], "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], "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": [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], "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": 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, "drawcoastlin": 13, "drawcountri": 13, "drawmeridian": 13, "drawparallel": 13, "drawriv": 13, "drawstat": 13, "drop": 13, "dropna": 13, "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": [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": 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], "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": [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], "f6x7h": 10, "facad": 13, "facil": 11, "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": 13, "figsiz": 13, "figur": 13, "file": [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, "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], "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], "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, "gcc": 10, "gd3865a2": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "gdal": 22, "gener": [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_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_level_valu": 13, "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, "getsit": 15, "gigawatt": 11, "git": 19, "github": [10, 15, 16, 18, 19, 23], "given": [18, 26], "glri": 10, "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_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": [6, 7, 23], "kwarg": [23, 26], "l": [10, 13, 23], "lab_std_va": 10, "label": 13, "land": 1, "land_net_d": 16, "languag": [6, 7, 18], "language_info": [6, 7], "larg": 13, "larger": 12, "last": [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_on": 13, "legaci": 15, "len": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "length": [1, 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": [6, 8, 26], "line": 13, "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], "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": [8, 13], "matter": 13, "max": [0, 1, 8, 9, 23], "maximum": [0, 15], "md": [15, 18, 20, 23, 25, 26], "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": [13, 23, 24, 29], "mpl_toolkit": 13, "mst": 2, "multi": [13, 23, 29], "multi_index": 23, "multipl": [0, 1, 2, 6, 8, 13, 18, 23, 29], "mung": 25, "must": [6, 7, 11, 18, 22, 23], "n": [1, 6, 7, 10], "nadp": [21, 27], "nadp_zipfil": 22, "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], "natur": 18, "navd88": 1, "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, "next": 13, "ngvd29": 1, "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": 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": [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": [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], "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": [1, 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": [8, 18, 25, 26], "past": [6, 7, 23], "path": 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], "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, "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], "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": [13, 17, 18, 19, 22, 23, 24], "r_valu": 13, "radial": 26, "rais": 26, "rang": [6, 7, 23], "rate": [5, 15, 23], "rather": [9, 11], "ratingdata": [5, 15], "ratings_data": 15, "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], "recal": 13, "receiv": [10, 15, 24], "recent": [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], "regress": 12, "regular": 18, "relat": 5, "releas": [11, 18, 19], "reliability_cd": 16, "remain": 15, "remot": [13, 19], "remov": 18, "repeat": 16, "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], "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], "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, "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": [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_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": [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], "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, "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, 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, "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": [9, 23], "timezon": [23, 25, 29], "tm_datum_rlbty_cd": 10, "to_csv": 13, "to_datetim": [13, 29], "to_str": 25, "tolist": 13, "took": 15, "tool": [15, 22, 26], "topic": 28, "topo_cd": 16, "total": [3, 11, 22, 23], "tox": 10, "tp": 23, "traceback": 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], "ts_id": [8, 16], "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": 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], "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, "up": [1, 6, 7, 13, 23], "updat": [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], "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], "via": [6, 18], "view": [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": 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, 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": [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, "wrapper": [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": 8, "xlocat": 24, "y": [0, 1, 8, 9, 13, 24], "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 2f2584c..d5c9888 100644 --- a/userguide/dataportals.html +++ b/userguide/dataportals.html @@ -4,7 +4,7 @@ - Data Portals — dataretrieval 0.1.dev1+g64a575d documentation + Data Portals — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/userguide/index.html b/userguide/index.html index 0a274ef..9f644f6 100644 --- a/userguide/index.html +++ b/userguide/index.html @@ -4,7 +4,7 @@ - User Guide — dataretrieval 0.1.dev1+g64a575d documentation + User Guide — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - + diff --git a/userguide/timeconventions.html b/userguide/timeconventions.html index 828ba4a..d6ca0c3 100644 --- a/userguide/timeconventions.html +++ b/userguide/timeconventions.html @@ -4,7 +4,7 @@ - Datetime Information — dataretrieval 0.1.dev1+g64a575d documentation + Datetime Information — dataretrieval 0.1.dev1+gd3865a2 documentation @@ -15,7 +15,7 @@ - +