9 Arctic Oscillation Index
Data Type: Tabular Data
Spatial Scope: Northern Hemisphere
Duration 1950-2025
Source: NOAA CPC, https://www.cpc.ncep.noaa.gov/products/precip/CWlink/daily_ao_index/
9.1 Introduction to Indicator
The Arctic Oscillation describes the variability in atmospheric pressure between the Arctic and surrounding mid-latitude regions of the Northern Hemisphere, and is linked to fluctuations in the strength of the polar vortex (Thompson and Wallace 1998). The trend of AO over time does not follow a particular periodicity.
Effects of strong AO anomalies are most pronounced in the Northern Hemisphere winter. Positive AO anomaly values represent lower-than-average pressure in Arctic regions and higher-than-average pressure in mid-latitudes, resulting in a stronger polar vortex and contained winter storm activity in the Arctic region. Negative AO values represent the opposite – higher-than-average pressures in the Arctic and lower-than-average pressures in the mid-latitudes. In negative phases, the jet stream is weaker and can meander, leading to anomalous cold events in mid-latitudes, particularly in Eastern North America and Eurasia (Li et al. 2017; He et al. 2017).
The AO is highly correlated with the North Atlantic Oscillation (NAO) and some discussion exists around whether the two are distinct (refs), but the AO index better reflects changes occurring at high arctic latitudes.
9.2 View Data
library(plotly)
plotly_df <- data@data %>%
mutate(date = lubridate::make_date(year, month, day = 1),
smooth_1yr = zoo::rollapply(anomaly_value, mean, width = 12, partial = TRUE),
smooth_10yr = zoo::rollapply(anomaly_value, mean, width = 120, partial = TRUE),
overall_mean = mean(anomaly_value))
p <- plot_ly(plotly_df, x = ~date) %>%
add_lines(y = ~anomaly_value,
name = "Monthly Anomaly",
line = list(color = "lightgrey"),
hovertemplate = "Anomaly Value: %{y:.2f} <extra></extra>"
) %>%
add_lines(y = ~smooth_1yr,
name = "1-yr Smooth",
line = list(color = "blue", width = 2),
hovertemplate = "1-yr Smooth: %{y:.2f} <extra></extra>"
) %>%
add_lines(y = ~smooth_10yr,
name = "10-yr Smooth",
line = list(color = "red", width = 2),
hovertemplate = "10-yr Smooth: %{y:.2f} <extra></extra>") %>%
add_lines(y = ~overall_mean,
name = "Overall Mean",
line = list(color = "black", width = 2, dash = "dash"),
hovertemplate = "Timeseries Mean: %{y:.2f} <extra></extra>") %>%
layout(
title = "Arctic Oscillation Index for Northern Hemisphere",
xaxis = list(title = "Date",
hoverformat = "%b %Y" ),
yaxis = list(title = "AO Index",
fixedrange = T),
hovermode = "x unified",
margin = list(t = 80)
) %>%
config(displayModeBar = FALSE)
p Figure 9.1: AO Index Value; 1950-2025
9.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 AO value is 0.036, which is moderate among values in the timeseries. The AO is currently in a positive phase, and has been since Mar. 2025. The AO value has followed a decreasing trend in recent years.
9.3.1 Summary Table
Summary values for the Arctic Oscillation are found in the table below (Table 9.1)
| Metric | Value | Description |
|---|---|---|
| Most Recent Value (Aug. 2025) | 0.036 | The most recent value is moderate within the timeseries, in the 54.85 percentile of all values. |
| Timeseries Record High | 3.495 | The highest value in the timeseries was recorded on Jan. 1993, and was 3.58 higher than the overall timeseries mean. |
| Timeseries Record Low | -4.266 | The lowest value in the timeseries was recorded on Feb. 2010, and was 4.18 lower than the overall timeseries mean. |
9.4 Relevance to Research and Stock Assessments
Direct examples of AO’s effect on fisheries are less common compared to other atmospheric variables, but the index has potential effects to stocks through its association with sea ice coverage and freshwater input in the Arctic and North Atlantic oceans (Greene et al. 2013).
In Canada, some fisheries responses to AO have been identified. Positive springtime AO values have been associated with decreased recruitment and of juvenile movement arctic cod in the Beaufort Sea, and positive AO years result in increased transport of fish towards eastern waters (Herbig et al. 2023). AO has also shown an important predictor of exploitable snow crab biomass, with effects that vary across regions and timescales (Mullowney et al. 2023).