半径搜索纬度/经度

时间:2013-03-26 03:22:59

标签: sql-server database sql-server-2008 geolocation

我使用mysql找到了一堆关于这个问题的答案,但我无法将任何内容转换成ms sql 2008可以使用的查询。我有一个数据库中每一行的经度和纬度列。我将拥有用户所在位置的经纬度。我希望能够找到距离用户纬度/经度x英里范围内的所有行。此外,当我尝试使用其他查询时,我发现错误 - 'pow' is not a recognized built-in function name.这很奇怪,因为我很确定我之前在sql 2008中使用过pow。对此有任何帮助我将不胜感激。到目前为止,这是最接近的。

select * from tbl_MyTable
WHERE (
POW( ( 69.1 * ( Longitude - @longitude ) * cos( @latitude / 57.3 ) ) , 2 ) + POW( ( 69.1 * ( Latitude - @latitude ) ) , 2 )
) < ( 5 *5 );

3 个答案:

答案 0 :(得分:34)

由于您使用的是SQL 2008,请考虑使用本机地理空间功能。你可以做一些奇特的事情:

  • 创建一个代表您的观点的地理类型的持久计算列。
  • 在计算列上创建空间索引。这样可以使yourPoint.STDistance(@otherPoint) <= @distance效率

像这样:

alter table [yourTable] add [p] as geography::Point(Latitude, Longitude, 4326) persisted;
create spatial index [yourSpatialIndex] on [yourTable] ([p])

declare @Longitude float = <somevalue>, @Latitude float = <somevalue>;
declare @point = geography::Point(@Latitude, @Longitude, 4326);
declare @distance = <distance in meters>;

select * from [yourTable] where @point.STDistance([p]) <= @distance;

答案 1 :(得分:5)

我认为你想要POWER而不是POW

http://msdn.microsoft.com/en-us/library/ms174276.aspx

答案 2 :(得分:5)

DECLARE @CurrentLocation geography; 
SET @CurrentLocation  = geography::Point(12.822222, 80.222222, 4326)

SELECT * , Round (GeoLocation.STDistance(@CurrentLocation ),0) AS Distance FROM [Landmark]
WHERE GeoLocation.STDistance(@CurrentLocation )<= 2000 -- 2 Km

精彩教程

http://www.sql-server-helper.com/sql-server-2008/convert-latitude-longitude-to-geography-point.aspx