Computes the basal area of tree stems in a plot. The basal area is the cross sectional area of the bole or stem of a tree at breast height.
basal(dbh, area, k = 100, circum = NULL)
A vector of basal area of stands.
numeric, vector of diameter.
numeric, area of the plot (see details
for unit).
numeric, used to convert diameter unit. Default is 100
(coverts from cm to m. See details
).
numeric, vector of circumference. Is used only if dbh
is not given.
If area
is expressed in ha and dbh
expressed in cm,
the basal area unit is cm\u00b2/ha when k = 1
.
In order to convert centimeter (cm) to meter (m) for dbh
, set
k = 100
. Because 1m = 100 cm. Then, basal area unit will be
m\u00b2/ha
.
If dbh
is in meter (m), and area
in in hectare (ha), setting
k = 1
returns basal area in m\u00b2/ha.
If dbh
is in feet, and area
in acre, setting k = 1
returns basal area in ft\u00b2/ac.
If dbh
is in inch, and area
in acre, setting
k = 12
returns basal area in feet\u00b2/acres (ft\u00b2/ac).