欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java实现计算地理坐标之间的距离

程序员文章站 2024-03-03 19:08:22
java实现计算两经纬度点之间的距离,直接上代码,具体解释请参考注释 复制代码 代码如下: package com.jttx.poi.utils; import co...

java实现计算两经纬度点之间的距离,直接上代码,具体解释请参考注释

复制代码 代码如下:

package com.jttx.poi.utils;
import com.jttx.poi.entity.point;
/**
 * created by louis on 2014/9/2.
 */
public class geoutils {
    /**
     * 计算两经纬度点之间的距离(单位:米)
     * @param lng1  经度
     * @param lat1  纬度
     * @param lng2
     * @param lat2
     * @return
     */
    public static double getdistance(double lng1,double lat1,double lng2,double lat2){
        double radlat1 = math.toradians(lat1);
        double radlat2 = math.toradians(lat2);
        double a = radlat1 - radlat2;
        double b = math.toradians(lng1) - math.toradians(lng2);
        double s = 2 * math.asin(math.sqrt(math.pow(math.sin(a / 2), 2) + math.cos(radlat1)
                * math.cos(radlat2) * math.pow(math.sin(b / 2), 2)));
        s = s * 6378137.0;// 取wgs84标准参考椭球中的地球长半径(单位:m)
        s = math.round(s * 10000) / 10000;
        return s;
    }
    /**
     * 计算tp值
     * @param curpoint      当前点
     * @param relatedpoint  偏移点
     * @param isgeography   是否是地理坐标 false为2d坐标
     * @return              tp值
     */
    public static double getdirangle(point curpoint,point relatedpoint,boolean isgeography){
        double result = 0;
        if(isgeography){
            double y2 = math.toradians(relatedpoint.getlat());
            double y1 = math.toradians(curpoint.getlat());
            double alpha = math.atan2(relatedpoint.getlat() - curpoint.getlat(), (relatedpoint.getlng() - curpoint.getlng()) * math.cos((y2 - y1) / 2));//纬度方向乘以cos(y2-y1/2)
            double delta =alpha<0?(2*math.pi+alpha):alpha;
            result = math.todegrees(delta);
        }else {
            double alpha = math.atan2(relatedpoint.getlat() - curpoint.getlat(), relatedpoint.getlng() - curpoint.getlng());
            double delta=alpha<0?(2*math.pi+alpha):alpha;
            result = math.todegrees(delta);
        }
        return result;
    }
    public static void main(string[] args) {
        system.out.println(getdistance(121.446014,31.215937,121.446028464238,31.2158502442799  ));
    }
}

以上就是本文的全部内容了,希望大家能够喜欢。