CollectBDAImagery

Collect imagery for battle damage assessment

Usage: Used in 1 task(s)

Lua Implementation

-- Collect BDA Imagery
function execute(params)
    local targetLoc = params.target_location
    local camera = this:getSystem("Camera")

    if camera and targetLoc then
        camera:setAttribute("Target", targetLoc)
        camera:setAttribute("Mode", "BDA")
        camera:setAttribute("Recording", true)
        return true
    end
    return false
end