Distance between Long Lat coord using SQLITE

后端 未结 2 1275
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-06 16:05

I\'ve got an sqlite db with long and lat of shops and I want to find out the closest 5 shops.

So the following code works fine.

    if(sqlite3_prepare_v2         


        
2条回答
  •  情歌与酒
    2021-02-06 16:35

    The fastest way to find nearby locations in SQL is to use the Haversine formula in an SQL query. Do a Google search for sqlite and Haversine and you'll find an implementation.

    Here's one I've used before:

    http://www.thismuchiknow.co.uk/?p=71

提交回复
热议问题