zoukankan      html  css  js  c++  java
  • Java 根据两个经纬度坐标计算距离

    public class Distance
    {

        private static final double EARTH_RADIUS = 6378137;
        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)
        {
           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;
           return s;
        }
       
       
        /**
         * @param args
         */
        public static void main(String[] args)
        {
        // TODO 自动生成方法存根
            double distance = GetDistance(121.491909,31.233234,121.411994,31.206134);
            System.out.println("Distance is:"+distance);
        }

    }

  • 相关阅读:
    matlab如何写一个类
    最大稳定极值区域(MSER)检测
    Excel中公式的绝对引用和相对引用单元格
    c++中自增(++)和自减(--)操作符
    C++中的c_str()函数用法
    一些常用的图像数据库
    浅谈C++中指针和引用的区别
    selenium之find_element_by_xpath定位元素
    python selenium使用
    H5页面调用手机扫一扫功能
  • 原文地址:https://www.cnblogs.com/oftenlin/p/4241098.html
Copyright © 2011-2022 走看看