Sarah Hope, MS
2025-04-22
Our Collaborators:
- Kate Masury
- Madeline Guyant
- Our Advisory Group
- Gavin Fay
Funding:
- NOAA SK
Reveal how the supply chains of different species are linked > Ex. If a change occurs that will make it difficult for fishers to harvest a species, is there another species that will be impacted?
Predict impacts of potential scenarios > Changes / What-if / Scenarios / Perturbations; Poor Recruitment Year, Quota Adjustment for Overfishing, a Pandemic, Tariffs, etc.
Produce Indicators of Resilience & Identify Vulnerabilities to Supply Chains > Analysis produces ? > Address uncertainty?
Impacts on Fishers, Fishing Communities & Food Systems > Understanding socioeconomic impacts on multiple scales > Including input, engagement, discussion with stakeholders about tradeoffs across systems and sectors > Knowledge and collaboration works towards expanding access to seafood.
The Community Matrix → Loop Analysis
# Define the base adjacency matrix for Model A
A <- matrix(c(
-1, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 1, 0, 0,
1, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0,
1, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1, 1, -1, 1, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 1, 0, 0,
0, 0, 0, 0, 0, 0, 1, 0, -1, 1, 0, 0, 0,
0, 0, 0, 0, 0, 0, 1, 0, 0, -1, 0, 0, 0,
-1, 0, 0, 0, 0, 0, 0, -1, 0, 0, -1, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, -1, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, -1
), byrow = TRUE, nrow = 13)
B <- matrix(c(
-1, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0,
1, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0,
1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 1, 0,
1, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0,
1, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1, 1, -1, 1, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 1, 0,
0, 0, 0, 0, 0, 0, 1, 0, -1, 1, 0, 0,
0, 0, 0, 0, 0, 0, 1, 0, 0, -1, 0, 0,
-1, 0, 0, 0, 0, 0, 0, -1, 0, 0, -1, 0,
0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, -1
), nrow = 12, byrow = TRUE)