View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

wf.iplot_bar_polar(theta, color, r=’auto’, template=’xgridoff’, color_continuous_scale=’auto’, **kwds)

It uses plotly.express.bar_polar.

In a polar bar plot, each row of ‘color’ is represented as a wedge mark in polar coordinates.

Reference

Parameters

Returns

Example

For this example we are going to download wind direction and wind speed data from EMSO platform 68422. We will download 1000 values without specifying the time range or depth.

import mooda as md

wf = md.from_emso(platform_code='68422', parameters=['WDIR', 'WSPD'], size=1000)

# Resample data hourly
wf.resample('H')

fig = wf.iplot_bar_polar('WDIR', 'WSPD')
fig.show()

Output:

Note - The output graph is interactive. Below is the figure saved in a png image.

iplot_bar_polar

Return to mooda.WaterFrame.