This file contains hydrodynamic data collected from ADVs, ADCP, Pressure sensors and a deep water wave buoy during the SEDMEX campaign sep-okt 2021 on the Prins Hendrik Zanddijk on Texel, the Netherlands. Data is stored in standardised netCDF format. Below is a summary of the instrument configuration in the field. All relevant meta-data for interpretation of the collected data is attached to the attributes of the netcdf's. There are several ways to work with / inspect netcdf's. For example, but not limited to, the xarray python package or the native netcdf read functionality of Matlab. in Python: import xarray as xr ds = xr.open_dataset(myfile.nc) print(ds.attrs) print(list(ds.keys()) print(list(ds.coords()) ds.Hm0.plot() in Matlab: ncdump(myfile.nc) Hm0 = ncread(myfile.nc, 'Hm0');