web-dev-qa-db-ja.com

緯度/経度による半径検索

私はmysqlを使用してこの質問に対するたくさんの答えを見つけましたが、2008年のsqlが使用できるクエリに何も変換できませんでした。データベースの各行に経度と緯度の列があります。ユーザーがいる場所の緯度と経度を取得します。ユーザーの緯度/経度からxマイル以内にあるすべての行を検索できるようにしたいと思います。また、SOで見つけた他のクエリを使用しようとすると、エラーが発生し続けます-'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 );
20
Scott Selby

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 @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;
35
Ben Thul

捕虜ではなく力が欲しいと思う

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

5
Derek Tomes
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

5
Vignesh Raja