Skip to main content

A polyline smoothing package for shapely.

Project description

PyPI version shields.io

shapelysmooth is a polyline smoothing package for Python - mainly intended for use on shapely LineStrings and Polygons.

Requirements

This package requires

  • Python >=3.6
  • shapely

Installation

Build from source, or

pip install shapelysmooth

Methods

Currently, three smoothing methods are provided, suited to different use cases.

Taubin Smoothing - taubin_smooth


>>> from shapelysmooth import taubin_smooth
>>> smoothed_geometry = taubin_smooth(geometry, factor, mu, steps)

Taubin polyline smoothing.

Parameters

geometry : LineString | Polygon | list

Geometric object consisting of polylines to smooth. A shapely.geometry.Linestring or shapely.geometry.Polygon or a list containing tuples of $(x, y)$ coordinates.

factor : float

How far each node is moved toward the average position of its neighbours during every second iteration. $0 <$ factor $< 1$. Default value: $\mathbf{0.5}$.

mu : float

How far each node is moved opposite the direction of the average position of its neighbours during every second iteration. $0 <$ -mu $< 1$. Default value: $\mathbf{-0.5}$.

steps : int

Number of smoothing steps. Default value: $\mathbf{5}$.

Returns

output : LineString | Polygon | List

The smoothed geometry.


The Laplacian smoothing algorithm defines for each interior node in a polyline consisting of nodes $(p_0, p_1,..., p_n)$ the Laplacian, $L$, of node $p_i$ as $$L(p_i)=\frac{1}{2}p_{i+1}+\frac{1}{2}p_{i-1}-p_i.$$ For a given factor $\lambda$, node $p_i$ is at each iteration redefined as: $$p_i\leftarrow p_i+\lambda L(p_i).$$ Geometrically this corresponds to moving $p_i$ a fraction $\lambda$ of the distance toward the average of its neighbouring nodes, in the direction of that average. However, this will cause cause shrinkage, i.e. closed polylines will eventually collapse to a point. Taubin smoothing prevents this by, at every second iteration, instead redefining each node $p_i$ as $$p_i\leftarrow p_i+\mu L(p_i),$$ where $0<-\mu<1$. This corresponds to moving $p_i$ a fraction $-\mu$ of the distance toward the average of it's neighbouring nodes, but in the opposite direction to that of the average. One step of Taubin smoothing therefore consists of two iterations of Laplacian smoothing, with different factors - one positive one negative.

See

Gabriel Taubin. 1995. Curve and Surface Smoothing Without Shrinkage. IEEE International Conference on Computer Vision. 852-857.

The implementation also supports closed polylines and polygons (with or without holes).

Chaikin Interpolation - chaikin_smooth


>>> from shapelysmooth import chaikin_smooth
>>> smoothed_geometry = chaikin_smooth(geometry, iters, keep_ends)

Polyline smoothing based on Chaikin's Corner Cutting algorithm.

Parameters

geometry : LineString | Polygon | list

Geometric object consisting of polylines to smooth. A shapely.geometry.Linestring or shapely.geometry.Polygon or a list containing tuples of $(x, y)$ coordinates.

iters : int

Number of iterations. Default value: $\mathbf{5}$.

keep_ends : bool

Preserve the original start and end nodes of the polyline. Not applicable to closed polylines and polygons. (The original algorithm results in a contraction of the start and end nodes). Default value: True.

Returns

output : LineString | Polygon | List

The smoothed geometry.


Chaikin's Corner Cutting algorithm smooths a polyline by iterative refinement of the nodes of the polyline. At each iteration, every node is replaced by two new nodes: one a quarter of the way to the next node, and one quarter of the way to the previous node.

Note that the algorithm (roughly) doubles the amount of nodes at each iteration, therefore care should be taken when selecting the number of iterations.

Instead of the original iterative algorithm by Chaikin, this implementation makes use of the equivalent multi-step algorithm introduced by Wu et al. See

Ling Wu, Jun-Hai Yong, You-Wei Zhang, and Li Zhang. 2004. Multi-step Subdivision Algorithm for Chaikin Curves. In Proceedings of the First international conference on Computational and Information Science (CIS'04). Springer-Verlag, Berlin, Heidelberg. 1232–1238.

By default, the algorithm will not contract the endpoints of an open polyline. Set the keep_ends parameter if this behaviour is unwanted.

The implementation also supports closed polylines and polygons (with or without holes).

Catmull-Rom Spline Interpolation - catmull_rom_smooth


>>> from shapelysmooth import catmull_rom_smooth
>>> smoothed_geometry = catmull_rom_smooth(geometry, alpha, subdivs)

Polyline smoothing using Catmull-Rom splines.

Parameters

geometry : LineString | Polygon | list

Geometric object consisting of polylines to smooth. A shapely.geometry.Linestring or shapely.geometry.Polygon or a list containing tuples of $(x, y)$ coordinates.

alpha : float

Tension parameter. $0 \leq$ alpha $\leq 1$. For uniform Catmull-Rom splines, alpha $= 0$. For centripetal Catmull-Rom splines, alpha $= 0.5$. For chordal Catmull-Rom splines, alpha $= 1.0$. Default value: $\mathbf{0.5}$.

subdivs : int

Number of subdivisions of each polyline segment. Default value: $\mathbf{10}$.

Returns

output : LineString | Polygon | List

The smoothed geometry.


Catmull-Rom splines are a class of cubic splines which can be efficiently calculated, and have the property that they pass through each interpolation node. The splines are piecewise-defined, but have $C^1$ continuity throughout.

For more detail see

Edwin Catmull, Raphael Rom. 1974. A Class of Local Interpolating Splines. Computer Aided Geometric Design. Academic Press. 317-326.

This implementation makes use of the algorithm proposed by Barry and Goldman, see

Philip Barry and Ronald Goldman. 1988. Recursive evaluation algorithm for a class of Catmull-Rom splines. ACM Siggraph Computer Graphics. 22. 199-204.

There are three types of Catmull-Rom splines: uniform, centripetal and chordal, which are determined by tension parameter, $\alpha$, values of $0$, $0.5$ and $1$, respectively. Note that uniform Catmull-Rom splines may contain spurious self-intersections.

The implementation also supports closed polylines and polygons (with or without holes).

Smoothing Collections of Geometries

Objects of type shapely.geometry.MultiLineString and shapely.geometry.MultiPolygon can be smoothed by making use of the geoms property provided by these classes.

>>> from shapely.geometry import MultiPolygon
>>> from shapelysmooth import chaikin_smooth
>>> polys = MultiPolygon(...)
>>> smoothed_polys = MultiPolygon([chaikin_smooth(poly) for poly in polys.geoms])

Smoothing Geometries stored in Numpy Arrays

Given a numpy.array of shape $(n, 2)$ (thus containing $n$ 2-dimensional coordinates or nodes), it can be smoothed as follows.

>>> import numpy as np
>>> from shapelysmooth import chaikin_smooth
>>> array = np.array(...)
>>> array_smoothed = np.array(chaikin_smooth(list(map(tuple, array))))

Direct support for Numpy arrays is being worked on for a future version.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

shapelysmooth-0.2.0-pp310-pypy310_pp73-win_amd64.whl (65.1 kB view hashes)

Uploaded PyPy Windows x86-64

shapelysmooth-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.7 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

shapelysmooth-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (106.4 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ i686

shapelysmooth-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (67.1 kB view hashes)

Uploaded PyPy macOS 11.0+ ARM64

shapelysmooth-0.2.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (70.2 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

shapelysmooth-0.2.0-pp39-pypy39_pp73-win_amd64.whl (65.2 kB view hashes)

Uploaded PyPy Windows x86-64

shapelysmooth-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.5 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

shapelysmooth-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (106.3 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ i686

shapelysmooth-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (67.1 kB view hashes)

Uploaded PyPy macOS 11.0+ ARM64

shapelysmooth-0.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (70.2 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

shapelysmooth-0.2.0-pp38-pypy38_pp73-win_amd64.whl (65.2 kB view hashes)

Uploaded PyPy Windows x86-64

shapelysmooth-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.3 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

shapelysmooth-0.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (106.3 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ i686

shapelysmooth-0.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (67.1 kB view hashes)

Uploaded PyPy macOS 11.0+ ARM64

shapelysmooth-0.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (70.2 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

shapelysmooth-0.2.0-pp37-pypy37_pp73-win_amd64.whl (64.9 kB view hashes)

Uploaded PyPy Windows x86-64

shapelysmooth-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.9 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

shapelysmooth-0.2.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (106.7 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ i686

shapelysmooth-0.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (69.9 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

shapelysmooth-0.2.0-cp312-cp312-win_amd64.whl (66.3 kB view hashes)

Uploaded CPython 3.12 Windows x86-64

shapelysmooth-0.2.0-cp312-cp312-win32.whl (59.0 kB view hashes)

Uploaded CPython 3.12 Windows x86

shapelysmooth-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl (622.6 kB view hashes)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

shapelysmooth-0.2.0-cp312-cp312-musllinux_1_1_i686.whl (680.8 kB view hashes)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

shapelysmooth-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.3 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

shapelysmooth-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (111.4 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

shapelysmooth-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (66.4 kB view hashes)

Uploaded CPython 3.12 macOS 11.0+ ARM64

shapelysmooth-0.2.0-cp312-cp312-macosx_10_9_x86_64.whl (68.6 kB view hashes)

Uploaded CPython 3.12 macOS 10.9+ x86-64

shapelysmooth-0.2.0-cp311-cp311-win_amd64.whl (66.2 kB view hashes)

Uploaded CPython 3.11 Windows x86-64

shapelysmooth-0.2.0-cp311-cp311-win32.whl (58.8 kB view hashes)

Uploaded CPython 3.11 Windows x86

shapelysmooth-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (622.6 kB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

shapelysmooth-0.2.0-cp311-cp311-musllinux_1_1_i686.whl (681.1 kB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

shapelysmooth-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (104.8 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

shapelysmooth-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (110.3 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

shapelysmooth-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (67.8 kB view hashes)

Uploaded CPython 3.11 macOS 11.0+ ARM64

shapelysmooth-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (69.9 kB view hashes)

Uploaded CPython 3.11 macOS 10.9+ x86-64

shapelysmooth-0.2.0-cp310-cp310-win_amd64.whl (64.9 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

shapelysmooth-0.2.0-cp310-cp310-win32.whl (57.5 kB view hashes)

Uploaded CPython 3.10 Windows x86

shapelysmooth-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (621.6 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

shapelysmooth-0.2.0-cp310-cp310-musllinux_1_1_i686.whl (679.8 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

shapelysmooth-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (103.0 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

shapelysmooth-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (109.7 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

shapelysmooth-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (66.4 kB view hashes)

Uploaded CPython 3.10 macOS 11.0+ ARM64

shapelysmooth-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (68.4 kB view hashes)

Uploaded CPython 3.10 macOS 10.9+ x86-64

shapelysmooth-0.2.0-cp39-cp39-win_amd64.whl (64.9 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

shapelysmooth-0.2.0-cp39-cp39-win32.whl (57.6 kB view hashes)

Uploaded CPython 3.9 Windows x86

shapelysmooth-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl (621.6 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

shapelysmooth-0.2.0-cp39-cp39-musllinux_1_1_i686.whl (679.6 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

shapelysmooth-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (102.9 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

shapelysmooth-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (109.6 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

shapelysmooth-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (66.5 kB view hashes)

Uploaded CPython 3.9 macOS 11.0+ ARM64

shapelysmooth-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (68.5 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

shapelysmooth-0.2.0-cp38-cp38-win_amd64.whl (65.1 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

shapelysmooth-0.2.0-cp38-cp38-win32.whl (57.7 kB view hashes)

Uploaded CPython 3.8 Windows x86

shapelysmooth-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl (621.4 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

shapelysmooth-0.2.0-cp38-cp38-musllinux_1_1_i686.whl (679.4 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

shapelysmooth-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (102.7 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

shapelysmooth-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (109.4 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

shapelysmooth-0.2.0-cp38-cp38-macosx_11_0_arm64.whl (66.3 kB view hashes)

Uploaded CPython 3.8 macOS 11.0+ ARM64

shapelysmooth-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl (68.2 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

shapelysmooth-0.2.0-cp37-cp37m-win_amd64.whl (65.5 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

shapelysmooth-0.2.0-cp37-cp37m-win32.whl (58.6 kB view hashes)

Uploaded CPython 3.7m Windows x86

shapelysmooth-0.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl (622.8 kB view hashes)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

shapelysmooth-0.2.0-cp37-cp37m-musllinux_1_1_i686.whl (681.3 kB view hashes)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

shapelysmooth-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (104.8 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

shapelysmooth-0.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (111.6 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

shapelysmooth-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (68.3 kB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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