{% extends "base.html" %} {% block title %}Aircraft Sessions - ADS-B Anomaly Detection{% endblock %} {% block content %}
|
Aircraft
|
Flight
|
Last Seen
|
Capabilities
|
Position
|
Altitude
|
Speed
|
Actions
|
|---|---|---|---|---|---|---|---|
|
✈
{{ session.hex }}
ICAO Code
|
{% match session.flight %}
{% when Some with (flight) %}
{{ flight }}
Call Sign
Unknown
{% endmatch %}
|
{{ session.last_seen_ago }}
|
{% if session.has_position %}
POS
{% endif %}
{% if session.has_altitude %}
ALT
{% endif %}
{% if session.has_callsign %}
CS
{% endif %}
|
{% if session.has_position %}
{% match session.lat %}
{% when Some with (lat) %}
{% match session.lon %}
{% when Some with (lon) %}
{{ lat }}, {{ lon }}
Lat, Lon
No position
{% endif %}
|
{% match session.altitude %}
{% when Some with (altitude) %}
{{ altitude }}
feet
Unknown
{% endmatch %}
|
{% match session.speed %}
{% when Some with (speed) %}
{{ speed }}
knots
Unknown
{% endmatch %}
|
Details |