地理资讯 Geometric

PostgreSQL 资料类型 Data Type 地理资讯 Geometric
类型 大小 说明 范例
point 16 bytes 平面上的点 (x,y)
line 32 bytes 无限长的直线 {A,B,C}
lseg 32 bytes 有限的线段 ((x1,y1),(x2,y2))
box 32 bytes 长方形 ((x1,y1),(x2,y2))
path 16+16n bytes 封闭的线条(与多边形相似) ((x1,y1),…)
path 16+16n bytes 开放的线条 [(x1,y1),…]
polygon 40+16n bytes 多边形 (与封闭的线条相似) ((x1,y1),…)
circle 24 bytes 圆形 <(x,y),r> (中心点和半径)

Reference