Description Usage Arguments Details Value See Also Examples
Linear feature restoration (i.e. forest regeneration) and linear feature deactivation (e.g. blocking entrances) effects on lambda.
1 2 3 | wildlift_linear(tmax=20, pop.start=100,
area=10000, lin=0, seism=0, young=0,
cost=12, yr_deact=5, yr_restor=15)
|
tmax |
positive integer, number of years to forecast after initial year 0. |
pop.start |
positive integer, initial population size in year 0. |
area |
positive numeric, area of range in km^2. |
lin |
non-negative numeric, linear features (total length in km)
including |
seism |
non-negative numeric, seismic lines (total length in km) to be restored or deactivated. |
young |
numeric between 0 and 100, percent of young (<30 yrs) forest. |
cost |
non-negative numeric, cost of management action (in canadian dollars) per km linear feature restored/deactivated. |
yr_deact |
non-negative numeric, years it takes for deactivation to reach a level where it begins to affect lambda. |
yr_restor |
non-negative numeric, years it takes for restoration to reach a level where it begins to affect lambda. |
Lambda is calculated as
1.0184 - 0.0234 * (lin
/ area
) - 0.0021 * young
.
A list with population table and costs.
1 2 3 4 5 6 7 8 | ## nothing to restore/deactivate
wildlift_linear()
## all linear restored/deactivated
wildlift_linear(lin=1000, seism=1000, young=10)
## half of linear is to be restored/deactivated
wildlift_linear(lin=1000, seism=500, young=10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.