哪些事情可以使用 PostGIS 完成而无法使用 MySQL 完成?
我即将开始一个 GIS 项目,我想知道我是否真的需要 PostGIS 或者 MySQL 的 Spatial Extensions 是否足够?
I'm about to start a GIS project, and I want to know if I really need PostGIS or if MySQL's Spatial Extensions are sufficient?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PostGIS 是一个完整的空间数据库,并且已经存在了一段时间了。 MySQL 继续仅实现最小边界矩形函数
http:// /dev.mysql.com/doc/refman/5.5/en/functions-for-testing-spatial-relations- Between-geometric-objects.html
如果你想在 FOSS DB 上进行空间工作,你唯一真正的此时的选择是
1)邮政地理信息系统
2) Spatialite
其他数据库的社区版本也具有空间扩展功能可供您使用。
PostGIS is a complete spatialdb and has been for a while. MySQL continues to only implement the Minimum Bounding Rectangle functions
http://dev.mysql.com/doc/refman/5.5/en/functions-for-testing-spatial-relations-between-geometric-objects.html
If you want to do spatial work on FOSS DB your only real choices at this point are
1) PostGIS
2) Spatialite
There are community editions of the other DBs that have spatial extensions as well that you can use.