Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cjriley9/gpkg-rs

Library for reading and writing OGC Geopackages in Rust
https://github.com/cjriley9/gpkg-rs

Last synced: 2 months ago
JSON representation

Library for reading and writing OGC Geopackages in Rust

Awesome Lists containing this project

README

        

# GeoPackage
_______

A Rust crate for reading and writing [GeoPackages](https://www.geopackage.org/).

The goal of the crate is to adhere to the Geopackage [specification](https://www.geopackage.org/spec130/index.html) and provide interop with popular geospatial libraries in the Rust ecosystem.

- [X] Read 2D vector data
- [X] Write 2D vector data
- [ ] Read vector data with M and Z coordinates
- [ ] Write vector data with M and Z coordinates
- [ ] Support for user specified SRS other than WGS84
- [ ] Support writing bounding boxes for geometries
- [ ] Support for the [RTree Spatial Indexes](https://www.geopackage.org/spec130/#extension_rtree) extension
- [ ] Read image tile data
- [ ] Write image tile data

## Notes:
* Reading and writing 3D vector data is currently in a holding pattern until this [pull request](https://github.com/georust/geo/pull/797) is either accepted or rejected.