MHKiT CDIP IO

MHKiT includes functions to pull data directly from the Coastal Data Information Program (CDIP), an extensive network for monitoring waves and beaches along the coastlines of the United States.

To run this example of using CDIP and its data in MHKiT we will start by importing the necessary python packages (scipy, pandas, numpy), and MHKiT wave submodules (resource, graphics, and io.ndbc).

[1]:
from mhkit.wave import graphics
from mhkit.wave.io import cdip
import matplotlib.pyplot as plt

Quick Start

The request_parse_workflow function is your one-stop shop for pulling and parsing data. It wraps MHKiT’s request_data function so that if a station number is passed the function will pull the buoy data from the CDIP servers and then proceed to process the data for the user. request_parse_workflow allows the user to slice data between a start and/or end date. Alternatively, the user may specify a single year or multiple years of interest. To reduce processing time request_parse_workflow will allow the user to specify parameters of interest and only return data for the specified parameters. By default, the request_parse_workflow will pull historic data but the user may also specify real-time data if interested. Lastly, due to the long processing time two-dimensional (2D) data is not returned by default. If all 2D data is desired the boolean all_2D_variables may be specified as True. It is recommended however that if 2D data is needed that the user passes that parameter in the parameters field. For a full list of 1D, 2D, and metadata variables see the CDIP reference here (see BUOY VARIABLES).

[2]:
from mhkit.wave.io import cdip
import matplotlib.pyplot as plt
station_number = '100'
start_date = '2020-04-01'
end_date= '2020-04-30'
parameters =['waveHs', 'waveTp', 'waveMeanDirection']

data = cdip.request_parse_workflow(station_number=station_number, parameters=parameters,
                       start_date=start_date, end_date=end_date)

print('\n')
print(f'Returned data: {data.keys()} \n')

Processing 2D Variables:


Returned data: dict_keys(['data', 'metadata'])

1. Request Data from CDIP

In the above example request_parse_workflow is used to both request and parse the CDIP data using multiple MHKiT functions in a presepecfied workflow for the user. Here, we will start by running the consituient functions which make up parse data.

To get started we will take a look at the request_netCDF function and what is needed to call it. Requesting the NetCDF file is broken out to provide users flexibility by taking a modular approach to the data request. This is useful for the user to make custom workflows beyond what request_parse_workflow does currently and can also be used if the user prefers to work with the requested data in a tool such as xarray instead of the returned dictionary of dataframes.

MHKiT can be used to request historical or realtime data from the CDIP buoys. A station table and map can be found here to determine a buoy of interest http://cdip.ucsd.edu/m/stn_table/. To get started we will call historic data from station number 100. The function will return a netCDF file with all historic data.

[3]:
station_number='100'
data_type='historic'
nc = cdip.request_netCDF(station_number, data_type)

2. Processing the NetCDF file

The returned NetCDF file stored as the nc file above may now be passed to the get_netcdf_variables function to extract the data into a dictionary with a DataFrame of 1D variables and the metadata. The ‘data’ and ‘metadata’ each hold different types of data based based on a prefix used on the variable returned by CDIP. Example prefixs are ‘wave’, ‘sst’, and ‘gps’ which are described in further detail below.

[4]:
buoy_data = cdip.get_netcdf_variables(nc)

print(f'Returned data: {buoy_data.keys()} \n')
Returned data: dict_keys(['data', 'metadata'])

2.a The ‘data’ key

As can be seen above the function has returned a dictionary with two keys:

1. 'data' - dictionary of DataFrames with keys reffering to the data type. Possible keys include
    a. 'wave' - includes processed variables such as Hs, and Tp
    b. 'sst' - timeseries of sea surface tempature
    c. 'gps' - timeseries of buoy latitude and longitude
    d. 'dwr' - directional waverider contains information about accelerometer and buoy batery level
    e. 'wave2D' - dictionary of dataframes which are of length time and have columns of wave frequency.
2. 'metadata' - any other data that was not of length time of a 2D variable. This has the same keys as the 'data' key above.
    a. 'meta' - processed variables which started with the meta prefix and are not part of the variable prefixs listed below
    b. 'wave' - includes processed variables such as Hs, and Tp
    c. 'sst' - timeseries of sea surface tempature
    d. 'gps' - timeseries of buoy latitude and longitude
    e. 'dwr' - directional waverider contains information about accelerometer and buoy batery level
    f. 'wave2D' - dictionary of dataframes which are of length time and have columns of wave frequency.

By calling on the dictionary key [‘data’][‘wave’] we can see the associated DataFrame for the wave data. The DataFrame is summarized below where one can see both the time index and values of each column.

[5]:
buoy_data["data"]["wave"]
[5]:
waveTime waveFlagPrimary waveFlagSecondary waveHs waveTp waveTa waveDp wavePeakPSD waveTz waveSourceIndex
2001-01-30 00:17:11 9.808138e+08 1.0 0.0 0.97 14.285714 5.635270 275.96875 1.255072 4.597701 1.0
2001-01-30 00:47:10 9.808156e+08 1.0 0.0 0.95 14.285714 5.248230 266.12500 1.022441 4.347826 1.0
2001-01-30 01:17:11 9.808174e+08 1.0 0.0 0.93 15.384616 4.967487 252.06250 0.607862 4.166667 1.0
2001-01-30 01:47:10 9.808192e+08 1.0 0.0 1.03 13.333333 5.265260 275.96875 1.728395 4.395604 1.0
2001-01-30 02:17:10 9.808210e+08 1.0 0.0 1.00 13.333333 5.288306 275.96875 1.107597 4.395604 1.0
... ... ... ... ... ... ... ... ... ... ...
2021-02-19 06:30:00 1.613716e+09 1.0 0.0 1.22 15.384616 7.991556 198.03125 4.272474 6.060606 17.0
2021-02-19 07:00:00 1.613718e+09 1.0 0.0 1.12 14.285714 7.378790 237.40625 2.264136 5.797101 17.0
2021-02-19 07:30:00 1.613720e+09 1.0 0.0 1.13 14.285714 7.833025 237.40625 3.071583 6.153846 17.0
2021-02-19 08:00:00 1.613722e+09 1.0 0.0 1.07 13.333333 7.808791 244.43750 2.477359 6.153846 17.0
2021-02-19 08:30:00 1.613723e+09 1.0 0.0 1.09 15.384616 8.456770 195.21875 2.489777 6.666667 17.0

345608 rows × 10 columns

2.b The ‘metadata’ key

The metadatakey stores anything not of length time for each of the previous keys. This dictionary also has the ‘meta’ key for any data returned with started with the meta keyword.

[6]:
buoy_data['metadata'].keys()
[6]:
dict_keys(['wave', 'sst', 'gps', 'dwr', 'meta', 'name'])
[7]:
buoy_data['metadata']['meta']

[7]:
{'metaDeployLatitude': array([32.930218, 32.930218, 32.930218, 32.930332, 32.9303  , 32.9303  ,
        32.930668, 32.930668, 32.930668, 32.930668, 32.930668, 32.93043 ,
        32.93043 , 32.93043 , 32.93342 , 32.93342 , 32.933   ],
       dtype=float32),
 'metaDeployLongitude': array([-117.39256, -117.39256, -117.39256, -117.39256, -117.39238,
        -117.39238, -117.3924 , -117.3924 , -117.3924 , -117.3924 ,
        -117.3924 , -117.39187, -117.39187, -117.39187, -117.39083,
        -117.39083, -117.39073], dtype=float32),
 'metaWaterDepth': array([549.  , 549.  , 549.  , 549.  , 549.  , 549.  , 555.  , 555.  ,
        555.  , 555.  , 555.  , 549.  , 549.  , 549.  , 549.  , 549.  ,
        571.96], dtype=float32),
 'metaDeclination': array([13.  , 13.  , 13.  , 13.  , 13.  , 13.  , 13.  , 13.  , 13.  ,
        12.  , 12.15, 11.99, 11.99, 11.94, 11.8 , 11.55, 11.49],
       dtype=float32),
 'metaStationName': array([b'T', b'O', b'R', b'R', b'E', b'Y', b' ', b'P', b'I', b'N', b'E',
        b'S', b' ', b'O', b'U', b'T', b'E', b'R', b',', b' ', b'C', b'A',
        b' ', b'B', b'U', b'O', b'Y', b' ', b'-', b' ', b'1', b'0', b'0',
        b'p', b'1'], dtype='|S1'),
 'metaStationLatitude': array([32.931236], dtype=float32),
 'metaStationLongitude': array([-117.391945], dtype=float32),
 'metaPlatform': array([b'_'], dtype='|S1'),
 'metaInstrumentation': array([b'_'], dtype='|S1'),
 'metaGridMapping': array([b'_'], dtype='|S1')}

3. Plotting

The wave graphics module has two CDIP stylized plots boxplot and compendium. The CDIP scripts these are based on are hyperlinked.

3.a. The Box Plot

The CDIP stylized box plot is designed to group a passed parameter by months and display descriptive statistics. Below the plot is a general box plot legend showing the outliers as red plus signs, the 25 percentile and 75 percentile mark the edges of the box. The median is shown in as a red line in the box and the mean is shown as a green line with the mean annotated in green above the line. The x-axis has the month name at the bottom and the number of data points in each month at the top.

[8]:
Hs_2011_data = buoy_data["data"]["wave"]["waveHs"]['2011']
buoy_name = buoy_data["data"]["wave"].name
ax = graphics.plot_boxplot(Hs_2011_data, buoy_title=buoy_name)
_images/cdip_example_14_0.png

3.b. CDIP Conpendium plot

The compendium plot is a time series summary plot of three variables ( Hs, Tp, and Dp). To return the plot simply pass these variable from the ['data']['wave'] dataframe.

[9]:
wave_data_May_2011= buoy_data['data']['wave']['2011-05']
Hs = wave_data_May_2011['waveHs']
Tp = wave_data_May_2011['waveTp']
Dp = wave_data_May_2011['waveDp']

ax = graphics.plot_compendium(Hs, Tp, Dp, buoy_name )
_images/cdip_example_16_0.png

4. Advanced queries

In this section we will show how to slice on time ranges of interest.

4.a. get_netcdf_variable

get_netcdf_variables iterates over and extracts variables from CDIP bouy netCDF file. It takes inputs of start_date, end_date, parameters, and all_2D_variables. The start and end date parameters allow us to specify string dates of interest in which to include data after the start date and before the end date. These are specified as a string with precision down to the day in ‘YYYY-MM-DD’ format. Specifying particular parameters of interest allows for faster processing times and data handeling. For a complete list of parameters see Bouy Variables here. Lastly, we can specify to run all 2D variables, although this is not reccomended unless a user truly plans to use all the data becuase of the significant processing time.

For an example we will create a box-plot of HS for the year 2011 from the nc file requested earlier.

[10]:
buoy_data = cdip.get_netcdf_variables(nc, start_date='2011-01-01', end_date='2011-12-31', parameters='waveHs')
buoy_name = buoy_data["data"]["wave"].name
ax = graphics.plot_boxplot(buoy_data["data"]["wave"]["waveHs"], buoy_title=buoy_name)
_images/cdip_example_18_0.png

4.b. request_parse_workflow

In the previous example we requested the NetCDF file and then processed the data. This workflow has been codified into a single function to streamline the process and adds additional functionality as well. The request_parse_workflow function accepts a netCDF object or a station number. This means the user may pass a CDIP ndetCDF file loaded from file, pull the data with request_netcdf and then pass, or just pass a station number letting the function know what data to parse and return. Secondly, the request_parse_workflow function accepts parameters allowing the user to specify to only return specific parameters reducing processing requirements. This is especially useful for processing 2D data which is only processed is specifically requested due to the amount of time it takes to process all the 2D data. Next, request_parse_workflow will slice on time by years, start_date, or end date. Years can be a single integer or a list of integers and is not required to be consecutive. If specified the start date will remove any data prior to the specified string (e.g. ‘2011-01-01’) and end_date will remove any data after the speficied date. start_date and end_date may be used together, seperatly or not at all. Years works indpendently of start and end date. Next, the data_type defaults to historic but specifying this as realtime will return realtime data from the buoy. Lastly, there is a the boolean all_2D_variables. If set to true the function will return all of the wave 2D variables. It is not reccomended to do this due to the computational expense to do so, Instead it is reccomended to specify 2D quantities of interest using the parameters keyword.

For an example we will create a compendium of HS for the year 2011 from the nc file requested earlier. In this case we can use the years parameter instead of start and end dates.

[11]:
buoy_data = cdip.request_parse_workflow(station_number='100', years=2011, parameters=['waveHs', 'waveTp', 'waveDp'])

Hs = buoy_data['data']['wave']['waveHs']
Tp = buoy_data['data']['wave']['waveTp']
Dp = buoy_data['data']['wave']['waveDp']
buoy_name = buoy_data["data"]["wave"].name
ax = graphics.plot_compendium(Hs, Tp, Dp, buoy_name )
_images/cdip_example_20_0.png
[ ]: