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
# ABOUTME: Example environment configuration for ADS-B Kit
# ABOUTME: Copy to .env and customize values for your deployment

# Database configuration
ADSBKIT_DB_PATH=/var/adsb/aircraft.db

# PiAware data source configuration
ADSBKIT_PIAWARE_URL=http://192.168.1.100:8080/data/aircraft.json

# Polling intervals (in seconds)
ADSBKIT_POLL_INTERVAL=5

# Pushover notification configuration (optional)
# Get these from https://pushover.net/
PUSHOVER_TOKEN=your_pushover_app_token_here
PUSHOVER_USER=your_pushover_user_key_here

# Anomaly detection configuration
# ADSBKIT_ANOMALY_CONTAMINATION=0.01
# ADSBKIT_ANOMALY_WINDOW_SIZE=1000