pypolyline
pypolyline copied to clipboard
decode to lon,lat?
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