Get Top Ten / Peak Water Levels
noaa_get_top_ten_water_levelsGet a station's highest recorded water levels: analysis "toptenwaterlevels" returns the ten highest events on record (with date, height, causal event name like "Great New England Hurricane", and category); "peakwaterlevels" returns peak event records (optionally filtered by year).
Heights are relative to the requested datum (MHHW is typical for flood comparisons). Use for "what's the worst flooding ever recorded at X?".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | For peakwaterlevels: filter to one year. | |
| datum | No | Reference datum for reported heights (MHHW is standard for flood context). | MHHW |
| units | No | Unit system. english: feet, °F, knots (wind AND currents), nautical miles. metric: meters, °C, m/s for wind but cm/s for currents, kilometers. Air pressure is millibars and salinity is PSU in BOTH systems. | english |
| station | Yes | Station ID. Water-level/met stations use 7-digit numeric IDs (e.g. "9414290" San Francisco); current stations use alphanumeric IDs (e.g. "cb0102"). Find stations with noaa_search_stations or noaa_find_nearest_stations. | |
| analysis | No | "toptenwaterlevels" = ten highest on record; "peakwaterlevels" = peak event records. | toptenwaterlevels |
| response_format | No | Output format: "markdown" for a readable summary table, "json" for the complete structured payload. | markdown |