Southern Oscillation Index

Author

Oren Bochman

Published

Sunday, September 1, 2024

Keywords

enso, SOI

SOI

https://www.ncei.noaa.gov/access/monitoring/enso/soi/

The Southern Oscillation Index (SOI) is a standardized index based on the observed sea level pressure (SLP) differences between Tahiti and Darwin, Australia. The SOI is one measure of the large-scale fluctuations in air pressure occurring between the western and eastern tropical Pacific (i.e., the state of the Southern Oscillation) during El Niño and La Niña episodes. In general, smoothed time series of the SOI correspond very well with changes in ocean temperatures across the eastern tropical Pacific. The negative phase of the SOI represents below-normal air pressure at Tahiti and above-normal air pressure at Darwin.

let’s load the soi data and plot it.

if(!require('ocedata')) {
  install.packages('ocedata')
  library('ocedata')
}
data(soi, package="ocedata")
recent <- subset(soi, year > 1950)
plot(recent$year, recent$index, type='l', xlab="Year", ylab="SOI")

Reuse

CC SA BY-NC-ND

Citation

BibTeX citation:
@online{bochman2024,
  author = {Bochman, Oren},
  title = {Southern {Oscillation} {Index}},
  date = {2024-09-01},
  url = {https://orenbochman.github.io/notes/bayesian-ts/extra/soi.html},
  langid = {en}
}
For attribution, please cite this work as:
Bochman, Oren. 2024. “Southern Oscillation Index.” September 1, 2024. https://orenbochman.github.io/notes/bayesian-ts/extra/soi.html.