Spawner and fraction wild data. Species: Steelhead. Method: Survey. View raw data or Download raw data

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

  • Asotin Creek: Washington Department of Fish and Wildlife

  • Joseph Creek: Oregon Department of Fish and Wildlife

  • Grande Ronde River Upper Mainstem: Oregon Department of Fish and Wildlife

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:

  • Asotin Creek: Snake River Steelhead Natural Origin Spawner Abundance Dataset (1986-2018). Spawner abundance data. Washington Department of Fish and Wildlife. Protocol and Methods available at https://fortress.wa.gov/dfw/score/score/. Accessed from www.cax.streamnet.org vers May 26 2020 10:00PM by Mari Williams, NOAAF NWFSC/OAI.

  • Joseph Creek: Snake River Steelhead Natural Origin Spawner Abundance Dataset (1970-2017). Spawner abundance data. Oregon Department of Fish and Wildlife. Protocol and Methods available at http://odfwrecoverytracker.org/metadata/. Accessed from www.cax.streamnet.org vers May 26 2020 10:00PM by Mari Williams, NOAAF NWFSC/OAI.

  • Grande Ronde River Upper Mainstem: Snake River Steelhead Natural Origin Spawner Abundance Dataset (1967-2018). Spawner abundance data. Oregon Department of Fish and Wildlife. Protocol and Methods available at http://odfwrecoverytracker.org/metadata/. Accessed from www.cax.streamnet.org vers May 26 2020 10:00PM by Mari Williams, NOAAF NWFSC/OAI.

Examples

data('Steelhead-Snake-River-Basin-DPS-ICSRsthdSurvey')
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('Steelhead-Snake-River-Basin-DPS-ICSRsthdSurvey') +
  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))