From 03be909a60567bfe8672c15050b19b131a16805b Mon Sep 17 00:00:00 2001 From: Al Date: Thu, 2 Jun 2016 03:05:31 -0400 Subject: [PATCH] [fix] name --- scripts/geodata/osm/intersections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/geodata/osm/intersections.py b/scripts/geodata/osm/intersections.py index ec7ecffb..78ac8586 100644 --- a/scripts/geodata/osm/intersections.py +++ b/scripts/geodata/osm/intersections.py @@ -123,7 +123,7 @@ class OSMIntersectionReader(object): group_len = sum((1 for j in g)) way_indices = self.intersection_edges_ways[idx:idx + group_len] - all_ways = [json.loads(reader.way_props.Get(safe_encode(w))) for w in way_indices] + all_ways = [json.loads(self.way_props.Get(safe_encode(w))) for w in way_indices] way_names = set() ways = [] for way in all_ways: