├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGES.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── data └── ne_110m_land.fgb └── src ├── from_py.rs ├── lib.rs ├── to_py.rs ├── wkb.rs └── wrappers.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmandery/py_geo_interface/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | /.idea 4 | /venv -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmandery/py_geo_interface/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmandery/py_geo_interface/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmandery/py_geo_interface/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmandery/py_geo_interface/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmandery/py_geo_interface/HEAD/README.md -------------------------------------------------------------------------------- /data/ne_110m_land.fgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmandery/py_geo_interface/HEAD/data/ne_110m_land.fgb -------------------------------------------------------------------------------- /src/from_py.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmandery/py_geo_interface/HEAD/src/from_py.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmandery/py_geo_interface/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/to_py.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmandery/py_geo_interface/HEAD/src/to_py.rs -------------------------------------------------------------------------------- /src/wkb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmandery/py_geo_interface/HEAD/src/wkb.rs -------------------------------------------------------------------------------- /src/wrappers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmandery/py_geo_interface/HEAD/src/wrappers.rs --------------------------------------------------------------------------------