BAPH: Basal Area Per Hectare

View source: R/BAPH.R

BAPHR Documentation

Basal Area Per Hectare

Description

This function calculates the Basal Area Per Hectare for each plot within your data set.

Usage

BAPH(Stand, Plot, BA, EXPF)

Arguments

Stand

The unique Stand ID for each Plot.

Plot

The unique Plot ID for each Plot.

BA

Diameter at breast height in cm.

EXPF

Expansion factor for each tree.

Details

This function requires that you calculate the Basal Area and the Expansion Factor for each tree in your inventory. See the EXP.F and BA functions if you need to do this.

Basal Area Per Hectare is a dependency for a number of other functions that may be useful in your analysis, so using a standard naming convention, while always good practice, will help when applying to additional functions. (ex: BAPH, BA.PH, BasalAreaPerHectare, BAPerHectare).

Value

Returns a vector of the length N with the basal area in sq meters per hectare for each plot.

See Also

BA

EXP.F

Other Basal Area Functions: BA.Larger.Trees(), BA()

Other Plot Level Functions: BA.Larger.Trees(), CCF.Larger(), CrownCompF(), DBHFuns(), HeightPredict(), RD(), SDI.Max(), SDI.Plot(), TPH(), TallestTrees(), Unique.ID()

Examples


Stand <- c(1,1,1,1)
Plot  <- c(1,1,1,1)
BA    <- c(.01, .12, .06, .04)
EXPF  <- c(16, 16, 16, 16)
BAPH(Stand, Plot, BA, EXPF)


ryanmismith/inventoryfunctions documentation built on Aug. 5, 2022, 2:22 a.m.