小型开源 Web 应用程序存储地理数据(空间数据)的最佳方式是什么
我即将开始开发 GIS Web 应用程序。
我将使用 PHP 作为语言,Zend 作为框架,使用 Google Maps API 进行地图渲染,但我还没有决定要使用哪个后端存储。
我需要:
- 存储:点(纬度和经度)、线(点集)、多边形
- 进行如下查询:
- “给定类型的 n 个点与其他给定点最接近?”
- “给定类型的哪一个点最接近给定的线?”
- “点‘a’在多边形‘g’内吗?”
- “从点 'a' 到点 'b' 的距离是多少?”
- 将这些空间数据类型与同一表中的其他关系数据组合。
我应该使用哪种开源技术?
I'm about to start developing a GIS web application.
I'll use PHP as language, Zend as Framework and Google Maps API for map rendering, but I didn't decided which back-end storage I'm going to use.
I'll need:
- Store: Points (Lat & Lng) , Lines (Set of points), Polygons
- Make queries like:
- "Which are the n Points of a given kind nearest of some other given Point ?"
- "Which are the n Points of a given kind nearest of some given Line ?"
- "Are point 'a' inside polygon 'g'?"
- "What is the distance from point 'a' to point 'b' ?"
- Combine these spatial data types with other relational data in the same table.
Which open source technology should I use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您被允许选择任何存储 - 那么您可能更喜欢支持空间索引的存储,例如 PostgreSQL (postgis)
或 MongoDB或 mysqlIf you're allowed to choose any storage - then you might prefer the ones, that support spatial indexes, like PostgreSQL (postgis)
or MongoDBor mysql