An open API service indexing awesome lists of open source software.

https://github.com/nmandery/py_geo_interface

Exchange vector geometries between Rust and Python using pyo3 and Pythons __geo_interface__ protocol
https://github.com/nmandery/py_geo_interface

geometry geospatial pyo3 python rust

Last synced: 5 months ago
JSON representation

Exchange vector geometries between Rust and Python using pyo3 and Pythons __geo_interface__ protocol

Awesome Lists containing this project

README

          

# py_geo_interface

[![Latest Version](https://img.shields.io/crates/v/py_geo_interface.svg)](https://crates.io/crates/py_geo_interface)
[![Documentation](https://docs.rs/py_geo_interface/badge.svg)](https://docs.rs/py_geo_interface)
![ci](https://github.com/nmandery/py_geo_interface/workflows/CI/badge.svg)
[![dependency status](https://deps.rs/repo/github/nmandery/py_geo_interface/status.svg)](https://deps.rs/repo/github/nmandery/py_geo_interface)

Exchange vector geometries between Rust and Python using [pyo3](https://pyo3.rs) and [Pythons `__geo_interface__` protocol](https://gist.github.com/sgillies/2217756).

The `__geo_interface__` protocol is implemented by most popular geospatial python modules like `shapely`, `geojson`, `geopandas`, ... .
While this protocol also defines `Features` and `FeatureCollections`, this library so far only focuses on the `Geometry` type, as
this one can be directly mapped to the types of the `geo-types` crate.

For usage examples see the [documentation](https://docs.rs/py_geo_interface).

[Changelog](./CHANGES.md)

### License


Licensed under either of Apache License, Version
2.0
or MIT license at your option.