随机创建给定地理点 50 英尺范围内的地理点(空间 SQL)

发布于 2024-10-03 02:07:10 字数 274 浏览 2 评论 0原文

我想在给定 GeoPoint 的 50 英尺范围内创建一个随机 GeoPoint。 (使用 SQL Server 2008 或 iPhone SDK)

我可以在 long & 中添加一些数字吗? lat 创建这个随机地理点?

示例:

mylatdistance = Random(1,50) newlat = lat + mylatdistance 

或者

这是空间 SQL/区域问题吗?

谢谢

I would like to create a random GeoPoint within 50 feet of a given GeoPoint. (Using SQL Server 2008 or IPhone SDK)

Can I just add some number to the long & lat to create this random Geopoint?

Example:

mylatdistance = Random(1,50) newlat = lat + mylatdistance 

or

Is this a Spatial SQL/area problem?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

安人多梦 2024-10-10 02:07:10

只要将 delta_longitude 值缩放 1/cos(纬度),这种方法就应该有效,因为 1 度的纬度仅等于 1 度的赤道经度。如果您不进行此缩放,当您的中心点远离赤道时,您的随机点集合将在经度维度上受到更多“挤压”。

That approach should work, as long as you scale the delta_longitude values by a factor of 1/cos(latitude), since 1 degree of latitude only equals 1 degree of longitude at the equator. If you don't do this scaling, your random ensemble of points will get more "squashed" in the longitude dimension as your center point moves away from the equator.

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