Rechercher dans le manuel MySQL
12.16.5 MySQL-Specific Functions That Create Geometry Values
MySQL provides a set of useful nonstandard functions for creating geometry values. The functions described in this section are MySQL extensions to the OpenGIS specification.
These functions produce geometry objects from either WKB values or
geometry objects as arguments. If any argument is not a proper WKB
or geometry representation of the proper object type, the return
value is NULL
.
For example, you can insert the geometry return value from
Point()
directly into a
POINT
column:
Constructs a
GeomCollection
value from the geometry arguments.GeomCollection()
returns all the proper geometries contained in the arguments even if a nonsupported geometry is present.GeomCollection()
with no arguments is permitted as a way to create an empty geometry. Also, functions such asST_GeomFromText()
that accept WKT geometry collection arguments understand both OpenGIS'GEOMETRYCOLLECTION EMPTY'
standard syntax and MySQL'GEOMETRYCOLLECTION()'
nonstandard syntax.GeomCollection()
andGeometryCollection()
are synonymous, withGeomCollection()
the preferred function.GeometryCollection(
g
[,g
] ...)Constructs a
GeomCollection
value from the geometry arguments.GeometryCollection()
returns all the proper geometries contained in the arguments even if a nonsupported geometry is present.GeometryCollection()
with no arguments is permitted as a way to create an empty geometry. Also, functions such asST_GeomFromText()
that accept WKT geometry collection arguments understand both OpenGIS'GEOMETRYCOLLECTION EMPTY'
standard syntax and MySQL'GEOMETRYCOLLECTION()'
nonstandard syntax.GeomCollection()
andGeometryCollection()
are synonymous, withGeomCollection()
the preferred function.Constructs a
LineString
value from a number ofPoint
or WKBPoint
arguments. If the number of arguments is less than two, the return value isNULL
.MultiLineString(
ls
[,ls
] ...)Constructs a
MultiLineString
value usingLineString
or WKBLineString
arguments.Constructs a
MultiPoint
value usingPoint
or WKBPoint
arguments.MultiPolygon(
poly
[,poly
] ...)Constructs a
MultiPolygon
value from a set ofPolygon
or WKBPolygon
arguments.Constructs a
Point
using its coordinates.Constructs a
Polygon
value from a number ofLineString
or WKBLineString
arguments. If any argument does not represent aLinearRing
(that is, not a closed and simpleLineString
), the return value isNULL
.
Traduction non disponible
Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-gis-mysql-specific-functions.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.