LINQ POI 邻近度

发布于 2024-10-22 05:49:16 字数 60 浏览 1 评论 0原文

谁能告诉我如何获取从给定经度、纬度到存储在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不是你的备胎 2024-10-29 05:49:16

虽然不是 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:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文