标签:style class blog code java http
如果有在Postgis查询落在指定位置点规定半径内的空间点的需求,可使用Postgis的ST_DWithin()方法:
ST_DWithin(geometry, geometry, distance);
例如:
SELECT * FROM table WHERE ST_DWithin( table.geom, ST_Transform(st_geometryfromtext(‘POINT(lon lat)‘,4326),900913), 200 );
以上查询返回table表中geom落在 以点lon,lat为原点且半径为200m 圆形内的数据。
End.
通过Postgis查询落在指定位置点规定半径内的空间点,布布扣,bubuko.com
标签:style class blog code java http
原文地址:http://www.cnblogs.com/lianche/p/3781454.html