movingpandas.TrajectoryCollection.hvplot#

TrajectoryCollection.hvplot(*args, **kwargs)#

Generate an interactive trajectory plot.

Parameters:

Examples

Plot speed along trajectories (with legend and specified figure size):

>>> collection.hvplot(c='speed', line_width=7.0, width=700, height=400,
                      colorbar=True)

Plot speed along trajectories (scaling the colormap to specific min/max values):

>>> trajectory_collection.plot(column='speed', clim=(0,20))