Benthic Marker Explanation - OscarLewis/salmon-fishing GitHub Wiki
Benthic macroinvertebrates are monitored and used as an indicator of the biological health of streams and nearshore Salmon habitats. This dataset created by the Puget Sound Stream Benthos Partnership specifically uses the Puget Sound Lowlands Benthic Index of Biotic Integrity (B-IBI). This is a composite index of 10 metrics. Each individual metric is given a score of 1 through 5, with higher numbers given to conditions representative of streams unaltered by anthropogenic influence.
Pandas was used to generate an average B-IBI score over the last ten years per site. This average is included in addition to year-by-year scores at each site.
This chart breaks down the final B-IBI score.
The benthicPandas.GPKG file only contains a single layer of sites that the Partnership monitors. This vector point layer contains the following attributes:
- index: this is leftover from pandas and can be disregarded.
- Site ID: an ID used by the Partnership for identification of sample sites.
- WRIA: Washington is divided into 62 Water Resource Inventory Areas (WRIAs) based on natural watersheds. This denotes which WRIA the site belongs too.
- Basin: The lake basin/watershed or the river basin that the sample site belongs to.
- Subbasin: The sub-basin the sample site belongs to.
- Stream: The stream the sample site belongs to.
- Agency: The agency that monitors the sample site.
- Project: The research or agency project the sample site is associated with.
- Site Code: an site identifier used internally (can be a string or number)
- Latitude: Leftover latitude from the initial file download, this is not the latitude the file uses and can be disregarded.
- Longitude: Leftover longitude from the initial file download, this is not the longitude the file uses and can be disregarded.
- 2010 through 2020: B-IBI score calculated for each site, separated by year. Most sample sites are not monitored every year, this means there are a lot of NaN/NULL values. Some sites will go several years between being sampled.
- average_score: An average score for each sample site over the previous 10 years generated by pandas, disregards any NULL values.