Overlaying dynamic quiver arrows on a dynamic scatter plot

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!