ST_Within

定義

ST_Within は、最初の ST_Geometry オブジェクトが 2 番目のオブジェクトの中に完全に入っている場合は 1(Oracle)または t(PostgreSQL)、それ以外の場合は 0(Oracle)または f(PostgreSQL)を返します。

構文

sde.st_within (g1 sde.st_geometry, g2 sde.st_geometry)

戻り値のタイプ

Boolean

以下の例では、都市の建物を格納する bfootprints と、その区画を格納する lots という 2 つのテーブルを作成します。都市エンジニアは、すべての建物がその区画内にあることを確認したいと考えています。

両方のテーブルとも、建物と区画の ST_Geometry を格納するのは、マルチポリゴン データ タイプです。データベース設計者は、区画が川など自然フィーチャによって分かれたり、建物が複数の建物から構成される場合があるため、両方のフィーチャに対して ST_MultiPolygons を選択しました。

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

CREATE TABLE lots (lot_id integer,
lot sde.st_geometry);


INSERT INTO bfootprints (building_id, footprint) VALUES (
1,
sde.st_polygon ('polygon ((0 0, 0 10, 10 10, 10 0, 0 0))', 0)
);

INSERT INTO bfootprints (building_id, footprint) VALUES (
2,
sde.st_polygon ('polygon ((20 0, 20 10, 30 10, 30 0, 20 0))', 0)
);

INSERT INTO bfootprints (building_id, footprint) VALUES (
3,
sde.st_polygon ('polygon ((40 0, 40 10, 50 10, 50 0, 40 0))', 0)
);

INSERT INTO lots (lot_id, lot) VALUES (
1,
sde.st_polygon ('polygon ((-1 -1, -1 11, 11 11, 11 -1, -1 -1))', 0)
);

INSERT INTO lots (lot_id, lot) VALUES (
2,
sde.st_polygon ('polygon ((19 -1, 19 11, 29 9, 31 -1, 19 -1))', 0)
);

INSERT INTO lots (lot_id, lot) VALUES (3,
sde.st_polygon ('polygon ((39 -1, 39 11, 51 11, 51 -1, 39 -1))', 0)
);

都市エンジニアは、1 つの区画内に完全に含まれない建物を選択します。

Oracle

SELECT bf.building_id
FROM BFOOTPRINTS bf, LOTS l
WHERE sde.st_intersects (bf.footprint, l.lot) = 1 
AND sde.st_within (bf.footprint, l.lot) = 0;

BUILDING_ID

          2

PostgreSQL

SELECT bf.building_id
FROM bfootprints bf, lots l
WHERE sde.st_intersects (bf.footprint, l.lot) = 't' 
AND sde.st_within (bf.footprint, l.lot) = 'f';

building_id

          2

3/6/2012