adsb-anomaly 0.2.2

A sophisticated real-time anomaly detection system for ADS-B aircraft data with multi-tier detection algorithms, real-time web dashboard, and production-grade architecture built in Rust
1
2
3
4
5
6
7
8
9
10
11
// ABOUTME: Anomaly detection modules for different tiers of suspicious behavior
// ABOUTME: Contains temporal, signal, identity, behavioral, and ML detection algorithms

pub mod behavior;
pub mod identity;
pub mod ml;
pub mod signal;
pub mod temporal;

#[cfg(test)]
mod integration_test;