3 Surface Salinity (AZMP)
Data Type: Tabular Data
Spatial Scope: Scotian Shelf (4X, 4V, 4W)
Duration 1948-2024
Source: DFO Atlantic Zone Monitoring Program via azmpdata
3.1 Introduction to Indicator
AZMP Surface Salinity is the spatially-averaged salinity value from Atlantic Zone Monitoring Program (AZMP) monitoring stations at 0m depth, spatially and temporally summarized to annual values for the Scotian Shelf region (NAFO divisions 4X, 4V, 4W).
Monthly mean near surface salinity values are calculated for hydrographic areas 4 to 23 defined by (Petrie et al. 1996). An annual value is calculated for each area by taking the mean of all available months, then an area-weighted mean is calculated to get a Scotian Shelf value (Layton et al. 2025).
Surface salinity in this region is driven by several factors, including inflow of rivers, melting of sea ice, precipitation, and advection by wind and ocean currents (Layton et al. 2025). Interannual changes in salinity in the Scotian Shelf region are linked to changes in these processes, and could be indicative of changes to biology in the region (Grodsky et al. 2017).
3.2 View Data
library(plotly)
plotly_df <- data@data %>%
mutate(
smooth_10yr = zoo::rollapply(mean_value, mean, width = 10, partial = TRUE),
overall_mean = mean(mean_value))
p <- plot_ly(plotly_df, x = ~year) %>%
add_lines(y = ~mean_value,
name = "Annual Mean",
line = list(color = "grey"),
hovertemplate = "Monthly anomaly: %{y:.2f}<extra></extra>"
) %>%
add_lines(y = ~smooth_10yr,
name = "10-yr Smooth",
line = list(color = "blue", width = 2),
hovertemplate = "10-yr smoothed: %{y:.2f}<extra></extra>",
) %>%
add_lines(y = ~overall_mean,
name = "Overall Mean",
line = list(color = "black", width = 2, dash = "dash"),
hovertemplate = "Overall Mean: %{y:.2f}<extra></extra>",
) %>%
layout(
title = "AZMP Surface Salinity for Scotian Shelf (4X, 4V, 4W)<br><sup>Source: DFO Atlantic Zone Monitoring Program via azmpdata</sup>",
xaxis = list(title = "Year"),
yaxis = list(title = "Salinity (PSU)",
fixedrange = TRUE),
hovermode = "x unified",
margin = list( t = 80)
) %>%
config(displayModeBar = FALSE)
pFigure 3.1: AZMP Salinity in Scotian Shelf Regions; 1948-2024
3.3 Summary and Trends
Trend and summary values are automatically generated; data were last updated on marea package install on 2026-02-10
As of the most recent data entry in 2024, the Surface salinity value is 30.91 PSU, which is low among values in the timeseries. Surface salinity is currently below the long-term mean, and has been since 2021. The regional salinity value has followed a decreasing trend in recent years (Fig 3.1).
3.3.1 Summary Table
Summary values for the AZMP Salinity in the Scotian Shelf region are shown below (Table 3.1)
| Metric | Value | Description |
|---|---|---|
| Most Recent Value (2024) | 30.91 | The most recent value is low within the timeseries, in the 5.19 percentile of all values. The most recent value is 0.37 below the long-term mean. |
| Recent Trend (2014 – 2024) | -0.032 per year | In the last ten years, azmp_salinity has decreased by -0.032 per year with a Marginal trend (p < 0.1). |
| Overall Trend (1948 – 2024) | -0.005 per year | Since the beginning of the timeseries, azmp_salinity has decreased by -0.005 per year with a Very Strong trend (p < 0.01). |
| Timeseries Record High | 31.92 | The highest value in the timeseries was recorded on 1950, and was 0.64 higher than the overall timeseries mean. |
| Timeseries Record Low | 30.72 | The lowest value in the timeseries was recorded on 1998, and was 0.56 lower than the overall timeseries mean. |
3.4 Relevance to Research and Stock Assessments
Most harvested species are not expected to be sensitive to salinity within the range of observed or near-future projected values in Northwest Atlantic (Chabot, Guénette, and Stortini 2013). Thus, salinity perhaps has the greatest potential relevance to stocks and fisheries through indirect effects, via changes in surface productivity and stratification.
In the Gulf of Maine-Scotian Shelf region, freshening events are associated with changes in the timing and magnitude of springtime phytoplankton blooms, ultimately reducing primary productivity in coastal waters (Ji et al. 2008). These changes in primary productivity can propagate to secondary productivity, which make up large portions of larval diets for commercially important species (Becker et al. 2020).