将经纬度数据存储到数据库中,并查询附近的记录

发布于 2024-09-11 22:47:39 字数 163 浏览 3 评论 0原文

我正在创建一个将使用地理定位的 Rails 应用程序。人们可以向记录添加经度和纬度。如果有多个带有地理位置的记录,则可以看到带有附近记录的 Google 地图,就像 Twitter 地理位置一样。

如何存储坐标(我不介意进行计算)并查找附近的记录?我的数据库是MySQL。

谢谢。

I am creating a rails application which will use geolocation. One can add a longi- and latitude to a record. If there are multiple records with geolocations, one can see a Google Map with nearby records, just like Twitter geolocation.

How can I store the coordinates (I don't mind to do calculations) and find nearby records? My database is MySQL.

Thanks.

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

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

发布评论

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

评论(4

一江春梦 2024-09-18 22:47:40

Geokit 适用于从数据库中提取数据后的数据,但如果您希望使用空间数据从数据库构建查询,则不行。如果你只使用 mysql 那么你会陷入做大量计算的困境。由于您使用的是 Rails,因此您至少有以下选项: http://freelancing -god.github.com/ts/en/geosearching.html 它应该为您处理大量的计算。

Geokit is OK for data after it is pulled from a database, but not if you are looking to structure a query from the database using spatial data. If you were only using mysql then you would be kind of stuck doing alot of calculations. Since you are using rails, you have at least this option: http://freelancing-god.github.com/ts/en/geosearching.html which should take care of a great deal of the calculations for you.

阿楠 2024-09-18 22:47:40

您可以使用acts_as_solr_reloaded来索引和查询您的空间数据,因为您不需要在主表中存储纬度和经度信息,而是创建一个迁移,该迁移创建一个本地表,在其中存储纬度和经度信息。您可以查询solr 索引也使用纬度、经度和半径。

You can use acts_as_solr_reloaded to index and query your spatial data for this you need not to store latitude and longitude information in your main table but rather it creates a migration which creates a locals table where it stores the latitude and longitude information.And you can query the solr indexes using this also with latitude,longitude and radius.

陪你搞怪i 2024-09-18 22:47:40

看看 Geokit。它广泛用于基于地图的应用程序。

Have a look at Geokit. It is widely used in map-based applications.

请止步禁区 2024-09-18 22:47:39

根据您的要求,您可以采取两种方法:

  • 自己存储坐标(按照您的计划)。您应该查看 Geokit gem,它支持 MySQL 后端并提供查找附近位置的帮助程序。
  • 将您的坐标与 Simplegeo 一起存储,您可以使用此 gem。同样,这会照顾您的存储和附近的查找。

There are two approaches you could take, depending on your requirements:

  • Store the co-ordinates yourself (as you had planned). You should check out the Geokit gem which supports a MySQL backend and provides helpers for finding nearby locations.
  • Store your co-ords with with Simplegeo for which you can use this gem. Again, this takes care of your storage and finding nearby.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文