A Python library for enforcing polygon ring winding order in GeoJSON
Project description
geojson-rewind
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
Built Distribution
File details
Details for the file geojson_rewind-1.1.0.tar.gz
.
File metadata
- Download URL: geojson_rewind-1.1.0.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 146600aa4bfa1d260bac1c498f11f118196cad2556d1754f0bc3df1d8fd902c6 |
|
MD5 | 210cce4c77a0786989c273a483b0a377 |
|
BLAKE2b-256 | dd8ba2bbe301cd1d5c7a70bdcab3a717cdd6f4965dbe3caa83528f8ae97fab82 |
File details
Details for the file geojson_rewind-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: geojson_rewind-1.1.0-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb89989210f533c7797553fcf61c0cacdfbd247790812a0e13ac56ec454ea135 |
|
MD5 | 3f82ae990c7d057a58eff7d9aebce012 |
|
BLAKE2b-256 | b12aa977adbc9c1b2970ed76a6959c0087322f963d2f4f5b2dd5007d9082c00f |