Skip to main content

A Python API for the National Data Buoy Center.

Project description

NDBC API

Coverage Status PyPI DOI PyPI - Python Version LinkedIn GitHub PyPI - Downloads

A Python API for the National Data Buoy Center

The National Oceanic and Atmospheric Association's National Data Buoy Center maintains marine monitoring and observation stations around the world1. These stations report atmospheric, oceanographic, and other meterological data at regular intervals to the NDBC. Measurements are made available over HTTP through the NDBC's data service.

The ndbc-api is a python library that makes this data more widely accessible.

The ndbc-api is primarily built to parse whitespace-delimited oceanographic and atmospheric data distributed as text files for available time ranges, on a station-by-station basis2. Measurements are typically distributed as utf-8 encoded, station-by-station, fixed-period text files. More information on the measurements and methodology are available on the NDBC website3.

Please see the included example notebook for a more detailed walkthrough of the API's capabilities.

Installation

The ndbc-api can be installed via PIP:

pip install ndbc-api

To use the async API, install the optional async extra:

pip install ndbc-api[async]

To use Polars instead of Pandas, install the optional polars extra:

pip install ndbc-api[polars]

Lightweight Environments & Polars-Only Support The ndbc-api features a dependency-free parser core that uses a List[dict] intermediate representation. This architecture allows the core API to function without heavy data-science libraries.

By default, pandas and xarray are installed as hard dependencies to ensure compatibility with existing users. However, if you are building a lightweight application or prefer to use Polars exclusively, you can safely uninstall them post-installation:

pip install ndbc-api[polars]
pip uninstall pandas xarray

When uninstalled, the API will gracefully fall back to returning data as a list of dictionaries (as_df=False), or as a Polars DataFrame if requested (as_pl=True).

Conda users can install the ndbc-api via the conda-forge channel:

conda install -c conda-forge ndbc-api

Finally, to install the ndbc-api from source, clone the repository and run the following command:

pip install .

Requirements

The ndbc-api has been tested on Python 3.9, 3.10, 3.12, and 3.13.

The API uses synchronous HTTP requests to compile data matching the user-supplied parameters. The ndbc-api package requires:

  • requests>=2.10.0
  • beautifulsoup4
  • html5lib>=1.1

Legacy Compatibility Dependencies: To ensure backward compatibility for existing users, the following libraries are installed by default but can be safely uninstalled for lightweight or Polars-only environments:

  • pandas>=2.0.0
  • numpy>=1.26.3
  • xarray
  • scipy
  • h5netcdf
Async

The async API additionally requires:

  • aiohttp>=3.9.0

Install it with pip install ndbc-api[async].

Development

If you would like to contribute to the growth and maintenance of the ndbc-api, please feel free to open a PR with tests covering your changes. The tests leverage pytest and depend on the above requirements, as well as:

  • coveralls
  • httpretty
  • pytest
  • pytest-cov
  • pytest-asyncio
  • aioresponses
  • pyyaml
  • pyarrow

Breaking changes will be considered, especially in the current alpha state of the package on PyPi. As the API further matures, breaking changes will only be considered with new major versions (e.g. N.0.0).

Example

The ndbc-api exposes public methods through the NdbcApi class.

from ndbc_api import NdbcApi

api = NdbcApi()

The NdbcApi provides a unified access point for NDBC data. All methods for obtaining data, metadata, and locating stations are available using the api object. The get_data method is the primary method for accessing NDBC data, and is used to retrieve measurements from a given station over a specified time range. This method can request data from the NDBC HTTP Data Service or the THREDDS data service, and return the data as a pandas.DataFrame, xarray.Dataset or python dict object.

Data made available by the NDBC falls into two broad categories.

  1. Station metadata
  2. Station measurements

The api supports a range of public methods for accessing data from the above categories.

Station metadata

The api has five key public methods for accessing NDBC metadata.

  1. The stations method, which returns all NDBC stations.
  2. The nearest_station method, which returns the station ID of the nearest station.
  3. The station method, which returns station metadata from a given station ID.
  4. The available_realtime method, which returns hyperlinks and measurement names for realtime measurements captured by a given station.
  5. The available_historical method, which returns hyperlinks and measurement names for historical measurements captured by a given station.
stations
# get all stations and some metadata as a Pandas DataFrame
stations_df = api.stations()
# parse the response as a dictionary
stations_dict = api.stations(as_df=False)
nearest_station
# specify desired latitude and longitude
lat = '38.88N'
lon = '76.43W'

# find the station ID of the nearest NDBC station
nearest = api.nearest_station(lat=lat, lon=lon)
print(nearest_station)
'tplm2'
radial_search
# specify desired latitude, longitude, radius, and units
lat = '38.88N'
lon = '76.43W'
radius = 100
units = 'km'

# find the station IDs of all NDBC stations within the radius
nearby_stations_df = api.radial_search(lat=lat, lon=lon, radius=radius, units=units)
'tplm2'
station
# get station metadata
tplm2_meta = api.station(station_id='tplm2')
# parse the response as a Pandas DataFrame
tplm2_df = api.station(station_id='tplm2', as_df=True)
available_realtime
# get all available realtime measurements, periods, and hyperlinks
tplm2_realtime = api.available_realtime(station_id='tplm2')
# parse the response as a Pandas DataFrame
tplm2_realtime_df = api.available_realtime(station_id='tplm2', as_df=True)
available_historical
# get all available historical measurements, periods, and hyperlinks
tplm2_historical = api.available_historical(station_id='tplm2')
# parse the response as a Pandas DataFrame
tplm2_historical_df = api.available_historical(station_id='tplm2', as_df=True)
Station measurements

The api has two public methods which support accessing supported NDBC station measurements.

  1. The get_modes method, which returns a list of supported modes, corresponding to the data formats provided by the NDBC data service. For example, the adcp mode represents "Acoustic Doppler Current Profiler" measurements, providing information about ocean currents at different depths, while cwind represents "Continuous winds" data, offering high-frequency wind speed and direction measurements.

Note that not all stations provide the same set of measurements. The available_realtime and available_historical methods can be called on a station-by station basis to ensure a station has the desired data available, before building and executing requests with get_data.

  1. The get_data method, which returns measurements of a given type for a given station.
get_modes
# get the list of supported meterological measurement modes
modes = api.get_modes()
print(modes)
[
    'adcp',
    'cwind',
    'ocean',
    'spec',
    'stdmet',
    'supl',
    'swden',
    'swdir',
    'swdir2',
    'swr1',
    'swr2'
]

The mode values above map directly to the identifiers used buy the NDBC. Desriptions for each mode are presented below:

  • adcp: Acoustic Doppler Current Profiler measurements, providing information about ocean currents at different depths.
  • cwind: Continuous winds data, offering high-frequency wind speed and direction measurements.
  • ocean: Oceanographic data, including water temperature, salinity, and wave measurements.
  • spec: Spectral wave data, providing detailed information about wave energy and direction.
  • stdmet: Standard meteorological data, including air temperature, pressure, wind speed, and visibility.
  • supl: Supplemental measurements, which can vary depending on the specific buoy and its sensors.
  • swden: Spectral wave density data, providing information about the distribution of wave energy across different frequencies.
  • swdir: Spectral wave direction data, indicating the primary direction of wave energy.
  • swdir2: Secondary spectral wave direction data, capturing additional wave direction information.
  • swr1: First-order spectral wave data, providing basic wave height and period information.
  • swr2: Second-order spectral wave data, offering more detailed wave measurements.
get_data
# get all continuous wind (`cwind`) measurements for station tplm2
cwind_df = api.get_data(
    station_id='tplm2',
    mode='cwind',
    start_time='2020-01-01',
    end_time='2022-09-15',
)
# return data as a dictionary
cwind_dict = api.get_data(
    station_id='tplm2',
    mode='cwind',
    start_time='2020-01-01',
    end_time='2022-09-15',
    as_df=False
)
# get only the wind speed measurements
wspd_df = api.get_data(
    station_id='tplm2',
    mode='cwind',
    start_time='2020-01-01',
    end_time='2022-09-15',
    as_df=True,
    cols=['WSPD']
)
# get all standard meterological (`stdmet`) measurements for stations tplm2 and apam2
stdmet_df = api.get_data(
    station_ids=['tplm2', 'apam2'],
    mode='stdmet',
    start_time='2022-01-01',
    end_time='2023-01-01',
)
# get all (available) continuous wind and standard meterological measurements for stations tplm2 and apam2
# for station apam2, this is unavailable and will log an error but not affect the rest of the results.
stdmet_df = api.get_data(
    station_ids=['tplm2', 'apam2'],
    modes=['stdmet', 'cwind'],
    start_time='2022-01-01',
    end_time='2023-01-01',
)

Async API

The ndbc-api also provides an async API, AsyncNdbcApi, for use in asyncio applications. All public methods mirror those of the synchronous NdbcApi, but are defined as async def and use aiohttp for non-blocking I/O.

Install the async extra if you haven't already:

pip install ndbc-api[async]

The AsyncNdbcApi is used as an async context manager:

import asyncio
from ndbc_api import AsyncNdbcApi

async def main():
    async with AsyncNdbcApi() as api:
        # get all stations
        stations_df = await api.stations()

        # find the nearest station
        nearest = await api.nearest_station(lat='38.88N', lon='76.43W')

        # get standard meteorological data
        stdmet_df = await api.get_data(
            station_id='tplm2',
            mode='stdmet',
            start_time='2020-01-01',
            end_time='2022-01-01',
        )

        # concurrent multi-station query
        multi_df = await api.get_data(
            station_ids=['tplm2', 'apam2'],
            mode='stdmet',
            start_time='2022-01-01',
            end_time='2023-01-01',
        )

asyncio.run(main())

The async API supports the same use_opendap / as_xarray_dataset options as the synchronous API for accessing data via the THREDDS/OpenDAP service:

async with AsyncNdbcApi() as api:
    ds = await api.get_data(
        station_id='tplm2',
        mode='stdmet',
        start_time='2020-01-01',
        end_time='2022-01-01',
        use_opendap=True,
    )

More Information

Please see the included example notebook for a more detailed walkthrough of the API's capabilities.

Questions

If you have questions regarding the library please post them into the GitHub discussion forum.

  1. https://www.ndbc.noaa.gov/

  2. https://www.ndbc.noaa.gov/obs.shtml

  3. https://www.ndbc.noaa.gov/docs/ndbc_web_data_guide.pdf

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ndbc_api-0.26.7.25.2.tar.gz (46.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ndbc_api-0.26.7.25.2-py3-none-any.whl (72.5 kB view details)

Uploaded Python 3

File details

Details for the file ndbc_api-0.26.7.25.2.tar.gz.

File metadata

  • Download URL: ndbc_api-0.26.7.25.2.tar.gz
  • Upload date:
  • Size: 46.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for ndbc_api-0.26.7.25.2.tar.gz
Algorithm Hash digest
SHA256 cb97cfe258a638317d4bd883ff181b0b003438168be06eb3b45740f358a2d2d4
MD5 e1c618ef091b6ab0afdb49dee8a0d917
BLAKE2b-256 f44b0e1c80ca2543c0b3659761058b9e285978fad1de8f2ea196ff6bf423776f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ndbc_api-0.26.7.25.2.tar.gz:

Publisher: publish.yml on CDJellen/ndbc-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ndbc_api-0.26.7.25.2-py3-none-any.whl.

File metadata

  • Download URL: ndbc_api-0.26.7.25.2-py3-none-any.whl
  • Upload date:
  • Size: 72.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for ndbc_api-0.26.7.25.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9cb4761116ca0813fc68d3c531bee9ab08dac83e2b4048e8b91ecfdb9fc3aafe
MD5 dc08f7369035d1367c10d887d9198c34
BLAKE2b-256 efc7104d666bc945d27701f9a8639b2ac6b72e2bcee71246142b2238b9f6f683

See more details on using hashes here.

Provenance

The following attestation bundles were made for ndbc_api-0.26.7.25.2-py3-none-any.whl:

Publisher: publish.yml on CDJellen/ndbc-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page