8 Atlantic MultiDecadal Oscillation Index
Data Type: Tabular Data
Spatial Scope: Northern Hemisphere (0-60N)
Duration 1854-2025
Source: NOAA , https://www1.ncdc.noaa.gov/pub/data/cmb/ersst/v5/index/ersst.v5.amo.dat
8.1 Introduction to Indicator
The AMO describes long-duration changes in the sea surface temperature of the North Atlantic Ocean characterized by extended cool (negative) and warm (positive) phases that may last for 20-60 years (Knight, Folland, and Scaife 2006). Positive AMO phases are associated with warm waters in the North Atlantic, reduced precipitation in the Southern US, and increased hurricane activity in the Tropical Atlantic; negative AMO phases are associated with roughly the opposite (Knight, Folland, and Scaife 2006).
AMO values are computed from detrended sea surface temperature anomalies, such that the resultant value offers a description of large-scale temperature variation that is independent of gradual warming as a result of climate change.
AMO is linked with several oceanographic and atmospheric processes including air temperature and precipitation, storm strength, and variability in ocean currents.
8.2 View Data
library(plotly)
plotly_df <- data@data %>%
mutate(date = lubridate::make_date(year, month, day = 1),
smooth_1yr = zoo::rollapply(SSTA_value, mean, width = 12, partial = TRUE),
smooth_10yr = zoo::rollapply(SSTA_value, mean, width = 120, partial = TRUE),
overall_mean = mean(SSTA_value))
p <- plot_ly(plotly_df, x = ~date) %>%
add_lines(y = ~SSTA_value,
name = "Monthly Anomaly",
line = list(color = "lightgrey"),
hovertemplate = "Monthly anomaly: %{y:.2f}<extra></extra>"
) %>%
add_lines(y = ~smooth_1yr,
name = "1-yr Smooth",
line = list(color = "blue", width = 2),
hovertemplate = "1-yr smoothed: %{y:.2f}<extra></extra>",
) %>%
add_lines(y = ~smooth_10yr,
name = "10-yr Smooth",
line = list(color = "red", 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 = "Atlantic Multidecadal Oscillation Index for Northern Hemisphere",
xaxis = list(title = "Date"),
yaxis = list(title = "AMO Index",
fixedrange = TRUE),
hovermode = "x unified",
margin = list( t = 80)
) %>%
config(displayModeBar = FALSE)
pFigure 8.1: AMO Index Value; 1854-2025
8.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 Aug. 2025, the AMO value is 0.86, which is high among values in the timeseries. The AMO is currently in a positive phase, and has been since Aug. 2002. The AMO value has followed an increasing trend in recent years (Fig. 8.1).
8.3.1 Summary Table
Summary values for the Atlantic Multidecadal Oscillation are found in the table below (Table 8.1)
| Metric | Value | Description |
|---|---|---|
| Most Recent Value (Aug. 2025) | 0.86 | The most recent value is high within the timeseries, in the 98.3 percentile of all values. |
| Timeseries Record High | 1.45 | The highest value in the timeseries was recorded on Jul. 2023, and was 1.48 higher than the overall timeseries mean. |
| Timeseries Record Low | -1.07 | The lowest value in the timeseries was recorded on Aug. 1912, and was 1.04 lower than the overall timeseries mean. |
8.4 Relevance to Research and Stock Assessments
AMO can both directly and indirectly affect marine ecosystem function (Nye et al. 2014).
In Canada’s maritimes region, AMO is closely linked to several ecological trends with relevance to fisheries and stock assessments. AMO has shown negative correlations with primary productivity and fish biomass in Eastern Canada (NAFO divisions 4X, 5YB, Western Scotian Shelf, and Bay of Fundy) (Araújo and Bundy 2012), and has been hypothesized a limitation on stock size despite moratoriums on fishing activity for commercially important species like Atlantic salmon (Condron et al. 2005).
Still, specific effects of AMO on marine resources can vary aross space. For example, AMO has displayed a positive relationship with catch per unit effort of bluefin Tuna in Canadian regions (Gulf of St. Lawrence and Nova Scotia), and a contrastng negative correlation in the United States (Hansell et al. 2020). Impacts of AMO on focal species are therefore likely related to thresholds of thermal performance of a focal species within an ecosystem.