Updated type of shape id in transit graph.

This commit is contained in:
Daria Volvenkova 2017-10-20 15:18:26 +03:00 committed by Vladimir Byko-Ianko
parent c2f3314a05
commit c2d255281c

View file

@ -258,8 +258,7 @@ class TransitGraphBuilder:
for point in curve_points:
polyline.append({'x': point[0], 'y': point[1]})
shape = {'stop1_id': id1,
'stop2_id': id2,
shape = {'id': {'stop1_id': id1, 'stop2_id': id2},
'polyline': polyline}
self.shapes.append(shape)