huracanpy.plot.tracks#

huracanpy.plot.tracks(lon, lat, intensity_var=None, ax=None, subplot_kws={'projection': <Projected CRS: +proj=eqc +ellps=WGS84 +a=6378137.0 +lon_0=180 +to ...> Name: unknown Axis Info [cartesian]: - E[east]: Easting (unknown) - N[north]: Northing (unknown) - h[up]: Ellipsoidal height (metre) Area of Use: - undefined Coordinate Operation: - name: unknown - method: Equidistant Cylindrical Datum: Unknown based on WGS 84 ellipsoid - Ellipsoid: WGS 84 - Prime Meridian: Greenwich }, fig_kws={'figsize': (10, 10)}, scatter_kws={'color': 'k', 'palette': 'turbo'})[source]#

Create a map of all lon/lat points

Parameters:
  • lon (array_like)

  • lat (array_like)

  • 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:

tuple[matplotlib.figure.Figure, matplotlib.axes.Axes]