
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
EncodedPolyline implements Google's algorithm for compressing arrays of geographic points. The compressed string can then be passed to the Google Maps API. The Maps API limits URL requests to 2048 characters. This library does not enforce this limit on the encoding length. This coordinate encoding scheme is also compatible with MapQuest Platform Services, which supports variable decimal precision. The default precision of 5 is appropriate for compatibility with the Google Maps API.
gem install encoded_polyline
Using the library with default decimal precision of 5:
EncodedPolyline.encode(-179.9832104) # "`~oia@"
EncodedPolyline.decode("`~oia@") # -179.98321
EncodedPolyline.encode_points([[37.782,-122.406]]) # "ohreFnlbjV"
EncodedPolyline.decode_points("ohreFnlbjV") # [[37.782,-122.406]]
Using the library with explicit decimal precisions:
EncodedPolyline.encode(-179.9832104, 7) # "na`|gjB"
EncodedPolyline.decode("na`|gjB", 7) # -179.9832104
EncodedPolyline.encode_points([[37.782,-122.406]], 2) # "ckF`|V"
EncodedPolyline.decode_points("ckF`|V", 2) # [[37.78, -122.41]]
It is important to specify the same precision when encoding and decoding. Otherwise, decoded coordinates may be wrong by orders of magnitude.
Included is a benchmark that creates a 100-point random walk, gives you a URL, and encodes/decodes it 10,000 times (1 million points total).
Raw length(JSON): 3682 characters
Encoded length: 495 characters
Compression ratio: 0.134437805540467
user system total real
encoding 9.090000 0.000000 9.090000 ( 9.092519)
decoding 16.470000 0.010000 16.480000 ( 16.473547)
bdon - author
anoved - explicit precision, MapQuest support
Copyright (c) 2013 Brandon Liu. See LICENSE for details.
FAQs
Unknown package
We found that encoded_polyline demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.