Sqlserver
 sql >> Base de données >  >> RDS >> Sqlserver

SQL Server 2008 Spatial :rechercher un point dans un polygone

Je pense que la méthode géographique STIntersects() fera ce que vous voulez :

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)