Skip to contents

Biomass Output by Age Extension

Biomass Output by Age Extension

Super class

landisutils::LandisExtension -> OutputBiomassByAge

Active bindings

MapNames

Character. File pattern for writing outputs to disk.

Species

Character vector of species names with age classes.

Methods

Inherited methods


Method new()

Usage

OutputBiomassByAge$new(
  path = NULL,
  Timestep = 10L,
  MapNames = NULL,
  Species = NULL
)

Arguments

path

Character. Directory path.

Timestep

Integer.

MapNames

Character. File pattern for writing outputs to disk.

Species

Character vector of species names with age classes.


Method write()

Write extension inputs to disk

Usage

OutputBiomassByAge$write()


Method clone()

The objects of this class are cloneable with this method.

Usage

OutputBiomassByAge$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

biomass_by_age <- OutputBiomassByAge$new(
  path = tempdir(),
  Timestep = 10,
  MapNames = NULL, # use default
  Species = c(
    "pinubank ageclass1(10-40) ageclass2(15-100)",
    "pinuresi ageclass(>200)",
    "pinustro ageclass(>250)",
    "poputrem ageclass1(<50)"
  )
)

biomass_by_age$write()