Nothing
test_that("lonlat cartesian conversions", {
set.seed(1)
lon <- runif(100, min = -180, max = 180)
lat <- runif(100, min = -90, max = 90)
"convert back and forth"
expect_equal(
do.call(cartesian_lonlat, lonlat_cartesian(lon, lat)),
tibble::tibble(X = lon, Y = lat)
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.