Learn R Programming

gepaf

The goal of gepaf is to encode and decode the Google Encoded Polyline Algorithm Format.

Example

Encoding

library(gepaf)
coords <- data.frame(
  lat = c(38.5, 40.7, 43.252),
  lon = c(-120.2, -120.95, -126.453)
)
encpoly <- encodePolyline(coords)
encpoly
#> [1] "_p~iF~ps|U_ulLnnqC_mqNvxq`@"

Decoding

coords <- decodePolyline(enc_polyline = "_p~iF~ps|U_ulLnnqC_mqNvxq`@")
coords
#>      lat      lon
#> 1 38.500 -120.200
#> 2 40.700 -120.950
#> 3 43.252 -126.453

References :

Mostly a translation of https://github.com/mthh/polyline_ggl/ (itself a modest translation of other well known available implementations such as Node.js Mapbox one)

Alternative

Copy Link

Version

Install

install.packages('gepaf')

Monthly Downloads

306

Version

0.2.0

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Timothée Giraud

Last Published

October 16th, 2024

Functions in gepaf (0.2.0)

decodePolyline

Decode a Google Polyline to a Data Frame
gepaf

Google Encoded Polyline Algorithm Format
encodePolyline

Encode Coordinates to Google Polylines