Wind estimation in Arduplane?

Hello is there a wind estimation feature in Arduplane similar to this one for the arducopter? Windspeed Estimation and Baro Compensation — Copter documentation

1 Like

Plane logs the EKF3 wind estimate here:
https://ardupilot.org/plane/docs/logmessages.html#xkf2

With a compass and (correctly adjusted and mounted) airspeed sensor, you can display the wind speed very accurately and the wind direction as an arrow in an OSD. In the Mission Planner you can directly display the values for wind direction in degrees and wind speed in knots/miles or km/h if a Mavlink connection exists. The values can also be used in LUA scripts. Arduplane calculates the values even without an airspeed sensor (I think even without a compass), of course they are then less reliable.

Rolf

That is great! thank you both