【Python學習】指定兩點地理位置經緯度的距離計算

來源:互聯網
上載者:User

標籤:

指定兩點地理位置經緯度的距離計算

 1 #coding=utf-8 2  3 from math import * 4  5 # input Lat_A 緯度A 6 # input Lng_A 經度A 7 # input Lat_B 緯度B 8 # input Lng_B 經度B 9 # output distance 距離(km)10 def calcDistance(Lat_A, Lng_A, Lat_B, Lng_B):11     ra = 6378.140  # 赤道半徑 (km)12     rb = 6356.755  # 極半徑 (km)13     flatten = (ra - rb) / ra  # 地球扁率14     rad_lat_A = radians(Lat_A)15     rad_lng_A = radians(Lng_A)16     rad_lat_B = radians(Lat_B)17     rad_lng_B = radians(Lng_B)18     pA = atan(rb / ra * tan(rad_lat_A))19     pB = atan(rb / ra * tan(rad_lat_B))20     xx = acos(sin(pA) * sin(pB) + cos(pA) * cos(pB) * cos(rad_lng_A - rad_lng_B))21     c1 = (sin(xx) - xx) * (sin(pA) + sin(pB)) ** 2 / cos(xx / 2) ** 222     c2 = (sin(xx) + xx) * (sin(pA) - sin(pB)) ** 2 / sin(xx / 2) ** 223     dr = flatten / 8 * (c1 - c2)24     distance = ra * (xx + dr)25     return distance26 27 Lat_A=32.060255; Lng_A=118.796877 # 南京28 Lat_B=39.904211; Lng_B=116.407395 # 北京29 distance=calcDistance(Lat_A,Lng_A,Lat_B,Lng_B)30 print(‘(Lat_A, Lng_A)=({0:10.3f},{1:10.3f})‘.format(Lat_A,Lng_A))31 print(‘(Lat_B, Lng_B)=({0:10.3f},{1:10.3f})‘.format(Lat_B,Lng_B))32 print(‘Distance={0:10.3f} km‘.format(distance))

 執行結果:

(Lat_A, Lng_A)=(    32.060,   118.797)(Lat_B, Lng_B)=(    39.904,   116.407)Distance=   896.533 km

 

【Python學習】指定兩點地理位置經緯度的距離計算

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.