1
0
mirror of https://github.com/gsi-upm/soil synced 2025-07-05 20:42:22 +00:00
soil/soil/agents/Geo.py
2021-10-14 17:37:06 +02:00

21 lines
752 B
Python

from scipy.spatial import cKDTree as KDTree
from . import NetworkAgent
class Geo(NetworkAgent):
'''In this type of network, nodes have a "pos" attribute.'''
def geo_search(self, radius, node=None, center=False, **kwargs):
'''Get a list of nodes whose coordinates are closer than *radius* to *node*.'''
node = as_node(node if node is not None else self)
G = self.subgraph(**kwargs)
pos = nx.get_node_attributes(G, 'pos')
if not pos:
return []
nodes, coords = list(zip(*pos.items()))
kdtree = KDTree(coords) # Cannot provide generator.
indices = kdtree.query_ball_point(pos[node], radius)
return [nodes[i] for i in indices if center or (nodes[i] != node)]