Skip to content

Commit

Permalink
MNT: Update buoy used in example
Browse files Browse the repository at this point in the history
Apparently 42002 became adrift and stopped reporting data.
  • Loading branch information
dopplershift committed Dec 2, 2024
1 parent 82cfe60 commit 7544272
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/ndbc/buoy_type_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@

####################################################
# Request the types of data available from a given buoy.
data_aval = NDBC.buoy_data_types('42002')
data_aval = NDBC.buoy_data_types('42001')
print(data_aval)

####################################################
# Get a pandas data frame of all of the observations, meteorological data is the default
# observation set to query.
df = NDBC.realtime_observations('42002', data_type='supl')
df = NDBC.realtime_observations('42001', data_type='supl')
df.head()

0 comments on commit 7544272

Please sign in to comment.