Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

SQL Server 2008 Spatial:trova un punto nel poligono

Penso che il metodo geografico STIntersects() farà quello che vuoi:

DECLARE @g geography;
DECLARE @h geography;
SET @g = geography::STGeomFromText('POLYGON((-122.358 47.653, -122.348 47.649, -122.348 47.658, -122.358 47.658, -122.358 47.653))', 4326);
SET @h = geography::Point(47.653, -122.358, 4326)

SELECT @g.STIntersects(@h)