Name

ST_PointInsideCircle — ポイントジオメトリがcenter_x, center_y , radiusで定義される円内にあるかどうかを見ます。

Synopsis

boolean ST_PointInsideCircle(geometry a_point, float center_x, float center_y, float radius);

説明

この関数の書式はST_PointInsideCircle(<geometry>,<circle_center_x>,<circle_center_y>,<radius>)です。ジオメトリがポイントで、かつ円内にある場合にTRUEを返します。他の場合はFALSEを返します。

[Note]

この関数は名前が示すようにポイントでのみ動作します。

Availability: 1.2

Changed: 2.2.0 以前の版ではST_Point_Inside_Circleと呼ばれていました。

SELECT ST_PointInsideCircle(ST_Point(1,2), 0.5, 2, 3);
 st_pointinsidecircle
------------------------
 t

関連情報

ST_DWithin