Spawner and fraction wild data. Species: Summer Chum. Method: . View raw data or Download raw data

Spawner and fraction wild data. Species: Summer Chum.

Spawner and fraction wild data. Species: Summer Chum.

Spawner and fraction wild data. Species: Summer Chum.

Format

A csv file.

SERIES

For certain populations, there are multiple types of spawner count data. For example survey and model counts that are based on different methods. In this case, the 'Series' column gives a name for the dataset to distinguish it from other data sets of the same population.

ESU

ESU or DPS name.

SPECIES

Species name.

METHOD

Method for the spawner count. Survey refers to a spawning ground survey; the count itself is an expansion. See the SPS (database link in sources below) for the details for the data. LadderCount is a weir or dam count. Model refers to the DABOM model that expands from PIT tag data. GSI is an expansion based on the BOXCAR model, which uses GSI to allocate fish sampled at Lower Granite Dam.

MAJOR_POPULATION_GROUP

Major population group within the ESU or DPS.

NMFS_POPID

NWFSC id for the population.

POPULATION_NAME

Long population name.

COMMON_POPULATION_NAME

Shorter population name used in Viability Report figures and tables.

RUN_TIMING

Run timing (fall, winter, spring, etc). If missing, see the ESU/DPS name or may not be applicable for the species.

YEAR

Integer in XXXX format. The year that the count was made. See details for ESU or DPS specific comments.

NUMBER_OF_SPAWNERS

Total spawners or escapement count. -99 means missing count. May be integer or decimal.

FRACWILD

Decimal between 0 and 1. Fraction wild or natural. -99 means missing information.

CONTRIBUTOR

Data contributor. Listed under Source below.

COMPILER

NWFSC staff who compiled the data file: Mari Williams

CITATION

Data citation. Listed under References below.

Source

WDFW, Point No Point Treaty Council

References

Ford, M.J., et al. 2022. Biological Viability Assessment Update for Pacific Salmon and Steelhead Listed Under the Endangered Species Act: Pacific Northwest. U.S. Department of Commerce, NOAA Technical Memorandum NMFS-NWFSC-171. https://doi.org/10.25923/kq2n-ke70

Salmon Population Summaries (SPS) Database: https://www.fisheries.noaa.gov/resource/tool-app/salmon-population-summaries-sps

Original source:

  • Strait of Juan de Fuca: Hood Canal Summer Chum Natural Origin Spawner Abundance (1971-2019). Spawner abundance data. Point No Point Treaty Council and Washington Department of Fish and Wildlife. Personal Communication with Mindy Rowse, 2020.

  • Hood Canal: Hood Canal Summer Chum Natural Origin Spawner Abundance (1968-2019). Spawner abundance data. Point No Point Treaty Council and Washington Department of Fish and Wildlife. Personal Communication with Mindy Rowse, 2020.

Examples

data('Hood-Canal-HCchum2020')
library(ggplot2)
out$NUMBER_OF_SPAWNERS[out$NUMBER_OF_SPAWNERS==-99] <- NA
ggplot(out, aes(x=YEAR, y=NUMBER_OF_SPAWNERS)) + 
  geom_point(na.rm = TRUE) +
  ggtitle('Hood-Canal-HCchum2020') +
  facet_wrap(~COMMON_POPULATION_NAME) +
  theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust=1))


out$FRACWILD[out$FRACWILD == -99] <- NA
ggplot(out, aes(x=YEAR, y=FRACWILD)) +
  geom_point(na.rm = TRUE) +
  ggtitle('Fraction Wild') +
  ylim(0,1) +
  facet_wrap(~COMMON_POPULATION_NAME) +
  theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust=1))