Skip to main content

A Python library for enforcing polygon ring winding order in GeoJSON

Project description

geojson-rewind

Build Status Coverage Status PyPI Version License Python Support

A Python library for enforcing polygon ring winding order in GeoJSON

The GeoJSON spec mandates the right hand rule:

A linear ring MUST follow the right-hand rule with respect to the area it bounds, i.e., exterior rings are counterclockwise, and holes are clockwise.

This helps you generate compliant Polygon and MultiPolygon geometries.

Installation

pip install geojson-rewind

Usage

>>> input = {
...     'geometry': {   'coordinates': [   [   [100, 0],
...                                            [100, 1],
...                                            [101, 1],
...                                            [101, 0],
...                                            [100, 0]]],
...                     'type': 'Polygon'},
...     'properties': {'foo': 'bar'},
...     'type': 'Feature'}
>>> from geojson_rewind import rewind
>>> output = rewind(input)
>>> import pprint
>>> pp = pprint.PrettyPrinter(indent=4)
>>> pp.pprint(output)
{   'geometry': {   'coordinates': [   [   [100, 0],
                                           [101, 0],
                                           [101, 1],
                                           [100, 1],
                                           [100, 0]]],
                    'type': 'Polygon'},
    'properties': {'foo': 'bar'},
    'type': 'Feature'}

Acknowledgements

geojson-rewind is a python port of Mapbox's javascript geojson-rewind package. Credit to Tom MacWright and contributors.

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

geojson-rewind-0.1.1.tar.gz (2.9 kB view details)

Uploaded Source

File details

Details for the file geojson-rewind-0.1.1.tar.gz.

File metadata

  • Download URL: geojson-rewind-0.1.1.tar.gz
  • Upload date:
  • Size: 2.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/3.6.6

File hashes

Hashes for geojson-rewind-0.1.1.tar.gz
Algorithm Hash digest
SHA256 fd3d97ba487bc39ebaba3d1e9a601e2e3c7d7ddbf3cd1f5cc85915f305887c82
MD5 ced0c2bf75686e8927da124e1f23e093
BLAKE2b-256 cef27adbb1f4e0568749219108efde5180a88788ca59d8d71315a8449120f614

See more details on using hashes here.

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