ST_PointInsideCircle — ポイントジオメトリがcenter_x, center_y , radiusで定義される円内にあるかどうかを見ます。
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を返します。
この関数は名前が示すようにポイントでのみ動作します。 |
Availability: 1.2
Changed: 2.2.0 以前の版ではST_Point_Inside_Circleと呼ばれていました。