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
Hi,
My objective is to decode this polyline, which comes from Valhalla, to lat,lon coordinates.
import polyline polyline.decode(poly, 6)
gives me the expected result, but:
from pypolyline.cutil import decode_polyline decode_polyline(str.encode(poly), 6)
yields a lon,lat result, that I then I have to reverse.
Am I missing something?
Best regards, Paul
The text was updated successfully, but these errors were encountered:
This library uses lon, lat order, as noted in the README. There's no option to swap it.
Sorry, something went wrong.
Okay, thanks, my bad I was going with the cutil.pyx function comments.
cutil.pyx
No branches or pull requests
Hi,
My objective is to decode this polyline, which comes from Valhalla, to lat,lon coordinates.
gives me the expected result, but:
yields a lon,lat result, that I then I have to reverse.
Am I missing something?
Best regards,
Paul
The text was updated successfully, but these errors were encountered: