-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
39 lines (39 loc) · 1.39 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Package: flexpolyline
Type: Package
Title: Flexible Polyline Encoding
Version: 1.0.0
Authors@R:
c(person(given = "Merlin",
family = "Unterfinger",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-2020-2366")),
person(family = "HERE Europe B.V.",
role = c("aut", "cph"),
comment = "Flexible polyline encoding C++ implementation"))
Description: Binding to the C++ implementation of the flexible polyline
encoding by HERE <https://github.com/heremaps/flexible-polyline>. The
flexible polyline encoding is a lossy compressed representation of a list of
coordinate pairs or coordinate triples. The encoding is achieved by:
(1) Reducing the decimal digits of each value;
(2) encoding only the offset from the previous point;
(3) using variable length for each coordinate delta; and
(4) using 64 URL-safe characters to display the result.
License: GPL-3
URL: https://munterfi.github.io/flexpolyline/, https://github.com/munterfi/flexpolyline/
BugReports: https://github.com/munterfi/flexpolyline/issues/
LinkingTo:
Rcpp
Imports:
Rcpp,
sf (>= 0.9-3)
Suggests:
testthat (>= 3.0.0),
stringr (>= 1.4.0),
knitr (>= 1.28),
rmarkdown (>= 2.1),
covr (>= 3.5.0)
Encoding: UTF-8
RoxygenNote: 7.2.3
VignetteBuilder: knitr
Config/testthat/edition: 3