Skip to main content

A Python library for enforcing polygon ring winding order in GeoJSON

Project description

geojson-rewind

Run tests codecov PyPI Version License Python Compatibility Code style: black

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.

Note: Co-ordinates in the input data are assumed to be WGS84 with (lon, lat) ordering, as per RFC 7946. Input with co-ordinates using any other CRS may lead to unexpected results.

Installation

pip install geojson-rewind

Usage

As a Library

Enforce RFC 7946 ring winding order (input/output is a GeoJSON string):

>>> from geojson_rewind import rewind

>>> input = """{
...      "geometry": {   "coordinates": [   [   [100, 0],
...                                             [100, 1],
...                                             [101, 1],
...                                             [101, 0],
...                                             [100, 0]]],
...                      "type": "Polygon"},
...      "properties": {"foo": "bar"},
...      "type": "Feature"}"""

>>> output = rewind(input)

>>> output
'{"geometry": {"coordinates": [[[100, 0], [101, 0], [101, 1], [100, 1], [100, 0]]], "type": "Polygon"}, "properties": {"foo": "bar"}, "type": "Feature"}'

>>> type(output)
<class 'str'>

Enforce RFC 7946 ring winding order (input/output is a python dict):

>>> from geojson_rewind import rewind

>>> input = {
...     'geometry': {   'coordinates': [   [   [100, 0],
...                                            [100, 1],
...                                            [101, 1],
...                                            [101, 0],
...                                            [100, 0]]],
...                     'type': 'Polygon'},
...     'properties': {'foo': 'bar'},
...     'type': 'Feature'}

>>> output = rewind(input)

>>> output
{'geometry': {'coordinates': [[[100, 0], [101, 0], [101, 1], [100, 1], [100, 0]]], 'type': 'Polygon'}, 'properties': {'foo': 'bar'}, 'type': 'Feature'}

>>> type(output)
<class 'dict'>

On the Console

# Enforce ring winding order on a GeoJSON file
$ rewind in.geojson > out.geojson

# fetch GeoJSON from the web and enforce ring winding order
$ curl "https://myserver.com/in.geojson" | rewind

Versioning

geojson-rewind follows semantic versioning. For this project, the "API" also includes:

  • CLI flags and options
  • CLI exit codes

In line with common practice in the python community, geojson-rewind will drop compatibility with unsupported python versions without incrementing the major version.

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-1.2.1.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

geojson_rewind-1.2.1-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file geojson_rewind-1.2.1.tar.gz.

File metadata

  • Download URL: geojson_rewind-1.2.1.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for geojson_rewind-1.2.1.tar.gz
Algorithm Hash digest
SHA256 1b7b8b3714eb1f0cfccdba023444f0073be2c9ce148d72c69fd097ea7743da60
MD5 a7a5ca470a10ac0134038609237b741c
BLAKE2b-256 1fbb6f9ca8311baad6e2111101ff1625a46d66fc46ffe828126d06fd314d22ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for geojson_rewind-1.2.1.tar.gz:

Publisher: publish.yml on chris48s/geojson-rewind

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file geojson_rewind-1.2.1-py3-none-any.whl.

File metadata

  • Download URL: geojson_rewind-1.2.1-py3-none-any.whl
  • Upload date:
  • Size: 5.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for geojson_rewind-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0336c1940d070686edf254d8783fe7c9acc5c6b107a0a87b8c628cd28c0651d1
MD5 ca87cb6a0ad65654fa7931650246b592
BLAKE2b-256 c73aa8eec7f3288b485c1b679f5f83a8e2be756748137f99a656f2669bf16159

See more details on using hashes here.

Provenance

The following attestation bundles were made for geojson_rewind-1.2.1-py3-none-any.whl:

Publisher: publish.yml on chris48s/geojson-rewind

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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