get_station_details
Retrieve detailed station information, including ID, output format (JSON/XML), and units (English/Metric), for accurate water level and tide data analysis.
Instructions
Get detailed information about a station
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| format | No | Output format (json, xml) | |
| 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,
  "properties": {
    "format": {
      "description": "Output format (json, xml)",
      "enum": [
        "json",
        "xml"
      ],
      "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"
}