We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
problem_instance = vroom.Input( servers={"auto": "valhalla1.openstreetmap.de:443"}, router=vroom._vroom.ROUTER.VALHALLA )
problem_instance.add_vehicle(vroom.Vehicle(1, start=(51.5075, -0.1279), profile="auto")) problem_instance.add_job([ vroom.Job(1, location=(51.5075, -0.1279)), vroom.Job(2, location=(51.5077239943, -0.1310421061)), vroom.Job(3, location=(51.5098275520, -0.1348400078)), ]) sol = problem_instance.solve(exploration_level=5, nb_threads=4) print(sol.summary.distance)
on Above code i'm getting "Valhalla matrix error (No suitable edges near location)." can you please help me out to fix this issue
The text was updated successfully, but these errors were encountered:
The problem is most certainly related to using lat, lon instead of lon, lat for the coordinates.
lat, lon
lon, lat
Sorry, something went wrong.
No branches or pull requests
problem_instance = vroom.Input(
servers={"auto": "valhalla1.openstreetmap.de:443"},
router=vroom._vroom.ROUTER.VALHALLA
)
on Above code i'm getting "Valhalla matrix error (No suitable edges near location)." can you please help me out to fix this issue
The text was updated successfully, but these errors were encountered: