pypolyline
pypolyline copied to clipboard
Fast Google Polyline encoding and decoding using a Rust binary
HEREmaps has an output that contains a bit more data than a standard polyline. They call it a "flexible" polyline (https://pypi.org/project/flexpolyline/) and besides slightly changing the encoding they add the...
How about also supporting co-ordinate lists that are represented as longitude, latitude? These are handled by the other `polyline` package: ```python >>> import polyline >>> # Lat,Lon ... polyline.encode([(50, 100)])...
Hi, My objective is to decode this [polyline](https://pastebin.com/QKFfi9KG), which comes from Valhalla, to lat,lon coordinates. ``` import polyline polyline.decode(poly, 6) ``` gives me the expected result, but: ``` from pypolyline.cutil...