Nothing
test_that("Test graph construction from lines", {
edge1 <- rbind(c(0,0),c(0,1))
edge2 <- rbind(c(0,1),c(1,1))
graph <- metric_graph$new(edges = list(edge1, edge2))
expect_equal(sum((graph$V - matrix(c(0, 0, 1, 0, 1, 1),3, 2))^2),0, tol = 1e-9)
expect_equal(graph$E, matrix(c(1, 2, 2, 3), 2, 2), tol = 1e-9)
})
test_that("Test adding point", {
edge1 <- rbind(c(0,0),c(0,1))
edge2 <- rbind(c(0,1),c(1,1))
graph <- metric_graph$new(edges = list(edge1, edge2))
P1 <- matrix(c(1,0.5), nrow=1,ncol=2)
p <- sp::SpatialPoints(matrix(c(0,0.5),1,2))
dat = sp::SpatialPointsDataFrame(p, data.frame(y=1))
dat <- sf::st_as_sf(dat)
graph$add_observations(data = dat)
graph$observation_to_vertex()
expect_equal(sum((graph$V - matrix(c(0, 0, 1, 0, 0, 1, 1, 0.5), 4, 2))^2),0, tol=1e-9)
expect_equal(graph$E, matrix(c(1, 2, 4, 4, 3, 2), 3, 2), tol=1e-9)
})
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.