1 Star 0 Fork 89

宝塔镇河妖/openyelp

forked from 去好店/nbsaas-mall2 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
doc 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
ada 提交于 2015-03-19 19:38 . p
网站功能部分
用户
权限
敏感词过滤
网站配置
访问统计
定时任务
#lat为纬度, lng为经度, 一定不要弄错
drop function getDistance;
DELIMITER $$
CREATE DEFINER=`root`@`localhost` FUNCTION `getDistance`(
lon1 float(10,7)
,lat1 float(10,7)
,lon2 float(10,7)
,lat2 float(10,7)
) RETURNS double
begin
declare d double;
declare radius int;
set radius = 6378140; #假设地球为正球形,直径为6378140米
set d = (2*ATAN2(SQRT(SIN((lat1-lat2)*PI()/180/2)
*SIN((lat1-lat2)*PI()/180/2)+
COS(lat2*PI()/180)*COS(lat1*PI()/180)
*SIN((lon1-lon2)*PI()/180/2)
*SIN((lon1-lon2)*PI()/180/2)),
SQRT(1-SIN((lat1-lat2)*PI()/180/2)
*SIN((lat1-lat2)*PI()/180/2)
+COS(lat2*PI()/180)*COS(lat1*PI()/180)
*SIN((lon1-lon2)*PI()/180/2)
*SIN((lon1-lon2)*PI()/180/2))))*radius;
return d;
end
$$
DELIMITER ;
select getDistance(116.3899,39.91578,116.3904,39.91576); #调用函数
SELECT areaid,earth_distance( ll_to_earth(29.5081729888916,106.494911193848),ll_to_earth(latitude, longitude)) as distancefromcurretnlocation
,id, adddate, address, gps, lastdate, latitude, longitude, name,
phone, website, userid
FROM shop where shop.areaid=403
ORDER BY distancefromcurretnlocation asc limit 10;
CREATE INDEX gisindex on shop USING gist(ll_to_earth(latitude, longitude));
select getDistance(108.95678,34.2775,shop.longitude,shop.latitude) as l, shop.* from shop order by l desc limit 100
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/alecfan/openyelp.git
git@gitee.com:alecfan/openyelp.git
alecfan
openyelp
openyelp
master

搜索帮助