Provenance
Freshness & coverage
Methods (6)
getTidePredictions
readRetrieve tide predictions for a station over dates using a datum and interval.
Input schema
{ "type": "object", "properties": { "station": { "type": "string" }, "beginDate": { "type": "string" }, "endDate": { "type": "string" }, "date": { "type": "string" }, "datum": { "type": "string" }, "interval": { "oneOf": [ { "type": "string", "enum": [ "hilo" ] }, { "type": "string", "enum": [ "h" ] }, { "type": "string", "enum": [ "6" ] } ] } }, "additionalProperties": false, "required": [ "station" ] }getWaterLevels
readRetrieve water levels for a station over a date range and datum.
Input schema
{ "type": "object", "properties": { "station": { "type": "string" }, "beginDate": { "type": "string" }, "endDate": { "type": "string" }, "datum": { "type": "string" } }, "additionalProperties": false, "required": [ "station", "beginDate", "endDate" ] }getCurrents
readRetrieve current measurements for a station over a date range.
Input schema
{ "type": "object", "properties": { "station": { "type": "string" }, "beginDate": { "type": "string" }, "endDate": { "type": "string" } }, "additionalProperties": false, "required": [ "station", "beginDate", "endDate" ] }getMeteorologicalData
readRetrieve meteorological data for a station over dates and a product type.
Input schema
{ "type": "object", "properties": { "station": { "type": "string" }, "beginDate": { "type": "string" }, "endDate": { "type": "string" }, "product": { "oneOf": [ { "type": "string", "enum": [ "wind" ] }, { "type": "string", "enum": [ "air_pressure" ] }, { "type": "string", "enum": [ "air_temperature" ] }, { "type": "string", "enum": [ "water_temperature" ] } ] } }, "additionalProperties": false, "required": [ "station", "beginDate", "endDate", "product" ] }searchStations
readSearch NOAA stations by type, state, coordinates, or radius.
Input schema
{ "type": "object", "properties": { "type": { "oneOf": [ { "type": "string", "enum": [ "waterlevels" ] }, { "type": "string", "enum": [ "currents" ] }, { "type": "string", "enum": [ "met" ] } ] }, "state": { "type": "string" }, "latitude": { "type": "number" }, "longitude": { "type": "number" }, "radiusMiles": { "type": "number" } }, "additionalProperties": false }getStationInfo
readRetrieve NOAA station information by station identifier.
Input schema
{ "type": "object", "properties": { "stationId": { "type": "string" } }, "additionalProperties": false, "required": [ "stationId" ] }
