-
Notifications
You must be signed in to change notification settings - Fork 14
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
Obtain vehicle routes #92
Comments
The use of "addresses" is mildly inflationary here 😃 Jokes aside, can you come up with a (minimal) example? I don't understand what
is supposed to mean. |
The addresses in question are the streets, for example, I pass to the algorithm the latitude and longitude of A and C which are two points of Job, however, knowing the route to be taken I know that it must pass through B, but I did not pass to the algorithm the coordinates of B, but I need these 3 co-coordinates to assemble my map, because I suppose the algorithm finds the best path respecting the physical aspect of the streets in reality, or does it simply draw a straight line ignoring the real physical aspect? |
Ahh, you want an actual route out of it. I'm not sure how you'd get that from pyvroom tbh. Upstream vroom has a |
I understand... Do you know any way I could solve this problem without necessarily needing to be using only pyvroom or vroom? |
Well, you already have OSRM running, that's a routing engine which computes the matrix for vroom's input and would also be used for the route computation if pyvroom supports that. So you can just use Python's |
I am using the library to build a map with real addresses. I already got the solution of the best route where I use the longitude and latitude of the addresses of both vehicles and Jobs, but when I go to create the map the only addresses I have from the solution, are exactly the same as I passed. Is it possible for pyvroom to somehow return all the addresses where the algorithm passes to the best route, and not just the Job and vehicle addresses?
The text was updated successfully, but these errors were encountered: