get_top_ten_water_levels
Retrieve the top ten highest or lowest water levels for a NOAA tide station, specifying output format, units, and datum reference for analysis.
Instructions
Get top ten highest or lowest water levels for a station
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysis_type | No | Analysis type (highest or lowest) | |
datum | No | Datum reference for DPAPI | |
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 top ten water levels for a station",
"properties": {
"analysis_type": {
"description": "Analysis type (highest or lowest)",
"enum": [
"highest",
"lowest"
],
"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"
},
"units": {
"description": "Units to use (\"english\" or \"metric\")",
"enum": [
"english",
"metric"
],
"type": "string"
}
},
"required": [
"station"
],
"type": "object"
}