Skip to content

nickc1/seebuoy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

31e072d · Mar 21, 2023

History

57 Commits
Jan 1, 2023
Jan 2, 2023
Jan 1, 2023
Jan 2, 2023
Jan 1, 2023
Aug 3, 2020
Jan 1, 2023
Feb 17, 2019
Jan 2, 2023
Jan 1, 2023
Mar 21, 2023
Mar 21, 2023
Jan 2, 2023
Jan 1, 2023

Repository files navigation

seebuoy

Easily access real time and historical data from the National Data Buoy Center.

DOCUMENTATION.


seebuoy provides an easy to use python interface to the National Data Buoy Center. Easily access realtime data, historical data, and metadata about buoys, gliders, and ADCPs.

Quick Start

from seebuoy import NDBC

ndbc = NDBC()

# Information on NDBC's ~1800 buoys and gliders
df_buoys = ndbc.stations()

# list all available data for all buoys
df_data = ndbc.available_data()

# get all data for a buoy
station_id = "41037"
df_buoy = ndbc.get_station(station_id)

See the documentation for more detailed description.

Examples

In addition to this documentation, we also provide standalone jupyter notebooks. You can see them rendered on github:

  • North Carolina Stations: Find all buoys near North Carolina, list all available data, and pull data for a specific buoy.
  • Historical Data: Get all historical data for the South Hatteras buoy going back to 1973.

Installation

pip install seebuoy

Other Resources