Nothing
test_that("plot_metrics works if some plot contain 0 points (#551)", {
shpfile <- system.file("extdata", "efi_plot.shp", package="lidR")
inventory <- sf::st_read(shpfile, quiet = TRUE)
inventory$geometry[4][[1]][2] = 5017891 + 300
expect_warning(m <- plot_metrics(megaplot, .stdmetrics_z, inventory, radius = 11.28), "are empty")
expect_equal(nrow(m), nrow(inventory))
expect_equal(m[4,]$zmax, NA_real_)
expect_equal(m[4,]$zq5, NA_real_)
})
test_that("plot_metrics works with 1 plot on LAScatalog (#664)", {
shpfile <- system.file("extdata", "efi_plot.shp", package="lidR")
inventory <- sf::st_read(shpfile, quiet = TRUE)
inventory <- inventory[1,]
expect_error(m <- plot_metrics(megaplot_ctg, .stdmetrics_z, inventory, radius = 11.28), NA)
})
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.