Incidental catch in fisheries: seabirds in the New Zealand squid trawl fisheries
Posted on March 30, 2017
Sources of the notes for this lecture are from Ecological Detective (Chapter 4).
Motivation
Non-target species are often caught during fishing operations
Observer programs are used to monitor this incidental catch
Understanding of the coverage of the program and how to interpret the data is needed
and let’s look at the distribution by plotting a bar chart
Pseudocode 4.1
Specify the level of observer coverage, \(N_{tow}\) per simulation, and the total number of simulations \(N_{sim}\), and the negative binomial parameters m and k. These are estimated from last year’s data. Also specifY the criterion “success,” d, and the value of \(t_q\)
On the \(j^{th}\) iteration of the simulation, for the ith simulated tow, generate a level of incidental take \(C_{ij}\) using Equation 4.7. To do this, first generate the probability of n birds in the by-catch for an individual tow, then calculate the cumulative probability of n or fewer birds being obtained in the by-catch. Next draw a uniform random number between zero and 1, and then see where this random number falls in the cumulative distribution. Repeat this for all \(N_{tow}\) tows
First generate the pdf and cdf
Compute the mean
and the variance
on the \(j^{th}\) iteration of the simulation.
Compute the range, in analogy to Equation 4.4:
If (Range) is less than the specified range criterion for success, increase the number of successes by 1.
Repeat steps 2-5 for j = 1 to \(N_{sim}\). Estimate the probability of success when Nr.ow tows are observed by dividing the total number of successes by N_{tow}.
Start the loop. NOTE: I changed the way the loop was run from the psuedo code by nesting iterations within tows. NOTE: This simulation will take a few minutes to run. I have run the simulations ahead of time and put them up on github