get_high_tide_flooding_likelihoods
Retrieve daily high tide flooding likelihoods for a specific station using station ID, date, and threshold level. Supports output in JSON, XML, or CSV formats for analysis and planning.
Instructions
Get high tide flooding daily likelihoods for a station
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Specific date (YYYYMMDD format) | |
datum | No | Datum reference for DPAPI | |
format | No | Output format (json, xml, csv) | |
station | Yes | Station ID | |
threshold | No | Flood threshold level |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Get high tide flooding daily likelihoods",
"properties": {
"date": {
"description": "Specific date (YYYYMMDD format)",
"type": "string"
},
"datum": {
"description": "Datum reference for DPAPI",
"enum": [
"STND",
"MLLW",
"MHHW",
"GT",
"MSL",
"MLW",
"MHW"
],
"type": "string"
},
"format": {
"description": "Output format (json, xml, csv)",
"enum": [
"json",
"xml",
"csv"
],
"type": "string"
},
"station": {
"description": "Station ID",
"minLength": 1,
"type": "string"
},
"threshold": {
"description": "Flood threshold level",
"enum": [
"minor",
"moderate",
"major"
],
"type": "string"
}
},
"required": [
"station"
],
"type": "object"
}