Skip to contents

Biomass Output by Age Extension

Super class

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


OutputBiomassByAge$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.


OutputBiomassByAge$write()

Write extension inputs to disk

Usage

OutputBiomassByAge$write()


OutputBiomassByAge$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()