You don't need to use list ( array) at all, you can pass dictionary ( points) to min; the dictionary key will be passed to the function key:
>>> from functools import partial
>>>
>>> def find_nearest(points, coord):
... dist = lambda s, key: (s[0] - points[key][0]) ** 2 + \
... (s[1] - points[key][1]) ** 2
... return min(points, key=partial(dist, coord))
...
>>> points = {'Location1': (76, 81), 'Location2': (75, 105),
... 'Location3': (76, 130), 'Location4': (76, 152)}
>>> find_nearest(points, (0, 0))
'Location1'
>>> find_nearest(points, (100, 100))
'Location2'
>>> find_nearest(points, (100, 200))
'Location4'
By accessing coordlambda directly, you can remove partial:
def find_nearest(points, coord):
dist = lambda key: (coord[0] - points[key][0]) ** 2 + \
(coord[1] - points[key][1]) ** 2
return min(points, key=dist)
or
def find_nearest(points, coord):
x, y = coord
dist = lambda key: (x - points[key][0]) ** 2 + (y - points[key][1]) ** 2
return min(points, key=dist)
source
share