-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add performance metric(s) for seasonal effect of fishing in one country on the other #6
Comments
My initial thought is that this seems logical. Questions would be (among others perhaps):
I'm a bit skeptical that comparing adjacent seasons by country will tell us much, but that's just an initial feeling. It just is going to be hard to interpret, especially when there is some indication that there are other factors affecting ability to catch quota (attainment) such as market factors and perhaps even catch capacity. For example, see figures below of information taken straight from the assessment document - looking at percent [annual] attainment relative to beginning of the year SSB (and relative to age 2+ below those). There is almost no relationship for US fishery and a negative relationship for Canada for SSB, and as expected that relationship lessens for Canada when looking at age 2+. This could be due to flexibilities in markets, fishing capacity, and/or a host of other factors besides or in addition to a simple metric that tracks whether country-specific attainment is related (without accounting for all these other factors). We don't do these types of analyses using fishery-dependent CPUE data for similar reasons. Sorry - just playing devils advocate a bit here. I will think more about this as I only have a few minutes now (technically no holiday). |
I'm not sure I'm totally following you here. My understanding is the OM already effectively divides the quota up by season to spread the catches out across the year. The seasonal "quotas" were based on past patterns of fishing by country and season, as calculated by @iantaylor-NOAA, captured in the calc_catch_seas_country.R function. These then get read in and applied in the season loop with om$catch_props_space_season.. What I was trying to suggest was just to come up with a metric that would capture any instances of catch not being obtained because biomass was low in one season/area, but it was present and caught in the other area in the prior season. I suspect it doesn't happen often in our current model with the assumptions we have about seasonal catch. Perhaps showing that will be helpful to illustrate why this line of questioning and coming up with more complicated models of attainment is likely outside the scope of our model. Does that make sense? Am I missing something in your suggestions above? |
Yes, this makes more sense now. I think that if we look at this line: pacifichakemse/R/run_season_loop_om.R Line 108 in 77a6710
and divide it with the same minus the attainment part:
we would have the ratio of attained to TAC by country and season. We would store these by creating a new object here: pacifichakemse/R/setup_mse_plot_objects.R Line 36 in 77a6710
There's a little bit more to it for the zero case (e_tmp <- 3000). Once these ratios have been stored and the MSE run through, we can compare the previous season/other country ratio. This part: "capture any instances of catch not being obtained because biomass was low in one season/area" can be done by adding another comparison block like this: pacifichakemse/R/run_season_loop_om.R Line 134 in 77a6710
|
I think a challenge of this metric, in particular the "capture any instances of catch not being obtained because biomass was low in one season/area", is that it makes the most sense in the context of some maximum harvest rate. There are impacts on the economic viability of the fishery long before all the fish are gone, but even if we had all the data necessary to estimate it, that value would likely change over time and across participants in the fishery. Perhaps instead of looking for cases of catch not being obtained due to fishing in the previous season, we could measure the increase in harvest rate required to get the country-specific TAC. However, I'm not sure how best to do that without somehow repeating the seasonal population projection twice for each season, once with and once without fishing. |
Related to the attainment scenarios, there was interest in us looking at the effects of fishing in one area on the availability of biomass in the other area in the subsequent season. For example, does catch removed in US waters in spring affect the available biomass to CA fisheries in summer? Or, does fishing in Canadian waters in summer affect the availability of fish to US fisheries in fall?
To look at this, I think we need some new metrics. One idea I have is to summarize spatial and seasonal vulnerable biomass/quota as the probability that biomass/quota is less than 1 (or some lower threshold value) in Canada in spring and summer, and in the US in summer and fall. And then we might also need to condition that on the other country achieving their quota in the previous season-I'm not sure.
It looks like @cgrandin has added a warning message when the available biomass is 0.9 or less than what the allowed catch would remove in a given area and season, so maybe adding a counter inside this seasonal loop would be one way to do it. Or, perhaps we can get the same from comparing catch, quota, and biomass in the outputs already being generated.
What do you all think?
The text was updated successfully, but these errors were encountered: