Nothing
testthat::test_that("the function 'degrees_to_global_grid()' gives the correct output either for 1- or for a 5-degrees grid!", {
glob_grid_1_degr = degrees_to_global_grid(minx = minx,
miny = miny,
maxx = maxx,
maxy = maxy,
degrees = 1.0,
square_geoms = TRUE,
crs_value = 4326,
verbose = FALSE)
glob_grid_5_degr = degrees_to_global_grid(minx = minx,
miny = miny,
maxx = maxx,
maxy = maxy,
degrees = 5.0,
square_geoms = TRUE,
crs_value = 4326,
verbose = FALSE)
testthat::expect_true(nrow(glob_grid_1_degr) == 25 & ncol(glob_grid_1_degr) == 2 & nrow(glob_grid_5_degr) == 1 & ncol(glob_grid_5_degr) == 2)
})
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.