View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

WaterFrame.use_only(parameters_to_use, inplace=True)

Reference

It deletes all parameters except the input parameters.

Parameters

Returns

Example

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

import mooda as md

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

wf = md.read_nc_emodnet(path_netcdf)

# Print parameters
print(f"WaterFrame original parameters: {(', ').join(wf.parameters)}")
# Delete all parameters except 'TEMP'
wf2 = wf.use_only('TEMP', inplace=False)
print(f"New WaterFrame parameters: {(', ').join(wf2.parameters)}")

Output:

WaterFrame original parameters: PRES, TEMP, CNDC
New WaterFrame parameters: TEMP

Return to mooda.WaterFrame.