Get Water Level
noaa_marine_get_water_levelObserved water level (real-time or historical) for a CO-OPS water-level station, with paired predictions for comparison. The difference (residual = observed − predicted) indicates storm surge (positive) or anomalous drawdown (negative). Returns 6-minute observations alongside 6-minute predictions. Date range is limited to 31 days per request; split longer ranges into multiple calls. Use noaa_marine_find_stations first to resolve a station name or location to a valid station ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| datum | No | Tidal datum reference plane. MLLW (default) is the US nautical chart datum. MSL = mean sea level; MHHW = mean higher high water (flooding reference). | MLLW |
| units | No | Unit system: english = feet; metric = meters. | english |
| end_date | Yes | End date in YYYYMMDD format (inclusive), e.g. "20240601". | |
| time_zone | No | Time zone for returned timestamps. lst_ldt = local standard/daylight time (default); gmt = UTC; lst = local standard time year-round. | lst_ldt |
| begin_date | Yes | Start date in YYYYMMDD format, e.g. "20240601". | |
| station_id | Yes | CO-OPS water-level station ID (numeric, e.g. "9447130" for Seattle). Obtain from noaa_marine_find_stations with types=["water_level"]. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| datum | No | Tidal datum used — echoed for correct interpretation of water heights. | |
| error | No | Present when the call failed. Absent on success. | |
| units | No | Height units: "english" (feet) or "metric" (meters). | |
| station_id | No | Station ID echoed from the request — for chaining. | |
| predictions | No | Paired 6-minute tide predictions for the same period. May be empty if CO-OPS predictions are unavailable for this station. | |
| observations | No | 6-minute observed water level readings. | |
| station_name | No | Station name as returned by CO-OPS. | |
| residual_summary | No | Summary of observed-minus-predicted residuals in the requested units. Only present when both observations and predictions are available. |