ST_Point_Inside_Circle — ポイントジオメトリがcenter_x, center_y , radiusで定義される円内にあるかどうかを見ます。
boolean ST_Point_Inside_Circle(
geometry a_point, float center_x, float center_y, float radius)
;
この関数の書式はpoint_inside_circle(<geometry>,<circle_center_x>,<circle_center_y>,<radius>)です。ジオメトリがポイントで、かつ円内にある場合にTRUEを返します。他の場合はFALSEを返します。
この関数は名前が示すようにポイントでのみ動作します。 |