zoukankan      html  css  js  c++  java
  • 根据经纬度,获取两点间的距离


    public class LngLat {

    /**
    * 根据经纬度,获取两点间的距离
    *
    * @author zhijun.wu
    * @param lng1 经度
    * @param lat1 纬度
    * @param lng2
    * @param lat2
    * @return
    *
    * @date 2011-8-10
    */
    public static double distanceByLngLat(double lng1, double lat1, double lng2, double lat2) {
    double radLat1 = lat1 * Math.PI / 180;
    double radLat2 = lat2 * Math.PI / 180;
    double a = radLat1 - radLat2;
    double b = lng1 * Math.PI / 180 - lng2 * Math.PI / 180;
    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;
    }

    /**
    * 说明:
    *
    * @author zhijun.wu
    * @param args
    * @throws Exception
    *
    * @date 2008-5-16
    */
    public static void main(String[] args) throws Exception {
    System.out.println(distanceByLngLat(102.6592, 25.0751, 102.7655, 24.9525));
    }
    }


    /**
    * 计算两坐标的距离
    */
    public static int distance(double lat1, double lng1, double lat2,
    double lng2) {
    double dd = Math.PI / 180;
    double x1 = lat1 * dd, x2 = lat2 * dd;
    double y1 = lng1 * dd, y2 = lng2 * dd;
    double R = 6371004;//地球半径
    double distance = (2 * R * Math.asin(Math.sqrt(2 - 2 * Math.cos(x1)
    * Math.cos(x2) * Math.cos(y1 - y2) - 2 * Math.sin(x1)
    * Math.sin(x2)) / 2));
    // km 返回
    // return distance*1000;
    return (int) distance;
    }

  • 相关阅读:
    Spark Streaming源码解读之Receiver生成全生命周期彻底研究和思考
    linux 修改时间时区,修改语言
    远程链接mysql error 2003
    Android NDK r10c 编译boost 1.55 (使用Cygwin)
    linux上cocos2dx Android打包环境
    linux上cocos2dx 环境配置
    linux, windows编译安装 boost库 (boost 1.56)
    编译安装 gcc 4.8.3
    vim配置添加python
    mvn设置
  • 原文地址:https://www.cnblogs.com/jason-star/p/3656705.html
Copyright © 2011-2022 走看看