Skip to main content

Calculate the centerline of a polygon

Project description

https://travis-ci.org/fitodic/centerline.svg?branch=master https://coveralls.io/repos/github/fitodic/centerline/badge.svg?branch=master Version

Calculate the centerline of a polygon.

Roads, rivers and similar linear structures are often represented by long and complex polygons. Since one of the most important attributes of a linear structure is its length, extracting that attribute from a polygon can prove to be more or less difficult.

Installation:

You can download the package from PyPI:

$ pip install centerline

This package has several dependencies, including Numpy, Scipy and GDAL/OGR.

If you are installing these packages in the virtual environement, make sure you have all the necessary dependencies on your system. Furthermore, after installing GDAL locate the GDAL headers:

$ whereis gdal
gdal: /usr/include/gdal /usr/share/gdal

and set the include path using the following environment variables:

$ export CPLUS_INCLUDE_PATH=/usr/include/gdal/
$ export C_INCLUDE_PATH=/usr/include/gdal/

After that, you can proceed to installing GDAL in the virtual environment.

It is important to note that the versions of GDAL installed globally and in the virtual environment should match!

For more info, visit Stack Exchange.

Usage:

If you are planning on using this package inside of your own code, just type:

>>> from centerline import Centerline

However, if you just want to convert a Shapefile full of polygons into a Shapefile full of centerlines, use the command line tool:

$ shp2centerline INPUT_PATH.shp OUTPUT_PATH.shp [BORDER_DENSITY]

The BORDER_DENSITY parameter is optional. If not specified, the default value is 0.5.

Warning: The INPUT_PATH.shp file needs to have a column called id with unique values or the script will fail to execute successfully.

References:

When defining the density factor, one has to take into account the coordinate system defined in the Shapefile. The script was designed to handle metric coordinate systems, so the density factor is by default 0.5 (meters). For instance, if the value is set to 0.5 m, it basically places additional points on the border at the distance of 0.5 m from each other. If the user doesn’t define the value (see Usage), the script uses the default value. If the value is a negative number, it will be converted into a positive number.

It appears that the Voronoi function available in the SciPy module does not handle large coordinates very well. Since most of the coordinates are large numbers, a bounding box is needed to determine the minimal X and Y coordinates, i.e. the bottom left corner of the bounding box. These values are then used for coordinate reduction. Once the Voronoi diagram is created the coordinates are returned to their non-reduced form before creating LineStrings.

Example Screenshot

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

centerline-0.2.1.tar.gz (128.0 kB view hashes)

Uploaded Source

Built Distribution

centerline-0.2.1-py27-none-any.whl (8.6 kB view hashes)

Uploaded Python 2.7

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page