can anybody tell me how i can get the distance from a given longitude, latitude to a poi(longitude, latitude) stored in SQL Server DB ?

Thanks in advance, Martin

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

While not a SQL answer, I always recommend this explanation for how to calculate distances between lat-lng - http://www.movable-type.co.uk/scripts/latlong.html

For SQL Server, assuming you are using SQL Server 2008, then you can use the native SQL geography types. However, sadly I don't think these map well to Linq-2-Sql so you will probably need to wrap them within stored procedures.

See:

link|improve this answer
Correct. Sadly, neither Linq To Sql nor EF support the geography data types. – Jim Wooley Mar 21 '11 at 14:41
feedback

There is a SP on this page that might help. Else check these links.

link|improve this answer
this looks very promissing! – Martin Nov 7 '11 at 6:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.