huracanpy.plot.tracks#
- huracanpy.plot.tracks(lon, lat, intensity_var=None, ax=None, subplot_kws=None, fig_kws=None, scatter_kws=None)[source]#
Create a map of all lon/lat points
- Parameters:
lon (array_like) – Longitude points
lat (array_like) – Latitude points
intensity_var (array_like, optional) – Colour the individual points by
ax (matplotlib.axes.Axes, optional) – The axes to draw the figure on. A new figure is created if ax is None
subplot_kws (dict, optional) – Keywords passed to the subplot_kw argument of
matplotlib.pyplot.subplots()fig_kws (dict, optional) – Keywords passed to
matplotlib.pyplot.subplots()scatter_kws (dict, optional) – Keywords passed to
seaborn.scatterplot()
- Returns:
The figure and axes instances created for the plot
- Return type: