ST_PolyFromText

RemarqueRemarque :

Oracle et SQLite uniquement

Définition

ST_PolyFromText accepte une représentation textuelle connue et un ID de référence spatiale, puis renvoie un objet ST_Polygon.

Syntaxe

Oracle

sde.st_polyfromtext (wkt clob, srid integer)

SQLite

st_polyfromtext (wkt text, srid int32)

Type de retour

ST_Polygon

Exemple

La table polygon_test est créée avec l'unique colonne de polygone.

L'instruction INSERT insère un polygone dans la colonne de polygone à l'aide de la fonction ST_PolyFromText.

Oracle

CREATE TABLE polygon_test (pl1 sde.st_geometry);
INSERT INTO polygon_test VALUES (
 sde.st_polyfromtext ('polygon ((10.01 20.03, 10.52 40.11, 30.29 41.56, 31.78 10.74, 10.01 20.03))', 4326)
);

SQLite

CREATE TABLE polygon_test (id integer);

SELECT AddGeometryColumn(
 NULL,
 'polygon_test',
 'pl1',
 4326,
 'polygon',
 'xy',
 'null'
);
INSERT INTO polygon_test VALUES (
 1,
 st_polyfromtext ('polygon ((10.01 20.03, 10.52 40.11, 30.29 41.56, 31.78 10.74, 10.01 20.03))', 4326)
);

Thèmes connexes

5/10/2014