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