根据经纬度判断距离

/**
 * 描述:TODO::添加描述
 *
 * @author Jack Que
 * @version 1.0.0 -SNAPSHOT
 * @created 2022 -05-29 11:57:34
 * @create 2022 -05-29 11:50:08
 * @since 1.0.0 -SNAPSHOT
 */
public class LocationUtils {

    /**
     * 赤道半径
     */
    private static double EARTH_RADIUS = 6378.137;

    /**
     * 描述 create.
     *
     * @param d the d
     * @return the double
     * @author Jack Que
     * @created 2022 -05-29 11:57:34 Rad double.
     */
    private static double rad(double d) {
        return d * Math.PI / 180.0;
    }

    /**
     * Description : 通过经纬度获取距离(单位:米)
     * Group :
     *
     * @param originLon 出发点经度
     * @param originLat 出发点纬度
     * @param destinationLon 目的地经度
     * @param destinationLat 目的地纬度
     * @return double distance
     * @author Jack Que
     * @created 2022 -05-29 11:57:34
     */
    public static Integer getDistance(String originLon, String originLat, String destinationLon, String destinationLat) {

        try {
            double radLat1 = rad(Double.parseDouble(originLat));
            double radLat2 = rad(Double.parseDouble(destinationLat));
            double a = radLat1 - radLat2;
            double b = rad(Double.parseDouble(originLon)) - rad(Double.parseDouble(destinationLon));
            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 * 100d) / 100d;
            s = s * 1000;
            return new Double(s).intValue();
        }catch (Exception e){
            System.out.println("计算距离出错:"+e.getMessage());
        }

        return null;

    }

    /**
     * 描述 map通过经纬度获取距离(单位:米)
     *
     * @param map the map
     * @param originLon 出发点经度
     * @param originLat 出发点纬度
     * @author Jack Que
     * @created 2022 -05-29 11:57:34 Get distance map.
     */
    public static void getDistanceMap(Map<String,Object> map,String originLon, String originLat){
        if (StringUtils.isEmpty(map.get("LAT")) || StringUtils.isEmpty(map.get("LON"))){
            System.out.println("经纬度为空!");
            return;
        }
        Integer distance = getDistance(originLon, originLat, map.get("LON").toString(), map.get("LAT").toString());
        map.put("DISTANCE",distance);
    }

    public static void getDistanceList(List<Map<String,Object>> list, String originLon, String originLat){
        if (CollectionUtils.isEmpty(list)){
            System.out.println("列表为空");
            return;
        }
        list.forEach(item->{
            if (!CollectionUtils.isEmpty(item)){
                getDistanceMap(item,originLon,originLat);
            }
        });
    }
}

引用:https://blog.csdn.net/weixin_43866048/article/details/119349603

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值