get_extreme_water_levels
Retrieve extreme water levels and exceedance probabilities for a specific station using station ID, with output in JSON, XML, or CSV formats. Supports English or metric units.
Instructions
Get extreme water levels and exceedance probabilities for a station
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format (json, xml, csv) | |
station | Yes | Station ID | |
units | No | Units to use ("english" or "metric") |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Get extreme water levels for a station",
"properties": {
"format": {
"description": "Output format (json, xml, csv)",
"enum": [
"json",
"xml",
"csv"
],
"type": "string"
},
"station": {
"description": "Station ID",
"minLength": 1,
"type": "string"
},
"units": {
"description": "Units to use (\"english\" or \"metric\")",
"enum": [
"english",
"metric"
],
"type": "string"
}
},
"required": [
"station"
],
"type": "object"
}