Nothing
test_that("SpatialPoints to SpatialPointsDataFrame", {
skip_on_cran()
sp_pts <- SpatialPoints(cbind(
c(1, 2, 3, 4, 5),
c(3, 2, 5, 1, 4)
))
a <- as(sp_pts, "SpatialPointsDataFrame")
expect_s4_class(sp_pts, "SpatialPoints")
expect_s4_class(a, "SpatialPointsDataFrame")
})
test_that("SpatialLines to SpatialLinesDataFrame", {
skip_on_cran()
c1 <- cbind(c(1, 2, 3), c(3, 2, 2))
L1 <- Line(c1)
Ls1 <- Lines(list(L1), ID = "a")
sp_lines <- SpatialLines(list(Ls1))
a <- as(sp_lines, "SpatialLinesDataFrame")
expect_s4_class(sp_lines, "SpatialLines")
expect_s4_class(a, "SpatialLinesDataFrame")
})
test_that("SpatialPixels to SpatialPointsDataFrame", {
skip_on_cran()
sp_pixels <- supw(SpatialPixels(SpatialPoints(us_cities[c("long", "lat")])))
a <- as(sp_pixels, "SpatialPointsDataFrame")
expect_s4_class(sp_pixels, "SpatialPixels")
expect_s4_class(a, "SpatialPointsDataFrame")
})
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.