All datasets

US coastal sea-level signals (tide gauges, rise gauges)

Monthly coastal sea-level signals from eight long-record NOAA CO-OPS tide gauges (The Battery, Atlantic City, Charleston, Mayport, Key West, San Francisco, Port Orford, Juneau): monthly mean sea level with 3-month and 12-month changes, 30-month change volatility, 3-sigma anomaly flags, naive-drift forecasts, trailing-10-year rise trends (mm/year), rise-acceleration flags, record-high flags, and fast-rise flags. The observed coastal sea-level lens on climate change — the ocean-surface consequence to co2-growth (driver) and city-climate-stress (heat). All rows normalized to country_code USA. Raw data: NOAA CO-OPS (keyless, public domain).

Source: US Coastal Sea-Level Signals (derived)8,863 rowsUpdated: 9/22/2026
sea-leveltide-gaugecoastalclimate-changefloodingnoaaoceanmomentumanomaly-detectionforecastingsignalstrend-analysis

Quality

99.9

Attribution

NOAA Center for Operational Oceanographic Products (derived signals by Frontier Data Hub)

Schema

ColumnTypeDescription
datestringReference month (first of month) for the monthly mean sea level. (unit: ISO date)
countrystringAll stations are US tide gauges — country is 'United States'.
country_codestringAll stations are US tide gauges — country_code is 'USA'.
series_idstringConnector station code, e.g. THE_BATTERY, SAN_FRANCISCO.
series_labelstringStation label, e.g. 'Monthly mean sea level, The Battery NY (8518750)'.
valuefloatMonthly mean sea level (MSL) from the CO-OPS monthly_mean product. (unit: meters (station datum))
momentum_3mfloat
yoy_changefloat
volatility_30dfloat
anomaly_flaginteger
forecast_1mfloat
rise_trend_10yfloat
accel_flaginteger
record_high_flaginteger
fast_rise_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluemomentum_3myoy_changevolatility_30danomaly_flagforecast_1mrise_trend_10yaccel_flagrecord_high_flagfast_rise_flag
1900-01-01United StatesUSASAN_FRANCISCOMonthly mean sea level, San Francisco CA (9414290)-0.1210010
1900-01-01United StatesUSATHE_BATTERYMonthly mean sea level, The Battery NY (8518750)-0.4620010
1900-02-01United StatesUSASAN_FRANCISCOMonthly mean sea level, San Francisco CA (9414290)-0.1940000
1900-02-01United StatesUSATHE_BATTERYMonthly mean sea level, The Battery NY (8518750)-0.4320010
1900-03-01United StatesUSASAN_FRANCISCOMonthly mean sea level, San Francisco CA (9414290)-0.1730000

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/us_sealevel_signals/us_coastal_sea_level_signals" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/us_sealevel_signals/us_coastal_sea_level_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/us_sealevel_signals/us_coastal_sea_level_signals

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