Get High Tide Flooding Data
noaa_get_high_tide_floodingGet NOAA high tide flooding (HTF, "nuisance"/"sunny day" flooding) statistics for a station. Reports:
daily: flood occurrence per day (REQUIRES start_date and end_date, YYYYMMDD)
monthly / seasonal / annual: counts of minor/moderate/major flood days per period (filter with year/month/season_months, or range = last N periods)
met_year_annual: counts by meteorological year (May–April)
annual_outlook: NOAA's projected flood-day outlook for the coming met year
projections: decadal flood-day projections through 2100 (filter by decade, flood_threshold)
record_days: record flood-day counts
likely_scenarios: likely decadal flooding scenarios
daily_likelihoods: day-by-day flood likelihood forecasts
Use for: "how often does X flood?", trends in nuisance flooding, future flooding projections. Not all stations have HTF products — check the HTFhistorical flag via noaa_get_station_info.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | Filter to a calendar year (monthly/seasonal/annual/record_days). | |
| month | No | Filter to a month (monthly report). | |
| range | No | Number of years to cover: with year (or met_year) set, returns year..year+range; without, returns the last N years. | |
| decade | No | Decade for projections/likely_scenarios (e.g. 2050). | |
| report | No | Which HTF report to retrieve (see tool description). | annual |
| 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. | |
| end_date | No | YYYYMMDD — required for report "daily". | |
| met_year | No | Meteorological year (met_year_annual / annual_outlook). | |
| start_date | No | YYYYMMDD — required for report "daily". | |
| season_months | No | Season for the seasonal report (Dec-Jan-Feb, Mar-Apr-May, ...). | |
| flood_threshold | No | Flood severity threshold for projections/likely_scenarios. | |
| response_format | No | Output format: "markdown" for a readable summary table, "json" for the complete structured payload. | markdown |