码迷,mamicode.com
首页 > 其他好文 > 详细

根据经纬度算距离

时间:2014-09-12 14:52:53      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   ar   art   div   sp   log   

public double getDistance(double startLat,double startLong,double endLat,double endLong){
//startLong 起始坐标点经度
   //startLat 起始坐标点维度
   //endLong 目标坐标点经度
   //endLat 目标坐标点维度
double lat1 = (Math.PI/180)*startLat; double lat2 = (Math.PI/180)*endLat; double lon1 = (Math.PI/180)*startLong; double lon2 = (Math.PI/180)*endLong; //地球半径 double R = 6371; //两点间距离 km,如果想要米的话,结果*1000就可以了 double d = Math.acos(Math.sin(lat1)*Math.sin(lat2)+Math.cos(lat1)*Math.cos(lat2)*Math.cos(lon2-lon1))*R; //double s=R*Math.acos(Math.cos(lat1*Math.PI/180 ) * Math.cos(lat2*Math.PI/180) * Math.cos(lng1*Math.PI/180 -lng2*Math.PI/180) + Math.sin(lat1*Math.PI/180 ) * Math.sin(lat2*Math.PI/180)); return d*1000;
}

 

根据经纬度算距离

标签:style   blog   color   os   ar   art   div   sp   log   

原文地址:http://www.cnblogs.com/konghou/p/3968222.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!