simulations <- function(tree.tls, tree.ds = NULL, tree.field,
plot.design = c("fixed.area", "k.tree", "angle.count"),
plot.parameters = data.frame(radius.max = 25,
k.max = 50, BAF.max = 4),
scan.approach = "single",
var.metr = list(tls = NULL, field = NULL),
v.calc = "parab", dbh.min = 4, h.min = 1.3,
max.dist = Inf, dir.data = NULL, save.result = TRUE,
dir.result = NULL) {
# Call internal function
sim <- .sim.calc(funct = "sim", tree.tls = tree.tls,
tree.ds = tree.ds,
tree.field = tree.field, plot.design = plot.design,
plot.parameters = plot.parameters,
scan.approach = scan.approach, var.metr = var.metr,
v.calc = v.calc, dbh.min = dbh.min, h.min = h.min,
max.dist = max.dist, dir.data = dir.data,
save.result = save.result, dir.result = dir.result)
return(sim)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.