View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

WaterFrame.rename(actual_name, new_name, inplace=True)

Reference

It renames a parameter.

Parameters

Returns

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(f"WaterFrame original parameters: {(', ').join(wf.parameters)}")

wf.rename(actual_name='TEMP', new_name='TEMP-OBSEA', inplace=True)

print(f"WaterFrame renamed parameters: {(', ').join(wf.parameters)}")

Output:

WaterFrame original parameters: PRES, TEMP, CNDC
WaterFrame renamed parameters: PRES, TEMP-OBSEA, CNDC

Return to mooda.WaterFrame.