I am using this script to display a figure
_wind_speed.hvplot.quadmesh(
x='XLONG',
y='XLAT',
title='Wind speed at 250 hPa',
geo=True,
project=True,
alpha=0.9,
cmap='inferno',
clim=(_wind_speed.min().item(), _wind_speed.max().item()),
clabel='wind speed [m/s]',
tiles='OSM',
dynamic=False
)
. Now my question is how to save the plot and pn, tiff or pdf.
Which command to use?
Thank you