forked from organicmaps/organicmaps
Types of osm_id and interchange_node_id updated in transit graph.
This commit is contained in:
parent
b2b36cf0be
commit
7083f952d9
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ class OsmIdCode:
|
|||
|
||||
def get_extended_osm_id(osm_id, osm_type):
|
||||
try:
|
||||
return osm_id | OsmIdCode.TYPE2CODE[osm_type[0]]
|
||||
return str(osm_id | OsmIdCode.TYPE2CODE[osm_type[0]])
|
||||
except KeyError:
|
||||
raise ValueError('Unknown OSM type: ' + osm_type)
|
||||
|
||||
|
@ -38,7 +38,7 @@ def get_line_id(road_id, line_index):
|
|||
|
||||
|
||||
def get_interchange_node_id(min_stop_id):
|
||||
return 1 << 63 | min_stop_id
|
||||
return 1 << 62 | min_stop_id
|
||||
|
||||
|
||||
def clamp(value, min_value, max_value):
|
||||
|
|
Loading…
Add table
Reference in a new issue