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/part0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ Part 0: General Python Exercises
notebooks/part0_python_intro/solutions/08_pandas.ipynb
notebooks/part0_python_intro/09_a_Geopandas.ipynb
notebooks/part0_python_intro/solutions/09_Geopandas__solutions.ipynb
notebooks/part0_python_intro/10_Rasterio.ipynb
notebooks/part0_python_intro/10a_Rasterio_into.ipynb
notebooks/part0_python_intro/10b_Rasterio_advanced.ipynb
notebooks/part0_python_intro/11_xarray_mt_rainier_precip.ipynb
6 changes: 3 additions & 3 deletions notebooks/part0_python_intro/10a_Rasterio_into.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@
"id": "93db6aca-4edc-4f14-b673-dcd87d23844c",
"metadata": {},
"source": [
"# Writing Raster files\n",
"## Writing Raster files\n",
"\n",
"Writing a file with `rasterio` involves defining the characteristics of the output raster and then writing your data array to it.\n",
"\n",
Expand All @@ -482,7 +482,7 @@
"id": "55a916ce-8685-42f0-824f-768eeb0a2efb",
"metadata": {},
"source": [
"## A word on transforms\n",
"### A word on transforms\n",
"\n",
"In a raster dataset, an affine transformation is a mathematical mapping that relates the dataset's internal pixel coordinates to a real-world coordinate system. This process, known as georeferencing, allows software to correctly display, scale, and align the image with other spatial data. \n",
"\n",
Expand Down Expand Up @@ -627,7 +627,7 @@
"id": "76b88127-d745-4ef6-b102-b383aa28ecf6",
"metadata": {},
"source": [
"# Building a raster from scratch"
"## Building a raster from scratch"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@
"id": "93db6aca-4edc-4f14-b673-dcd87d23844c",
"metadata": {},
"source": [
"# Writing Raster files\n",
"## Writing Raster files\n",
"\n",
"Writing a file with `rasterio` involves defining the characteristics of the output raster and then writing your data array to it.\n",
"\n",
Expand Down Expand Up @@ -891,7 +891,7 @@
"id": "76b88127-d745-4ef6-b102-b383aa28ecf6",
"metadata": {},
"source": [
"# Building a raster from scratch"
"## Building a raster from scratch"
]
},
{
Expand Down
Loading