bolides.BolideDataFrame.plot_detections#
- BolideDataFrame.plot_detections(category=None, *args, **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:
- crs
CRS 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.
- crs
- Returns:
- fig
figure - ax
GeoAxesSubplot
- fig
- 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.