Get NOAA Climate Station
noaa_climate_get_stationFetch full metadata for a single weather station by its ID (e.g., "GHCND:USW00024233", "COOP:010008"). Returns name, coordinates, elevation, and the full date range for which data is available. Use when you have a station ID from noaa_climate_find_stations and want its complete details, or to verify a station before querying data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| stationId | Yes | Station ID to fetch (e.g., "GHCND:USW00024233", "COOP:010008"). Obtain from noaa_climate_find_stations. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Station ID. | |
| name | No | Station name. | |
| error | No | Present when the call failed. Absent on success. | |
| maxdate | No | Latest date data is available at this station (YYYY-MM-DD). Omitted when not provided. | |
| mindate | No | Earliest date data is available at this station (YYYY-MM-DD). Omitted when not provided. | |
| latitude | No | Station latitude in decimal degrees. Omitted when not provided by the API. | |
| elevation | No | Station elevation. Unit depends on elevationUnit. Omitted when not provided. | |
| longitude | No | Station longitude in decimal degrees. Omitted when not provided by the API. | |
| datacoverage | No | Fractional data coverage (0–1). Omitted when not provided by the API. | |
| elevationUnit | No | Unit for elevation (e.g., "Meters"). Omitted when not provided. |