ST_OVERLAPS (Analisi di flusso di Azure)

Restituisce 1 se un'area geografica si sovrappone a un'altra. Se le aree geografiche non si sovrappongono o una si trova all'interno di un'altra, restituirà 0.

Sintassi

ST_OVERLAPS (polygonA, polygonB)  

Argomento

PoligonoA

Poligono che potrebbe sovrapporsi a poligonoB.

PoligonoB

Poligono che potrebbe sovrapporsi a poligonoA.

Tipo restituito

Restituisce 1 se un poligono si sovrappone a un altro poligono, se non restituirà 0.

Esempio

SELECT  
     ST_OVERLAPS(input.datacenterArea, input.stormArea)  
FROM input  
  

Esempio di input

datacenterArea stormArea
{"type":"Polygon", "coordinates": [ [0.0, 0.0], [10.0, 0.0], [10.0, 10.0], [0.0, 10.0], [0.0, 0.0] ]} {"type":"Polygon", "coordinate": [ [30.0, 30.0], [40.0, 30.0], [40.0, 40.0], [30.0, 40.0], [30.0, 30.0] ]}
{"type":"Polygon", "coordinates": [ [0.0, 0.0], [20.0, 0.0], [20.0, 20.0], [0.0, 20.0], [0.0, 0.0] ]} {"type":"Polygon", "coordinates": [ [10.0, 10.0], [40.0, 10.0], [40.0, 40.0], [40.0, 20.0], [40.0, 40.0] ]}

e output

0

1

Vedere anche