ENVELOPE

Sintassi

Envelope(g)

Spiegazione

Restituisce il Minimum Bounding Rectangle (MBR, rettangolo limite minimo) per il valore geometrico g. Il risultato restituito è di tipo Polygon.

Il poligono è definito dagli angoli del rettangolo che racchiude la figura:

POLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))

Esempi

MariaDB [(none)]> SELECT AsText(Envelope(GeomFromText('LineString(1 1,2 2)')));
+-------------------------------------------------------+
| AsText(Envelope(GeomFromText('LineString(1 1,2 2)'))) |
+-------------------------------------------------------+
| POLYGON((1 1,2 1,2 2,1 2,1 1))                        |
+-------------------------------------------------------+
1 row in set (0.00 sec)

Commenti

Sto caricando i commenti......
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.