ST_GeometryType

定義

ST_GeometryType は、ST_Geometry オブジェクトを入力として、そのジオメトリ タイプを文字列として返します。

構文

sde.st_geometrytype (g1 sde.st_geometry)

戻り値のタイプ

次のいずれかを含む Varchar(32)

geometrytype_test テーブルには、g1 ジオメトリ列が含まれています。

INSERT ステートメントは、各ジオメトリ サブクラスを g1 列に挿入します。

Oracle

CREATE TABLE geometrytype_test (g1 sde.st_geometry);

INSERT INTO GEOMETRYTYPE_TEST VALUES (
sde.st_geomfromtext ('point (10.02 20.01)', 0)
);

INSERT INTO GEOMETRYTYPE_TEST VALUES (
sde.st_geomfromtext ('linestring (10.01 20.01, 10.01 30.01, 10.01 40.01)', 0)
);

INSERT INTO GEOMETRYTYPE_TEST VALUES (
sde.st_geomfromtext ('polygon ((10.02 20.01, 11.92 35.64, 25.02 34.15,
19.15 33.94, 10.02 20.01))', 0)
);

INSERT INTO GEOMETRYTYPE_TEST VALUES (
sde.st_geomfromtext ('multipoint (10.02 20.01, 10.32 23.98, 11.92 25.64)', 0)
);

INSERT INTO GEOMETRYTYPE_TEST VALUES (
sde.st_geomfromtext ('multilinestring ((10.02 20.01, 10.32 23.98,
11.92 25.64), (9.55 23.75, 15.36 30.11))', 0)
);

INSERT INTO GEOMETRYTYPE_TEST VALUES (
sde.st_geomfromtext ('multipolygon (((10.02 20.01, 11.92 35.64, 25.02 34.15,
19.15 33.94, 10.02 20.01)), ((51.71 21.73, 73.36 27.04, 71.52 32.87, 52.43 31.90,51.71 21.73)))', 0)
);

PostgreSQL

CREATE TABLE geometrytype_test (g1 sde.st_geometry);

INSERT INTO geometrytype_test VALUES (
sde.st_geometry ('point (10.02 20.01)', 0)
);

INSERT INTO geometrytype_test VALUES (
sde.st_geometry ('linestring (10.01 20.01, 10.01 30.01, 10.01 40.01)', 0)
);

INSERT INTO geometrytype_test VALUES (
sde.st_geometry ('polygon ((10.02 20.01, 11.92 35.64, 25.02 34.15,
19.15 33.94, 10.02 20.01))', 0)
);

INSERT INTO geometrytype_test VALUES (
sde.st_geometry ('multipoint (10.02 20.01, 10.32 23.98, 11.92 25.64)', 0)
);

INSERT INTO geometrytype_test VALUES (
sde.st_geometry ('multilinestring ((10.02 20.01, 10.32 23.98,
11.92 25.64), (9.55 23.75, 15.36 30.11))', 0)
);

INSERT INTO geometrytype_test VALUES (
sde.st_geometry ('multipolygon (((10.02 20.01, 11.92 35.64, 25.02 34.15,
19.15 33.94, 10.02 20.01)), ((51.71 21.73, 73.36 27.04, 71.52 32.87, 
52.43 31.90,51.71 21.73)))', 0)
);

クエリは、g1 ジオメトリ列に格納された各サブクラスのジオメトリ タイプをリストします。

Oracle

SELECT UPPER (sde.st_geometrytype (g1)) Geometry_type
FROM GEOMETRYTYPE_TEST;

Geometry_type

ST_POINT
ST_LINESTRING
ST_POLYGON
ST_MULTIPOINT
ST_MULTILINESTRING
ST_MULTIPOLYGON

PostgreSQL

SELECT (sde.st_geometrytype (g1)) AS Geometry_type
FROM geometrytype_test;

Geometry_type

ST_POINT
ST_LINESTRING
ST_POLYGON
ST_MULTIPOINT
ST_MULTILINESTRING
ST_MULTIPOLYGON

7/10/2012