vol_salable: Relative share in the volume over bark that is salable

View source: R/vol_salable.R

vol_salableR Documentation

Relative share in the volume over bark that is salable

Description

The function estimates the salable share of the wood volume. It is expressed in relation to the volume over bark (German unit: Vfm m.R.) as usually provided by yield tables and forest simulators. This includes all pulp wood, sawlog, and fuel wood assortments. The share of salable wood is required to derive the wood revenues per cubic meter volume over bark. The function is based on the assortment tables from Offer and Staupendahl (2018) and its derivation is described in Fuchs et al. (in preparation). The underlying assortment tables are based on data from HessenForst, the public forest service of the Federal State of Hesse in Germany. For further details see the woodValuationDE README.

Usage

vol_salable(
  diameter.q,
  species,
  value.level = 2,
  logging.method = "combined",
  species.code.type = "en",
  method = "fuchs.orig"
)

Arguments

diameter.q

Quadratic mean of the diameter at breast height (dbh) of the harvested trees [cm].

species

Tree species, using an available species.code.type. For a list with the available species and codes call get_species_codes.

value.level

Stand quality expressed as an integer of 1:3, with 1 for an extraordinarily high stand quality with high shares of wood suitable for high-valued usages such as furniture, 2 for a moderate quality, and 3 for a low quality (e.g., trees with thick branches). The value.levels refer to the applied assortment tables of Offer and Staupendahl (2018).

logging.method

Logging method, with "manually" for motor-manual logging using a chain saw, "harvester" for logging with highly mechanized forest harvesters, or "combined" for a combination of the previous methods dependent on the mean diameter.

species.code.type

Type of code in which species is given. "en" for English species names or "nds" for numeric species codes used in Lower Saxony, Germany. For a list with the available species and codes call get_species_codes.

method

argument that is currently not used, but offers the possibility to implement alternative parameters and functions in the future.

Value

A vector with relative shares of salable wood volume.

References

Fuchs, Jasper M.; Husmann, Kai; v. Bodelschwingh, Hilmar; Koster, Roman; Staupendahl, Kai; Offer, Armin; Moehring, Bernhard, Paul, Carola (in preparation): woodValuationDE: A consistent framework for calculating stumpage values in Germany (technical note)

Offer, Armin; Staupendahl, Kai (2018): Holzwerbungskosten- und Bestandessortentafeln (Wood Harvest Cost and Assortment Tables). Kassel: HessenForst (publisher).

Examples

vol_salable(40,
            "beech")

# species codes Lower Saxony (Germany)
vol_salable(40,
            211,
            species.code.type = "nds")

# vector input
vol_salable(seq(20, 50, 5),
            "spruce")

vol_salable(rep(seq(20, 50, 10),
                2),
            rep(c("beech", "spruce"),
                each = 4))

vol_salable(rep(seq(20, 50, 10),
                2),
            rep(c("beech", "spruce"),
                each = 4),
            logging.method = rep(c("manually", "harvester"),
                                 each = 4))

woodValuationDE documentation built on July 3, 2022, 5:05 p.m.