Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在没有 Postgres 的情况下使用 PostGIS 库?我想将这些地理空间功能与 Hadoop(MR、HBase、Hive)一起使用。
任何想法?
提前致谢。
PostGIS 提供了一个liblwgeom库,它是一个轻量级的几何库,独立于 PostgreSQL。SpatiaLite 将此库用于带有 SQLite 的空间函数。
liblwgeom
liblwgeom可以使用这些指令单独编译。
大多数 PostGIS 功能都是使用GEOS库实现的。您可以直接使用它。GEOS 是JTS的 C++ 端口。可能在Java 中会更容易使用它。