java计算两个经纬度点之间的距离

package com.brainlong.ccbs.global;


import java.math.BigDecimal;


/**
 * Created with IntelliJ IDEA.
 * User: wanglulu
 * Date: 13-10-14
 * Time: 下午6:21
 * To change this template use File | Settings | File Templates.
 */
public class MapUtils {


    private static final double EARTH_RADIUS = 6378.137;


    private static double rad(double d) {
        return d * Math.PI / 180.0;
    }


    /**
     * 根据两点间经纬度坐标(double值),计算两点间距离,单位为米
     *
     * @param lng1
     * @param lat1
     * @param lng2
     * @param lat2
     * @return
     */
    public static Double GetDistance(Double lng1, Double lat1, Double lng2, Double lat2) {
        if (null == lng1 || null == lat1 || null == lng2 || null == lat2){
            return null;
        }


        double radLat1 = rad(lat1);
        double radLat2 = rad(lat2);
        double a = radLat1 - radLat2;
        double b = rad(lng1) - rad(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 * EARTH_RADIUS;
        // s = Math.round(s * 10000) / 10000;


        BigDecimal decimal = new BigDecimal(s * 1000);
        if(null != decimal){
            return decimal.setScale(2,BigDecimal.ROUND_HALF_UP).doubleValue();
        }


        return null;
        //return s;
    }




    public static void main(String[] args) {
        double distance;
        distance = GetDistance(121.43106979, 31.36955239, 121.43332284, 31.36636445);
        System.out.println("Distance is:" + distance);
    }


}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值