定義
ST_Polygon アクセサ関数は、WKT 表現と空間参照 ID (SRID) を受け取って、ST_Polygon を生成します。
構文
Oracle
sde.st_polygon (wkt clob, srid integer)
PostgreSQL
sde.st_polygon (wkt clob, srid integer) sde.st_polygon (esri_shape bytea, srid integer)
SQLite
st_polygon (wkt text, srid int32)
戻り値のタイプ
ST_Polygon
例
次の CREATE TABLE ステートメントは、p1 列を 1 つ持つ polygon_test テーブルを作成します。次の INSERT ステートメントは、ST_Polygon 関数を使用して、リング (閉じていてシンプルなポリゴン) を ST_Polygon に変換して p1 列に挿入します。
Oracle
CREATE TABLE polygon_test (p1 sde.st_geometry);
INSERT INTO polygon_test VALUES (
sde.st_polygon ('polygon ((10.01 20.03, 20.94 21.34, 35.93 10.04, 10.01 20.03))', 4326)
);
PostgreSQL
CREATE TABLE polygon_test (p1 sde.st_geometry);
INSERT INTO polygon_test VALUES (
sde.st_polygon ('polygon ((10.01 20.03, 20.94 21.34, 35.93 10.04, 10.01 20.03))', 4326)
);
SQLite
CREATE TABLE poly_test (id integerp1 geometryblob);
SELECT AddGeometryColumn(
NULL,
'poly_test',
'p1',
4326,
'polygon',
'xy',
'null'
);
INSERT INTO poly_test VALUES (
1,
st_polygon ('polygon ((10.01 20.03, 20.94 21.34, 35.93 10.04, 10.01 20.03))', 4326)
);