Description Usage Arguments Details Value Author(s) References See Also Examples
View source: R/fishingInBalance.R
This function calculates the Fishing-in-Balance (FiB) Index of fisheries landings for j areas and i years.
1 2 | fishingInBalance(land, TL.table, minTL = 0, TE = 0.1, base.start,
base.end, years)
|
land |
A dataframe of commercial landings data with columns |
TL.table |
A dataframe with columns |
minTL |
The minimum trophic level of species to include. Default is
|
TE |
Trophic efficiency. Default is |
base.start |
Year indicating the beginning of the baseline period. The
average landings and average mean trophic level of the landings over the
baseline period are used as baseline values to calculate FiB (see Details).
|
base.end |
Year indicating the end of the baseline period. The average
landings and average mean trophic level of the landings over the baseline
period are used as baseline values to calculate FiB (see Details).
|
years |
A vector of years for which to calculate indicator. |
Fishing-in-Balance (FiB) Index:
FiB = log(Y_k*(1/TE)^{TL_k}) - log(Y_0 * (1/TE)^{TL_0})
where Y is the catch, TL is the mean trophic level in the catch, TE is the transfer efficiency, k is any year, and 0 refers to any year used as a baseline. By default, TE is set to 0.10 (Pauly and Christensen 1995).
This indicator captures changes in fishing strategies and their impact on system productivity: a positive FiB index indicates that the fishery has expanded and/or bottom-up effects are occurring, and there is more catch than expected, while a negative FiB index indicates it is likely that the fishing impact is so high that the ecosystem function is impaired and the ecosystem is less productive owing to excessive fishery removals (Pauly et al., 2000).
Returns a dataframe with three columns: ID
, YEAR
, and
FishinginBalance
.
If there are no observations in land for spatial scale j and year
i, indicator value is set to NA
.
Danielle Dempsey Danielle.Dempsey@dfo-mpo.gc.ca, Adam Cook, Catalina Gomez, Alida Bundy
Bundy A, Gomez C, Cook AM. 2017. Guidance framework for the selection and evaluation of ecological indicators. Can. Tech. Rep. Fish. Aquat. Sci. 3232: xii + 212 p.
Pauly D, Christensen V, Walters C. 2000. Ecopath, Ecosim, and Ecospace as tools for evaluating ecosystem impact of fisheries. ICES J Mar Sci 57:697 706
Other resource potential indicators: allPotential
,
resourcePotential
1 2 3 4 | data(land)
data(species.info)
fishingInBalance(land, TL.table = species.info, minTL = 0, TE = 0.1,
base.start = 2014, base.end = 2015, years = c(2014:2019))
|
ID YEAR FishinginBalance
1 AREA1 2014 0.341696503
2 AREA1 2015 -0.342067600
3 AREA1 2016 0.397452488
4 AREA1 2017 0.178042503
5 AREA1 2018 0.159852417
6 AREA1 2019 0.148750726
7 AREA2 2014 -0.185194120
8 AREA2 2015 0.184581379
9 AREA2 2016 -0.148627471
10 AREA2 2017 0.413778632
11 AREA2 2018 -0.147326457
12 AREA2 2019 0.003440751
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.