test_that("To calculate the value of M works", {
# Latitude
g <- -33
m <- 38
s <- 30.123456
rad_lat <- radians(g, m, s)
print(rad_lat)
# To know the ellipsoids and the order open the Ellipsoids in the package
# and look for it number
Ellip <- Ellipsoids
#View(Ellip)
# We choose the number 5 which is GRS80
value <- M(5, rad_lat, digits = 4)
expect_equal(M(5, rad_lat, digits = 4), value)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.