Nothing
test_that("wkt_draw_* works", {
x <- "POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))"
expect_identical(wkt_plot_new(x, main = "wkt_draw_*()"), x)
expect_identical(wkt_draw_polypath(x, col = "grey90"), x)
expect_identical(wkt_draw_lines(x, col = "red"), x)
expect_identical(wkt_draw_points(x, pch = 16), x)
})
test_that("wkb_draw_* works", {
x <- wkt_translate_wkb("POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))")
expect_identical(wkb_plot_new(x, main = "wkb_draw_*()"), x)
expect_identical(wkb_draw_polypath(x, col = "grey90"), x)
expect_identical(wkb_draw_lines(x, col = "red"), x)
expect_identical(wkb_draw_points(x, pch = 16), x)
})
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.