码迷,mamicode.com
首页 > 其他好文 > 详细

postgrep 判断几何关系函数

时间:2017-08-16 15:32:07      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:postgrep 判断几何关系函数

geom  为几何图形的坐标集合

1、获取两个几何对象间的距离ST_Distance(geometry, geometry)

  ST_Distance(a.geom::geography, b.geom::geography) length

2、如果两个几何对象间距离在给定值范围内,则返回TRUE ST_DWithin(geometry, geometry, float)

 ST_DWithin(a.geom::geography, b.geom::geography, float);

3、判断两个几何对象是否相等ST_Equals(geometry, geometry)

 ST_Equals(a.geom, b.geom)

4、判断两个几何对象是否相交 ST_Intersects(geometry, geometry)

  ST_Intersects(a.geom, b.geom)

5、获取两个几何对象相交的部分 ST_Intersection(geometry,geometry)

  ST_Intersects(a.geom, b.geom)

6、判断A是否被B包含 ST_Within(geometry A, geometry B)

  ST_Within(a.geom, b.geom)

7、判断A是否包含B ST_Contains(geometry A, geometry B)

  ST_Contains(a.geom, b.geom)

8、判断几何对象是否闭合ST_IsClosed(geometry)


本文出自 “简单可依赖” 博客,请务必保留此出处http://wenxuehui.blog.51cto.com/12898974/1956656

postgrep 判断几何关系函数

标签:postgrep 判断几何关系函数

原文地址:http://wenxuehui.blog.51cto.com/12898974/1956656

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!