Skip to content
Snippets Groups Projects
Commit 431ae784 authored by Jean-Marie Favreau's avatar Jean-Marie Favreau
Browse files

A junction is "shorter" than its real length

parent 6ba7f0ee
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,8 @@ class Util:
coef = 1
if "highway" in gEdge and gEdge["highway"] in ["primary_link", "secondary_link", "tertiary_link", "trunk_link", "motorway_link"]:
coef = 0.5
if "junction" in gEdge:
coef = 0.5
return Util.distance(G, node1, node2) * coef
def distance(G, node1, node2):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment