iOS 2個座標之間的距離

來源:互聯網
上載者:User

標籤:ios

// 計算兩座標之間的距離

double distanceWithcoord(double lon1,double lat1,double lon2,double lat2)

{

    double er = 6378137;

    double radlat1 = PI*lat1/180.0f;

    double radlat2 = PI*lat2/180.0f;

    double radlong1 = PI*lon1/180.0f;

    double radlong2 = PI*lon2/180.0f;

    if( radlat1 < 0 ) radlat1 = PI/2 + fabs(radlat1);// south

    if( radlat1 > 0 ) radlat1 = PI/2 - fabs(radlat1);// north

    if( radlong1 < 0 ) radlong1 = PI*2 - fabs(radlong1);//west

    if( radlat2 < 0 ) radlat2 = PI/2 + fabs(radlat2);// south

    if( radlat2 > 0 ) radlat2 = PI/2 - fabs(radlat2);// north

    if( radlong2 < 0 ) radlong2 = PI*2 - fabs(radlong2);// west


    double x1 = er * cos(radlong1) * sin(radlat1);

    double y1 = er * sin(radlong1) * sin(radlat1);

    double z1 = er * cos(radlat1);

    double x2 = er * cos(radlong2) * sin(radlat2);

    double y2 = er * sin(radlong2) * sin(radlat2);

    double z2 = er * cos(radlat2);

    double d = sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2)+(z1-z2)*(z1-z2));

    

    double theta = acos((er*er+er*er-d*d)/(2*er*er));

    double dist  = theta*er;

    return dist;

}


本文出自 “11204872” 部落格,請務必保留此出處http://11214872.blog.51cto.com/11204872/1754486

iOS 2個座標之間的距離

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.