可以說我有2種座標,第一個叫center_point
,第二個叫test_point
。我想知道如果test_point
座標是靠近或不是到center_point
座標應用radius
閾值。如果我寫它,它就像:如何檢查某區域內的座標Python
center_point = [{'lat': -7.7940023, 'lng': 110.3656535}]
test_point = [{'lat': -7.79457, 'lng': 110.36563}]
radius = 5 # in kilometer
如何檢查是否內部或從center_point
在Python半徑外的test_point
?我如何在Python中執行這種類型的任務?
預計結果會說test_point
內部或外部的radius
與center_point
之間的座標。
計算距離使用haversine公式HTTP: //stackoverflow.com/questions/4913349/haversine-formula-in-python-bearing-and-distance-between-two-gps-points並查看它是否小於r – plasmon360
hi @ user1753919 tha它工作。 – ytomo