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
.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 26/06/2006, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/mysql-rf-gis-mysql-specific-functions.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.