-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
where does osrm store nodes and edge data in the source code. #6091
Comments
The graph representation appears in OSRM source code in many places and in many forms, so without knowing what you're doing it might not be helpful. |
thank you for your response @mjjbell .I want to find out the variable or data structure in which the edges are stored .I want to make changes in that ds to show the information like until which date the particular edge is blocked or is to be avoided ,(if any edge due to natural disaster, or some sports event is blocked) and return that information in the response in route leg objects. And make an application so that if any route contains that edge ,i will show its information binded in a popup to that edge.I guess you can get me now. |
If I understand correctly, you want to annotate the returned route with additional context (as opposed to say, using external data sources to alter the routing results). You can already use #5968 adds the same functionality for OSM ways, so that could act as a starting point for your use-case with edges. You could then match these way IDs to your external dataset for displaying information in your app. |
where does osrm store nodes and edge data in the source code. Like in which file of Project-OSRM
/osrm-backend.which file contains the graph ?
The text was updated successfully, but these errors were encountered: