bolides.BolideDataFrame.plot_detections#

BolideDataFrame.plot_detections(crs=None, category=None, coastlines=True, style='ggplot', boundary=None, boundary_style={}, figsize=(8, 8), **kwargs)[source]#

Plot detections of bolides.

Reprojects the geometry of bdf to the crs given, and scatters the points on a cartopy map. kwargs are passed through to matplotlib’s scatter.

Parameters
crsCRS

The map projection to use. Refer to https://scitools.org.uk/cartopy/docs/latest/reference/projections.html.

boundarystr or list of str

The boundaries to plot. Refer to get_boundary.

categorystr

The name of a categorical column in the BolideDataFrame

**kwargs

Keyword arguments passed through to scatter.

Returns
figfigure
axGeoAxesSubplot
Other Parameters
coastlines: bool

Whether or not to draw coastlines.

stylestr

The matplotlib style to use. Refer to https://matplotlib.org/stable/gallery/style_sheets/style_sheets_reference.html

boundary_styledict

The kwargs to use when plotting the boundary. Refer to add_geometries.

figsizetuple

The size (width, height) of the plotted figure.