Description Usage Arguments Value Examples
View source: R/HarvestableAreaDefinition.R
HarvestableAreaDefinition
1 2 3 4 5 | HarvestableAreaDefinition(
topography,
verticalcreekheight,
advancedloggingparameters = loggingparameters()
)
|
topography |
Digital terrain model (Large RasterLayer) |
verticalcreekheight |
Relative elevation from nearest channel network (Large RasterLayer) |
advancedloggingparameters |
Other parameters of the logging simulator
|
A list with:
A collection of polygons defined as 1 : harvestable area, 0 : non-harvestable area (sf polygon)
A raster with slope (in radians) characteristic of the studied plot (Large RasterLayer)
1 2 3 4 5 6 7 8 9 10 | data(Plots)
data(DTMParacou)
data(VerticalCreekHeight)
HarvestableArea <- HarvestableAreaDefinition(topography = DTMParacou,
verticalcreekheight = VerticalCreekHeight,
advancedloggingparameters = loggingparameters())
plot(HarvestableArea[[1]])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.