Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@
source_path / 'part0_python_intro/09_a_Geopandas.ipynb',
source_path / 'part0_python_intro/data/geopandas',
source_path / 'part0_python_intro/solutions/09_Geopandas__solutions.ipynb',
source_path / 'part0_python_intro/10_Rasterio.ipynb',
source_path / 'part0_python_intro/10a_Rasterio_intro.ipynb',
source_path / 'part0_python_intro/10b_Rasterio_advanced.ipynb',
source_path / 'part0_python_intro/11_xarray_mt_rainier_precip.ipynb',
source_path / 'part1_flopy//01-Flopy-intro.ipynb',
source_path / 'part1_flopy/solutions/02-Building-Post-Processing-MODFLOW6__solutions.ipynb',
Expand Down
2 changes: 1 addition & 1 deletion notebooks/clear_all_notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# all solutions are still not being cleared

skip_notebooks = [
#'10_Rasterio.ipynb',
#'10b_Rasterio_advanced.ipynb',
#'11_xarray_mt_rainier_precip.ipynb',
#'09_Geopandas_ABQ.ipynb',
#'03_Loading_and_visualizing_models-solutions.ipynb',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,7 @@
"metadata": {},
"source": [
"### Clip to a shapefile area\n",
"Sometimes we may want to clip a dataset to a geographic area defined by a polygon shapefile. We can read a shapefile into a GeoDataFrame using `geopandas`. In this case, we'll just use the glacier polygons from the [Rasterio: Mt. Rainier glaciers example](https://github.com/DOI-USGS/python-for-hydrology/blob/main/notebooks/part0_python_intro/10_Rasterio.ipynb)."
"Sometimes we may want to clip a dataset to a geographic area defined by a polygon shapefile. We can read a shapefile into a GeoDataFrame using `geopandas`. In this case, we'll just use the glacier polygons from the [Rasterio: Mt. Rainier glaciers example](https://github.com/DOI-USGS/python-for-hydrology/blob/main/notebooks/part0_python_intro/10b_Rasterio_advanced.ipynb)."
]
},
{
Expand Down
Loading