使用 PostGIS 拥有通用 GEOGRAPHY 列
在 PostgreSQL 9 + PostGIS 1.5 中,有没有办法创建“通用”GEOGRAPHY 列?我的意思是一个可以接受 POINT 以及 POLYGON、LINESTRING 等的列。到目前为止,我只在 Internet 上看到过像 GEOGRAPHY(POINT,4326) 这样的列。
如果这是不可能的,那么您将如何设计(从数据库的角度)链接到随机地理对象(点、多边形等)的实体?我应该为我想要支持的每种类型的地理对象创建 3、4、5 个不同的表吗? (1 个用于 POINT 对象的表,1 个用于 POLYGON 对象的表等)?
提前致谢。
罗曼
In PostgreSQL 9 + PostGIS 1.5, is there a way to create a "generic" GEOGRAPHY column? By that I mean a column that would accept POINTs as well as POLYGONs, LINESTRINGs, etc. Until now, I've only seen columns like GEOGRAPHY(POINT,4326) on the Internet.
If that is not possible, then how would you design (from a DB point of view) an entity that is linked to a random geographical object (point, polygon, whatever)? Should I create 3, 4, 5 different tables for each type of geographical object I'd like to support? (1 table for POINT objets, 1 table for POLYGON objects and so on)?
Thanks in advance.
Romain
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,只是不要在 CREATE TABLE 语句中指定类型约束。
Yes, just don't specify a type constraint in the CREATE TABLE statement.