98 watershed
Retrieving watershed boundaries from the National Hydrography Dataset (NHD)
Uncomment the following line to install leafmap if needed.
In [1]:
Copied!
# %pip install -U leafmap
# %pip install -U leafmap
In [2]:
Copied!
import leafmap
import leafmap
In [3]:
Copied!
point_geometry = {"x": -114.452985, "y": 36.13323}
point_geometry = {"x": -114.452985, "y": 36.13323}
In [4]:
Copied!
gdf = leafmap.get_wbd(point_geometry, digit=8, return_geometry=True)
gdf.explore()
gdf = leafmap.get_wbd(point_geometry, digit=8, return_geometry=True)
gdf.explore()
Out[4]:
Make this Notebook Trusted to load map: File -> Trust Notebook