OnGround

Check if aircraft is on ground

Usage: Used in 6 task(s)

Lua Implementation

-- On Ground
function evaluate(params)
    local altitude = this:getLocation3D():getAlt()
    local groundAlt = this:getGroundAltitude(
        this:getLocation3D():getLat(),
        this:getLocation3D():getLon()
    )

    return math.abs(altitude - groundAlt) < 5  -- Within 5 meters
end