You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make ref table function way simpler and more efficient (#209)
* make ref table function way simpler and more efficient
* add more documentation, an example
* add in the deduplication line
* add required packages for gpd.explore in docs and move a requirement to docs section of pyproject.toml
* Update dataretrieval/waterdata/api.py
Co-authored-by: Joe Zemmels (he/him) <jzemmels@gmail.com>
* update notebook to pip install all required packages and fix small change
---------
Co-authored-by: Joe Zemmels (he/him) <jzemmels@gmail.com>
Copy file name to clipboardExpand all lines: demos/WaterData_demo.ipynb
+11-14Lines changed: 11 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -87,20 +87,17 @@
87
87
"metadata": {},
88
88
"source": [
89
89
"## Examples\n",
90
-
"Let's get into some examples using the functions listed above. First, we need to load the `waterdata` module and a few other packages and functions to go through the examples. To run the entirety of this notebook, you will need to install `dataretrieval`, `matplotlib`, and `geopandas` packages. `matplotlib` is needed to create the plots, and `geopandas` is needed to create the interactive maps."
91
-
]
92
-
},
93
-
{
94
-
"cell_type": "code",
95
-
"execution_count": null,
96
-
"id": "cd626a14",
97
-
"metadata": {},
98
-
"outputs": [],
99
-
"source": [
100
-
"# Install necessary packages to run notebook\n",
90
+
"Let's get into some examples using the functions listed above. First, we need to load the `waterdata` module and a few other packages and functions to go through the examples. To run the entirety of this notebook, you will need to install `dataretrieval`, `matplotlib`, and `geopandas` packages (plus dependencies). `matplotlib` is needed to create the plots, and `geopandas` is needed to create the interactive maps.\n",
91
+
"\n",
92
+
"Note that if you use conda rather than pip, you do not need to install folium and mapclassify separately, as they are included in the conda-forge geopandas install.\n",
0 commit comments