diff options
| author | Max Bringemo <maxbr167@student.liu.se> | 2020-12-05 12:25:46 +0100 |
|---|---|---|
| committer | Max Bringemo <maxbr167@student.liu.se> | 2020-12-05 12:25:46 +0100 |
| commit | ab68f747a3aa2c23430a45ae91edbfeb6106a4a0 (patch) | |
| tree | c60efa40dfa319af07af0fad01f974ff09163fe4 /store.py | |
| parent | 10e3d6874745283b545d3b8029a3e5e184932c5d (diff) | |
| parent | d4540e1322b7aa029e909696a83d7cfd3201299c (diff) | |
| download | tdde25-ab68f747a3aa2c23430a45ae91edbfeb6106a4a0.tar.gz | |
Merge branch 'browser-icon' into 'master'
Browser icon
See merge request tdde25-2020/tdde25-2020-projekt-sg3-maps-05!12
Diffstat (limited to 'store.py')
| -rw-r--r-- | store.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -8,7 +8,6 @@ class Node: self.lng = float(lng) self.neighbours = [] - def coord_tuple(self): return self.lat, self.lng @@ -55,4 +54,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] - |
