Skip to main content

Fast linestring simplification using RDP or Visvalingam-Whyatt and a Rust binary

Project description

[![Build Status](https://travis-ci.org/urschrei/simplification.svg?branch=master)](https://travis-ci.org/urschrei/simplification) [![Build status](https://ci.appveyor.com/api/projects/status/0n7d5iwb3uqhsos6/branch/master?svg=true)](https://ci.appveyor.com/project/urschrei/simplification/branch/master) [![Coverage Status](https://coveralls.io/repos/github/urschrei/simplification/badge.svg?branch=master)](https://coveralls.io/github/urschrei/simplification?branch=master)

# Simplification
Simplify a LineString using the [Ramer–Douglas–Peucker](https://en.wikipedia.org/wiki/Ramer–Douglas–Peucker_algorithm) or [Visvalingam-Whyatt](https://bost.ocks.org/mike/simplify/) algorithms

![Line](https://cdn.rawgit.com/urschrei/rdp/6c84264fd9cdc0b8fdf974fc98e51fea4834ed05/rdp.svg)

## Installation
`pip install simplification`
Please use a recent (>= 8.1.2) version of `pip`.

### Supported Python Versions
- Python 2.7
- Python 3.4
- Python 3.5
- Python 3.6

### Supported Platforms
- Linux (`manylinux1`-compatible)
- OS X
- Windows 32-bit / 64-bit

## Usage
```python
import numpy as np
from simplification.cutil import simplify_coords, simplify_coords_vw

# Using Ramer–Douglas–Peucker
coords = [
[0.0, 0.0],
[5.0, 4.0],
[11.0, 5.5],
[17.3, 3.2],
[27.8, 0.1]
]

# For RDP, Try an epsilon of 1.0 to start with. Other sensible values include 0.01, 0.001
simplified = simplify_coords(coords, 1.0)

# simplified is [[0.0, 0.0], [5.0, 4.0], [11.0, 5.5], [27.8, 0.1]]

# Using Visvalingam-Whyatt
# You can also pass numpy arrays, in which case you'll get numpy arrays back
coords_vw = np.array([
[5.0, 2.0],
[3.0, 8.0],
[6.0, 20.0],
[7.0, 25.0],
[10.0, 10.0]
])
simplified_vw = simplify_coords_vw(coords, 30.0)

# simplified_vw is [[5.0, 2.0], [7.0, 25.0], [10.0, 10.0]]
```

Passing empty and/or 1-element lists will return them unaltered.

## But I Want to Simplify Polylines
No problem; [Decode them to LineStrings](https://github.com/urschrei/pypolyline) first.

``` python
# pip install pypolyline before you do this
from pypolyline.cutil import decode_polyline
# an iterable of Google-encoded Polylines, so precision is 5. For OSRM &c., it's 6
decoded = (decode_polyline(line, 5) for line in polylines)
simplified = [simplify_coords(line, 1.0) for line in decoded]
```

## How it Works
FFI and a [Rust binary](https://github.com/urschrei/rdp)

## Is It Fast
I should think so.

## License
[MIT](license.txt)


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

simplification-0.2.11-cp36-cp36m-win_amd64.whl (278.0 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

simplification-0.2.11-cp36-cp36m-win32.whl (256.3 kB view hashes)

Uploaded CPython 3.6m Windows x86

simplification-0.2.11-cp36-cp36m-manylinux1_x86_64.whl (462.2 kB view hashes)

Uploaded CPython 3.6m

simplification-0.2.11-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl (291.8 kB view hashes)

Uploaded CPython 3.6m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.11+ intel macOS 10.11+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

simplification-0.2.11-cp35-cp35m-win_amd64.whl (277.3 kB view hashes)

Uploaded CPython 3.5m Windows x86-64

simplification-0.2.11-cp35-cp35m-win32.whl (255.9 kB view hashes)

Uploaded CPython 3.5m Windows x86

simplification-0.2.11-cp34-cp34m-win_amd64.whl (275.5 kB view hashes)

Uploaded CPython 3.4m Windows x86-64

simplification-0.2.11-cp34-cp34m-win32.whl (257.3 kB view hashes)

Uploaded CPython 3.4m Windows x86

simplification-0.2.11-cp34-cp34m-manylinux1_x86_64.whl (463.4 kB view hashes)

Uploaded CPython 3.4m

simplification-0.2.11-cp27-cp27mu-manylinux1_x86_64.whl (440.6 kB view hashes)

Uploaded CPython 2.7mu

simplification-0.2.11-cp27-cp27m-win_amd64.whl (277.1 kB view hashes)

Uploaded CPython 2.7m Windows x86-64

simplification-0.2.11-cp27-cp27m-win32.whl (256.8 kB view hashes)

Uploaded CPython 2.7m Windows x86

simplification-0.2.11-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl (321.3 kB view hashes)

Uploaded CPython 2.7m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.11+ intel macOS 10.11+ x86-64 macOS 10.6+ intel macOS 10.9+ intel 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