地理資訊 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