PostGis计算距离,点重合和范围检测

案例如下
1.获取两点间距离
将两点组成西安然后测算线的距离
select ST_Length(Geography(ST_GeomFromText(‘LINESTRING(120.451737 36.520975,120.451737 36.520975)’)));
2.计算A是否包含B
select ST_Within(ST_GeomFromText(‘POINT(113.911291 29.686499)’),(select geom from area where gid=1));

你可能感兴趣的:(Postgis,距离,范围检测)