Como está en SQL 2008, considere usar las capacidades geoespaciales nativas. Puedes hacer cosas elegantes como:
- Cree una columna calculada persistente de tipo geográfico que represente su punto.
- Cree un índice espacial en la columna calculada. Esto hará cosas como
yourPoint.STDistance(@otherPoint) <= @distance
eficiente
Así:
alter table [yourTable] add [p] as geography::Point(Latitude, Longitude, 4326) persisted;
create spatial index [yourSpatialIndex] on [yourTable] ([p])
declare @Latitude float = <somevalue>, @Longitude float = <somevalue>;
declare @point geography = geography::Point(@Latitude, @Longitude, 4326);
declare @distance int = <distance in meters>;
select * from [yourTable] where @point.STDistance([p]) <= @distance;