-
Notifications
You must be signed in to change notification settings - Fork 7
/
DESCRIPTION
34 lines (34 loc) · 1.37 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
Package: geodist
Title: Fast, Dependency-Free Geodesic Distance Calculations
Version: 0.1.0
Authors@R: c(
person("Mark", "Padgham", , "mark.padgham@email.com", role = c("aut", "cre")),
person("Michael D.", "Sumner", role = "aut"),
person("Charles F.F", "Karney", role = "cph",
comment = "Original author of included code for geodesic distances")
)
Description: Dependency-free, ultra fast calculation of geodesic
distances. Includes the reference nanometre-accuracy geodesic
distances of Karney (2013) <doi:10.1007/s00190-012-0578-z>, as used by
the 'sf' package, as well as Haversine and Vincenty distances. Default
distance measure is the "Mapbox cheap ruler" which is generally more
accurate than Haversine or Vincenty for distances out to a few hundred
kilometres, and is considerably faster. The main function accepts one
or two inputs in almost any generic rectangular form, and returns
either matrices of pairwise distances, or vectors of sequential
distances.
License: MIT + file LICENSE
URL: https://github.com/hypertidy/geodist, https://hypertidy.github.io/geodist/
BugReports: https://github.com/hypertidy/geodist/issues
Suggests:
knitr,
rmarkdown,
testthat
VignetteBuilder:
knitr
Encoding: UTF-8
LazyData: true
NeedsCompilation: yes
RoxygenNote: 7.3.1
Config/testthat/edition: 3
Config/testthat/parallel: true