plotStand: Plot a stand in 3D

Description Usage Arguments Examples

Description

More details on what it does

Usage

1
2
  plotStand(siteData, treeData, verbose = FALSE, nz = 25,
    nalpha = 25, zvals = NA, ...)

Arguments

siteData

blah

treeData

blah

verbose

Logical

nz

Number of 3D triangles in the Z direction (?)

nalpha

Number of angles (...)

zvals

blah

...

Further arguments (currently ignored)

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
# Example stand plot
siteData <- list(x0=0,
xmax=10,
y0=0,
ymax=10)
siteData$area <- with(siteData, (xmax - x0) * (ymax - y0))

standViz:::newRgl()
noTrees <- 10
treeData <- data.frame(topHeight = rep(20, times = noTrees),
heightCrownBase = rep(0,times = noTrees),
crownWidth = rep(10, times = noTrees),
dbh = rep(0.5, times = noTrees),
crownShape = "yokozawa", eta = 10)
plotStand(siteData, treeData, verbose = FALSE)

dfalster/standViz documentation built on May 15, 2019, 5:11 a.m.