ST_WITHIN (Azure Stream Analytics)
Coğrafya başka bir coğrafya içindeyse 1 döndürür, değilse 0 döndürür.
ST_WITHIN (geography, polygon)
Coğrafya
Çokgen içinde bulunabilecek coğrafya. Nokta veya çokgen olabilir.
Poligon
Coğrafyayı içerebilecek çokgen.
Bir nokta veya çokgen başka bir çokgen içindeyse 1 döndürür, değilse 0 döndürür.
SELECT
ST_WITHIN(input.deliveryDestination, input.warehouse)
FROM input
deliveryDestination | Ambar |
---|---|
{"type":"Point", "coordinates": [76.6, 10.1]} | {"type":"Polygon", "coordinates": [[ [0.0, 0.0], [10.0, 0.0], [10.0, 10.0], [0.0, 10.0], [0.0, 0.0] ]]} |
{"type":"Point", "coordinates": [15.0, 15.0]} | {"type":"Polygon", "coordinates": [[ [10.0, 10.0], [20.0, 10.0], [20.0, 20.0], [10.0, 20.0], [10.0, 10.0] ]]} |
0
1