Description Usage Arguments Details Value Examples
Calculates dry weight (biomass, in kg) of total or fine fuels corresponding to individual shrub data
1 2 3 4 5 6 7 8 | individualshrubfuel(x, type = "total", allometric = TRUE,
excludeSSP = TRUE, var = FALSE, agg = "none",
customParams = NULL, outside = "warning", na.rm = TRUE)
individualshrubarea(x, excludeSSP = TRUE, var = FALSE,
customParams = NULL, outside = "warning", na.rm = TRUE)
individualshrubvolume(x, agg = "none", na.rm = TRUE)
|
x |
data frame with columns 'plot', 'species', 'H' (height in cm), 'D1' and 'D2' (in cm). If 'D2' is ommitted then shrub crowns are assumed to be circular (i.e. D2 = D1). Column 'group' may be used to specify a functional group to be used when the species has not a specific allometry (see details). |
type |
'total' (total fuel) or 'fine' (fine fuels) |
allometric |
wether to use allometric equations or bulk density estimates |
excludeSSP |
excludes subspecies information for species matching |
var |
a flag to indicate that variance of estimates is desired |
agg |
aggregation of results. Either 'none', 'species', 'speciesplot', 'plotspecies' or 'plot' |
customParams |
custom allometry parameter table (for species not in default params) |
outside |
Treament of values outside calibration range: either 'warning' (to prompt a warning) or 'missing' (prompt a warning and return NA) |
na.rm |
whether to exclude missing values when aggregating biomass |
The function determines the allometry to be applied using the following rules, sequentially:
If the species name is included in the list of species with parameter values, it takes the parameters from that species.
If the species name is a synonym for a species included the list of species with parameter values, it takes the parameters from that species (and gives a warning).
If the user has specified a column 'group' and the value is included in the list of valid groups, it takes the parameters from that group.
If the species is listed within the checklist in 'species_groups', it takes the parameters from the group specified in that file.
Otherwise, it gives a warning and no allometry is applied.
a vector of dry weight (biomass) in kg
1 2 3 4 5 6 7 8 | plot = c(1,1,2,2,2)
species = c("Erica arborea","Genista cinerea", "Erica arborea", "Chamaerops humilis", "Genista balansae")
H = c(60,70,200,100,10)
D1 = c(60,40,100, 100,25)
D2 = D1
x = data.frame(plot, species, H, D1, D2, stringsAsFactors=FALSE)
individualshrubfuel(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.