All datasets

ENSO climate-oscillation signals (El Nino / La Nina gauges)

Monthly ENSO signals derived from the NOAA Climate Prediction Center (ONI, Nino 3.4 SST anomaly, and Southern Oscillation Index, 1950 ->): 3-month changes, 30-month change volatility, 3-sigma anomaly flags vs a trailing-10-year baseline, naive-drift 1-month forecasts, per-month cross-series volatility ranks, 10-year anomaly z-scores, and El Nino / La Nina phase flags (ONI +/-0.5C thresholds). The global ocean-atmosphere driver companion to the surface-climate signals. Raw data: NOAA Climate Prediction Center (keyless, public domain).

Source: ENSO Climate-Oscillation Signals (derived)2,748 rowsUpdated: 9/22/2026
ensoel-ninola-ninaoninino34soiteleconnectionclimate-oscillationsst-anomalynoaacpcvolatilitymomentumanomaly-detectionforecastingsignals

Quality

99.9

Attribution

NOAA Climate Prediction Center (derived signals by Frontier Data Hub)

Schema

ColumnTypeDescription
datestringReference month (first of month). ONI seasons are mapped to their middle month. (unit: ISO date)
countrystringGlobal index — country is 'World'.
country_codestringGlobal index — country_code is 'WLD'.
series_idstringCPC index code: ONI, NINO34, or SOI.
series_labelstringNOAA CPC index label, e.g. 'Oceanic Nino Index: 3-month running mean SST anomaly, Nino 3.4 region (5N-5S, 120W-170W)'.
valuefloatIndex value: for ONI, the 3-month running mean SST anomaly in the Nino 3.4 region (degrees C); for NINO34, the monthly Nino 3.4 SST anomaly (degrees C); for SOI, the standardized Tahiti-minus-Darwin sea-level-pressure difference (standard deviations). (unit: degrees C or standard deviations (per series_id))
momentum_3mfloat
volatility_30dfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger
enso_z_10yfloat
el_nino_flaginteger
la_nina_flaginteger
enso_phasestring
warm_flaginteger
cold_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluemomentum_3mvolatility_30danomaly_flagforecast_1mrankenso_z_10yel_nino_flagla_nina_flagenso_phasewarm_flagcold_flag
1949-12-01WorldWLDNINO34Nino 3.4 monthly sea-surface temperature anomaly (ERSST-based)-1.03000Neutral01
1950-01-01WorldWLDNINO34Nino 3.4 monthly sea-surface temperature anomaly (ERSST-based)-1.34000Neutral01
1950-01-01WorldWLDONIOceanic Nino Index: 3-month running mean SST anomaly, Nino 3.4 region (5N-5S, 120W-170W)-1.32001La Nina01
1950-02-01WorldWLDNINO34Nino 3.4 monthly sea-surface temperature anomaly (ERSST-based)-1.19000Neutral01
1950-02-01WorldWLDONIOceanic Nino Index: 3-month running mean SST anomaly, Nino 3.4 region (5N-5S, 120W-170W)-1.2001La Nina01

Download sample data

Download the full sample snapshot for this dataset (sample rows, not the complete dataset).

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/enso_signals/enso_climate_oscillation_signals" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/enso_signals/enso_climate_oscillation_signals").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/enso_signals/enso_climate_oscillation_signals

Tip: fetch /llms.txt for the full machine-readable catalog.