ST_PointInsideCircle — 测试点几何图形是否在由中心和半径定义的圆内
boolean ST_PointInsideCircle(
geometry a_point, float center_x, float center_y, float radius)
;
如果几何图形是点并且在中心为 center_x
、center_y
,半径为 radius
的圆内,则返回 true。
不使用空间索引。请改用 ST_DWithin。 |
可用性: 1.2
更改: 2.2.0 在早期版本中,此函数名为 ST_Point_Inside_Circle
SELECT ST_PointInsideCircle(ST_Point(1,2), 0.5, 2, 3); st_pointinsidecircle ------------------------ t