View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

mooda.WaterFrame()

The WaterFrame object has been designed to contain all the information that can be obtained from a NetCDF file. WaterFrame relies on a pandas.DataFrame to save and manipulate data and two dictionaries to collect metadata.

WaterFrame structure

The following describes the components of a WaterFrame:

Magic methods

Constructor

It creates an empty pandas.DataFrame called WaterFrame.data and two dictionaries called WaterFrame.vocabulary and WaterFrame.metadata.

__repr__()

It returns a printable representational string of the WaterFrame with the following information:

Properties

WaterFrame.parameters

We call parameter to the key of the WaterFrame.data column containing “_QC”. For example, a WaterFrame.data that contains the keys: POSITION, TEMP, TEMP_QC, PSAL, PSAL_QC; the parameters are TEMP and PSAL.

Example

To reproduce the example, download the NetCDF file here and save it as example.nc in the same python script folder.

import mooda as md

path_netcdf = "example.nc"  # Path of the NetCDF file

wf = md.read_nc_emodnet(path_netcdf)
print(", ".join(wf.parameters))

Output:

DEPH, ATMS, CNDC, DRYT, PRES, PSAL, SVEL, TEMP, WDIR, WSPD

WaterFrame.memory_usage

It returns the memory usage of the WaterFrame in bytes.

To reproduce the example, download the NetCDF file here and save it as example.nc in the same python script folder.

import mooda as md

path_netcdf = "example.nc"  # Path of the NetCDF file

wf = md.read_nc_emodnet(path_netcdf)
print(f"{wf.memory_usage} bytes")

Output:

142484054 bytes

Methods

Data analysis

Output

Static plot

Interactive plot

Data Quality Control

Return to API reference.