View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

wf.iplot_location()

Reference

It creates a Plotly Figure with a map and a spot of the measurement location of the WaterFrame.

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_location()
go.Figure(fig).show()

Output:

OBSEA location map example

Return to mooda.WaterFrame.