You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For BEAM we use osmnx to clean up an OSM network before reading it into R5. This simplifies the network by removing some intermediate nodes and not keeping link geometries. So, estimating link length based on the distance between start and end node can lead to a big underestimate of total length.
the edge length is calculated based on straight line distance. We should update it to first look for a "length" tag in the edge and only calculate the length if that doesn't exist.
The text was updated successfully, but these errors were encountered:
For BEAM we use osmnx to clean up an OSM network before reading it into R5. This simplifies the network by removing some intermediate nodes and not keeping link geometries. So, estimating link length based on the distance between start and end node can lead to a big underestimate of total length.
Here:
r5/src/main/java/com/conveyal/r5/streets/StreetLayer.java
Line 1058 in 923bb13
The text was updated successfully, but these errors were encountered: