pacific-hake / pacifichakemse

A Management Strategy Evaluation for Pacific Hake
3 stars 2 forks source link

add performance metric(s) for seasonal effect of fishing in one country on the other #6

Open kristinmarshall-NOAA opened 3 years ago

kristinmarshall-NOAA commented 3 years ago

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?

aaronmberger-nwfsc commented 3 years ago

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).

image

image

image

image

cgrandin commented 3 years ago

Thanks for doing those plots Aaron. I share your concerns about how informative output of such an analysis would be, markets have affected catch a great deal in the last decade and it's something we aren't modeling.

Instead of worrying about quota by season maybe we could just look at cumulative catch patterns and assume the total catch at the end of the year as the attained proportion we want to model. I think this is the first step in Aaron's idea in his second point above.

Here's some plots we show at the JTC meeting every year showing cumulative catch by sector for the countries.

In recent years in Canada, the cumulative catch taken is roughly linear from May 1 to November 1 - Freezer Trawlers: CumulativeCatchFT

Canadian Shoreside: CumulativeCatchSS

In the US, only the Shorside has this linear cumulative catch:

image but the Catcher/processor and mothership sectors have flat spots in June-July which is when they go to Alaska for Pollock.

Catcher/Processor: image Mothership: image

Could we model the seasonal catch based on these and as Aaron mentioned, create a metric to compare with them? Since the US fleets have two different cumulative catch rates we would have to either disaggregate the fleets or come up with a function modeling both cumulative catch curves simultaneously for the US.

kristinmarshall-NOAA commented 3 years ago

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.. Certainly this could be done differently or we could test different ways of doing it, e.g. with the cumulative curves suggested above. But, that wasn't what I was suggesting.

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?

cgrandin commented 3 years ago

Yes, this makes more sense now. I think that if we look at this line: https://github.com/pacific-hake/pacifichakemse/blob/77a6710de8449a1014c487b161ee9ebf47867cc5/R/run_season_loop_om.R#L108

and divide it with the same minus the attainment part:

e_tmp_tac <- catch_space * om$catch_props_space_season[space, season] %>% pull

we would have the ratio of attained to TAC by country and season. We would store these by creating a new object here: https://github.com/pacific-hake/pacifichakemse/blob/77a6710de8449a1014c487b161ee9ebf47867cc5/R/setup_mse_plot_objects.R#L36

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: https://github.com/pacific-hake/pacifichakemse/blob/77a6710de8449a1014c487b161ee9ebf47867cc5/R/run_season_loop_om.R#L134

iantaylor-NOAA commented 3 years ago

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.