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
The keyword arguments aren't passed through on .matrix.
.matrix
matrix_locations=1 didn't make it to the backend.
matrix_locations=1
from routingpy import Valhalla from pprint import pprint coords = [[13.413706, 52.490202], [13.421838, 52.514105], [13.453649, 52.507987], [13.401947, 52.543373]] client = Valhalla(base_url='http://localhost:8002/') matrix = client.matrix(locations=coords, profile='pedestrian', dry_run=True, matrix_locations=1) print(matrix)
params.update(kwargs) is missing
params.update(kwargs)
routingpy/routingpy/routers/valhalla.py
Lines 643 to 646 in a86cee6
#135
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
bug
The keyword arguments aren't passed through on
.matrix
.code example
matrix_locations=1
didn't make it to the backend.point in code
params.update(kwargs)
is missingroutingpy/routingpy/routers/valhalla.py
Lines 643 to 646 in a86cee6
fix as pull request
#135
The text was updated successfully, but these errors were encountered: