pyart.graph.RadarMapDisplay.plot_point

RadarMapDisplay.plot_point(lon, lat, symbol='ro', label_text=None, label_offset=(None, None), **kwargs)[source]

Plot a point on the current map.

Additional arguments are passed to ax.plot.

Parameters
  • lon (float) – Longitude of point to plot.

  • lat (float) – Latitude of point to plot.

  • symbol (str) – Matplotlib compatible string which specified the symbol of the point.

  • label_text (str, optional.) – Text to label symbol with. If None no label will be added.

  • label_offset ([float, float]) – Offset in lon, lat degrees for the bottom left corner of the label text relative to the point. A value of None will use 0.01.