From 7544272d6ffe9ec0acb829d27ec32dfe24e07b9c Mon Sep 17 00:00:00 2001 From: Ryan May Date: Mon, 2 Dec 2024 15:26:15 -0700 Subject: [PATCH] MNT: Update buoy used in example Apparently 42002 became adrift and stopped reporting data. --- examples/ndbc/buoy_type_request.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ndbc/buoy_type_request.py b/examples/ndbc/buoy_type_request.py index 511bca3ce..fac4f468a 100644 --- a/examples/ndbc/buoy_type_request.py +++ b/examples/ndbc/buoy_type_request.py @@ -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()