Hello,
Iβm very new to plotly, and have trying to create a Scattermapbox figure that plots markers and lines for GPS (location) data. Iβm trying to generate plots like the ones in the moveVis
R library. An example can be seen here. There are several goals with this kind of animation:
- The current frame must contain the latest chunk of data, as well as all the data from all previous frames,
- The latest chunk of data in the current frame takes colors from a variable, and markers of decreasing size and opacity,
- Old data in the current frame uses only a white line.
Itβs easy enough for me to use plotly.express.scatter_mapbox
to plot the full data set, and use the animation_frame
, and animation_group
arguments to animate chunks of data, but this itβs far from achieving the goals above. Any pointers to any examples addressing even remotely similar goals are much appreciated.