-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoastal-wetland-valuation.Rmd
110 lines (77 loc) · 4.56 KB
/
coastal-wetland-valuation.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
title: "Coastal wetland valuation"
knit: (function(input_file, encoding) {
out_dir <- 'docs';
rmarkdown::render(input_file,
encoding=encoding,
output_file=file.path(dirname(input_file), out_dir, 'index.html'))})
author: "Daniel Hewitt, Matt Taylor, Rod Connolly"
date: "25/07/2022"
output:
bookdown::html_document2:
toc: true
toc_depth: 3
toc_float: true
code_folding: show
editor_options:
chunk_output_type: console
bibliography: reference-list.bib
link-citations: true
csl: custom-referencing.csl
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
# Introduction
Coastal wetlands act as nursery habitats for several commercially and recreationally exploited species of fish and crustaceans [@RN10; @RN54].
# Fisheries enhancement via resource provisioning
@RN1014 provide an established framework to estimate the value of coastal wetlands (e.g., mangroves, saltmarsh) on the basis of their contribution to the diet of exploited species via the following formula:
\begin{equation}
GVP_{s,p} = C_{s,p}\cdot H_s\cdot M_s\cdot P_s
(\#eq:trophic)
\end{equation}
where *GVP<sub>s, p</sub>* is the gross value of production (AUD y<sup>-1</sup>) of species *s* derived from primary producer *p*, *C<sub>s, p</sub>* is the proportional contribution of primary producer *p* for species *s* derived from stable isotope measurements and associated modelling, *H<sub>s</sub>* is the annual harvest of species *s* (kg y<sup>-1</sup>), *M<sub>s</sub>* is the market value for species *s* (AUD kg<sup>-1</sup>), and *P<sub>s</sub>* is the spatial partitioning coefficient for species *s* (see @RN1014 for further details).
## Estimating economic value
Estimation of economic value is achieved by determining the gross value of production (GVP), based on market value at first-point-of-sale (FPS). GVP is then converted to total economic output (TOP) via an economic multiplier [*m*; derived from data presented in @RN1024]. The multiplier *m* is expressed using a normal distribution (i.e., $m \sim N[\mu, \sigma]$), derived from the statewide-GVP for New South Wales (*P<sub>GV</sub>*), and the minimum (*O<sub>min</sub>*) and maximum (*O<sub>max</sub>*) estimate of total economic output from commercial fishing (including GVP, and the value of retail processing etc.) reported in @RN1024, using the two following equations:
\begin{equation}
\sigma = \frac{O_{max}-O_{min}}{6\cdot P_{GV}}
(\#eq:sigma)
\end{equation}
\begin{equation}
\mu = \frac{O_{max}}{P_{GV}}-3\sigma
(\#eq:mu)
\end{equation}
# Fisheries enhancement via nursery services
## Estimating species abundance
Enhancement (*E*) of the exploited species (*s*) by habitat (*h*) is calculated for each species using the following equation:
\begin{equation}
E_{s,e} = (P_{s, h} - P_{s,u})
(\#eq:enhance)
\end{equation}
where *P<sub>s, h</sub>* is the abundance of juveniles (estimated to be 0.5 years old) of species *s* in habitat *h* (individuals ha<sup>-1</sup>), and *P<sub>s, u</sub>* is the abundance of species *s* in unvegetated habitats *u* [@RN1016; @RN1019].
## Estimating species biomass
Total average annual biomass production of each exploited species *s* supported by habitat *h* (kg ha<sup>-1</sup> y<sup>-1</sup>) is estimated using the approach developed by @RN1018 and extended by @RN1019. This approach incorporates species-specific natural mortality (*M*), but not fishing mortality, via the following equation:
\begin{equation}
y_{s,i} = e^{-Mi}
(\#eq:mortality)
\end{equation}
where *y<sub>s</sub>* is the proportion of exploited species *s* surviving to age class *i*. Biomass enhancement (kg ha<sup>-1</sup>) for each age class (*B<sub>i</sub>*) is then calculated by:
\begin{equation}
B_i = E_{s,e}\cdot e^{-M\cdot(i-0.5)}
(\#eq:class-enhance)
\end{equation}
where *E<sub>s,e</sub>* is taken from Equation \@ref(eq:enhance). For each age class *i*, the length of an average individual (total length [TL] for teleosts, carapace length [CL] for crustaceans) was calculated using the @RN1025 growth equation and subsequently converted to weight (biomass, kg) using length-weight relationships. The total annual biomass enhancement (kg ha<sup>-1</sup>) of species *s* was then calculated by summing the incremental increase in biomass for an average individual in each year class *i* by the number/density (ha<sup>-1</sup>) of species *s* (*B<sub>i</sub>*) in each age class.
# Example of code chunks
## Generate normal observations
```{r, include = TRUE}
x <- rnorm(n = 100, mean = 0, sd = 1)
```
## Take the mean
```{r, include = TRUE}
mean(x)
```
## Plot a histogram
```{r, include = TRUE}
hist(x)
```
# References