diff options
Diffstat (limited to 'store.py')
| -rw-r--r-- | store.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -14,7 +14,6 @@ class Node: def add_neighbours(nodes, parser): - print("adding neighbours") for way in parser.iter_ways(): if 'highway' not in way['tags']: continue @@ -52,4 +51,3 @@ def select_nodes_in_rectangle(nodes, min_lat, max_lat, min_long, max_long): return [node for node in nodes.values() if min_lat <= node.lat <= max_lat and min_long <= node.lng <= max_long] - |
