-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recieve Exception "There are no edges remaining after parsing" when using custom built OSM data #7099
Comments
If you want your ways to be parsed by OSRM, you need to comply to the OpenStreetMap format. Road infrastructure is typically described using the If you want to further understand how profiles work, you want to check out the documentation or directly look at the code. For example this snippet is storing the default speed used based on the values of the Lines 141 to 158 in 6f235cc
|
Awesome, after some more searching I suspected the highway = something tag was significant. Thanks for the confirmation The data that I have also has speed encodings on it as an extra tag on the ways. Is there an option within the |
If you want to use a custom tag containing speed, you'll have to adjust the lua parsing code in the profile. Another option would be to use the built-in support for traffic data to pass in speeds between pair of nodes, see https://github.com/Project-OSRM/osrm-backend/wiki/Traffic. |
Hello, this issue is likely extremely similar to this issue "#6340"
I am trying to run the "osrm-extract" on a custom made .osm built using road data for Melbourne city in Australia.
I have already tried the publicly available .osm data for Melbourne city but also want to utilize custom made data to better understand the osrm system.
I am receiving the following error.
I am almost certain it is because I am missing certain tags that are controlled by the car.lua config. I am finding it difficult to find information regarding how to edit the car.lua config to control the functionality of the osrm program.
Here is an example
<way>
along with an example<node>
from my osm setPlease tell me the most obvious missing tags from this way
Please tell me if there are any obvious formatting errors from the example
My data set only contains nodes and ways (to act as intersections and edges respectively in the road network graph)
Do you think this is enough? Is there more osm data that needs to be added for the osrm program to function?
Finally, is there an information source for how to properly edit the car.lua script, what various features could be added to it and what feature defines the filtering process when running osrm-extract?
Thank you very much for your help
The text was updated successfully, but these errors were encountered: