View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

wf.plot_timeseries(parameters_to_plot=None, qc_flags=None, rolling_window=None, ax=None, average_time=None, secondary_y=None, color=None)

Reference

Plot the input parameters with time on X and the parameters on Y. It calculates the standar deviation of a rolling window and plot it.

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 matplotlib.pyplot as plt
import mooda as md

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

wf = md.read_nc_emodnet(path_netcdf)

# Plot the sea water temperature
wf.plot_timeseries('TEMP')
plt.show()

Output:

Plot timeseries example

Notes: In this case, “depth: 1.0” means 20 meters of depth. The underwater laboratory OBSEA only measures the seawater temperature at one unique depth, at 20 meters.

Return to mooda.WaterFrame.