OctaBitLogics
HomeAboutProjectsServicesBlogsContact Us
Returns to ProjectsDefence Technology / AI Systems

TACT EVAC

Tactical Airbase Evacuation System

Domain

Autonomous Evacuation Management

Tech Stack

YOLOv8, OpenCV, Django, React, PostgreSQL/PostGIS

1. Executive Summary

TACT EVAC is a fully integrated intelligent evacuation management system designed for high value military airbase environments. The system automates the detection, prioritisation, and physical relocation of strategic aircraft assets during red alert conditions, a process that has historically depended on manual human coordination under extreme time pressure and operational risk.

The platform combines real time computer vision threat detection, intelligent asset prioritisation, autonomous pathfinding, and live operational monitoring into a single cohesive system. TACT EVAC eliminates the delay and danger of human led airbase evacuation by providing continuous perception, intelligent prioritisation, and dynamic replanning, securing strategic assets before threats escalate.

2. Problem Statement

In conventional airbase operations, the evacuation of high value aircraft following a red alert is a manual, crew dependent process. Ground personnel must identify active threats across a large operational area, determine which assets face the greatest risk, coordinate tow vehicle assignments, and navigate safe routes simultaneously and under extreme time pressure.

This approach is fundamentally limited by three critical constraints:

  • Perceptual limitations: Human crews cannot reliably monitor every area of a large airbase simultaneously. Fires, explosions, and structural blockages that emerge in peripheral zones are frequently detected late or not at all during the critical window.
  • Prioritisation errors: Without a formal decision framework, evacuation order is determined ad hoc. High value strategic assets may be deprioritised in favour of physically accessible ones, resulting in avoidable losses.
  • Route rigidity: Pre planned evacuation routes assume static conditions. As new damage appears and routes become impassable, human replanning is slow and prone to error under stress.

TACT EVAC addresses all three constraints through continuous automated perception, a structured 8 tier asset priority system, and dynamic pathfinding using A Star and Dijkstra algorithms, recalculating safe routes in real time as the operational environment changes.

3. System Architecture

TACT EVAC is structured as a layered system in which each component operates independently and communicates through defined interfaces. This separation of concerns ensures that individual subsystems can be updated, tested, and scaled without disrupting the broader platform.

Operational Environment Logic

The airbase environment encompasses runways, dual hangar complexes, ATC towers, parameter fencing, air defence installations, fuel storage, and 12 underground bunkers distributed across all four sides of the base. The system tracks a fleet of over 70 aircraft spanning eight asset classes: B-2 Spirit, Boeing E-3A AWACS, B-1 Lancer, B-52 Stratofortress, F-35 Lightning II, FA-18 Hornet, V-22 Osprey, and UH-60 Blackhawk helicopters.

A fleet of 22 autonomous tow robots is distributed across the base at strategic staging positions. Each robot operates as an independent agent, capable of navigating the airbase terrain, avoiding buildings and other robots, and executing multi phase tow missions from initial approach through bunker delivery and return.

Computer Vision Subsystem

Threat detection is handled by a dual stage computer vision pipeline. In the first stage, YOLOv8 processes live feeds from 35 CCTV cameras distributed across the base to identify fires, explosions, and physical blockages in real time. Given the operational consequence of false positives triggering unnecessary evacuations, a second confirmation stage passes flagged events through OpenCV for geometric and contextual analysis, ensuring that identified threats are genuine before triggering evacuation protocols.

Intelligence & Decision Layer

Once a threat is confirmed, the system decision engine determines which assets to evacuate first using an 8 tier priority framework based on strategic value and threat exposure. Pathfinding between asset positions and available bunkers is computed using A Star and Dijkstra algorithms, with route validity continuously reassessed as the threat landscape evolves. The dispatcher enforces side based robot assignment (west robots are directed to west bunkers, east robots to east bunkers) to minimise cross base traversal and reduce collision risk.

Backend & Data Layer

The Django backend serves as the central coordination layer, maintaining persistent state for all operational entities (robots, aircraft, bunkers, and active threats). PostgreSQL with PostGIS extensions provides geospatial data storage, enabling efficient proximity queries and route validation against the base layout. All state changes are broadcast in real time to connected clients via WebSocket connections, ensuring that the command dashboard always reflects current operational status without polling.

Command Dashboard

The React based frontend provides a full featured command interface for monitoring the evacuation operation in real time. The dashboard displays mission progress, robot fleet status, asset priority queue, bunker fill levels, and an on demand CCTV monitoring panel with feeds from all 35 cameras. The interface is designed for clarity under operational stress, critical status information is color coded, progress is displayed graphically, and all data updates automatically via the WebSocket connection to the backend.

4. Key Capabilities

  • Real Time Threat Detection: YOLOv8 processes 35 simultaneous CCTV feeds to identify fires, explosions, and route blockages as they emerge.
  • False Positive Suppression: OpenCV confirmation stage validates all detections before evacuation protocols are activated, preventing unnecessary disruption.
  • 8 Tier Asset Priority: Aircraft are evacuated in strict priority order based on strategic value and replaceability.
  • Dynamic Pathfinding: A Star and Dijkstra algorithms compute optimal routes in real time, recalculating automatically as new obstructions are detected.
  • Autonomous Robot Fleet: 22 NavMesh based tow robots operate independently, each managing full mission cycles from dispatch through delivery and return.
  • Collision Avoidance: Staggered dispatch, minimum separation enforcement, and obstacle avoidance prevent vehicle collisions.
  • Live Command Dashboard: React frontend receives real time operational data via WebSocket, displaying mission stats, robot status, and CCTV feeds on demand.
  • Secure Local Authentication: A fully self contained LAN based authentication system controls access to the platform, operable without external network connectivity.

5. Asset Priority Framework

The evacuation priority order is determined by a structured 8 tier framework that reflects the strategic value, production cost, and operational irreplaceability of each asset class. Higher tier assets are assigned available robots first, regardless of their physical proximity to the nearest bunker.

TierAssetRationale
1B-2 SpiritLow observable strategic stealth bomber. Extremely high replacement cost and limited fleet size.
2Boeing E-3A AWACSAirborne surveillance and command platform. Loss disrupts theatre wide situational awareness.
3B-1 LancerSupersonic strategic bomber with significant offensive capability and long range reach.
4B-52 StratofortressLong range heavy bomber. High strategic value despite relatively large physical footprint.
5F-35 Lightning II5th generation multirole fighter. High unit cost and advanced avionics warrant priority recovery.
6FA-18 HornetCarrier capable multirole fighter. Significant operational value in both air and strike roles.
7V-22 OspreyTiltrotor transport. High versatility but lower strategic priority than combat aircraft.
8UH-60 BlackhawkUtility helicopter. Highly capable but most replaceable within the defined asset classes.

6. Autonomous Robot Mission Cycle

Each tow robot operates as a fully autonomous agent executing a structured seven phase mission cycle. The cycle is managed by an internal state machine with no external intervention required once a job is assigned.

  • Dispatch: The dispatcher assigns the robot to the highest priority unclaimed aircraft within its operational zone and computes the initial navigation path.
  • Approach: The robot navigates to the aircraft attach point. All obstacles and colliders on the target aircraft are bypassed to allow physical access.
  • Attachment: The robot pauses at the aircraft for a tow bar connection sequence. The aircraft is physically locked to the robot and repositioned behind it in the direction of travel.
  • Tow Transit: The robot tows the aircraft to the assigned bunker gate. The aircraft follows at a fixed tow gap, rotating smoothly to match the direction of travel.
  • Gate Queue: If the bunker gate is occupied, the robot enters a queue and waits at a designated hold position. Gate access is granted sequentially as each delivery is completed.
  • Bunker Delivery: The robot automatically drives the aircraft through the bunker entrance to the designated dock position. The aircraft is parked, marked as evacuated, and the reservation is released.
  • Return & Reassignment: The robot exits the bunker, releases gate access for the next queued robot, and immediately receives its next assignment from the dispatcher.

7. Security Architecture

Given the sensitive operational context in which TACT EVAC is deployed, security was treated as a foundational requirement rather than an afterthought. The platform incorporates a fully self contained authentication system designed to operate exclusively over a local area network, with no dependency on external identity providers or internet connectivity.

This architecture ensures that access to the command dashboard and system controls cannot be compromised through external network attacks. All authentication tokens, session management, and access control logic are handled entirely within the local environment, giving operators complete control over who can interact with the system at any given time.

The LAN bound authentication system ensures that TACT EVAC remains fully operational and secure even in network degraded or communications restricted environments, a critical requirement for forward operating base deployments.

8. Conclusion

TACT EVAC represents a comprehensive solution to one of the most time critical and dangerous challenges in airbase operations management. By combining real time computer vision, intelligent decision making, autonomous robotic execution, and live operational monitoring into a unified platform, the system eliminates the human bottleneck in evacuation planning and execution.

The architecture is designed from first principles for operational resilience. LAN bound authentication ensures security in degraded network environments, on demand rendering prevents system overload during monitoring, and dynamic pathfinding ensures the system remains effective even as conditions on the ground change rapidly. TACT EVAC demonstrates that the convergence of computer vision, autonomous navigation, and real time data systems can meaningfully reduce both the response time and the human risk associated with airbase emergency operations.