View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

WaterFrame.to_nc(path, nc_format=“NETCDF4”)

Reference

It saves the WaterFrame into a NetCDF.

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 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(wf.parameters)}")


# Save the new wf into a NetCDF with the name "example_TEMP.nc"
wf2.to_nc("example_TEMP.nc")
print("NetCDF created.")

Output:

WaterFrame original parameters: DEPH, ATMS, CNDC, DRYT, PRES, PSAL, SVEL, TEMP, WDIR, WSPD
New WaterFrame parameters: DEPH, ATMS, CNDC, DRYT, PRES, PSAL, SVEL, TEMP, WDIR, WSPD
NetCDF created.

Return to mooda.WaterFrame.