This commit is contained in:
Frank
2020-09-04 00:58:37 +02:00
parent 8b640912c3
commit cda1658541
5 changed files with 43 additions and 17 deletions

View File

@@ -814,7 +814,8 @@ end
-- @return #number The velocity in knots.
function POSITIONABLE:GetVelocityKNOTS()
self:F2( self.PositionableName )
return UTILS.MpsToKnots(self:GetVelocityMPS())
local velmps=self:GetVelocityMPS()
return UTILS.MpsToKnots(velmps)
end
--- Returns the Angle of Attack of a positionable.