View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

wf.iplot_timeseries(parameters_to_plot=None, mode=‘lines’ marker_line_width=0, marker_size=4, marker_color=None, marker_colorscale=‘Viridis’)

Reference

It creates a Plotly figure with the time-series of the input parameters.

Parameters

Returns

Example

To reproduce the example, download the NetCDF file MO_TS_MO_OBSEA_201401.nc.

import mooda as md
import plotly.graph_objects as go

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

wf = md.read_nc_emodnet(path_netcdf)

fig = wf.iplot_timeseries('TEMP')
go.Figure(fig).show(filename='ex.html')

Output:

Interactive time-series plot example

Return to mooda.WaterFrame.