Skip to content

Commit 7819b63

Browse files
authored
Merge pull request #175 from ntdosch/rasterio_fix_paths
Fix remaining paths to old rasterio notebook
2 parents cfd821d + 2aa4d71 commit 7819b63

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

docs/source/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,8 @@
272272
source_path / 'part0_python_intro/09_a_Geopandas.ipynb',
273273
source_path / 'part0_python_intro/data/geopandas',
274274
source_path / 'part0_python_intro/solutions/09_Geopandas__solutions.ipynb',
275-
source_path / 'part0_python_intro/10_Rasterio.ipynb',
275+
source_path / 'part0_python_intro/10a_Rasterio_intro.ipynb',
276+
source_path / 'part0_python_intro/10b_Rasterio_advanced.ipynb',
276277
source_path / 'part0_python_intro/11_xarray_mt_rainier_precip.ipynb',
277278
source_path / 'part1_flopy//01-Flopy-intro.ipynb',
278279
source_path / 'part1_flopy/solutions/02-Building-Post-Processing-MODFLOW6__solutions.ipynb',

notebooks/clear_all_notebooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# all solutions are still not being cleared
99

1010
skip_notebooks = [
11-
#'10_Rasterio.ipynb',
11+
#'10b_Rasterio_advanced.ipynb',
1212
#'11_xarray_mt_rainier_precip.ipynb',
1313
#'09_Geopandas_ABQ.ipynb',
1414
#'03_Loading_and_visualizing_models-solutions.ipynb',

notebooks/part0_python_intro/11_xarray_mt_rainier_precip.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@
10181018
"metadata": {},
10191019
"source": [
10201020
"### Clip to a shapefile area\n",
1021-
"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)."
1021+
"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)."
10221022
]
10231023
},
10241024
{

0 commit comments

Comments
 (0)