get_high_tide_flooding_seasonal
Retrieve seasonal high tide flooding counts for a specific station, filtered by threshold, datum, and time range, in JSON, XML, or CSV format, to analyze coastal flooding trends.
Instructions
Get high tide flooding seasonal count data for a station
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| begin_date | No | Start date (YYYYMMDD format) | |
| datum | No | Datum reference for DPAPI | |
| end_date | No | End date (YYYYMMDD format) | |
| format | No | Output format (json, xml, csv) | |
| season_months | No | Season months (DJF-Winter, MAM-Spring, JJA-Summer, SON-Fall) | |
| station | Yes | Station ID | |
| threshold | No | Flood threshold level | |
| year | No | Year for analysis (YYYY format) | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "description": "Get high tide flooding seasonal count data",
  "properties": {
    "begin_date": {
      "description": "Start date (YYYYMMDD format)",
      "type": "string"
    },
    "datum": {
      "description": "Datum reference for DPAPI",
      "enum": [
        "STND",
        "MLLW",
        "MHHW",
        "GT",
        "MSL",
        "MLW",
        "MHW"
      ],
      "type": "string"
    },
    "end_date": {
      "description": "End date (YYYYMMDD format)",
      "type": "string"
    },
    "format": {
      "description": "Output format (json, xml, csv)",
      "enum": [
        "json",
        "xml",
        "csv"
      ],
      "type": "string"
    },
    "season_months": {
      "description": "Season months (DJF-Winter, MAM-Spring, JJA-Summer, SON-Fall)",
      "enum": [
        "DJF",
        "MAM",
        "JJA",
        "SON"
      ],
      "type": "string"
    },
    "station": {
      "description": "Station ID",
      "minLength": 1,
      "type": "string"
    },
    "threshold": {
      "description": "Flood threshold level",
      "enum": [
        "minor",
        "moderate",
        "major"
      ],
      "type": "string"
    },
    "year": {
      "description": "Year for analysis (YYYY format)",
      "type": "string"
    }
  },
  "required": [
    "station"
  ],
  "type": "object"
}