mysql 附近3公里的_mysql搜寻附近N公里内数据的实例
根據(jù)圓周率和地球半徑系數(shù)以及搜尋點(diǎn)的經(jīng)緯度,搜尋數(shù)據(jù)表中與搜尋點(diǎn)之間的距離為N公里內(nèi)的數(shù)據(jù)。
1.創(chuàng)建測(cè)試表CREATE TABLE `location` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `longitude` decimal(13,10) NOT NULL, `latitude` decimal(13,10) NOT NULL, PRIMARY KEY (`id`), KEY `long_lat_index` (`longitude`,`latitude`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2.插入測(cè)試數(shù)據(jù)insert into location(name,longitude,latitude) values
('廣州東站',113.332264,23.156206),
('林和西',113.330611,23.147234),
('天平架',113.328095,23.165376);mysql> select * from `location`;
+----+--------------+----------------+---------------+| id | name | longitude | latitude |
+----+--------------+----------------+---------------+| 1 | 廣州東站 | 113.3322640000 | 23.1562060000 |
| 2 | 林和西 | 113.3306110000 | 23.1472340000 || 3 | 天平架 | 113.3280950000 | 23.1653760000 |
+----+--------------+----------------+---------------+
3.搜尋1公里內(nèi)的數(shù)據(jù)
搜尋點(diǎn)坐標(biāo):時(shí)代廣場(chǎng) 113.323568, 23.146436
6370.996公里為地球的半徑
計(jì)算球面兩點(diǎn)坐標(biāo)距離公式C = sin(MLatA)sin(MLatB)cos(MLonA-MLonB) + cos(MLatA)cos(MLatB)
Distance = RArccos(C)*Pi180
根據(jù)計(jì)算公式得到查詢(xún)語(yǔ)句如下:select * from `location` where (
acos(sin(([#latitude#]*3.1415)/180) * sin((latitude*3.1415)/180) + cos(([#latitude#]*3.1415)/180) * cos((latitude*3.1415)/180) * cos(([#longitude#]*3.1415)/180 - (longitude*3.1415)/180))*6370.996)<=1;
執(zhí)行查詢(xún):mysql> select * from `location` where ( -> acos( -> sin((23.146436*3.1415)/180) * sin((latitude*3.1415)/180) + -> cos((23.146436*3.1415)/180) * cos((latitude*3.1415)/180) * cos((113.323568*3.1415)/180 - (longitude*3.1415)/180) -> )*6370.996 -> )<=1;
+----+-----------+----------------+---------------+| id | name | longitude | latitude |
+----+-----------+----------------+---------------+| 2 | 林和西 | 113.3306110000 | 23.1472340000 |
+----+-----------+----------------+---------------+
本文講解了mysql 搜尋附近N公里內(nèi)數(shù)據(jù)的實(shí)例相關(guān)內(nèi)容,更多相關(guān)知識(shí)請(qǐng)關(guān)注Gxl網(wǎng)。
相關(guān)推薦:
mysql 連接閃斷自動(dòng)重連的方法
php 實(shí)現(xiàn)HTML實(shí)體編號(hào)與非ASCII字符串相互轉(zhuǎn)換類(lèi)
php 根據(jù)自增id創(chuàng)建唯一編號(hào)類(lèi)
總結(jié)
以上是生活随笔為你收集整理的mysql 附近3公里的_mysql搜寻附近N公里内数据的实例的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: python 整数逆位运算_python
- 下一篇: python检查_python设置检查点