ST_CROSSES

Sintassi

ST_CROSSES(g1,g2)

Spiegazione

MariaDB starting with 5.3.3

ST_CROSSES() è stata introdotta in MariaDB 5.3.3

Restituisce 1 se la geometria g1 incrocia spazialmente la geometria g2. Restituisce NULL se g1 è un Polygon, un MultiPolygon, o se g2 è un Point o un MultiPoint. Altrimenti restituisce 0.

Il termine "attraversa spazialmente" denota una relazione spaziale tra due geometrie e ha le seguenti proprietà:

  • Le due geometrie si intersecano
  • Le loro intersezioni formano una geometria le cui dimensioni sono minori di quelle della geometria più grande
  • La loro intersezione non è uguale ad una delle due geometrie

ST_CROSSES() usa le forme degli oggetti, mentre CROSSES(),basata sull'implementazione originale di MySQL, usa i rettangoli esterni.

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.