如何检查某些区域内是否有Python坐标

yto*_*omo 8 python location area latitude-longitude coordinates

可以说我有2种坐标,第一种叫做center_point,第二次叫做test_point.我想通过应用阈值来了解test_point坐标是否靠近或center_point不协调radius.如果我写它,它就像:

center_point = [{'lat': -7.7940023, 'lng': 110.3656535}]
test_point = [{'lat': -7.79457, 'lng': 110.36563}]

radius = 5 # in kilometer
Run Code Online (Sandbox Code Playgroud)

如何在Python中检查test_point半径的内部或外部center_point?我如何在Python中执行此类任务?

预期结果将表示从坐标test_point内部或外部.radiuscenter_point

yto*_*omo 19

根据@ user1753919在他/她的评论中的推荐,我得到了答案:Python中的Haversine公式(轴承和两个GPS点之间的距离)

最终代码:

from math import radians, cos, sin, asin, sqrt

def haversine(lon1, lat1, lon2, lat2):
    """
    Calculate the great circle distance between two points 
    on the earth (specified in decimal degrees)
    """
    # convert decimal degrees to radians 
    lon1, lat1, lon2, lat2 = map(radians, [lon1, lat1, lon2, lat2])

    # haversine formula 
    dlon = lon2 - lon1 
    dlat = lat2 - lat1 
    a = sin(dlat/2)**2 + cos(lat1) * cos(lat2) * sin(dlon/2)**2
    c = 2 * asin(sqrt(a)) 
    r = 6371 # Radius of earth in kilometers. Use 3956 for miles
    return c * r

center_point = [{'lat': -7.7940023, 'lng': 110.3656535}]
test_point = [{'lat': -7.79457, 'lng': 110.36563}]

lat1 = center_point[0]['lat']
lon1 = center_point[0]['lng']
lat2 = test_point[0]['lat']
lon2 = test_point[0]['lng']

radius = 1.00 # in kilometer

a = haversine(lon1, lat1, lon2, lat2)

print('Distance (km) : ', a)
if a <= radius:
    print('Inside the area')
else:
    print('Outside the area')
Run Code Online (Sandbox Code Playgroud)

谢谢

  • 感谢这个解决方案!非常适合我们的项目:) (2认同)

小智 15

GeoPy可以优雅地处理它:

from geopy import distance

center_point = [{'lat': -7.7940023, 'lng': 110.3656535}]
test_point = [{'lat': -7.79457, 'lng': 110.36563}]
radius = 5 # in kilometer

center_point_tuple = tuple(center_point[0].values()) # (-7.7940023, 110.3656535)
test_point_tuple = tuple(test_point[0].values()) # (-7.79457, 110.36563)

dis = distance.distance(center_point_tuple, test_point_tuple).km
print("Distance: {}".format(dis)) # Distance: 0.0628380925748918

if dis <= radius:
    print("{} point is inside the {} km radius from {} coordinate".format(test_point_tuple, radius, center_point_tuple))
else:
    print("{} point is outside the {} km radius from {} coordinate".format(test_point_tuple, radius, center_point_tuple))
Run Code Online (Sandbox Code Playgroud)

或者如果您需要知道大圆距离:

dis = distance.great_circle(center_point_tuple, test_point_tuple).km
print("Distance: {}".format(dis)) # Distance: 0.0631785164583489
Run Code Online (Sandbox Code Playgroud)