Computing Meeus Great Circle Distance in R (Example Code)

In this article, I’ll illustrate how to compute the Meeus distance in the R programming language.

Example Data

mat_ll <- matrix(c(75.13135, 79.06473,    # Define longitude & latitude points
                   15.28734, 14.29367),
                 ncol = 2)
colnames(mat_ll) <- c("long", "lati")
rownames(mat_ll) <- c("p1", "p2")
mat_ll                                    # Show longitude/latitude matrix in RStudio console
#        long     lati
# p1 75.13135 15.28734
# p2 79.06473 14.29367

Example: Create Meeus Distance Matrix of a Set of Geographical Points

install.packages("geosphere")             # Install & load geosphere
library("geosphere")
distm(mat_ll, fun = distMeeus)            # Return geospatial distance
#          [,1]     [,2]
# [1,]      0.0 437474.8
# [2,] 437474.8      0.0

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed

Menu
Top