dbh: Diameter (DBH) and Circumference

View source: R/dendrometry.R

dbhR Documentation

Diameter (DBH) and Circumference

Description

DBH computes diameter (at breast height) based on circumference (at breast height).
circum computes circumference (at breast height) based on diameter (at breast height).
They are based on circle diameter and perimeter formulas.

Usage

dbh(circum)

circum(dbh)

Arguments

circum

numeric, vector of circumference.

dbh

numeric, vector of diameter.

Value

dbh, returns diameter and circum, returns circumference.

See Also

See also height for tree height.

Examples

perimeter <- seq(30, 60, 1.4)
diameter <- dbh(perimeter)
circum(diameter)


dendrometry documentation built on June 8, 2025, 10:38 a.m.