From c573fd63b20b7c19717a22b0e5244695b8737cf2 Mon Sep 17 00:00:00 2001 From: thodson-usgs <34148978+thodson-usgs@users.noreply.github.com> Date: Fri, 9 Aug 2024 20:31:08 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20DOI-USGS?= =?UTF-8?q?/dataretrieval-python@2293a51b84a1dcbcd5c2089bacdb1c9cca8a9dca?= =?UTF-8?q?=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .buildinfo | 2 +- _modules/dataretrieval/nadp.html | 4 +- _modules/dataretrieval/nwis.html | 9 +- _modules/dataretrieval/streamstats.html | 4 +- _modules/dataretrieval/utils.html | 4 +- _modules/dataretrieval/wqp.html | 4 +- _modules/index.html | 4 +- _static/documentation_options.js | 2 +- ...GS_dataretrieval_DailyValues_Examples.html | 6 +- ...S_dataretrieval_DailyValues_Examples.ipynb | 90 ++++---- ...aretrieval_GroundwaterLevels_Examples.html | 6 +- ...retrieval_GroundwaterLevels_Examples.ipynb | 98 ++++----- ...S_dataretrieval_Measurements_Examples.html | 8 +- ..._dataretrieval_Measurements_Examples.ipynb | 68 +++--- ...dataretrieval_ParameterCodes_Examples.html | 6 +- ...ataretrieval_ParameterCodes_Examples.ipynb | 34 +-- .../USGS_dataretrieval_Peaks_Examples.html | 6 +- .../USGS_dataretrieval_Peaks_Examples.ipynb | 66 +++--- .../USGS_dataretrieval_Ratings_Examples.html | 6 +- .../USGS_dataretrieval_Ratings_Examples.ipynb | 58 +++--- .../USGS_dataretrieval_SiteInfo_Examples.html | 4 +- ..._dataretrieval_SiteInventory_Examples.html | 4 +- ...SGS_dataretrieval_Statistics_Examples.html | 6 +- ...GS_dataretrieval_Statistics_Examples.ipynb | 74 +++---- ...SGS_dataretrieval_UnitValues_Examples.html | 79 ++++++- ...GS_dataretrieval_UnitValues_Examples.ipynb | 197 ++++++++++++------ ...S_dataretrieval_WaterSamples_Examples.html | 6 +- ..._dataretrieval_WaterSamples_Examples.ipynb | 82 ++++---- .../USGS_dataretrieval_WaterUse_Examples.html | 6 +- ...USGS_dataretrieval_WaterUse_Examples.ipynb | 66 +++--- examples/index.html | 4 +- examples/nwisdemo01.html | 4 +- examples/nwisdemo01.ipynb | 56 ++--- examples/readme_examples.html | 4 +- examples/rvignettes.html | 4 +- examples/rvignettes.ipynb | 176 ++++++++-------- examples/siteinfo_examples.html | 4 +- genindex.html | 4 +- index.html | 4 +- meta/contributing.html | 4 +- meta/installing.html | 4 +- meta/license.html | 4 +- py-modindex.html | 4 +- reference/index.html | 4 +- reference/nadp.html | 4 +- reference/nwis.html | 4 +- reference/streamstats.html | 4 +- reference/utils.html | 4 +- reference/wqp.html | 4 +- search.html | 4 +- searchindex.js | 2 +- userguide/dataportals.html | 4 +- userguide/index.html | 4 +- userguide/timeconventions.html | 4 +- 54 files changed, 733 insertions(+), 594 deletions(-) diff --git a/.buildinfo b/.buildinfo index 869a7c9..678f2ac 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: c24a4c33953d017e74632673975b30e4 +config: 6bc83b36914139df29a87d2cbeb0381d tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_modules/dataretrieval/nadp.html b/_modules/dataretrieval/nadp.html index 8499a2b..10ef3d5 100644 --- a/_modules/dataretrieval/nadp.html +++ b/_modules/dataretrieval/nadp.html @@ -3,7 +3,7 @@ - dataretrieval.nadp — dataretrieval 0.1.dev1+gc9fbab8 documentation + dataretrieval.nadp — dataretrieval 0.1.dev1+g2293a51 documentation @@ -14,7 +14,7 @@ - + diff --git a/_modules/dataretrieval/nwis.html b/_modules/dataretrieval/nwis.html index c6dcc82..81617ed 100644 --- a/_modules/dataretrieval/nwis.html +++ b/_modules/dataretrieval/nwis.html @@ -3,7 +3,7 @@ - dataretrieval.nwis — dataretrieval 0.1.dev1+gc9fbab8 documentation + dataretrieval.nwis — dataretrieval 0.1.dev1+g2293a51 documentation @@ -14,7 +14,7 @@ - + @@ -401,8 +401,11 @@

Source code for dataretrieval.nwis

     kwargs['begin_date'] = kwargs.pop('begin_date', start)
     kwargs['end_date'] = kwargs.pop('end_date', end)
 
+    if 'format' not in kwargs:
+       kwargs['format'] = 'rdb'
+
     response = query_waterdata(
-        'measurements', format='rdb', ssl_check=ssl_check, **kwargs
+        'measurements', ssl_check=ssl_check, **kwargs
     )
     return _read_rdb(response.text), NWIS_Metadata(response, **kwargs)
diff --git a/_modules/dataretrieval/streamstats.html b/_modules/dataretrieval/streamstats.html index d20b80f..95ad694 100644 --- a/_modules/dataretrieval/streamstats.html +++ b/_modules/dataretrieval/streamstats.html @@ -3,7 +3,7 @@ - dataretrieval.streamstats — dataretrieval 0.1.dev1+gc9fbab8 documentation + dataretrieval.streamstats — dataretrieval 0.1.dev1+g2293a51 documentation @@ -14,7 +14,7 @@ - + diff --git a/_modules/dataretrieval/utils.html b/_modules/dataretrieval/utils.html index 9f6028f..120a863 100644 --- a/_modules/dataretrieval/utils.html +++ b/_modules/dataretrieval/utils.html @@ -3,7 +3,7 @@ - dataretrieval.utils — dataretrieval 0.1.dev1+gc9fbab8 documentation + dataretrieval.utils — dataretrieval 0.1.dev1+g2293a51 documentation @@ -14,7 +14,7 @@ - + diff --git a/_modules/dataretrieval/wqp.html b/_modules/dataretrieval/wqp.html index 6e38ca4..008367e 100644 --- a/_modules/dataretrieval/wqp.html +++ b/_modules/dataretrieval/wqp.html @@ -3,7 +3,7 @@ - dataretrieval.wqp — dataretrieval 0.1.dev1+gc9fbab8 documentation + dataretrieval.wqp — dataretrieval 0.1.dev1+g2293a51 documentation @@ -14,7 +14,7 @@ - + diff --git a/_modules/index.html b/_modules/index.html index a32e09e..32575af 100644 --- a/_modules/index.html +++ b/_modules/index.html @@ -3,7 +3,7 @@ - Overview: module code — dataretrieval 0.1.dev1+gc9fbab8 documentation + Overview: module code — dataretrieval 0.1.dev1+g2293a51 documentation @@ -14,7 +14,7 @@ - + diff --git a/_static/documentation_options.js b/_static/documentation_options.js index 0231065..0d76744 100644 --- a/_static/documentation_options.js +++ b/_static/documentation_options.js @@ -1,5 +1,5 @@ const DOCUMENTATION_OPTIONS = { - VERSION: '0.1.dev1+gc9fbab8', + VERSION: '0.1.dev1+g2293a51', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/examples/USGS_dataretrieval_DailyValues_Examples.html b/examples/USGS_dataretrieval_DailyValues_Examples.html index acfd968..8e7f214 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+gc9fbab8 documentation + USGS dataretrieval Python Package get_dv() Examples — dataretrieval 0.1.dev1+g2293a51 documentation @@ -16,7 +16,7 @@ - + @@ -129,7 +129,7 @@

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)
 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.1)
diff --git a/examples/USGS_dataretrieval_DailyValues_Examples.ipynb b/examples/USGS_dataretrieval_DailyValues_Examples.ipynb
index bfae6dc..e44f23c 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-08-08T02:57:00.385155Z",
-     "iopub.status.busy": "2024-08-08T02:57:00.384985Z",
-     "iopub.status.idle": "2024-08-08T02:57:01.127509Z",
-     "shell.execute_reply": "2024-08-08T02:57:01.126737Z"
+     "iopub.execute_input": "2024-08-09T20:29:54.869104Z",
+     "iopub.status.busy": "2024-08-09T20:29:54.868925Z",
+     "iopub.status.idle": "2024-08-09T20:29:55.619705Z",
+     "shell.execute_reply": "2024-08-09T20:29:55.618969Z"
     },
     "pycharm": {
      "is_executing": true,
@@ -45,7 +45,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)\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"
      ]
@@ -82,10 +82,10 @@
    "execution_count": 2,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:01.130337Z",
-     "iopub.status.busy": "2024-08-08T02:57:01.130130Z",
-     "iopub.status.idle": "2024-08-08T02:57:01.418041Z",
-     "shell.execute_reply": "2024-08-08T02:57:01.417533Z"
+     "iopub.execute_input": "2024-08-09T20:29:55.622400Z",
+     "iopub.status.busy": "2024-08-09T20:29:55.622192Z",
+     "iopub.status.idle": "2024-08-09T20:29:55.915842Z",
+     "shell.execute_reply": "2024-08-09T20:29:55.915279Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -131,10 +131,10 @@
    "execution_count": 3,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:01.421021Z",
-     "iopub.status.busy": "2024-08-08T02:57:01.420466Z",
-     "iopub.status.idle": "2024-08-08T02:57:01.635236Z",
-     "shell.execute_reply": "2024-08-08T02:57:01.634728Z"
+     "iopub.execute_input": "2024-08-09T20:29:55.918617Z",
+     "iopub.status.busy": "2024-08-09T20:29:55.918190Z",
+     "iopub.status.idle": "2024-08-09T20:29:56.258602Z",
+     "shell.execute_reply": "2024-08-09T20:29:56.257993Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -177,10 +177,10 @@
    "execution_count": 4,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:01.637390Z",
-     "iopub.status.busy": "2024-08-08T02:57:01.637200Z",
-     "iopub.status.idle": "2024-08-08T02:57:01.646951Z",
-     "shell.execute_reply": "2024-08-08T02:57:01.646380Z"
+     "iopub.execute_input": "2024-08-09T20:29:56.261166Z",
+     "iopub.status.busy": "2024-08-09T20:29:56.260708Z",
+     "iopub.status.idle": "2024-08-09T20:29:56.270770Z",
+     "shell.execute_reply": "2024-08-09T20:29:56.270260Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -336,10 +336,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:01.649095Z",
-     "iopub.status.busy": "2024-08-08T02:57:01.648753Z",
-     "iopub.status.idle": "2024-08-08T02:57:01.652342Z",
-     "shell.execute_reply": "2024-08-08T02:57:01.651768Z"
+     "iopub.execute_input": "2024-08-09T20:29:56.272879Z",
+     "iopub.status.busy": "2024-08-09T20:29:56.272693Z",
+     "iopub.status.idle": "2024-08-09T20:29:56.276306Z",
+     "shell.execute_reply": "2024-08-09T20:29:56.275757Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -378,10 +378,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:01.654692Z",
-     "iopub.status.busy": "2024-08-08T02:57:01.654271Z",
-     "iopub.status.idle": "2024-08-08T02:57:01.661391Z",
-     "shell.execute_reply": "2024-08-08T02:57:01.660837Z"
+     "iopub.execute_input": "2024-08-09T20:29:56.278270Z",
+     "iopub.status.busy": "2024-08-09T20:29:56.278088Z",
+     "iopub.status.idle": "2024-08-09T20:29:56.285126Z",
+     "shell.execute_reply": "2024-08-09T20:29:56.284676Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -487,10 +487,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:01.663618Z",
-     "iopub.status.busy": "2024-08-08T02:57:01.663264Z",
-     "iopub.status.idle": "2024-08-08T02:57:02.210601Z",
-     "shell.execute_reply": "2024-08-08T02:57:02.209973Z"
+     "iopub.execute_input": "2024-08-09T20:29:56.287219Z",
+     "iopub.status.busy": "2024-08-09T20:29:56.286871Z",
+     "iopub.status.idle": "2024-08-09T20:29:56.845133Z",
+     "shell.execute_reply": "2024-08-09T20:29:56.844512Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -536,10 +536,10 @@
    "execution_count": 8,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:02.213198Z",
-     "iopub.status.busy": "2024-08-08T02:57:02.212771Z",
-     "iopub.status.idle": "2024-08-08T02:57:02.215831Z",
-     "shell.execute_reply": "2024-08-08T02:57:02.215300Z"
+     "iopub.execute_input": "2024-08-09T20:29:56.847823Z",
+     "iopub.status.busy": "2024-08-09T20:29:56.847356Z",
+     "iopub.status.idle": "2024-08-09T20:29:56.850674Z",
+     "shell.execute_reply": "2024-08-09T20:29:56.850101Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -584,10 +584,10 @@
    "execution_count": 9,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:02.218028Z",
-     "iopub.status.busy": "2024-08-08T02:57:02.217683Z",
-     "iopub.status.idle": "2024-08-08T02:57:02.453708Z",
-     "shell.execute_reply": "2024-08-08T02:57:02.453132Z"
+     "iopub.execute_input": "2024-08-09T20:29:56.852958Z",
+     "iopub.status.busy": "2024-08-09T20:29:56.852600Z",
+     "iopub.status.idle": "2024-08-09T20:29:56.986879Z",
+     "shell.execute_reply": "2024-08-09T20:29:56.986282Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -806,10 +806,10 @@
    "execution_count": 10,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:02.455935Z",
-     "iopub.status.busy": "2024-08-08T02:57:02.455621Z",
-     "iopub.status.idle": "2024-08-08T02:57:02.697936Z",
-     "shell.execute_reply": "2024-08-08T02:57:02.697365Z"
+     "iopub.execute_input": "2024-08-09T20:29:56.989179Z",
+     "iopub.status.busy": "2024-08-09T20:29:56.988815Z",
+     "iopub.status.idle": "2024-08-09T20:29:57.116302Z",
+     "shell.execute_reply": "2024-08-09T20:29:57.115671Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -1060,10 +1060,10 @@
    "execution_count": 11,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:02.700017Z",
-     "iopub.status.busy": "2024-08-08T02:57:02.699844Z",
-     "iopub.status.idle": "2024-08-08T02:57:02.771900Z",
-     "shell.execute_reply": "2024-08-08T02:57:02.771434Z"
+     "iopub.execute_input": "2024-08-09T20:29:57.118672Z",
+     "iopub.status.busy": "2024-08-09T20:29:57.118307Z",
+     "iopub.status.idle": "2024-08-09T20:29:57.223511Z",
+     "shell.execute_reply": "2024-08-09T20:29:57.222934Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_GroundwaterLevels_Examples.html b/examples/USGS_dataretrieval_GroundwaterLevels_Examples.html
index 595abd1..8ad6290 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+gc9fbab8 documentation
+  USGS dataretrieval Python Package get_gwlevels() Examples — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,7 +129,7 @@ 

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)
 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.1)
diff --git a/examples/USGS_dataretrieval_GroundwaterLevels_Examples.ipynb b/examples/USGS_dataretrieval_GroundwaterLevels_Examples.ipynb
index 911c7d7..86554d4 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-08-08T02:57:04.389559Z",
-     "iopub.status.busy": "2024-08-08T02:57:04.389380Z",
-     "iopub.status.idle": "2024-08-08T02:57:05.139834Z",
-     "shell.execute_reply": "2024-08-08T02:57:05.139212Z"
+     "iopub.execute_input": "2024-08-09T20:29:58.859818Z",
+     "iopub.status.busy": "2024-08-09T20:29:58.859606Z",
+     "iopub.status.idle": "2024-08-09T20:29:59.609742Z",
+     "shell.execute_reply": "2024-08-09T20:29:59.609062Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -52,7 +52,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)\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"
      ]
@@ -92,10 +92,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:05.142657Z",
-     "iopub.status.busy": "2024-08-08T02:57:05.142253Z",
-     "iopub.status.idle": "2024-08-08T02:57:05.430775Z",
-     "shell.execute_reply": "2024-08-08T02:57:05.430245Z"
+     "iopub.execute_input": "2024-08-09T20:29:59.612659Z",
+     "iopub.status.busy": "2024-08-09T20:29:59.612264Z",
+     "iopub.status.idle": "2024-08-09T20:29:59.903199Z",
+     "shell.execute_reply": "2024-08-09T20:29:59.902675Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -142,10 +142,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:05.433638Z",
-     "iopub.status.busy": "2024-08-08T02:57:05.433201Z",
-     "iopub.status.idle": "2024-08-08T02:57:05.947104Z",
-     "shell.execute_reply": "2024-08-08T02:57:05.946553Z"
+     "iopub.execute_input": "2024-08-09T20:29:59.906081Z",
+     "iopub.status.busy": "2024-08-09T20:29:59.905620Z",
+     "iopub.status.idle": "2024-08-09T20:30:00.475375Z",
+     "shell.execute_reply": "2024-08-09T20:30:00.474718Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -208,10 +208,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:05.949229Z",
-     "iopub.status.busy": "2024-08-08T02:57:05.949047Z",
-     "iopub.status.idle": "2024-08-08T02:57:05.964261Z",
-     "shell.execute_reply": "2024-08-08T02:57:05.963808Z"
+     "iopub.execute_input": "2024-08-09T20:30:00.477685Z",
+     "iopub.status.busy": "2024-08-09T20:30:00.477511Z",
+     "iopub.status.idle": "2024-08-09T20:30:00.492872Z",
+     "shell.execute_reply": "2024-08-09T20:30:00.492423Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -604,10 +604,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:05.966521Z",
-     "iopub.status.busy": "2024-08-08T02:57:05.966046Z",
-     "iopub.status.idle": "2024-08-08T02:57:05.969744Z",
-     "shell.execute_reply": "2024-08-08T02:57:05.969287Z"
+     "iopub.execute_input": "2024-08-09T20:30:00.495153Z",
+     "iopub.status.busy": "2024-08-09T20:30:00.494817Z",
+     "iopub.status.idle": "2024-08-09T20:30:00.498211Z",
+     "shell.execute_reply": "2024-08-09T20:30:00.497652Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -661,10 +661,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:05.971875Z",
-     "iopub.status.busy": "2024-08-08T02:57:05.971525Z",
-     "iopub.status.idle": "2024-08-08T02:57:05.977066Z",
-     "shell.execute_reply": "2024-08-08T02:57:05.976597Z"
+     "iopub.execute_input": "2024-08-09T20:30:00.500429Z",
+     "iopub.status.busy": "2024-08-09T20:30:00.500100Z",
+     "iopub.status.idle": "2024-08-09T20:30:00.505637Z",
+     "shell.execute_reply": "2024-08-09T20:30:00.505170Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -712,10 +712,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:05.979137Z",
-     "iopub.status.busy": "2024-08-08T02:57:05.978796Z",
-     "iopub.status.idle": "2024-08-08T02:57:06.360773Z",
-     "shell.execute_reply": "2024-08-08T02:57:06.360225Z"
+     "iopub.execute_input": "2024-08-09T20:30:00.507891Z",
+     "iopub.status.busy": "2024-08-09T20:30:00.507521Z",
+     "iopub.status.idle": "2024-08-09T20:30:00.895219Z",
+     "shell.execute_reply": "2024-08-09T20:30:00.894599Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -767,10 +767,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:06.362971Z",
-     "iopub.status.busy": "2024-08-08T02:57:06.362751Z",
-     "iopub.status.idle": "2024-08-08T02:57:06.366137Z",
-     "shell.execute_reply": "2024-08-08T02:57:06.365641Z"
+     "iopub.execute_input": "2024-08-09T20:30:00.897912Z",
+     "iopub.status.busy": "2024-08-09T20:30:00.897361Z",
+     "iopub.status.idle": "2024-08-09T20:30:00.900732Z",
+     "shell.execute_reply": "2024-08-09T20:30:00.900118Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -808,10 +808,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:06.368226Z",
-     "iopub.status.busy": "2024-08-08T02:57:06.367876Z",
-     "iopub.status.idle": "2024-08-08T02:57:06.945450Z",
-     "shell.execute_reply": "2024-08-08T02:57:06.944862Z"
+     "iopub.execute_input": "2024-08-09T20:30:00.902977Z",
+     "iopub.status.busy": "2024-08-09T20:30:00.902624Z",
+     "iopub.status.idle": "2024-08-09T20:30:01.668372Z",
+     "shell.execute_reply": "2024-08-09T20:30:01.667722Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -1230,10 +1230,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:06.947738Z",
-     "iopub.status.busy": "2024-08-08T02:57:06.947384Z",
-     "iopub.status.idle": "2024-08-08T02:57:07.611843Z",
-     "shell.execute_reply": "2024-08-08T02:57:07.611287Z"
+     "iopub.execute_input": "2024-08-09T20:30:01.670612Z",
+     "iopub.status.busy": "2024-08-09T20:30:01.670421Z",
+     "iopub.status.idle": "2024-08-09T20:30:02.374663Z",
+     "shell.execute_reply": "2024-08-09T20:30:02.374008Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -1289,10 +1289,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:07.614009Z",
-     "iopub.status.busy": "2024-08-08T02:57:07.613656Z",
-     "iopub.status.idle": "2024-08-08T02:57:07.616606Z",
-     "shell.execute_reply": "2024-08-08T02:57:07.616049Z"
+     "iopub.execute_input": "2024-08-09T20:30:02.377025Z",
+     "iopub.status.busy": "2024-08-09T20:30:02.376830Z",
+     "iopub.status.idle": "2024-08-09T20:30:02.379888Z",
+     "shell.execute_reply": "2024-08-09T20:30:02.379291Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -1332,10 +1332,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:07.618698Z",
-     "iopub.status.busy": "2024-08-08T02:57:07.618347Z",
-     "iopub.status.idle": "2024-08-08T02:57:08.104981Z",
-     "shell.execute_reply": "2024-08-08T02:57:08.104414Z"
+     "iopub.execute_input": "2024-08-09T20:30:02.381829Z",
+     "iopub.status.busy": "2024-08-09T20:30:02.381649Z",
+     "iopub.status.idle": "2024-08-09T20:30:03.059301Z",
+     "shell.execute_reply": "2024-08-09T20:30:03.058649Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_Measurements_Examples.html b/examples/USGS_dataretrieval_Measurements_Examples.html
index 0cfe8de..a1def0d 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+gc9fbab8 documentation
+  USGS dataretrieval Python Package get_discharge_measurements() Examples — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,7 +129,7 @@ 

Install the Package diff --git a/examples/USGS_dataretrieval_Measurements_Examples.ipynb b/examples/USGS_dataretrieval_Measurements_Examples.ipynb index 8a7b98e..629c35d 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-08-08T02:57:09.984853Z", - "iopub.status.busy": "2024-08-08T02:57:09.984355Z", - "iopub.status.idle": "2024-08-08T02:57:10.726017Z", - "shell.execute_reply": "2024-08-08T02:57:10.725383Z" + "iopub.execute_input": "2024-08-09T20:30:04.962248Z", + "iopub.status.busy": "2024-08-09T20:30:04.962070Z", + "iopub.status.idle": "2024-08-09T20:30:05.716362Z", + "shell.execute_reply": "2024-08-09T20:30:05.715619Z" }, "pycharm": { "name": "#%%\n" @@ -52,7 +52,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)\r\n", + "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)\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" ] @@ -92,10 +92,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:10.728883Z", - "iopub.status.busy": "2024-08-08T02:57:10.728484Z", - "iopub.status.idle": "2024-08-08T02:57:11.016014Z", - "shell.execute_reply": "2024-08-08T02:57:11.015385Z" + "iopub.execute_input": "2024-08-09T20:30:05.719389Z", + "iopub.status.busy": "2024-08-09T20:30:05.718936Z", + "iopub.status.idle": "2024-08-09T20:30:06.008393Z", + "shell.execute_reply": "2024-08-09T20:30:06.007862Z" }, "pycharm": { "name": "#%%\n" @@ -139,10 +139,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:11.018814Z", - "iopub.status.busy": "2024-08-08T02:57:11.018392Z", - "iopub.status.idle": "2024-08-08T02:57:11.321441Z", - "shell.execute_reply": "2024-08-08T02:57:11.320933Z" + "iopub.execute_input": "2024-08-09T20:30:06.011155Z", + "iopub.status.busy": "2024-08-09T20:30:06.010727Z", + "iopub.status.idle": "2024-08-09T20:30:06.329920Z", + "shell.execute_reply": "2024-08-09T20:30:06.329323Z" }, "pycharm": { "name": "#%%\n" @@ -193,10 +193,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:11.323680Z", - "iopub.status.busy": "2024-08-08T02:57:11.323346Z", - "iopub.status.idle": "2024-08-08T02:57:11.338441Z", - "shell.execute_reply": "2024-08-08T02:57:11.337895Z" + "iopub.execute_input": "2024-08-09T20:30:06.332144Z", + "iopub.status.busy": "2024-08-09T20:30:06.331964Z", + "iopub.status.idle": "2024-08-09T20:30:06.347597Z", + "shell.execute_reply": "2024-08-09T20:30:06.347054Z" }, "pycharm": { "name": "#%%\n" @@ -524,10 +524,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:11.340930Z", - "iopub.status.busy": "2024-08-08T02:57:11.340377Z", - "iopub.status.idle": "2024-08-08T02:57:11.344032Z", - "shell.execute_reply": "2024-08-08T02:57:11.343481Z" + "iopub.execute_input": "2024-08-09T20:30:06.349679Z", + "iopub.status.busy": "2024-08-09T20:30:06.349500Z", + "iopub.status.idle": "2024-08-09T20:30:06.352694Z", + "shell.execute_reply": "2024-08-09T20:30:06.352219Z" }, "pycharm": { "name": "#%%\n" @@ -576,10 +576,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:11.346180Z", - "iopub.status.busy": "2024-08-08T02:57:11.345870Z", - "iopub.status.idle": "2024-08-08T02:57:11.348884Z", - "shell.execute_reply": "2024-08-08T02:57:11.348338Z" + "iopub.execute_input": "2024-08-09T20:30:06.354761Z", + "iopub.status.busy": "2024-08-09T20:30:06.354588Z", + "iopub.status.idle": "2024-08-09T20:30:06.357634Z", + "shell.execute_reply": "2024-08-09T20:30:06.357157Z" }, "pycharm": { "name": "#%%\n" @@ -590,7 +590,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "The query URL used to retrieve the data from NWIS was: https://nwis.waterdata.usgs.gov/nwis/measurements?format=rdb&site_no=10109000\n" + "The query URL used to retrieve the data from NWIS was: https://nwis.waterdata.usgs.gov/nwis/measurements?site_no=10109000&format=rdb\n" ] } ], @@ -615,10 +615,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:11.351016Z", - "iopub.status.busy": "2024-08-08T02:57:11.350694Z", - "iopub.status.idle": "2024-08-08T02:57:11.597704Z", - "shell.execute_reply": "2024-08-08T02:57:11.597125Z" + "iopub.execute_input": "2024-08-09T20:30:06.359857Z", + "iopub.status.busy": "2024-08-09T20:30:06.359379Z", + "iopub.status.idle": "2024-08-09T20:30:06.791663Z", + "shell.execute_reply": "2024-08-09T20:30:06.791023Z" }, "pycharm": { "name": "#%%\n" @@ -911,10 +911,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:11.599774Z", - "iopub.status.busy": "2024-08-08T02:57:11.599594Z", - "iopub.status.idle": "2024-08-08T02:57:12.057366Z", - "shell.execute_reply": "2024-08-08T02:57:12.056895Z" + "iopub.execute_input": "2024-08-09T20:30:06.793950Z", + "iopub.status.busy": "2024-08-09T20:30:06.793654Z", + "iopub.status.idle": "2024-08-09T20:30:07.150309Z", + "shell.execute_reply": "2024-08-09T20:30:07.149683Z" }, "pycharm": { "name": "#%%\n" diff --git a/examples/USGS_dataretrieval_ParameterCodes_Examples.html b/examples/USGS_dataretrieval_ParameterCodes_Examples.html index e1b7846..05806c2 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+gc9fbab8 documentation + USGS dataretrieval Python Package get_pmcodes() Examples — dataretrieval 0.1.dev1+g2293a51 documentation @@ -16,7 +16,7 @@ - + @@ -129,7 +129,7 @@

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)
 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.1)
diff --git a/examples/USGS_dataretrieval_ParameterCodes_Examples.ipynb b/examples/USGS_dataretrieval_ParameterCodes_Examples.ipynb
index bc29ad4..d4f0e39 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-08-08T02:57:13.523720Z",
-     "iopub.status.busy": "2024-08-08T02:57:13.523546Z",
-     "iopub.status.idle": "2024-08-08T02:57:14.270434Z",
-     "shell.execute_reply": "2024-08-08T02:57:14.269810Z"
+     "iopub.execute_input": "2024-08-09T20:30:08.630051Z",
+     "iopub.status.busy": "2024-08-09T20:30:08.629625Z",
+     "iopub.status.idle": "2024-08-09T20:30:09.384133Z",
+     "shell.execute_reply": "2024-08-09T20:30:09.383434Z"
     },
     "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+gc9fbab8)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)\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"
      ]
@@ -95,10 +95,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:14.273122Z",
-     "iopub.status.busy": "2024-08-08T02:57:14.272927Z",
-     "iopub.status.idle": "2024-08-08T02:57:14.561069Z",
-     "shell.execute_reply": "2024-08-08T02:57:14.560546Z"
+     "iopub.execute_input": "2024-08-09T20:30:09.386954Z",
+     "iopub.status.busy": "2024-08-09T20:30:09.386569Z",
+     "iopub.status.idle": "2024-08-09T20:30:09.681435Z",
+     "shell.execute_reply": "2024-08-09T20:30:09.680769Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -140,10 +140,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:14.564023Z",
-     "iopub.status.busy": "2024-08-08T02:57:14.563545Z",
-     "iopub.status.idle": "2024-08-08T02:57:14.783420Z",
-     "shell.execute_reply": "2024-08-08T02:57:14.782869Z"
+     "iopub.execute_input": "2024-08-09T20:30:09.684513Z",
+     "iopub.status.busy": "2024-08-09T20:30:09.684052Z",
+     "iopub.status.idle": "2024-08-09T20:30:09.903894Z",
+     "shell.execute_reply": "2024-08-09T20:30:09.903268Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -182,10 +182,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:14.785675Z",
-     "iopub.status.busy": "2024-08-08T02:57:14.785323Z",
-     "iopub.status.idle": "2024-08-08T02:57:14.796618Z",
-     "shell.execute_reply": "2024-08-08T02:57:14.796167Z"
+     "iopub.execute_input": "2024-08-09T20:30:09.906113Z",
+     "iopub.status.busy": "2024-08-09T20:30:09.905910Z",
+     "iopub.status.idle": "2024-08-09T20:30:09.917557Z",
+     "shell.execute_reply": "2024-08-09T20:30:09.917100Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_Peaks_Examples.html b/examples/USGS_dataretrieval_Peaks_Examples.html
index 35c40f0..dc4e95c 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+gc9fbab8 documentation
+  USGS dataretrieval Python Package get_discharge_peaks() Examples — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,7 +129,7 @@ 

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)
 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.1)
diff --git a/examples/USGS_dataretrieval_Peaks_Examples.ipynb b/examples/USGS_dataretrieval_Peaks_Examples.ipynb
index 36f3d38..a70cbe4 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-08-08T02:57:16.259102Z",
-     "iopub.status.busy": "2024-08-08T02:57:16.258932Z",
-     "iopub.status.idle": "2024-08-08T02:57:17.003193Z",
-     "shell.execute_reply": "2024-08-08T02:57:17.002428Z"
+     "iopub.execute_input": "2024-08-09T20:30:11.409398Z",
+     "iopub.status.busy": "2024-08-09T20:30:11.409227Z",
+     "iopub.status.idle": "2024-08-09T20:30:12.162595Z",
+     "shell.execute_reply": "2024-08-09T20:30:12.161917Z"
     },
     "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+gc9fbab8)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)\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"
      ]
@@ -90,10 +90,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:17.005987Z",
-     "iopub.status.busy": "2024-08-08T02:57:17.005789Z",
-     "iopub.status.idle": "2024-08-08T02:57:17.296923Z",
-     "shell.execute_reply": "2024-08-08T02:57:17.296409Z"
+     "iopub.execute_input": "2024-08-09T20:30:12.165417Z",
+     "iopub.status.busy": "2024-08-09T20:30:12.165025Z",
+     "iopub.status.idle": "2024-08-09T20:30:12.457448Z",
+     "shell.execute_reply": "2024-08-09T20:30:12.456788Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -136,10 +136,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:17.299844Z",
-     "iopub.status.busy": "2024-08-08T02:57:17.299284Z",
-     "iopub.status.idle": "2024-08-08T02:57:17.551903Z",
-     "shell.execute_reply": "2024-08-08T02:57:17.551414Z"
+     "iopub.execute_input": "2024-08-09T20:30:12.460316Z",
+     "iopub.status.busy": "2024-08-09T20:30:12.459847Z",
+     "iopub.status.idle": "2024-08-09T20:30:12.741481Z",
+     "shell.execute_reply": "2024-08-09T20:30:12.740884Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -182,10 +182,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:17.554136Z",
-     "iopub.status.busy": "2024-08-08T02:57:17.553785Z",
-     "iopub.status.idle": "2024-08-08T02:57:17.577001Z",
-     "shell.execute_reply": "2024-08-08T02:57:17.576531Z"
+     "iopub.execute_input": "2024-08-09T20:30:12.744076Z",
+     "iopub.status.busy": "2024-08-09T20:30:12.743568Z",
+     "iopub.status.idle": "2024-08-09T20:30:12.767378Z",
+     "shell.execute_reply": "2024-08-09T20:30:12.766883Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1277,10 +1277,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:17.578948Z",
-     "iopub.status.busy": "2024-08-08T02:57:17.578779Z",
-     "iopub.status.idle": "2024-08-08T02:57:17.582367Z",
-     "shell.execute_reply": "2024-08-08T02:57:17.581877Z"
+     "iopub.execute_input": "2024-08-09T20:30:12.769642Z",
+     "iopub.status.busy": "2024-08-09T20:30:12.769303Z",
+     "iopub.status.idle": "2024-08-09T20:30:12.772686Z",
+     "shell.execute_reply": "2024-08-09T20:30:12.772119Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1326,10 +1326,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:17.584602Z",
-     "iopub.status.busy": "2024-08-08T02:57:17.584259Z",
-     "iopub.status.idle": "2024-08-08T02:57:17.587042Z",
-     "shell.execute_reply": "2024-08-08T02:57:17.586502Z"
+     "iopub.execute_input": "2024-08-09T20:30:12.774911Z",
+     "iopub.status.busy": "2024-08-09T20:30:12.774483Z",
+     "iopub.status.idle": "2024-08-09T20:30:12.777609Z",
+     "shell.execute_reply": "2024-08-09T20:30:12.777045Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1366,10 +1366,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:17.589520Z",
-     "iopub.status.busy": "2024-08-08T02:57:17.589011Z",
-     "iopub.status.idle": "2024-08-08T02:57:17.842590Z",
-     "shell.execute_reply": "2024-08-08T02:57:17.842009Z"
+     "iopub.execute_input": "2024-08-09T20:30:12.779785Z",
+     "iopub.status.busy": "2024-08-09T20:30:12.779418Z",
+     "iopub.status.idle": "2024-08-09T20:30:13.059551Z",
+     "shell.execute_reply": "2024-08-09T20:30:13.059034Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1976,10 +1976,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:17.844869Z",
-     "iopub.status.busy": "2024-08-08T02:57:17.844553Z",
-     "iopub.status.idle": "2024-08-08T02:57:18.093843Z",
-     "shell.execute_reply": "2024-08-08T02:57:18.093353Z"
+     "iopub.execute_input": "2024-08-09T20:30:13.061898Z",
+     "iopub.status.busy": "2024-08-09T20:30:13.061540Z",
+     "iopub.status.idle": "2024-08-09T20:30:13.495461Z",
+     "shell.execute_reply": "2024-08-09T20:30:13.494853Z"
     },
     "jupyter": {
      "outputs_hidden": false
diff --git a/examples/USGS_dataretrieval_Ratings_Examples.html b/examples/USGS_dataretrieval_Ratings_Examples.html
index e9b315a..25fd1c5 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+gc9fbab8 documentation
+  USGS dataretrieval Python Package get_ratings() Examples — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -128,7 +128,7 @@ 

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)
 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.1)
diff --git a/examples/USGS_dataretrieval_Ratings_Examples.ipynb b/examples/USGS_dataretrieval_Ratings_Examples.ipynb
index 8813d2c..1fcc4c6 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-08-08T02:57:19.601111Z",
-     "iopub.status.busy": "2024-08-08T02:57:19.600695Z",
-     "iopub.status.idle": "2024-08-08T02:57:20.346544Z",
-     "shell.execute_reply": "2024-08-08T02:57:20.345880Z"
+     "iopub.execute_input": "2024-08-09T20:30:14.976002Z",
+     "iopub.status.busy": "2024-08-09T20:30:14.975557Z",
+     "iopub.status.idle": "2024-08-09T20:30:15.727883Z",
+     "shell.execute_reply": "2024-08-09T20:30:15.727178Z"
     },
     "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+gc9fbab8)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)\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"
      ]
@@ -89,10 +89,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:20.349494Z",
-     "iopub.status.busy": "2024-08-08T02:57:20.349091Z",
-     "iopub.status.idle": "2024-08-08T02:57:20.641282Z",
-     "shell.execute_reply": "2024-08-08T02:57:20.640772Z"
+     "iopub.execute_input": "2024-08-09T20:30:15.730960Z",
+     "iopub.status.busy": "2024-08-09T20:30:15.730563Z",
+     "iopub.status.idle": "2024-08-09T20:30:16.024458Z",
+     "shell.execute_reply": "2024-08-09T20:30:16.023929Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -142,10 +142,10 @@
    "metadata": {
     "collapsed": true,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:20.644115Z",
-     "iopub.status.busy": "2024-08-08T02:57:20.643639Z",
-     "iopub.status.idle": "2024-08-08T02:57:20.733063Z",
-     "shell.execute_reply": "2024-08-08T02:57:20.732599Z"
+     "iopub.execute_input": "2024-08-09T20:30:16.027230Z",
+     "iopub.status.busy": "2024-08-09T20:30:16.026979Z",
+     "iopub.status.idle": "2024-08-09T20:30:16.291102Z",
+     "shell.execute_reply": "2024-08-09T20:30:16.290551Z"
     }
    },
    "outputs": [
@@ -200,10 +200,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:20.735324Z",
-     "iopub.status.busy": "2024-08-08T02:57:20.734953Z",
-     "iopub.status.idle": "2024-08-08T02:57:20.746006Z",
-     "shell.execute_reply": "2024-08-08T02:57:20.745552Z"
+     "iopub.execute_input": "2024-08-09T20:30:16.293427Z",
+     "iopub.status.busy": "2024-08-09T20:30:16.293073Z",
+     "iopub.status.idle": "2024-08-09T20:30:16.303995Z",
+     "shell.execute_reply": "2024-08-09T20:30:16.303488Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -363,10 +363,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:20.748196Z",
-     "iopub.status.busy": "2024-08-08T02:57:20.747850Z",
-     "iopub.status.idle": "2024-08-08T02:57:20.751110Z",
-     "shell.execute_reply": "2024-08-08T02:57:20.750569Z"
+     "iopub.execute_input": "2024-08-09T20:30:16.306284Z",
+     "iopub.status.busy": "2024-08-09T20:30:16.305852Z",
+     "iopub.status.idle": "2024-08-09T20:30:16.309652Z",
+     "shell.execute_reply": "2024-08-09T20:30:16.309097Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -407,10 +407,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:20.753215Z",
-     "iopub.status.busy": "2024-08-08T02:57:20.752868Z",
-     "iopub.status.idle": "2024-08-08T02:57:20.755938Z",
-     "shell.execute_reply": "2024-08-08T02:57:20.755453Z"
+     "iopub.execute_input": "2024-08-09T20:30:16.311970Z",
+     "iopub.status.busy": "2024-08-09T20:30:16.311490Z",
+     "iopub.status.idle": "2024-08-09T20:30:16.314616Z",
+     "shell.execute_reply": "2024-08-09T20:30:16.314051Z"
     },
     "pycharm": {
      "name": "#%%\n"
@@ -447,10 +447,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:20.758088Z",
-     "iopub.status.busy": "2024-08-08T02:57:20.757749Z",
-     "iopub.status.idle": "2024-08-08T02:57:20.850958Z",
-     "shell.execute_reply": "2024-08-08T02:57:20.850442Z"
+     "iopub.execute_input": "2024-08-09T20:30:16.316886Z",
+     "iopub.status.busy": "2024-08-09T20:30:16.316580Z",
+     "iopub.status.idle": "2024-08-09T20:30:16.395033Z",
+     "shell.execute_reply": "2024-08-09T20:30:16.394558Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/USGS_dataretrieval_SiteInfo_Examples.html b/examples/USGS_dataretrieval_SiteInfo_Examples.html
index f5e22dc..f34ae08 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+gc9fbab8 documentation
+  <no title> — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/USGS_dataretrieval_SiteInventory_Examples.html b/examples/USGS_dataretrieval_SiteInventory_Examples.html
index 4dc4a3a..b322e64 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+gc9fbab8 documentation
+  <no title> — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/USGS_dataretrieval_Statistics_Examples.html b/examples/USGS_dataretrieval_Statistics_Examples.html
index 708d4f3..fa8e329 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+gc9fbab8 documentation
+  USGS dataretrieval Python Package get_stats() Examples — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,7 +129,7 @@ 

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)
 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.1)
diff --git a/examples/USGS_dataretrieval_Statistics_Examples.ipynb b/examples/USGS_dataretrieval_Statistics_Examples.ipynb
index 78fc2bd..4b4e6e3 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-08-08T02:57:22.608598Z",
-     "iopub.status.busy": "2024-08-08T02:57:22.608108Z",
-     "iopub.status.idle": "2024-08-08T02:57:23.354131Z",
-     "shell.execute_reply": "2024-08-08T02:57:23.353465Z"
+     "iopub.execute_input": "2024-08-09T20:30:17.955851Z",
+     "iopub.status.busy": "2024-08-09T20:30:17.955387Z",
+     "iopub.status.idle": "2024-08-09T20:30:18.712357Z",
+     "shell.execute_reply": "2024-08-09T20:30:18.711460Z"
     },
     "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+gc9fbab8)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)\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"
      ]
@@ -90,10 +90,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:23.357003Z",
-     "iopub.status.busy": "2024-08-08T02:57:23.356794Z",
-     "iopub.status.idle": "2024-08-08T02:57:23.698110Z",
-     "shell.execute_reply": "2024-08-08T02:57:23.697606Z"
+     "iopub.execute_input": "2024-08-09T20:30:18.715238Z",
+     "iopub.status.busy": "2024-08-09T20:30:18.715035Z",
+     "iopub.status.idle": "2024-08-09T20:30:19.063550Z",
+     "shell.execute_reply": "2024-08-09T20:30:19.063002Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -138,10 +138,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:23.700927Z",
-     "iopub.status.busy": "2024-08-08T02:57:23.700549Z",
-     "iopub.status.idle": "2024-08-08T02:57:23.990692Z",
-     "shell.execute_reply": "2024-08-08T02:57:23.990157Z"
+     "iopub.execute_input": "2024-08-09T20:30:19.066201Z",
+     "iopub.status.busy": "2024-08-09T20:30:19.065957Z",
+     "iopub.status.idle": "2024-08-09T20:30:19.269003Z",
+     "shell.execute_reply": "2024-08-09T20:30:19.268449Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -186,10 +186,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:23.993006Z",
-     "iopub.status.busy": "2024-08-08T02:57:23.992652Z",
-     "iopub.status.idle": "2024-08-08T02:57:24.004549Z",
-     "shell.execute_reply": "2024-08-08T02:57:24.003968Z"
+     "iopub.execute_input": "2024-08-09T20:30:19.271231Z",
+     "iopub.status.busy": "2024-08-09T20:30:19.271048Z",
+     "iopub.status.idle": "2024-08-09T20:30:19.282803Z",
+     "shell.execute_reply": "2024-08-09T20:30:19.282235Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -523,10 +523,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:24.006772Z",
-     "iopub.status.busy": "2024-08-08T02:57:24.006457Z",
-     "iopub.status.idle": "2024-08-08T02:57:24.010076Z",
-     "shell.execute_reply": "2024-08-08T02:57:24.009587Z"
+     "iopub.execute_input": "2024-08-09T20:30:19.285077Z",
+     "iopub.status.busy": "2024-08-09T20:30:19.284724Z",
+     "iopub.status.idle": "2024-08-09T20:30:19.288361Z",
+     "shell.execute_reply": "2024-08-09T20:30:19.287768Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -569,10 +569,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:24.012024Z",
-     "iopub.status.busy": "2024-08-08T02:57:24.011845Z",
-     "iopub.status.idle": "2024-08-08T02:57:24.328664Z",
-     "shell.execute_reply": "2024-08-08T02:57:24.328127Z"
+     "iopub.execute_input": "2024-08-09T20:30:19.290593Z",
+     "iopub.status.busy": "2024-08-09T20:30:19.290194Z",
+     "iopub.status.idle": "2024-08-09T20:30:19.616727Z",
+     "shell.execute_reply": "2024-08-09T20:30:19.616086Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -623,10 +623,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:24.330977Z",
-     "iopub.status.busy": "2024-08-08T02:57:24.330619Z",
-     "iopub.status.idle": "2024-08-08T02:57:24.333732Z",
-     "shell.execute_reply": "2024-08-08T02:57:24.333204Z"
+     "iopub.execute_input": "2024-08-09T20:30:19.619275Z",
+     "iopub.status.busy": "2024-08-09T20:30:19.618904Z",
+     "iopub.status.idle": "2024-08-09T20:30:19.622114Z",
+     "shell.execute_reply": "2024-08-09T20:30:19.621558Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -674,10 +674,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:24.335938Z",
-     "iopub.status.busy": "2024-08-08T02:57:24.335589Z",
-     "iopub.status.idle": "2024-08-08T02:57:24.991929Z",
-     "shell.execute_reply": "2024-08-08T02:57:24.991385Z"
+     "iopub.execute_input": "2024-08-09T20:30:19.624354Z",
+     "iopub.status.busy": "2024-08-09T20:30:19.623998Z",
+     "iopub.status.idle": "2024-08-09T20:30:20.381031Z",
+     "shell.execute_reply": "2024-08-09T20:30:20.380427Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -904,10 +904,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:24.994074Z",
-     "iopub.status.busy": "2024-08-08T02:57:24.993721Z",
-     "iopub.status.idle": "2024-08-08T02:57:25.101410Z",
-     "shell.execute_reply": "2024-08-08T02:57:25.100900Z"
+     "iopub.execute_input": "2024-08-09T20:30:20.383417Z",
+     "iopub.status.busy": "2024-08-09T20:30:20.383057Z",
+     "iopub.status.idle": "2024-08-09T20:30:20.547599Z",
+     "shell.execute_reply": "2024-08-09T20:30:20.546996Z"
     },
     "jupyter": {
      "outputs_hidden": false
diff --git a/examples/USGS_dataretrieval_UnitValues_Examples.html b/examples/USGS_dataretrieval_UnitValues_Examples.html
index 9626b97..785a9e4 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+gc9fbab8 documentation
+  USGS dataretrieval Python Package get_iv() Examples — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -129,7 +129,7 @@ 

Install the Package

diff --git a/examples/USGS_dataretrieval_UnitValues_Examples.ipynb b/examples/USGS_dataretrieval_UnitValues_Examples.ipynb index 4190233..1af575c 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-08-08T02:57:26.696652Z", - "iopub.status.busy": "2024-08-08T02:57:26.696476Z", - "iopub.status.idle": "2024-08-08T02:57:27.439025Z", - "shell.execute_reply": "2024-08-08T02:57:27.438363Z" + "iopub.execute_input": "2024-08-09T20:30:22.176291Z", + "iopub.status.busy": "2024-08-09T20:30:22.175871Z", + "iopub.status.idle": "2024-08-09T20:30:22.942839Z", + "shell.execute_reply": "2024-08-09T20:30:22.942207Z" }, "jupyter": { "outputs_hidden": false @@ -52,15 +52,9 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)\r\n", + "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)\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" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + "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.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", @@ -90,10 +84,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:27.442155Z", - "iopub.status.busy": "2024-08-08T02:57:27.441748Z", - "iopub.status.idle": "2024-08-08T02:57:27.731748Z", - "shell.execute_reply": "2024-08-08T02:57:27.731209Z" + "iopub.execute_input": "2024-08-09T20:30:22.945919Z", + "iopub.status.busy": "2024-08-09T20:30:22.945447Z", + "iopub.status.idle": "2024-08-09T20:30:23.259249Z", + "shell.execute_reply": "2024-08-09T20:30:23.258690Z" }, "jupyter": { "outputs_hidden": false @@ -136,10 +130,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:27.734648Z", - "iopub.status.busy": "2024-08-08T02:57:27.734106Z", - "iopub.status.idle": "2024-08-08T02:57:28.116102Z", - "shell.execute_reply": "2024-08-08T02:57:28.115534Z" + "iopub.execute_input": "2024-08-09T20:30:23.262291Z", + "iopub.status.busy": "2024-08-09T20:30:23.261781Z", + "iopub.status.idle": "2024-08-09T20:30:23.544140Z", + "shell.execute_reply": "2024-08-09T20:30:23.543498Z" }, "jupyter": { "outputs_hidden": false @@ -186,10 +180,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:28.118288Z", - "iopub.status.busy": "2024-08-08T02:57:28.117968Z", - "iopub.status.idle": "2024-08-08T02:57:28.127393Z", - "shell.execute_reply": "2024-08-08T02:57:28.126831Z" + "iopub.execute_input": "2024-08-09T20:30:23.546349Z", + "iopub.status.busy": "2024-08-09T20:30:23.546159Z", + "iopub.status.idle": "2024-08-09T20:30:23.556113Z", + "shell.execute_reply": "2024-08-09T20:30:23.555495Z" }, "jupyter": { "outputs_hidden": false @@ -343,10 +337,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:28.129350Z", - "iopub.status.busy": "2024-08-08T02:57:28.129170Z", - "iopub.status.idle": "2024-08-08T02:57:28.132958Z", - "shell.execute_reply": "2024-08-08T02:57:28.132404Z" + "iopub.execute_input": "2024-08-09T20:30:23.558571Z", + "iopub.status.busy": "2024-08-09T20:30:23.558162Z", + "iopub.status.idle": "2024-08-09T20:30:23.562204Z", + "shell.execute_reply": "2024-08-09T20:30:23.561644Z" }, "jupyter": { "outputs_hidden": false @@ -384,10 +378,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:28.134928Z", - "iopub.status.busy": "2024-08-08T02:57:28.134748Z", - "iopub.status.idle": "2024-08-08T02:57:28.141901Z", - "shell.execute_reply": "2024-08-08T02:57:28.141439Z" + "iopub.execute_input": "2024-08-09T20:30:23.564491Z", + "iopub.status.busy": "2024-08-09T20:30:23.564024Z", + "iopub.status.idle": "2024-08-09T20:30:23.571775Z", + "shell.execute_reply": "2024-08-09T20:30:23.571153Z" }, "jupyter": { "outputs_hidden": false @@ -492,10 +486,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:28.144035Z", - "iopub.status.busy": "2024-08-08T02:57:28.143855Z", - "iopub.status.idle": "2024-08-08T02:57:30.182406Z", - "shell.execute_reply": "2024-08-08T02:57:30.181850Z" + "iopub.execute_input": "2024-08-09T20:30:23.574044Z", + "iopub.status.busy": "2024-08-09T20:30:23.573854Z", + "iopub.status.idle": "2024-08-09T20:30:25.666988Z", + "shell.execute_reply": "2024-08-09T20:30:25.666409Z" }, "jupyter": { "outputs_hidden": false @@ -545,10 +539,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:30.184850Z", - "iopub.status.busy": "2024-08-08T02:57:30.184408Z", - "iopub.status.idle": "2024-08-08T02:57:30.187803Z", - "shell.execute_reply": "2024-08-08T02:57:30.187301Z" + "iopub.execute_input": "2024-08-09T20:30:25.669636Z", + "iopub.status.busy": "2024-08-09T20:30:25.669130Z", + "iopub.status.idle": "2024-08-09T20:30:25.672805Z", + "shell.execute_reply": "2024-08-09T20:30:25.672280Z" }, "jupyter": { "outputs_hidden": false @@ -587,10 +581,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:30.189877Z", - "iopub.status.busy": "2024-08-08T02:57:30.189703Z", - "iopub.status.idle": "2024-08-08T02:57:30.445303Z", - "shell.execute_reply": "2024-08-08T02:57:30.444802Z" + "iopub.execute_input": "2024-08-09T20:30:25.675046Z", + "iopub.status.busy": "2024-08-09T20:30:25.674688Z", + "iopub.status.idle": "2024-08-09T20:30:26.061772Z", + "shell.execute_reply": "2024-08-09T20:30:26.061125Z" }, "jupyter": { "outputs_hidden": false @@ -760,10 +754,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:30.447360Z", - "iopub.status.busy": "2024-08-08T02:57:30.447151Z", - "iopub.status.idle": "2024-08-08T02:57:30.516253Z", - "shell.execute_reply": "2024-08-08T02:57:30.515773Z" + "iopub.execute_input": "2024-08-09T20:30:26.064345Z", + "iopub.status.busy": "2024-08-09T20:30:26.063875Z", + "iopub.status.idle": "2024-08-09T20:30:26.167338Z", + "shell.execute_reply": "2024-08-09T20:30:26.166730Z" }, "jupyter": { "outputs_hidden": false @@ -777,7 +771,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Retrieved 0 data values.\n" + "Retrieved 62 data values.\n" ] }, { @@ -802,21 +796,104 @@ " \n", " \n", " site_no\n", + " 00060\n", + " 00060_cd\n", " \n", " \n", " datetime\n", " \n", + " \n", + " \n", " \n", " \n", " \n", + " \n", + " 2024-08-09 05:00:00+00:00\n", + " 05114000\n", + " 41.7\n", + " P\n", + " \n", + " \n", + " 2024-08-09 05:15:00+00:00\n", + " 05114000\n", + " 41.9\n", + " P\n", + " \n", + " \n", + " 2024-08-09 05:30:00+00:00\n", + " 05114000\n", + " 41.9\n", + " P\n", + " \n", + " \n", + " 2024-08-09 05:45:00+00:00\n", + " 05114000\n", + " 41.7\n", + " P\n", + " \n", + " \n", + " 2024-08-09 06:00:00+00:00\n", + " 05114000\n", + " 41.6\n", + " P\n", + " \n", + " \n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " \n", + " \n", + " 2024-08-09 19:15:00+00:00\n", + " 05114000\n", + " 35.9\n", + " P\n", + " \n", + " \n", + " 2024-08-09 19:30:00+00:00\n", + " 05114000\n", + " 35.8\n", + " P\n", + " \n", + " \n", + " 2024-08-09 19:45:00+00:00\n", + " 05114000\n", + " 35.8\n", + " P\n", + " \n", + " \n", + " 2024-08-09 20:00:00+00:00\n", + " 05114000\n", + " 35.7\n", + " P\n", + " \n", + " \n", + " 2024-08-09 20:15:00+00:00\n", + " 05114000\n", + " 35.8\n", + " P\n", + " \n", " \n", "\n", + "

62 rows × 3 columns

\n", "

" ], "text/plain": [ - "Empty DataFrame\n", - "Columns: [site_no]\n", - "Index: []" + " site_no 00060 00060_cd\n", + "datetime \n", + "2024-08-09 05:00:00+00:00 05114000 41.7 P\n", + "2024-08-09 05:15:00+00:00 05114000 41.9 P\n", + "2024-08-09 05:30:00+00:00 05114000 41.9 P\n", + "2024-08-09 05:45:00+00:00 05114000 41.7 P\n", + "2024-08-09 06:00:00+00:00 05114000 41.6 P\n", + "... ... ... ...\n", + "2024-08-09 19:15:00+00:00 05114000 35.9 P\n", + "2024-08-09 19:30:00+00:00 05114000 35.8 P\n", + "2024-08-09 19:45:00+00:00 05114000 35.8 P\n", + "2024-08-09 20:00:00+00:00 05114000 35.7 P\n", + "2024-08-09 20:15:00+00:00 05114000 35.8 P\n", + "\n", + "[62 rows x 3 columns]" ] }, "metadata": {}, @@ -849,10 +926,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:30.518539Z", - "iopub.status.busy": "2024-08-08T02:57:30.518097Z", - "iopub.status.idle": "2024-08-08T02:57:30.791670Z", - "shell.execute_reply": "2024-08-08T02:57:30.791191Z" + "iopub.execute_input": "2024-08-09T20:30:26.169982Z", + "iopub.status.busy": "2024-08-09T20:30:26.169596Z", + "iopub.status.idle": "2024-08-09T20:30:26.378438Z", + "shell.execute_reply": "2024-08-09T20:30:26.377744Z" }, "jupyter": { "outputs_hidden": false @@ -1019,10 +1096,10 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2024-08-08T02:57:30.793724Z", - "iopub.status.busy": "2024-08-08T02:57:30.793438Z", - "iopub.status.idle": "2024-08-08T02:57:31.075065Z", - "shell.execute_reply": "2024-08-08T02:57:31.074579Z" + "iopub.execute_input": "2024-08-09T20:30:26.380953Z", + "iopub.status.busy": "2024-08-09T20:30:26.380523Z", + "iopub.status.idle": "2024-08-09T20:30:26.555469Z", + "shell.execute_reply": "2024-08-09T20:30:26.554927Z" }, "jupyter": { "outputs_hidden": false diff --git a/examples/USGS_dataretrieval_WaterSamples_Examples.html b/examples/USGS_dataretrieval_WaterSamples_Examples.html index 22b8d06..f433cb8 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+gc9fbab8 documentation + USGS dataretrieval Python Package get_qwdata() Examples — dataretrieval 0.1.dev1+g2293a51 documentation @@ -16,7 +16,7 @@ - + @@ -129,7 +129,7 @@

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)
 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.1)
diff --git a/examples/USGS_dataretrieval_WaterSamples_Examples.ipynb b/examples/USGS_dataretrieval_WaterSamples_Examples.ipynb
index e7ae8e6..8c79088 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-08-08T02:57:32.911629Z",
-     "iopub.status.busy": "2024-08-08T02:57:32.911456Z",
-     "iopub.status.idle": "2024-08-08T02:57:33.654080Z",
-     "shell.execute_reply": "2024-08-08T02:57:33.653361Z"
+     "iopub.execute_input": "2024-08-09T20:30:28.422017Z",
+     "iopub.status.busy": "2024-08-09T20:30:28.421823Z",
+     "iopub.status.idle": "2024-08-09T20:30:29.192267Z",
+     "shell.execute_reply": "2024-08-09T20:30:29.191472Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -52,15 +52,9 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)\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"
-     ]
-    },
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
+      "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.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",
@@ -90,10 +84,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:33.657119Z",
-     "iopub.status.busy": "2024-08-08T02:57:33.656730Z",
-     "iopub.status.idle": "2024-08-08T02:57:33.967666Z",
-     "shell.execute_reply": "2024-08-08T02:57:33.967119Z"
+     "iopub.execute_input": "2024-08-09T20:30:29.195066Z",
+     "iopub.status.busy": "2024-08-09T20:30:29.194847Z",
+     "iopub.status.idle": "2024-08-09T20:30:29.508428Z",
+     "shell.execute_reply": "2024-08-09T20:30:29.507888Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -139,10 +133,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:33.970740Z",
-     "iopub.status.busy": "2024-08-08T02:57:33.970118Z",
-     "iopub.status.idle": "2024-08-08T02:57:34.884683Z",
-     "shell.execute_reply": "2024-08-08T02:57:34.884108Z"
+     "iopub.execute_input": "2024-08-09T20:30:29.511228Z",
+     "iopub.status.busy": "2024-08-09T20:30:29.510784Z",
+     "iopub.status.idle": "2024-08-09T20:30:32.011878Z",
+     "shell.execute_reply": "2024-08-09T20:30:32.011241Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -210,10 +204,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:34.886876Z",
-     "iopub.status.busy": "2024-08-08T02:57:34.886689Z",
-     "iopub.status.idle": "2024-08-08T02:57:34.905196Z",
-     "shell.execute_reply": "2024-08-08T02:57:34.904713Z"
+     "iopub.execute_input": "2024-08-09T20:30:32.014343Z",
+     "iopub.status.busy": "2024-08-09T20:30:32.013977Z",
+     "iopub.status.idle": "2024-08-09T20:30:32.033481Z",
+     "shell.execute_reply": "2024-08-09T20:30:32.032977Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -670,10 +664,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:34.907210Z",
-     "iopub.status.busy": "2024-08-08T02:57:34.907009Z",
-     "iopub.status.idle": "2024-08-08T02:57:34.911016Z",
-     "shell.execute_reply": "2024-08-08T02:57:34.910471Z"
+     "iopub.execute_input": "2024-08-09T20:30:32.035870Z",
+     "iopub.status.busy": "2024-08-09T20:30:32.035402Z",
+     "iopub.status.idle": "2024-08-09T20:30:32.039930Z",
+     "shell.execute_reply": "2024-08-09T20:30:32.039398Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -768,10 +762,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:34.913160Z",
-     "iopub.status.busy": "2024-08-08T02:57:34.912833Z",
-     "iopub.status.idle": "2024-08-08T02:57:34.915600Z",
-     "shell.execute_reply": "2024-08-08T02:57:34.915027Z"
+     "iopub.execute_input": "2024-08-09T20:30:32.042219Z",
+     "iopub.status.busy": "2024-08-09T20:30:32.041859Z",
+     "iopub.status.idle": "2024-08-09T20:30:32.044961Z",
+     "shell.execute_reply": "2024-08-09T20:30:32.044389Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -808,10 +802,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:34.917750Z",
-     "iopub.status.busy": "2024-08-08T02:57:34.917399Z",
-     "iopub.status.idle": "2024-08-08T02:57:36.230819Z",
-     "shell.execute_reply": "2024-08-08T02:57:36.230215Z"
+     "iopub.execute_input": "2024-08-09T20:30:32.047055Z",
+     "iopub.status.busy": "2024-08-09T20:30:32.046769Z",
+     "iopub.status.idle": "2024-08-09T20:30:33.663302Z",
+     "shell.execute_reply": "2024-08-09T20:30:33.662701Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1271,10 +1265,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:36.232995Z",
-     "iopub.status.busy": "2024-08-08T02:57:36.232813Z",
-     "iopub.status.idle": "2024-08-08T02:57:37.454452Z",
-     "shell.execute_reply": "2024-08-08T02:57:37.453864Z"
+     "iopub.execute_input": "2024-08-09T20:30:33.665571Z",
+     "iopub.status.busy": "2024-08-09T20:30:33.665225Z",
+     "iopub.status.idle": "2024-08-09T20:30:35.811519Z",
+     "shell.execute_reply": "2024-08-09T20:30:35.810967Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -2650,10 +2644,10 @@
    "execution_count": 9,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:37.456792Z",
-     "iopub.status.busy": "2024-08-08T02:57:37.456439Z",
-     "iopub.status.idle": "2024-08-08T02:57:38.226187Z",
-     "shell.execute_reply": "2024-08-08T02:57:38.225645Z"
+     "iopub.execute_input": "2024-08-09T20:30:35.813793Z",
+     "iopub.status.busy": "2024-08-09T20:30:35.813604Z",
+     "iopub.status.idle": "2024-08-09T20:30:36.634626Z",
+     "shell.execute_reply": "2024-08-09T20:30:36.634022Z"
     }
    },
    "outputs": [
diff --git a/examples/USGS_dataretrieval_WaterUse_Examples.html b/examples/USGS_dataretrieval_WaterUse_Examples.html
index c6e7fd6..bb27340 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+gc9fbab8 documentation
+  USGS dataretrieval Python Package get_water_use() Examples — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
@@ -128,7 +128,7 @@ 

Install the Package
 Defaulting to user installation because normal site-packages is not writeable
-Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)
+Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)
 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.1)
diff --git a/examples/USGS_dataretrieval_WaterUse_Examples.ipynb b/examples/USGS_dataretrieval_WaterUse_Examples.ipynb
index e906372..d6d5391 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-08-08T02:57:39.811749Z",
-     "iopub.status.busy": "2024-08-08T02:57:39.811574Z",
-     "iopub.status.idle": "2024-08-08T02:57:40.556479Z",
-     "shell.execute_reply": "2024-08-08T02:57:40.555742Z"
+     "iopub.execute_input": "2024-08-09T20:30:38.251266Z",
+     "iopub.status.busy": "2024-08-09T20:30:38.251079Z",
+     "iopub.status.idle": "2024-08-09T20:30:39.016117Z",
+     "shell.execute_reply": "2024-08-09T20:30:39.015453Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -52,15 +52,9 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+gc9fbab8)\r\n",
+      "Requirement already satisfied: dataretrieval in /home/runner/.local/lib/python3.10/site-packages (0.1.dev1+g2293a51)\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"
-     ]
-    },
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
+      "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.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",
@@ -90,10 +84,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:40.559550Z",
-     "iopub.status.busy": "2024-08-08T02:57:40.559351Z",
-     "iopub.status.idle": "2024-08-08T02:57:40.847643Z",
-     "shell.execute_reply": "2024-08-08T02:57:40.847078Z"
+     "iopub.execute_input": "2024-08-09T20:30:39.018837Z",
+     "iopub.status.busy": "2024-08-09T20:30:39.018629Z",
+     "iopub.status.idle": "2024-08-09T20:30:39.319556Z",
+     "shell.execute_reply": "2024-08-09T20:30:39.319020Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -141,10 +135,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:40.850519Z",
-     "iopub.status.busy": "2024-08-08T02:57:40.850101Z",
-     "iopub.status.idle": "2024-08-08T02:57:45.256765Z",
-     "shell.execute_reply": "2024-08-08T02:57:45.256194Z"
+     "iopub.execute_input": "2024-08-09T20:30:39.322256Z",
+     "iopub.status.busy": "2024-08-09T20:30:39.321981Z",
+     "iopub.status.idle": "2024-08-09T20:30:43.467669Z",
+     "shell.execute_reply": "2024-08-09T20:30:43.467065Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -195,10 +189,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:45.259400Z",
-     "iopub.status.busy": "2024-08-08T02:57:45.258881Z",
-     "iopub.status.idle": "2024-08-08T02:57:45.276969Z",
-     "shell.execute_reply": "2024-08-08T02:57:45.276503Z"
+     "iopub.execute_input": "2024-08-09T20:30:43.469925Z",
+     "iopub.status.busy": "2024-08-09T20:30:43.469735Z",
+     "iopub.status.idle": "2024-08-09T20:30:43.487605Z",
+     "shell.execute_reply": "2024-08-09T20:30:43.487059Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -755,10 +749,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:45.279307Z",
-     "iopub.status.busy": "2024-08-08T02:57:45.278927Z",
-     "iopub.status.idle": "2024-08-08T02:57:45.282515Z",
-     "shell.execute_reply": "2024-08-08T02:57:45.281956Z"
+     "iopub.execute_input": "2024-08-09T20:30:43.489890Z",
+     "iopub.status.busy": "2024-08-09T20:30:43.489559Z",
+     "iopub.status.idle": "2024-08-09T20:30:43.493027Z",
+     "shell.execute_reply": "2024-08-09T20:30:43.492467Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -810,10 +804,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:45.284652Z",
-     "iopub.status.busy": "2024-08-08T02:57:45.284307Z",
-     "iopub.status.idle": "2024-08-08T02:57:48.182147Z",
-     "shell.execute_reply": "2024-08-08T02:57:48.181623Z"
+     "iopub.execute_input": "2024-08-09T20:30:43.495168Z",
+     "iopub.status.busy": "2024-08-09T20:30:43.494820Z",
+     "iopub.status.idle": "2024-08-09T20:30:46.665591Z",
+     "shell.execute_reply": "2024-08-09T20:30:46.665082Z"
     },
     "jupyter": {
      "outputs_hidden": false
@@ -1383,10 +1377,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:48.184382Z",
-     "iopub.status.busy": "2024-08-08T02:57:48.184024Z",
-     "iopub.status.idle": "2024-08-08T02:57:49.854928Z",
-     "shell.execute_reply": "2024-08-08T02:57:49.854454Z"
+     "iopub.execute_input": "2024-08-09T20:30:46.667964Z",
+     "iopub.status.busy": "2024-08-09T20:30:46.667521Z",
+     "iopub.status.idle": "2024-08-09T20:30:50.482043Z",
+     "shell.execute_reply": "2024-08-09T20:30:50.481445Z"
     },
     "jupyter": {
      "outputs_hidden": false
diff --git a/examples/index.html b/examples/index.html
index 1526471..44c892e 100644
--- a/examples/index.html
+++ b/examples/index.html
@@ -4,7 +4,7 @@
   
 
   
-  Examples — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  Examples — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/nwisdemo01.html b/examples/nwisdemo01.html
index 914b3e3..5b6b42f 100644
--- a/examples/nwisdemo01.html
+++ b/examples/nwisdemo01.html
@@ -4,7 +4,7 @@
   
 
   
-  National trends in peak annual streamflow — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  National trends in peak annual streamflow — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/nwisdemo01.ipynb b/examples/nwisdemo01.ipynb
index 0980a81..e7fae77 100644
--- a/examples/nwisdemo01.ipynb
+++ b/examples/nwisdemo01.ipynb
@@ -24,10 +24,10 @@
    "execution_count": 1,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:51.346393Z",
-     "iopub.status.busy": "2024-08-08T02:57:51.346217Z",
-     "iopub.status.idle": "2024-08-08T02:57:51.486610Z",
-     "shell.execute_reply": "2024-08-08T02:57:51.486081Z"
+     "iopub.execute_input": "2024-08-09T20:30:52.214766Z",
+     "iopub.status.busy": "2024-08-09T20:30:52.214585Z",
+     "iopub.status.idle": "2024-08-09T20:30:52.359232Z",
+     "shell.execute_reply": "2024-08-09T20:30:52.358611Z"
     }
    },
    "outputs": [
@@ -66,10 +66,10 @@
    "execution_count": 2,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:51.488983Z",
-     "iopub.status.busy": "2024-08-08T02:57:51.488535Z",
-     "iopub.status.idle": "2024-08-08T02:57:51.500080Z",
-     "shell.execute_reply": "2024-08-08T02:57:51.499604Z"
+     "iopub.execute_input": "2024-08-09T20:30:52.361874Z",
+     "iopub.status.busy": "2024-08-09T20:30:52.361408Z",
+     "iopub.status.idle": "2024-08-09T20:30:52.373648Z",
+     "shell.execute_reply": "2024-08-09T20:30:52.373053Z"
     }
    },
    "outputs": [
@@ -117,10 +117,10 @@
    "execution_count": 3,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:51.502442Z",
-     "iopub.status.busy": "2024-08-08T02:57:51.501947Z",
-     "iopub.status.idle": "2024-08-08T02:57:51.506194Z",
-     "shell.execute_reply": "2024-08-08T02:57:51.505589Z"
+     "iopub.execute_input": "2024-08-09T20:30:52.376005Z",
+     "iopub.status.busy": "2024-08-09T20:30:52.375817Z",
+     "iopub.status.idle": "2024-08-09T20:30:52.380185Z",
+     "shell.execute_reply": "2024-08-09T20:30:52.379583Z"
     }
    },
    "outputs": [],
@@ -157,10 +157,10 @@
    "execution_count": 4,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:51.508410Z",
-     "iopub.status.busy": "2024-08-08T02:57:51.508126Z",
-     "iopub.status.idle": "2024-08-08T02:57:51.512277Z",
-     "shell.execute_reply": "2024-08-08T02:57:51.511713Z"
+     "iopub.execute_input": "2024-08-09T20:30:52.382452Z",
+     "iopub.status.busy": "2024-08-09T20:30:52.382098Z",
+     "iopub.status.idle": "2024-08-09T20:30:52.386350Z",
+     "shell.execute_reply": "2024-08-09T20:30:52.385864Z"
     }
    },
    "outputs": [],
@@ -210,10 +210,10 @@
    "execution_count": 5,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:51.514539Z",
-     "iopub.status.busy": "2024-08-08T02:57:51.514112Z",
-     "iopub.status.idle": "2024-08-08T02:57:51.517012Z",
-     "shell.execute_reply": "2024-08-08T02:57:51.516439Z"
+     "iopub.execute_input": "2024-08-09T20:30:52.388533Z",
+     "iopub.status.busy": "2024-08-09T20:30:52.388181Z",
+     "iopub.status.idle": "2024-08-09T20:30:52.390658Z",
+     "shell.execute_reply": "2024-08-09T20:30:52.390152Z"
     }
    },
    "outputs": [],
@@ -239,10 +239,10 @@
    "execution_count": 6,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:51.519133Z",
-     "iopub.status.busy": "2024-08-08T02:57:51.518795Z",
-     "iopub.status.idle": "2024-08-08T02:57:51.529564Z",
-     "shell.execute_reply": "2024-08-08T02:57:51.529002Z"
+     "iopub.execute_input": "2024-08-09T20:30:52.392865Z",
+     "iopub.status.busy": "2024-08-09T20:30:52.392527Z",
+     "iopub.status.idle": "2024-08-09T20:30:52.404193Z",
+     "shell.execute_reply": "2024-08-09T20:30:52.403588Z"
     }
    },
    "outputs": [
@@ -283,10 +283,10 @@
    "execution_count": 7,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:51.531870Z",
-     "iopub.status.busy": "2024-08-08T02:57:51.531463Z",
-     "iopub.status.idle": "2024-08-08T02:57:51.534412Z",
-     "shell.execute_reply": "2024-08-08T02:57:51.533953Z"
+     "iopub.execute_input": "2024-08-09T20:30:52.406522Z",
+     "iopub.status.busy": "2024-08-09T20:30:52.406230Z",
+     "iopub.status.idle": "2024-08-09T20:30:52.409231Z",
+     "shell.execute_reply": "2024-08-09T20:30:52.408730Z"
     }
    },
    "outputs": [],
diff --git a/examples/readme_examples.html b/examples/readme_examples.html
index 607913e..ad8e106 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+gc9fbab8 documentation
+  Examples from the Readme file on retrieving NWIS data — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/rvignettes.html b/examples/rvignettes.html
index e9d28b2..7226d47 100644
--- a/examples/rvignettes.html
+++ b/examples/rvignettes.html
@@ -4,7 +4,7 @@
   
 
   
-  Python Equivalents to R Vignette Examples — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  Python Equivalents to R Vignette Examples — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
       
@@ -16,7 +16,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/examples/rvignettes.ipynb b/examples/rvignettes.ipynb
index ac777a7..669b6b1 100644
--- a/examples/rvignettes.ipynb
+++ b/examples/rvignettes.ipynb
@@ -12,10 +12,10 @@
    "execution_count": 1,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:52.871484Z",
-     "iopub.status.busy": "2024-08-08T02:57:52.871040Z",
-     "iopub.status.idle": "2024-08-08T02:57:53.153928Z",
-     "shell.execute_reply": "2024-08-08T02:57:53.153393Z"
+     "iopub.execute_input": "2024-08-09T20:30:54.079329Z",
+     "iopub.status.busy": "2024-08-09T20:30:54.079154Z",
+     "iopub.status.idle": "2024-08-09T20:30:54.379481Z",
+     "shell.execute_reply": "2024-08-09T20:30:54.378939Z"
     }
    },
    "outputs": [],
@@ -38,10 +38,10 @@
    "execution_count": 2,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:53.156697Z",
-     "iopub.status.busy": "2024-08-08T02:57:53.156211Z",
-     "iopub.status.idle": "2024-08-08T02:57:55.140093Z",
-     "shell.execute_reply": "2024-08-08T02:57:55.139580Z"
+     "iopub.execute_input": "2024-08-09T20:30:54.382217Z",
+     "iopub.status.busy": "2024-08-09T20:30:54.381906Z",
+     "iopub.status.idle": "2024-08-09T20:30:56.779964Z",
+     "shell.execute_reply": "2024-08-09T20:30:56.779357Z"
     }
    },
    "outputs": [
@@ -94,10 +94,10 @@
    "execution_count": 3,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:55.142401Z",
-     "iopub.status.busy": "2024-08-08T02:57:55.142045Z",
-     "iopub.status.idle": "2024-08-08T02:57:55.287633Z",
-     "shell.execute_reply": "2024-08-08T02:57:55.287086Z"
+     "iopub.execute_input": "2024-08-09T20:30:56.782464Z",
+     "iopub.status.busy": "2024-08-09T20:30:56.782242Z",
+     "iopub.status.idle": "2024-08-09T20:30:56.910673Z",
+     "shell.execute_reply": "2024-08-09T20:30:56.910107Z"
     }
    },
    "outputs": [],
@@ -116,10 +116,10 @@
    "execution_count": 4,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:55.289745Z",
-     "iopub.status.busy": "2024-08-08T02:57:55.289407Z",
-     "iopub.status.idle": "2024-08-08T02:57:55.402203Z",
-     "shell.execute_reply": "2024-08-08T02:57:55.401622Z"
+     "iopub.execute_input": "2024-08-09T20:30:56.913318Z",
+     "iopub.status.busy": "2024-08-09T20:30:56.912957Z",
+     "iopub.status.idle": "2024-08-09T20:30:57.077601Z",
+     "shell.execute_reply": "2024-08-09T20:30:57.076921Z"
     }
    },
    "outputs": [],
@@ -139,10 +139,10 @@
    "execution_count": 5,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:55.404409Z",
-     "iopub.status.busy": "2024-08-08T02:57:55.404221Z",
-     "iopub.status.idle": "2024-08-08T02:57:55.763218Z",
-     "shell.execute_reply": "2024-08-08T02:57:55.762684Z"
+     "iopub.execute_input": "2024-08-09T20:30:57.080428Z",
+     "iopub.status.busy": "2024-08-09T20:30:57.080045Z",
+     "iopub.status.idle": "2024-08-09T20:30:57.284159Z",
+     "shell.execute_reply": "2024-08-09T20:30:57.283542Z"
     },
     "pycharm": {
      "is_executing": false
@@ -164,10 +164,10 @@
    "execution_count": 6,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:55.765367Z",
-     "iopub.status.busy": "2024-08-08T02:57:55.765020Z",
-     "iopub.status.idle": "2024-08-08T02:57:55.982494Z",
-     "shell.execute_reply": "2024-08-08T02:57:55.981993Z"
+     "iopub.execute_input": "2024-08-09T20:30:57.286527Z",
+     "iopub.status.busy": "2024-08-09T20:30:57.286320Z",
+     "iopub.status.idle": "2024-08-09T20:30:57.612727Z",
+     "shell.execute_reply": "2024-08-09T20:30:57.612164Z"
     }
    },
    "outputs": [],
@@ -196,10 +196,10 @@
    "execution_count": 7,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:55.984576Z",
-     "iopub.status.busy": "2024-08-08T02:57:55.984244Z",
-     "iopub.status.idle": "2024-08-08T02:57:56.138356Z",
-     "shell.execute_reply": "2024-08-08T02:57:56.137824Z"
+     "iopub.execute_input": "2024-08-09T20:30:57.615333Z",
+     "iopub.status.busy": "2024-08-09T20:30:57.614982Z",
+     "iopub.status.idle": "2024-08-09T20:30:57.746903Z",
+     "shell.execute_reply": "2024-08-09T20:30:57.746325Z"
     }
    },
    "outputs": [],
@@ -229,10 +229,10 @@
    "execution_count": 8,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:56.140729Z",
-     "iopub.status.busy": "2024-08-08T02:57:56.140549Z",
-     "iopub.status.idle": "2024-08-08T02:57:56.469398Z",
-     "shell.execute_reply": "2024-08-08T02:57:56.468888Z"
+     "iopub.execute_input": "2024-08-09T20:30:57.749494Z",
+     "iopub.status.busy": "2024-08-09T20:30:57.749163Z",
+     "iopub.status.idle": "2024-08-09T20:30:58.055947Z",
+     "shell.execute_reply": "2024-08-09T20:30:58.055286Z"
     }
    },
    "outputs": [],
@@ -257,10 +257,10 @@
    "execution_count": 9,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:56.471551Z",
-     "iopub.status.busy": "2024-08-08T02:57:56.471232Z",
-     "iopub.status.idle": "2024-08-08T02:57:58.027410Z",
-     "shell.execute_reply": "2024-08-08T02:57:58.026869Z"
+     "iopub.execute_input": "2024-08-09T20:30:58.058418Z",
+     "iopub.status.busy": "2024-08-09T20:30:58.058225Z",
+     "iopub.status.idle": "2024-08-09T20:30:59.882171Z",
+     "shell.execute_reply": "2024-08-09T20:30:59.881593Z"
     }
    },
    "outputs": [
@@ -298,10 +298,10 @@
    "execution_count": 10,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:58.029564Z",
-     "iopub.status.busy": "2024-08-08T02:57:58.029216Z",
-     "iopub.status.idle": "2024-08-08T02:57:58.540276Z",
-     "shell.execute_reply": "2024-08-08T02:57:58.539797Z"
+     "iopub.execute_input": "2024-08-09T20:30:59.884794Z",
+     "iopub.status.busy": "2024-08-09T20:30:59.884426Z",
+     "iopub.status.idle": "2024-08-09T20:31:00.632714Z",
+     "shell.execute_reply": "2024-08-09T20:31:00.632077Z"
     }
    },
    "outputs": [
@@ -328,10 +328,10 @@
    "execution_count": 11,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:58.542310Z",
-     "iopub.status.busy": "2024-08-08T02:57:58.541964Z",
-     "iopub.status.idle": "2024-08-08T02:57:58.951471Z",
-     "shell.execute_reply": "2024-08-08T02:57:58.950890Z"
+     "iopub.execute_input": "2024-08-09T20:31:00.635026Z",
+     "iopub.status.busy": "2024-08-09T20:31:00.634667Z",
+     "iopub.status.idle": "2024-08-09T20:31:01.100577Z",
+     "shell.execute_reply": "2024-08-09T20:31:01.099989Z"
     }
    },
    "outputs": [],
@@ -349,10 +349,10 @@
    "execution_count": 12,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:58.953583Z",
-     "iopub.status.busy": "2024-08-08T02:57:58.953303Z",
-     "iopub.status.idle": "2024-08-08T02:57:59.009781Z",
-     "shell.execute_reply": "2024-08-08T02:57:59.009272Z"
+     "iopub.execute_input": "2024-08-09T20:31:01.103270Z",
+     "iopub.status.busy": "2024-08-09T20:31:01.102901Z",
+     "iopub.status.idle": "2024-08-09T20:31:01.183517Z",
+     "shell.execute_reply": "2024-08-09T20:31:01.182861Z"
     }
    },
    "outputs": [],
@@ -369,10 +369,10 @@
    "execution_count": 13,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:59.011814Z",
-     "iopub.status.busy": "2024-08-08T02:57:59.011491Z",
-     "iopub.status.idle": "2024-08-08T02:57:59.259828Z",
-     "shell.execute_reply": "2024-08-08T02:57:59.259245Z"
+     "iopub.execute_input": "2024-08-09T20:31:01.186057Z",
+     "iopub.status.busy": "2024-08-09T20:31:01.185857Z",
+     "iopub.status.idle": "2024-08-09T20:31:01.711169Z",
+     "shell.execute_reply": "2024-08-09T20:31:01.710592Z"
     }
    },
    "outputs": [],
@@ -387,10 +387,10 @@
    "execution_count": 14,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:57:59.262066Z",
-     "iopub.status.busy": "2024-08-08T02:57:59.261730Z",
-     "iopub.status.idle": "2024-08-08T02:58:00.730958Z",
-     "shell.execute_reply": "2024-08-08T02:58:00.730448Z"
+     "iopub.execute_input": "2024-08-09T20:31:01.713647Z",
+     "iopub.status.busy": "2024-08-09T20:31:01.713456Z",
+     "iopub.status.idle": "2024-08-09T20:31:03.175265Z",
+     "shell.execute_reply": "2024-08-09T20:31:03.174672Z"
     }
    },
    "outputs": [],
@@ -412,10 +412,10 @@
    "execution_count": 15,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:58:00.733130Z",
-     "iopub.status.busy": "2024-08-08T02:58:00.732783Z",
-     "iopub.status.idle": "2024-08-08T02:58:00.991539Z",
-     "shell.execute_reply": "2024-08-08T02:58:00.990995Z"
+     "iopub.execute_input": "2024-08-09T20:31:03.177715Z",
+     "iopub.status.busy": "2024-08-09T20:31:03.177518Z",
+     "iopub.status.idle": "2024-08-09T20:31:03.487794Z",
+     "shell.execute_reply": "2024-08-09T20:31:03.487181Z"
     }
    },
    "outputs": [],
@@ -433,10 +433,10 @@
    "execution_count": 16,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:58:00.993626Z",
-     "iopub.status.busy": "2024-08-08T02:58:00.993216Z",
-     "iopub.status.idle": "2024-08-08T02:58:00.995939Z",
-     "shell.execute_reply": "2024-08-08T02:58:00.995361Z"
+     "iopub.execute_input": "2024-08-09T20:31:03.490473Z",
+     "iopub.status.busy": "2024-08-09T20:31:03.490109Z",
+     "iopub.status.idle": "2024-08-09T20:31:03.492718Z",
+     "shell.execute_reply": "2024-08-09T20:31:03.492217Z"
     }
    },
    "outputs": [],
@@ -456,10 +456,10 @@
    "execution_count": 17,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:58:00.997961Z",
-     "iopub.status.busy": "2024-08-08T02:58:00.997656Z",
-     "iopub.status.idle": "2024-08-08T02:58:01.000255Z",
-     "shell.execute_reply": "2024-08-08T02:58:00.999681Z"
+     "iopub.execute_input": "2024-08-09T20:31:03.494847Z",
+     "iopub.status.busy": "2024-08-09T20:31:03.494510Z",
+     "iopub.status.idle": "2024-08-09T20:31:03.496947Z",
+     "shell.execute_reply": "2024-08-09T20:31:03.496499Z"
     }
    },
    "outputs": [],
@@ -479,10 +479,10 @@
    "execution_count": 18,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:58:01.002191Z",
-     "iopub.status.busy": "2024-08-08T02:58:01.001888Z",
-     "iopub.status.idle": "2024-08-08T02:58:01.004452Z",
-     "shell.execute_reply": "2024-08-08T02:58:01.003864Z"
+     "iopub.execute_input": "2024-08-09T20:31:03.499143Z",
+     "iopub.status.busy": "2024-08-09T20:31:03.498730Z",
+     "iopub.status.idle": "2024-08-09T20:31:03.501132Z",
+     "shell.execute_reply": "2024-08-09T20:31:03.500677Z"
     }
    },
    "outputs": [],
@@ -499,10 +499,10 @@
    "execution_count": 19,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:58:01.006717Z",
-     "iopub.status.busy": "2024-08-08T02:58:01.006164Z",
-     "iopub.status.idle": "2024-08-08T02:58:01.008927Z",
-     "shell.execute_reply": "2024-08-08T02:58:01.008353Z"
+     "iopub.execute_input": "2024-08-09T20:31:03.503234Z",
+     "iopub.status.busy": "2024-08-09T20:31:03.502910Z",
+     "iopub.status.idle": "2024-08-09T20:31:03.505568Z",
+     "shell.execute_reply": "2024-08-09T20:31:03.504992Z"
     }
    },
    "outputs": [],
@@ -519,10 +519,10 @@
    "execution_count": 20,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:58:01.010903Z",
-     "iopub.status.busy": "2024-08-08T02:58:01.010576Z",
-     "iopub.status.idle": "2024-08-08T02:58:01.013170Z",
-     "shell.execute_reply": "2024-08-08T02:58:01.012674Z"
+     "iopub.execute_input": "2024-08-09T20:31:03.507617Z",
+     "iopub.status.busy": "2024-08-09T20:31:03.507291Z",
+     "iopub.status.idle": "2024-08-09T20:31:03.509947Z",
+     "shell.execute_reply": "2024-08-09T20:31:03.509357Z"
     }
    },
    "outputs": [],
@@ -540,10 +540,10 @@
    "execution_count": 21,
    "metadata": {
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:58:01.015282Z",
-     "iopub.status.busy": "2024-08-08T02:58:01.014918Z",
-     "iopub.status.idle": "2024-08-08T02:58:01.129860Z",
-     "shell.execute_reply": "2024-08-08T02:58:01.129355Z"
+     "iopub.execute_input": "2024-08-09T20:31:03.511958Z",
+     "iopub.status.busy": "2024-08-09T20:31:03.511777Z",
+     "iopub.status.idle": "2024-08-09T20:31:03.620395Z",
+     "shell.execute_reply": "2024-08-09T20:31:03.619772Z"
     }
    },
    "outputs": [
@@ -568,10 +568,10 @@
    "metadata": {
     "collapsed": false,
     "execution": {
-     "iopub.execute_input": "2024-08-08T02:58:01.132051Z",
-     "iopub.status.busy": "2024-08-08T02:58:01.131707Z",
-     "iopub.status.idle": "2024-08-08T02:58:01.178479Z",
-     "shell.execute_reply": "2024-08-08T02:58:01.177906Z"
+     "iopub.execute_input": "2024-08-09T20:31:03.622696Z",
+     "iopub.status.busy": "2024-08-09T20:31:03.622509Z",
+     "iopub.status.idle": "2024-08-09T20:31:03.689435Z",
+     "shell.execute_reply": "2024-08-09T20:31:03.688777Z"
     },
     "pycharm": {
      "name": "#%%\n"
diff --git a/examples/siteinfo_examples.html b/examples/siteinfo_examples.html
index 8c917d1..c7b171d 100644
--- a/examples/siteinfo_examples.html
+++ b/examples/siteinfo_examples.html
@@ -4,7 +4,7 @@
   
 
   
-  Retrieving site information — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  Retrieving site information — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/genindex.html b/genindex.html
index f6a0d32..408819f 100644
--- a/genindex.html
+++ b/genindex.html
@@ -3,7 +3,7 @@
 
   
   
-  Index — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  Index — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -14,7 +14,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/index.html b/index.html
index d5c772e..2f9462d 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
   
 
   
-  Welcome — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  Welcome — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/meta/contributing.html b/meta/contributing.html
index 56f0e51..2b8a97a 100644
--- a/meta/contributing.html
+++ b/meta/contributing.html
@@ -4,7 +4,7 @@
   
 
   
-  Contributing — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  Contributing — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/meta/installing.html b/meta/installing.html
index 3dac0d1..5c47474 100644
--- a/meta/installing.html
+++ b/meta/installing.html
@@ -4,7 +4,7 @@
   
 
   
-  Installation Guide — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  Installation Guide — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/meta/license.html b/meta/license.html
index a6c2094..094be40 100644
--- a/meta/license.html
+++ b/meta/license.html
@@ -4,7 +4,7 @@
   
 
   
-  License and Disclaimer — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  License and Disclaimer — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/py-modindex.html b/py-modindex.html
index 2aa4211..9cb8d61 100644
--- a/py-modindex.html
+++ b/py-modindex.html
@@ -3,7 +3,7 @@
 
   
   
-  Python Module Index — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  Python Module Index — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -14,7 +14,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/reference/index.html b/reference/index.html
index f7986f8..1771a41 100644
--- a/reference/index.html
+++ b/reference/index.html
@@ -4,7 +4,7 @@
   
 
   
-  API reference — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  API reference — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/reference/nadp.html b/reference/nadp.html
index 17865bb..e4d696c 100644
--- a/reference/nadp.html
+++ b/reference/nadp.html
@@ -4,7 +4,7 @@
   
 
   
-  dataretrieval.nadp — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  dataretrieval.nadp — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/reference/nwis.html b/reference/nwis.html
index ce6c6a1..473ce7c 100644
--- a/reference/nwis.html
+++ b/reference/nwis.html
@@ -4,7 +4,7 @@
   
 
   
-  dataretrieval.nwis — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  dataretrieval.nwis — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/reference/streamstats.html b/reference/streamstats.html
index e9a6c31..d9bcdba 100644
--- a/reference/streamstats.html
+++ b/reference/streamstats.html
@@ -4,7 +4,7 @@
   
 
   
-  dataretrieval.streamstats — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  dataretrieval.streamstats — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/reference/utils.html b/reference/utils.html
index 3d46eca..5adaa69 100644
--- a/reference/utils.html
+++ b/reference/utils.html
@@ -4,7 +4,7 @@
   
 
   
-  dataretrieval.utils — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  dataretrieval.utils — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/reference/wqp.html b/reference/wqp.html
index b95722f..30c9da1 100644
--- a/reference/wqp.html
+++ b/reference/wqp.html
@@ -4,7 +4,7 @@
   
 
   
-  dataretrieval.wqp — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  dataretrieval.wqp — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/search.html b/search.html
index 0ac66a5..96ea209 100644
--- a/search.html
+++ b/search.html
@@ -3,7 +3,7 @@
 
   
   
-  Search — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  Search — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/searchindex.js b/searchindex.js
index 24ac422..e840dd7 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, 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, "4750": 4, "47591a": 10, "476": 2, "477": 2, "478": [2, 9], "479": [2, 11], "48": 11, "480": [2, 9], "481": [2, 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, "gc9fbab8": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11], "gcc": 10, "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
+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, 9, 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, 9, 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, 9, 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, 9, 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, "4750": 4, "47591a": 10, "476": 2, "477": 2, "478": [2, 9], "479": [2, 11], "48": 11, "480": [2, 9], "481": [2, 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": [9, 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], "g2293a51": [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": [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": [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], "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 4ef8821..1a4e6a2 100644
--- a/userguide/dataportals.html
+++ b/userguide/dataportals.html
@@ -4,7 +4,7 @@
   
 
   
-  Data Portals — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  Data Portals — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/userguide/index.html b/userguide/index.html
index a314d3c..b217f06 100644
--- a/userguide/index.html
+++ b/userguide/index.html
@@ -4,7 +4,7 @@
   
 
   
-  User Guide — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  User Guide — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+        
         
         
         
diff --git a/userguide/timeconventions.html b/userguide/timeconventions.html
index bf4e1a6..18c202f 100644
--- a/userguide/timeconventions.html
+++ b/userguide/timeconventions.html
@@ -4,7 +4,7 @@
   
 
   
-  Datetime Information — dataretrieval 0.1.dev1+gc9fbab8 documentation
+  Datetime Information — dataretrieval 0.1.dev1+g2293a51 documentation
       
       
 
@@ -15,7 +15,7 @@
   
         
         
-        
+