22 Resource Potential: Indicator Species

Data Type: Tabular Data (within eco_indicators)

Spatial Scope: Maritimes

Duration 1970-2022

Source: Bundy et al. 2017

22.1 Introduction to Indicator

Biomass of indicator species represents long-term changes to an ecosystem (Bundy, Gomez, and Cook 2017). In the Scotian Shelf region, skates can serve as an indicator species for community resource potential. Because skates are long-lived and not directly targeted by fisheries, changes in skate populations represent broader shifts in community productivity occurring across long timescales.

22.2 View Data


library(tidyr)
library(plotly)
library(stringr)

plotly_df <- data@data %>% inner_join(global_cols2)



p <- plot_ly()

regions_order <- c("4VN","4VS","4W","4X")

for(r in regions_order){

  df_sub <- plotly_df %>% filter(region == r)

  group_name <- unique(df_sub$region_group)

  p <- p %>%
    add_lines(
      data = df_sub,
      x = ~year,
      y = ~BIOMASS_SKATES_value,
      name = r,
      legendgroup = group_name,
      legendgrouptitle = list(
        text = ifelse(group_name == "ESS",
                     "Eastern Scotian Shelf Zones",
                     "Western Scotian Shelf Zones"
        )
      ),
      line = list(color = unique(df_sub$color), width = 2),
      hovertemplate = paste0("<b>", r,":</b> ","%{y:,.2s}<extra></extra>"
    ))
}

p %>%
  layout(
    title = "Biomass of Skates by Region",
    xaxis = list(title = "Year"),
    yaxis = list(title = "Biomass Skates (tonnes)", fixedrange = TRUE),
    hovermode = "x unified",
    legend = list(
      tracegroupgap = 5,
      groupclick = "toggleitem",
      itemdoubleclick = FALSE
    )
  ) %>%
  config(displayModeBar = FALSE)

Figure 22.1: Biomass of indicator species in Scotian Shelf regions; 1970-2022. Click legend to toggle regions.

22.4 Relevance to Research and Stock Assessments

While skates are not currently targeted as a major fishery in Atlantic Canada, their population changes may serve as a “canary in the coal mine” for the greater ecosystem (Bundy, Gomez, and Cook 2017). Changes to skate populations may therefore be relevant to monitoring the overall health of marine ecosystems in Atlantic Canada.

22.5 Variable Definitions

variable description unit
year Year of data collection
region Region over which data are summarized
BIOMASS_SKATES_value Biomass of skates within regions tonnes

22.6 Additional Data

Structural Change variables (within eco_indicators) contain data for 4VN, 4VS, 4W, 4X, ESS, and WSS. All are shown on this page, but note that NAFO zones are nested within Scotian Shelf regions.

22.7 Get the Data

library(marea)
data('eco_indicators')
plot(eco_indicators)

References

Bundy, Alida, Catalina Gomez, and Adam M. Cook. 2017. “Guidance Framework for the Selection and Evaluation of Ecological Indicators.” Canadian Technical Report of Fisheries and Aquatic Sciences 3232. Dartmouth, Nova Scotia, Canada: Fisheries; Oceans Canada, Bedford Institute of Oceanography. https://waves-vagues.dfo-mpo.gc.ca/Library/40648886.pdf.