Data types provided by OceanAnalysis
OA is the foundational base for all the OceanAnalysis data types. In each of those derived types, there are two elements: (1) metadata, which is a Dict holding information about the data (e.g. a sampling location, for a [Ctd] object), and (2) data, which may be DataFrame, a Matrix, or some other data-containing type.
The following outlines the available types and the principle functions relating to them. See the online documentation for graphical examples of many of these types.
Adpholds data from Acoustic-Doppler Profile data, as read byread_adp_rdiand plotted withplot_adp.Amsrholds data from AMSR satellites. Themetadataitem is a Dict that holds information about the data source and sampling time. Thedataitem is a matrix holding the requested field. Seeread_amsrfor reading such files and plotting their contents.Argoholds data from Argo profiling floats, as read byread_argo.Ctdholds hydrographic data, either from plain CTD instruments or from Argo profilers. In each case, themetadataitem holds information about the data (such as the position and time of sampling), and thedataitem is a DataFrame with columns namedsalinity,temperatureandpressure, along (in some cases with other columns in the data file). The following functions returnCtdvalues:as_ctd,read_ctd_cnv,read_ctd_exchange,read_ctd_rskandread_argo. Objects of typeCtdmay be plotted withplot_profileandplot_TS.Coastlineholds coastline shapes. Themetadataitem is a Dict that holds the name of the file from which the data were read (or an indication that the data were user-supplied directly). Thedataitem is a DataFrame with columns namedlongitudeandlatitude. Note that the former is in the 0-360 degree range for the built-in datasets. See the documentation forcoastlinefor reading and plotting such data.Echosounderholds data from scientific echosounders, as read withread_echosounder.Nonnaholds high-resolution bathymetry data, as read withread_nonna.Sectionholds a collection ofCtdobjects constructed from hydrographic profiles. Sections may be built up from such profiles withas_sectionorread_section. Archived sections may be downloaded withget_section. Plots of station locations can be created withplot_stations. Cross-section diagrams of the hydrographic data stored in sections (after they are gridded withgrid_section) may be created withplot_section.Topographyholds topographic information. Themetadataitem is a Dict holding items named"longitude"and"latitude". Thedataitem is a matrix of earth height above mean sea level, in metres. Topographic files in NetCDF format may be accessed or downloaded withget_topography, and read withread_topography. Plots ofTopographyobjects may created withplot_topography.