ST_MLineFromShape
Remarque :
ST_Geometry dans PostgreSQL uniquement
Définition
ST_MLineFromShape accepte une forme multiligne ESRI et un ID de référence spatiale et retourne un objet ST_MultiLineString.
Syntaxe
sde.st_mlinefromshape (esri_shape bytea, srid integer)
Type de retour
ST_MultiLineString
Exemple
Créez la table sample_mlines avec deux colonnes de géométrie (une de type ST_Geometry et l'autre de type bytea) et un ID unique.
CREATE TABLE sample_mlines (id integer unique, geometry sde.st_geometry, shape bytea);
Ajoutez un enregistrement à la table.
INSERT INTO sample_mlines (id, geometry) VALUES ( 10, sde.st_multilinestring ('multilinestring ((61 2, 64 3, 65 6), (58 4, 59 5, 61 8), (69 3, 67 4, 66 7, 68 9))', 0) );
Convertissez la forme en géométrie.
UPDATE sample_mlines SET shape = sde.st_asshape (geometry) WHERE id = 10;
Utilisez ST_MLineFromShape pour retourner les informations multilinestring.
SELECT id, sde.st_astext (sde.st_mlinefromshape (shape)) AS MULTI_LINE_STRING FROM sample_mlines WHERE id = 10; id multi_line_string 10 MULTILINESTRING ((61 2, 64 3, 65 6), (58 4, 59 5,61 8), (69 3, 67 4, 66 7, 68 9 ))
7/10/2012