Definition
Die Accessor-Funktion ST_Polygon akzeptiert ein Well-known Text-Format und eine Raumbezugs-ID (SRID) und generiert ein ST_Polygon-Objekt.
Syntax
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)
Rückgabetyp
ST_Polygon
Beispiel
Mit der folgenden CREATE TABLE-Anweisung wird die Tabelle "polygon_test" erstellt, die nur über die Spalte "p1" verfügt. In der INSERT-Anweisung wird dann ein Ring (ein geschlossenes und einfaches Polygon) in ein ST_Polygon konvertiert und mit der Funktion ST_Polygon in die Spalte "p1" eingefügt.
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)
);