ST_Centroid

定義

ST_Centroid は、ポリゴンまたはマルチポリゴンを入力として、ジオメトリのエンベロープの中心点を返します。つまり、中心点とは、ジオメトリの最小および最大 XY 範囲の中間点です。

構文

sde.st_centroid (pl1 sde.st_geometry)
sde.st_centroid (mpl1 sde.st_geometry)

戻り値のタイプ

ST_Point

都市 GIS 技術者は、建物のマルチポリゴンを、建物の密集したグラフィックス内で 1 つのポイントとして表示したいと考えています。建物は、bfp テーブルに格納されています。このテーブルは、次のステートメントで作成および入力されます。

CREATE TABLE bfp (
building_id integer,
footprint sde.st_geometry);

INSERT INTO bfp VALUES (
1,
sde.st_polygon ('polygon ((0 0, 0 10, 10 10, 10 0, 0 0))', 0)
);

INSERT INTO bfp VALUES (
2,
sde.st_polygon ('polygon ((20 0, 30 20, 40 0, 20 0))', 0)
);

INSERT INTO bfp VALUES (
3,
sde.st_polygon ('polygon ((20 30, 25 35, 30 30, 20 30))', 0)
);

ST_Centroid 関数は、各建物のマルチポリゴンの中心を返します。ST_AsText 関数は、各中心点をアプリケーションが認識できるテキスト表現に変換します。

Oracle

SELECT building_id,
sde.st_astext (sde.st_centroid (footprint)) Centroid
FROM bfp;

BUILDING_ID                   Centroid

   1                     POINT  (5.00000000 5.00000000)
   2                     POINT  (30.00000000 10.00000000)
   3                     POINT  (25.00000000 32.50000000)

PostgreSQL

SELECT building_id,
sde.st_astext (sde.st_centroid (footprint)) 
AS centroid
FROM bfp;

building_id                  centroid

   1                     POINT  (5 5)
   2                     POINT  (30 10)
   3                     POINT  (25 33)

7/10/2012