LINQ POI 邻近度
谁能告诉我如何获取从给定经度、纬度到存储在 SQL Server DB 中的 POI(经度、纬度)的距离?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然不是 SQL 答案,但我总是推荐这个关于如何计算 lat-lng 之间距离的解释 - http://www.movable-type.co.uk/scripts/latlong.html
对于 SQL Server,假设您使用的是 SQL Server 2008,则可以使用本机 SQL 地理类型。然而,遗憾的是,我认为这些不能很好地映射到 Linq-2-Sql,因此您可能需要将它们包装在存储过程中。
请参阅:
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: