ST_BUFFER
Sintassi
ST_BUFFER(g1,r)
Spiegazione
MariaDB starting with 5.3.3
ST_BUFFER() è stata introdotta in MariaDB 5.3.3
Restituisce una geometria che rappresenta tutti i punti la cui distanza dalla geometria g1
è minore o uguale alla distanza, o raggio, r
.
Tra i possibili usi di questa funzione vi è ad esempio la creazione di una nuova geometria che rappresenta la zona tampone attorno ad un'isola.
Esempi
Determinare se un punto si trova in una zona tampone:
SET @g1 = ST_GEOMFROMTEXT('POLYGON((10 10, 10 20, 20 20, 20 10, 10 10))'); SET @g2 = ST_GEOMFROMTEXT('POINT(8 8)'); SELECT ST_WITHIN(@g2,ST_BUFFER(@g1,5)); +---------------------------------+ | ST_WITHIN(@g2,ST_BUFFER(@g1,5)) | +---------------------------------+ | 1 | +---------------------------------+ SELECT ST_WITHIN(@g2,ST_BUFFER(@g1,1)); +---------------------------------+ | ST_WITHIN(@g2,ST_BUFFER(@g1,1)) | +---------------------------------+ | 0 | +---------------------------------+
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.