LiteGIS
A GIS extension for SQLite, similar to PostGIS for Postgres and SpatiaLite.
The APIs are modeled closely on PostGIS but very incomplete at this point. At the end of the day, this is a thin wrapper around the amazing GEOS.
Building & Usage
If you have a recent Rust toolchain installed, simply run
This will yield a shared library for your host platform, e.g:
target/release/liblitegis.so.
For other platforms, use the --target flag.
The library can then be loaded using sqlite3:
);
, or programmatically:
SELECT load_extension('target/release/liblitegis');