MySQL fournit de nombreuses fonctions qui prennent en
arguments un BLOB
contenant la
représentation au format Well-Known Binary et
optionnellement, un système de référence (SRID), et
retourne la forme géométrique correspondante.
GeomFromWKT()
accepte des données WKB de
n'importe quelle type de données géométriques comme premier
argument. L'implémentation fournit aussi des fonctions de
construction spécifiques à chaque forme géométrique.
GeomFromWKB(wkb[,srid])
,
GeometryFromWKB(wkt[,srid])
Construit une forme géométrique à partir de sa représentation WKB et du SRID.
PointFromWKB(wkb[,srid])
Construit un objet POINT
à partir de
sa représentation WKB et du SRID.
LineFromWKB(wkb[,srid])
,
LineStringFromWKB(wkb[,srid])
Construit un objet LINESTRING
à partir
de sa représentation WKB et du SRID.
PolyFromWKB(wkb[,srid])
,
PolygonFromWKB(wkb[,srid])
Construit un objet POLYGON
à partir de
sa représentation WKB et du SRID.
MPointFromWKB(wkb[,srid])
,
MultiPointFromWKB(wkb[,srid])
Construit un objet MULTIPOINT
à partir
de sa représentation WKB et du SRID.
MLineFromWKB(wkb[,srid])
,
MultiLineStringFromWKB(wkb[,srid])
Construit un objet MULTILINESTRING
à
partir de sa représentation WKB et du SRID.
MPolyFromWKB(wkb[,srid])
,
MultiPolygonFromWKB(wkb[,srid])
Construit un objet MULTIPOLYGON
à
partir de sa représentation WKB et du SRID.
GeomCollFromWKB(wkb[,srid])
,
GeometryCollectionFromWKB(wkt[,srid])
Construit un objet GEOMETRYCOLLECTION
à partir de sa représentation WKB et du SRID.
Les spécifications OpenGIS décrivent aussi des fonctions
optionnelles pour construire des Polygon
et
MultiPolygon
basées sur les
représentations WKB d'une collection d'anneaux ou d'objets
LineString
fermés. Ces objets peuvent
avoir des intersections non vides. MySQL ne supporte pas
encore ces fonctions :
Construit un objet Polygon
à partir de
la représentation WKB d'un objet
MultiLineString
, contenant un ensemble
d'objets LineString
fermés.
Construit un objet MultiPolygon
à
partir de la représentation WKB d'un objet
MultiLineString
, contenant un ensemble
d'objets LineString
fermés.
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.