Hi - I have used Plotly Express to plot an animated scatter plot representing a wind farm, showing the varying power generation and wind speed for each turbine (WTG) over time, but Iโm struggling to overlay the corresponding varying yaw direction of the turbines using a quiver plot. The following line works for plotting d.Lat, d.Lon, d.power, and d.wind speed. The d data frame has d.u and d.v components for the quiver arrow for each time step & turbine, but a simple add_trace of the figure factory create_quiver plot using Lat, Lon, u and v doesnโt work. The add_trace quivers do work if I only plot them for one time step (for example just the first step), but then they are static for all times in the animation, which is not what I want.
fig = px.scatter(d,x=โLonโ,y=โLatโ,animation_frame=โtimeโ,animation_group=โWTGโ,
size=โpowerโ,color=โwindโ,hover_name=โWTGโ,
range_color=[0.1,25.0],size_max=20,title=header)
Any help or suggestions would be appreciated!