基于位置的数据抓取算法
我必须开发一种算法来抓取基于位置的数据并将其显示在移动设备上。我只是一个Web程序员,对php和mysql有一些了解。我需要开发这个算法。请给出一些关于从哪里开始开发的说明。
I have to develop an algorithm for location based data grabbing and displaying it on a mobile device. I'm just a web programmer with some knowledge of php and mysql. I need to develop this algorithm. Please give some instructions on where to start the development.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以拥有与地址相关的 PointOfInterest 表。
假设我想在芝加哥找到一台自动取款机。然后您搜索芝加哥的所有 ATM。
获得结果集后,您可以对每个结果集进行距离计算,并检查哪一个是最接近的。
在这里您可以找到一种如何根据经度/纬度坐标计算距离的方法
http:// /www.movable-type.co.uk/scripts/latlong.html
You could have PointOfInterest table that relates to address.
Let say I want to find an ATM in Chicago. Then you perform a seach for all ATMs in chicago.
After you get your result set you perform distance calculation over each of them and check which is the closest one.
Here you may find a way how to calculate distance based on longitude/latitude coordinates
http://www.movable-type.co.uk/scripts/latlong.html