Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/cjriley9/gpkg-rs
- Owner: cjriley9
- Created: 2022-05-13T04:45:10.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-06-14T02:49:29.000Z (over 2 years ago)
- Last Synced: 2024-10-31T12:08:45.180Z (3 months ago)
- Language: Rust
- Size: 135 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-georust - gpkg-rs - A Rust crate for reading and writing GeoPackages. (Watchlist)
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.