# based on code by Ed Williams
# Licence: GPL
# http://www.edwilliams.org/avform.htm#XTE
# Port to R by Robert Hijmans
# October 2009
# version 0.1
# license GPL3
dist2gc <- function(p1, p2, p3, r=6378137, sign=FALSE) {
toRad <- pi / 180
p1 <- .pointsToMatrix(p1)
p2 <- .pointsToMatrix(p2)
p3 <- .pointsToMatrix(p3)
r <- as.vector(r)
p <- cbind(p1[,1], p1[,2], p2[,1], p2[,2], p3[,1], p3[,2], r)
p1 <- p[,1:2]
p2 <- p[,3:4]
p3 <- p[,5:6]
r <- p[,7]
tc <- bearing(p1, p2, a=r, f=0) * toRad
tcp <- bearing(p1, p3, a=r, f=0) * toRad
dp <- distCosine(p1, p3, r=1)
xtr <- (asin(sin(tcp-tc) * sin(dp)) * r)
xtr <- as.vector(xtr)
if (!sign) xtr <- abs(xtr)
xtr
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.