Skip to content
Open
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
2 changes: 1 addition & 1 deletion raster_layers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ Polygonize a Raster Band

Turn a single raster band into a vector polygon!

If you haven't before, notice that some of the `gdal utilties <http://www.gdal.org/gdal_utilities.html>`_
If you haven't before, notice that some of the `gdal utilities <http://www.gdal.org/gdal_utilities.html>`_
are actually Python scripts. Go find them on your computer, read the source code and mine them for API tricks.
It turns out the `gdal_polygonize utility <http://www.gdal.org/gdal_polygonize.html>`_
just wraps a call to `GDALFPolygonize <http://www.gdal.org/gdal__alg_8h.html#a3f522a9035d3512b5d414fb4752671b1>`_
Expand Down
4 changes: 2 additions & 2 deletions vector_layers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,7 @@ The `ogr2ogr command line tool <http://www.gdal.org/ogr2ogr.html>`_ is an easy w

Merge OGR Layers
-------------------
This recipe merges OGR Layers within a directory. Files can be specfied based on with what they start and end.
This recipe merges OGR Layers within a directory. Files can be specified based on with what they start and end.

.. code-block:: python

Expand Down Expand Up @@ -1208,7 +1208,7 @@ This recipe creates a fishnet grid.

Convert polygon shapefile to line shapefile
-------------------
This recipe converts a poylgon shapefile to a line shapefile
This recipe converts a polygon shapefile to a line shapefile

.. code-block:: python

Expand Down