sql >> Database >  >> RDS >> Sqlserver

vind de dichtstbijzijnde locatie in ms-sql

Gebruik deze functie

CREATE FUNCTION dbo.DictanceKM(@lat1 FLOAT, @lat2 FLOAT, @lon1 FLOAT, @lon2 FLOAT)
RETURNS FLOAT 
AS
BEGIN

    RETURN ACOS(SIN(PI()*@lat1/180.0)*SIN(PI()*@lat2/180.0)+COS(PI()*@lat1/180.0)*COS(PI()*@lat2/180.0)*COS(PI()*@lon2/180.0-PI()*@lon1/180.0))*6371
END

U kunt met deze functie bestellen, MAAR op grote datasets zal het erg traag zijn, dus probeer de recordset vooraf te filteren

UPD:

De testgegevens van @chopikadze gebruiken:

declare @lat float, @lng float
select @lat = 41.0186, @lng = 28.964701

declare @Location table(Latitude float, Longtitude float, Name nvarchar(50))
insert into @Location(Latitude, Longtitude, Name) values (41.0200500000, 40.5234490000, 'a')
insert into @Location(Latitude, Longtitude, Name) values (41.0185714000, 37.0975924000, 'b')
insert into @Location(Latitude, Longtitude, Name) values (41.0184913000, 34.0373739000, 'c')
insert into @Location(Latitude, Longtitude, Name) values (41.0166667000, 39.5833333000, 'd')
insert into @Location(Latitude, Longtitude, Name) values (41.0166667000, 28.9333333000, 'e')

SELECT ABS(dbo.DictanceKM(@lat, Latitude, @lng, Longtitude)) DistanceKm, * FROM @Location
ORDER BY ABS(dbo.DictanceKM(@lat, Latitude, @lng, Longtitude))

Ervan uitgaande dat de aarde GEEN geoïde is, maar de ronde bal, als je een exacte formule van minder dan 1 m nodig hebt - ik kan het vinden, heb het niet bij me



  1. MySQL-generator voor aangepaste primaire sleutels

  2. MySQL-fout #1005 (code 150)

  3. Hoe SQL Server Hiërarchie-ID te gebruiken via eenvoudige voorbeelden

  4. lijst om variabele te binden in SQL Developer