Files
tar1090/html/planeObject.js

931 lines
25 KiB
JavaScript
Raw Normal View History

2019-07-26 15:21:08 +02:00
"use strict";
function PlaneObject(icao) {
// Info about the plane
this.icao = icao;
this.icaorange = findICAORange(icao);
this.flight = null;
this.squawk = null;
this.selected = false;
this.category = null;
2019-08-03 20:26:12 +02:00
this.dataSource = null;
2019-07-26 15:21:08 +02:00
// Basic location information
this.altitude = null;
this.altitude_cached = null;
2019-07-26 15:21:08 +02:00
this.alt_baro = null;
this.alt_geom = null;
this.speed = null;
this.gs = null;
this.ias = null;
this.tas = null;
this.track = null;
this.track_rate = null;
this.mag_heading = null;
this.true_heading = null;
this.mach = null;
this.roll = null;
this.nav_altitude = null;
this.nav_heading = null;
this.nav_modes = null;
this.nav_qnh = null;
this.rc = null;
this.nac_p = null;
this.nac_v = null;
this.nic_baro = null;
this.sil_type = null;
this.sil = null;
this.baro_rate = null;
this.geom_rate = null;
this.vert_rate = null;
this.version = null;
this.prev_position = null;
2019-08-06 21:49:57 +02:00
this.prev_time = null;
2019-07-28 23:59:46 +02:00
this.prev_track = null;
2019-07-26 15:21:08 +02:00
this.position = null;
this.sitedist = null;
// Data packet numbers
this.messages = null;
this.rssi = null;
this.rssa = null;
this.rindex = 0;
// Track history as a series of line segments
this.elastic_feature = null;
this.track_linesegs = [];
this.history_size = 0;
// Track (direction) at the time we last appended to the track history
this.tail_track = null;
2019-08-07 10:42:40 +02:00
this.tail_true = null;
2019-07-28 23:59:46 +02:00
// Timestamp of the most recent point appended to the track history
this.tail_update = null;
2019-07-26 15:21:08 +02:00
// When was this last updated (receiver timestamp)
2019-08-05 08:37:26 +02:00
this.last_message_time = 0;
2019-08-06 21:49:57 +02:00
this.position_time = 0;
2019-07-26 15:21:08 +02:00
// When was this last updated (seconds before last update)
this.seen = null;
this.seen_pos = null;
// Display info
this.visible = true;
this.marker = null;
this.markerStyle = null;
this.markerIcon = null;
this.markerStyleKey = null;
this.markerSvgKey = null;
this.baseScale = 1;
2019-07-26 15:21:08 +02:00
this.filter = {};
// start from a computed registration, let the DB override it
// if it has something else.
this.registration = registration_from_hexid(this.icao);
2019-08-18 13:26:51 +02:00
this.icaoType = null;
2019-07-26 15:21:08 +02:00
this.typeDescription = null;
this.wtc = null;
this.trail_features = new ol.Collection();
this.layer = new ol.layer.Vector({
name: this.icao,
source: new ol.source.Vector({
features: this.trail_features,
})
});
trailGroup.push(this.layer);
2019-07-26 15:21:08 +02:00
// request metadata
getAircraftData(this.icao).done(function(data) {
if ("r" in data) {
this.registration = data.r;
}
if ("t" in data) {
2019-08-18 13:26:51 +02:00
this.icaoType = data.t;
this.icaoTypeCache = this.icaoType;
2019-07-26 15:21:08 +02:00
}
if ("desc" in data) {
this.typeDescription = data.desc;
}
if ("wtc" in data) {
this.wtc = data.wtc;
}
if (this.selected) {
refreshSelected();
}
2019-08-03 17:28:43 +02:00
data = null;
2019-07-26 15:21:08 +02:00
}.bind(this));
}
PlaneObject.prototype.logSel = function(loggable) {
2019-08-06 18:07:53 +02:00
if (debug && this.selected && !SelectedAllPlanes)
console.log(loggable);
return;
}
2019-07-26 15:21:08 +02:00
PlaneObject.prototype.isFiltered = function() {
if (this.filter.minAltitude !== undefined && this.filter.maxAltitude !== undefined) {
2019-07-28 23:59:46 +02:00
if (this.altitude == null) {
2019-07-26 15:21:08 +02:00
return true;
}
var planeAltitude = this.altitude === "ground" ? 0 : convert_altitude(this.altitude, this.filter.altitudeUnits);
return planeAltitude < this.filter.minAltitude || planeAltitude > this.filter.maxAltitude;
}
// filter out ground vehicles
if (typeof this.filter.groundVehicles !== 'undefined' && this.filter.groundVehicles === 'filtered') {
if (typeof this.category === 'string' && this.category.startsWith('C')) {
return true;
}
}
// filter out blocked MLAT flights
if (typeof this.filter.blockedMLAT !== 'undefined' && this.filter.blockedMLAT === 'filtered') {
if (typeof this.icao === 'string' && this.icao.startsWith('~')) {
return true;
}
}
return false;
}
2019-08-06 21:49:57 +02:00
PlaneObject.prototype.updateTail = function() {
this.tail_update = this.prev_time;
this.tail_track = this.prev_track;
2019-08-07 10:42:40 +02:00
this.tail_true = this.prev_true;
2019-08-06 21:49:57 +02:00
this.tail_position = this.prev_position;
2019-08-07 10:42:40 +02:00
return this.updateTrackPrev();
2019-08-06 21:49:57 +02:00
}
2019-08-07 10:42:40 +02:00
2019-08-06 21:49:57 +02:00
PlaneObject.prototype.updateTrackPrev = function() {
this.prev_position = this.position;
this.prev_time = this.position_time;
this.prev_track = this.track;
2019-08-07 10:42:40 +02:00
this.prev_true = this.true_head;
2019-08-06 21:49:57 +02:00
return true;
}
2019-07-26 15:21:08 +02:00
// Appends data to the running track so we can get a visual tail on the plane
// Only useful for a long running browser session.
PlaneObject.prototype.updateTrack = function(receiver_timestamp, last_timestamp) {
2019-07-28 23:59:46 +02:00
if (this.position == null)
2019-07-26 15:21:08 +02:00
return false;
if (this.prev_position && this.position[0] == this.prev_position[0] && this.position[1] == this.prev_position[1])
2019-07-26 15:21:08 +02:00
return false;
var projHere = ol.proj.fromLonLat(this.position);
2019-07-30 15:01:56 +02:00
var on_ground = (this.altitude === "ground");
2019-07-26 15:21:08 +02:00
if (this.track_linesegs.length == 0) {
// Brand new track
//console.log(this.icao + " new track");
var newseg = { fixed: new ol.geom.LineString([projHere]),
feature: null,
estimated: false,
2019-07-30 15:01:56 +02:00
ground: on_ground,
2019-08-20 14:30:26 +02:00
altitude: this.alt_rounded,
2019-07-26 15:21:08 +02:00
};
this.track_linesegs.push(newseg);
this.history_size ++;
2019-08-06 21:49:57 +02:00
this.prev_position = this.position;
return this.updateTail();
2019-07-26 15:21:08 +02:00
}
2019-08-06 21:49:57 +02:00
var projPrev = ol.proj.fromLonLat(this.prev_position);
2019-07-26 15:21:08 +02:00
var lastseg = this.track_linesegs[this.track_linesegs.length - 1];
2019-08-07 10:42:40 +02:00
var distance_traveled = ol.sphere.getDistance(this.tail_position, this.prev_position);
2019-08-06 21:49:57 +02:00
2019-08-07 10:42:40 +02:00
// discard current position for track stuff while preventing the old position to go stale
if (ol.sphere.getDistance(this.position, this.prev_position) < 8) {
this.prev_time = this.position_time;
return true;
}
if (this.dataSource == "mlat" && on_ground)
return true;
2019-07-26 15:21:08 +02:00
// Determine if track data are intermittent/stale
// Time difference between two position updates should not be much
// greater than the difference between data inputs
2019-08-06 21:49:57 +02:00
var time_difference = (this.position_time - this.prev_time) - (receiver_timestamp - last_timestamp);
2019-07-26 15:21:08 +02:00
2019-08-20 16:39:30 +02:00
var stale_timeout = 8;
2019-07-26 15:21:08 +02:00
// MLAT data are given some more leeway
if (this.dataSource == "mlat") stale_timeout = 15;
// On the ground you can't go that quick
if (on_ground) stale_timeout = 30;
2019-07-26 15:21:08 +02:00
var est_track = (time_difference > stale_timeout);
// Also check if the position was already stale when it was exported by dump1090
// Makes stale check more accurate for example for 30s spaced history points
2019-08-06 21:49:57 +02:00
est_track = est_track || ((receiver_timestamp - this.position_time) > stale_timeout);
2019-07-26 15:21:08 +02:00
if (est_track) {
if (!lastseg.estimated) {
// >5s gap in data, create a new estimated segment
//console.log(this.icao + " switching to estimated");
lastseg.fixed.appendCoordinate(projPrev);
this.track_linesegs.push({ fixed: new ol.geom.LineString([projPrev]),
2019-07-26 15:21:08 +02:00
feature: null,
altitude: 0,
estimated: true });
this.history_size += 2;
} else {
// Keep appending to the existing dashed line; keep every point
lastseg.fixed.appendCoordinate(projPrev);
2019-07-26 15:21:08 +02:00
this.history_size++;
}
2019-08-06 21:49:57 +02:00
return this.updateTail();
2019-07-26 15:21:08 +02:00
}
if (lastseg.estimated) {
// We are back to good data (we got two points close in time), switch back to
// solid lines.
lastseg.fixed.appendCoordinate(projPrev);
2019-08-03 17:28:43 +02:00
this.track_linesegs.push({ fixed: new ol.geom.LineString([projPrev]),
2019-07-26 15:21:08 +02:00
feature: null,
estimated: false,
2019-07-30 15:01:56 +02:00
ground: on_ground,
2019-08-20 14:30:26 +02:00
altitude: this.alt_rounded,
});
this.history_size += 2;
2019-08-06 21:49:57 +02:00
return this.updateTail();
2019-07-26 15:21:08 +02:00
}
var track_change = this.track != null ? Math.abs(this.tail_track - this.track) : NaN;
track_change = track_change < 180 ? track_change : Math.abs(track_change - 360);
var true_change = this.trueheading != null ? Math.abs(this.tail_true - this.true_heading) : NaN;
true_change = true_change < 180 ? true_change : Math.abs(true_change - 360);
2019-08-07 10:42:40 +02:00
if (!isNaN(true_change)) {
track_change = isNaN(track_change) ? true_change : Math.max(track_change, true_change);
}
2019-08-20 14:30:26 +02:00
var alt_change = Math.abs(this.alt_rounded - lastseg.altitude);
2019-08-06 21:49:57 +02:00
var since_update = this.prev_time - this.tail_update;
if (
2019-08-20 14:30:26 +02:00
this.alt_rounded !== lastseg.altitude
//lastseg.ground != on_ground
//|| (!on_ground && isNaN(alt_change))
//|| (alt_change > 700)
//|| (alt_change > 375 && this.alt_rounded < 9000)
//|| (alt_change > 150 && this.alt_rounded < 5500)
) {
2019-07-26 15:21:08 +02:00
// Create a new segment as the ground state or the altitude changed.
// The new state is only drawn after the state has changed
2019-07-30 15:03:43 +02:00
// and we then get a new position.
2019-07-26 15:21:08 +02:00
2019-08-06 18:07:53 +02:00
this.logSel("sec_elapsed: " + since_update.toFixed(1) + " alt_change: "+ alt_change.toFixed(0));
2019-07-30 15:03:43 +02:00
// Let's assume the ground state change happened somewhere between the previous and current position
// Represent that assumption. With altitude it's not quite as critical.
if (lastseg.ground != on_ground) {
projPrev = [(projPrev[0]+projHere[0])/2,(projPrev[1]+projHere[1])/2];
}
lastseg.fixed.appendCoordinate(projPrev);
this.track_linesegs.push({ fixed: new ol.geom.LineString([projPrev]),
2019-07-26 15:21:08 +02:00
feature: null,
estimated: false,
2019-08-20 14:30:26 +02:00
altitude: this.alt_rounded,
ground: on_ground,
});
2019-08-06 21:49:57 +02:00
2019-07-26 15:21:08 +02:00
this.history_size += 2;
2019-08-06 21:49:57 +02:00
return this.updateTail();
2019-07-26 15:21:08 +02:00
}
// Add current position to the existing track.
// We only retain some points depending on time elapsed and track change
2019-08-07 10:42:40 +02:00
var turn_density = 6.5;
2019-08-04 17:08:39 +02:00
if (
2019-08-07 15:30:13 +02:00
since_update > 42 ||
(!on_ground && since_update > (100/turn_density)/track_change) ||
2019-08-06 21:49:57 +02:00
(!on_ground && isNaN(track_change) && since_update > 8) ||
2019-08-07 10:42:40 +02:00
(on_ground && since_update > (500/turn_density)/track_change && distance_traveled > 8) ||
2019-08-16 09:59:06 +02:00
(on_ground && distance_traveled > 40 && since_update > 4) ||
2019-08-04 17:08:39 +02:00
debugAll
) {
2019-08-06 21:49:57 +02:00
lastseg.fixed.appendCoordinate(projPrev);
2019-07-26 15:21:08 +02:00
this.history_size ++;
2019-08-06 21:49:57 +02:00
this.logSel("sec_elapsed: " + since_update.toFixed(1) + " " + (on_ground ? "ground" : "air") + " dist:" + distance_traveled.toFixed(0) + " track_change: "+ track_change.toFixed(1));
return this.updateTail();
2019-07-26 15:21:08 +02:00
}
2019-08-06 21:49:57 +02:00
return this.updateTrackPrev();
2019-07-26 15:21:08 +02:00
};
// This is to remove the line from the screen if we deselect the plane
PlaneObject.prototype.clearLines = function() {
2019-08-05 20:27:56 +02:00
if (this.layer.getVisible())
this.layer.setVisible(false);
2019-07-26 15:21:08 +02:00
};
PlaneObject.prototype.getDataSourceNumber = function() {
// MLAT
2019-08-03 20:26:12 +02:00
if (this.dataSource == "mlat") {
return 3;
}
2019-08-03 20:26:12 +02:00
if (this.dataSource == "uat")
return 2; // UAT
// Not MLAT, but position reported - ADSB or variants
if (this.dataSource == "tisb")
return 4; // TIS-B
if (this.dataSource == "adsb")
return 1;
// Otherwise Mode S
return 5;
// TODO: add support for Mode A/C
};
2019-07-26 15:21:08 +02:00
PlaneObject.prototype.getDataSource = function() {
// MLAT
2019-08-03 20:26:12 +02:00
if (this.dataSource == "mlat") {
2019-07-26 15:21:08 +02:00
return 'mlat';
}
2019-08-03 20:26:12 +02:00
if (this.dataSource == "uat")
return 'uat';
2019-07-26 15:21:08 +02:00
2019-08-04 23:33:25 +02:00
if (this.addrtype) {
2019-07-26 15:21:08 +02:00
return this.addrtype;
}
2019-08-04 23:33:25 +02:00
if (this.dataSource == "adsb")
return "adsb_icao";
2019-07-26 15:21:08 +02:00
// Otherwise Mode S
return 'mode_s';
// TODO: add support for Mode A/C
};
PlaneObject.prototype.getMarkerColor = function() {
// Emergency squawks override everything else
if (this.squawk in SpecialSquawks)
return SpecialSquawks[this.squawk].markerColor;
var h, s, l;
2019-08-20 14:30:26 +02:00
var colorArr = this.getAltitudeColor(this.alt_rounded);
2019-07-26 15:21:08 +02:00
h = colorArr[0];
s = colorArr[1];
l = colorArr[2];
// If we have not seen a recent position update, change color
2019-08-20 06:14:17 +02:00
if (this.seen_pos > 15) {
2019-07-26 15:21:08 +02:00
h += ColorByAlt.stale.h;
s += ColorByAlt.stale.s;
l += ColorByAlt.stale.l;
}
2019-08-20 14:30:26 +02:00
if (this.alt_rounded == "ground") {
2019-08-20 06:14:17 +02:00
l += 15;
}
2019-07-26 15:21:08 +02:00
// If this marker is selected, change color
if (this.selected && !SelectedAllPlanes){
h += ColorByAlt.selected.h;
s += ColorByAlt.selected.s;
l += ColorByAlt.selected.l;
}
// If this marker is a mlat position, change color
2019-08-03 20:26:12 +02:00
if (this.dataSource == "mlat") {
2019-07-26 15:21:08 +02:00
h += ColorByAlt.mlat.h;
s += ColorByAlt.mlat.s;
l += ColorByAlt.mlat.l;
}
if (h < 0) {
h = (h % 360) + 360;
} else if (h >= 360) {
h = h % 360;
}
if (s < 5) s = 5;
else if (s > 95) s = 95;
if (l < 5) l = 5;
else if (l > 95) l = 95;
2019-08-19 20:02:05 +02:00
return 'hsl(' + h.toFixed(0) + ',' + s.toFixed(0) + '%,' + l.toFixed(0) + '%)'
2019-07-26 15:21:08 +02:00
}
PlaneObject.prototype.getAltitudeColor = function(altitude) {
if (typeof altitude === 'undefined') {
2019-08-20 14:30:26 +02:00
altitude = this.alt_rounded;
2019-07-26 15:21:08 +02:00
}
return altitudeColor(altitude);
}
function altitudeColor(altitude) {
var h, s, l;
2019-07-26 15:21:08 +02:00
if (altitude == null) {
2019-07-26 15:21:08 +02:00
h = ColorByAlt.unknown.h;
s = ColorByAlt.unknown.s;
l = ColorByAlt.unknown.l;
2019-07-30 14:45:51 +02:00
} else if (altitude === "ground") {
2019-07-26 15:21:08 +02:00
h = ColorByAlt.ground.h;
s = ColorByAlt.ground.s;
l = ColorByAlt.ground.l;
} else {
s = ColorByAlt.air.s;
// find the pair of points the current altitude lies between,
// and interpolate the hue between those points
var hpoints = ColorByAlt.air.h;
h = hpoints[0].val;
for (var i = hpoints.length-1; i >= 0; --i) {
if (altitude > hpoints[i].alt) {
if (i == hpoints.length-1) {
h = hpoints[i].val;
} else {
h = hpoints[i].val + (hpoints[i+1].val - hpoints[i].val) * (altitude - hpoints[i].alt) / (hpoints[i+1].alt - hpoints[i].alt)
}
break;
}
}
var lpoints = ColorByAlt.air.l;
lpoints = lpoints.length ? lpoints : [{h:0, val:lpoints}];
l = lpoints[0].val;
for (var i = lpoints.length-1; i >= 0; --i) {
if (h > lpoints[i].h) {
if (i == lpoints.length-1) {
l = lpoints[i].val;
} else {
l = lpoints[i].val + (lpoints[i+1].val - lpoints[i].val) * (h - lpoints[i].h) / (lpoints[i+1].h - lpoints[i].h)
}
break;
}
}
2019-07-26 15:21:08 +02:00
}
if (h < 0) {
h = (h % 360) + 360;
} else if (h >= 360) {
h = h % 360;
}
if (s < 5) s = 5;
else if (s > 95) s = 95;
if (l < 5) l = 5;
else if (l > 95) l = 95;
return [h, s, l];
}
PlaneObject.prototype.updateIcon = function() {
var col = this.getMarkerColor();
//var opacity = 1.0;
2019-08-03 20:26:12 +02:00
var outline = (this.dataSource == "mlat" ? OutlineMlatColor : OutlineADSBColor);
2019-08-20 06:14:17 +02:00
var add_stroke = (this.selected && !SelectedAllPlanes) ? (' stroke="'+outline+'" stroke-width="1px"') : '';
2019-08-20 14:30:26 +02:00
var baseMarkerKey = (this.category ? this.category : "A0") + "_"
+ this.typeDescription + "_" + this.wtc + "_" + this.icaoType;
2019-08-17 20:10:14 +02:00
if (!this.baseMarker || this.baseMarkerKey != baseMarkerKey) {
2019-08-05 20:27:56 +02:00
this.baseMarkerKey = baseMarkerKey;
2019-08-18 13:26:51 +02:00
this.baseMarker = getBaseMarker(this.category, this.icaoType, this.typeDescription, this.wtc);
2019-08-17 20:10:14 +02:00
if (!this.baseMarker)
console.log(baseMarkerKey);
if (this.baseMarker.length == 2) {
this.baseScale = this.baseMarker[1];
this.baseMarker = this.baseMarker[0];
}
2019-08-05 20:27:56 +02:00
}
2019-07-26 15:21:08 +02:00
var rotation = this.track;
2019-07-30 15:01:56 +02:00
if (rotation == null) {
2019-07-26 15:21:08 +02:00
rotation = this.true_heading;
2019-07-30 15:01:56 +02:00
} else if (rotation == null) {
2019-07-26 15:21:08 +02:00
rotation = this.mag_heading;
2019-07-30 15:01:56 +02:00
} else if (rotation == null) {
2019-07-26 15:21:08 +02:00
rotation = 0;
}
2019-08-05 20:27:56 +02:00
//var transparentBorderWidth = (32 / this.baseMarker.scale / scaleFactor).toFixed(1);
2019-07-26 15:21:08 +02:00
2019-08-20 14:30:26 +02:00
const svgKey = col + '!' + outline + '!' + this.baseMarker.svg + '!' + add_stroke;
2019-07-26 15:21:08 +02:00
2019-08-20 14:30:26 +02:00
if (this.markerStyle == null || this.markerIcon == null || (this.markerSvgKey != svgKey)) {
2019-07-26 15:21:08 +02:00
//console.log(this.icao + " new icon and style " + this.markerSvgKey + " -> " + svgKey);
2019-08-20 14:30:26 +02:00
if (!iconCache[svgKey]) {
iconCache[svgKey] = new Image();
iconCache[svgKey].src = svgPathToURI(this.baseMarker.svg, outline, col, add_stroke);
}
this.markerSvgKey = svgKey;
this.scaleCache = scaleFactor * this.baseScale;
2019-08-20 14:30:26 +02:00
this.markerIcon = new ol.style.Icon({
scale: this.scaleCache,
2019-08-05 20:27:56 +02:00
imgSize: this.baseMarker.size,
2019-08-20 14:30:26 +02:00
img: iconCache[svgKey],
2019-08-05 20:27:56 +02:00
rotation: (this.baseMarker.noRotate ? 0 : rotation * Math.PI / 180.0),
rotateWithView: (this.baseMarker.noRotate ? false : true)
2019-07-26 15:21:08 +02:00
});
this.markerStyle = new ol.style.Style({
image: this.markerIcon
});
2019-08-20 14:30:26 +02:00
this.marker.setStyle(this.markerStyle);
2019-08-20 16:39:30 +02:00
//iconCache[svgKey] = undefined; // disable caching for testing
2019-07-26 15:21:08 +02:00
}
2019-08-20 14:30:26 +02:00
if (this.rotationCache == null || Math.abs(this.rotationCache - rotation) > 0.15) {
this.rotationCache = rotation;
2019-08-20 14:30:26 +02:00
this.markerIcon.setRotation(this.baseMarker.noRotate ? 0 : rotation * Math.PI / 180.0);
}
if (this.scaleCache != scaleFactor * this.baseScale) {
this.scaleCache = scaleFactor * this.baseScale;
this.markerIcon.setScale(this.scaleCache);
}
/*
if (this.opacityCache != opacity) {
this.opacityCache = opacity;
2019-07-26 15:21:08 +02:00
this.markerIcon.setOpacity(opacity);
}
*/
2019-07-26 15:21:08 +02:00
return true;
};
// Update our data
PlaneObject.prototype.updateData = function(receiver_timestamp, data, init) {
2019-07-28 23:59:46 +02:00
// get location data first, return early if only those are needed.
// remember last known position even if stale
2019-08-06 21:49:57 +02:00
if ("lat" in data && data.seen_pos < (receiver_timestamp - this.position_time + 2)) {
2019-08-05 08:37:26 +02:00
this.position = [data.lon, data.lat];
2019-08-06 21:49:57 +02:00
this.position_time = receiver_timestamp - data.seen_pos;
2019-08-05 08:37:26 +02:00
}
if (data.seen_pos < 45 && "mlat" in data && data.mlat.indexOf("lat") >= 0) {
this.dataSource = "mlat";
} else if (this.dataSource != "uat") {
if (data.type && data.type.substring(0,4) == "tisb")
this.dataSource = "tisb";
2019-08-05 08:37:26 +02:00
else if (data.type == "adsb_icao" || data.type == "adsb_other")
this.dataSource = "adsb";
2019-08-05 08:37:26 +02:00
else if (data.type && data.type.substring(0,4) == "adsr")
2019-08-04 23:33:25 +02:00
this.dataSource = "other";
2019-08-05 08:37:26 +02:00
else if (data.type == "adsb_icao_nt")
2019-08-04 23:33:25 +02:00
this.dataSource = "other";
2019-08-05 08:37:26 +02:00
else if (this.position)
this.dataSource = "adsb";
else
2019-08-03 20:26:12 +02:00
this.dataSource = "other";
}
// remember last known altitude even if stale
if ("alt_baro" in data) {
this.altitude = data.alt_baro;
this.alt_baro = data.alt_baro;
} else if ("altitude" in data) {
this.altitude = data.altitude;
this.alt_baro = data.altitude;
} else {
this.alt_baro = null;
2019-08-20 14:30:26 +02:00
this.altitude = data.alt_geom;
}
if (this.altitude == "ground") {
this.alt_rounded = this.altitude;
2019-08-20 16:39:30 +02:00
} else if (this.altitude > 10000) {
this.alt_rounded = (this.altitude/1000).toFixed(0)*1000;
2019-08-20 14:30:26 +02:00
} else {
2019-08-20 16:39:30 +02:00
this.alt_rounded = (this.altitude/500).toFixed(0)*500;
}
// don't expire the track, even display outdated track
2019-08-03 20:26:12 +02:00
if ("track" in data)
this.track = data.track;
2019-07-28 23:59:46 +02:00
this.last_message_time = receiver_timestamp - data.seen;
if (init)
2019-07-28 23:59:46 +02:00
return;
2019-07-26 15:21:08 +02:00
// Update all of our data
this.messages = data.messages;
if (!this.rssa)
this.rssa = [data.rssi,data.rssi,data.rssi,data.rssi];
this.rssa[this.rindex++%4] = data.rssi;
this.rssi = (this.rssa[0] + this.rssa[1] + this.rssa[2] + this.rssa[3])/4;
if ("gs" in data)
this.gs = data.gs;
else if ("speed" in data)
this.gs = data.speed;
else
this.gs = null;
if ("baro_rate" in data)
this.baro_rate = data.baro_rate;
else if ("vert_rate" in data)
this.baro_rate = data.vert_rate;
else
this.baro_rate = null;
2019-07-26 15:21:08 +02:00
// simple fields
2019-07-28 23:59:46 +02:00
this.alt_geom = data.alt_geom;
this.speed = data.gs;
2019-07-28 23:59:46 +02:00
this.ias = data.ias;
this.tas = data.tas;
this.track_rate = data.track_rate;
this.mag_heading = data.mag_heading;
this.mach = data.mach;
this.roll = data.roll;
this.nav_altitude = data.nav_altitude;
this.nav_heading = data.nav_heading;
this.nav_modes = data.nav_modes;
this.nac_p = data.nac_p;
this.nac_v = data.nac_v;
this.nic_baro = data.nic_baro;
this.sil_type = data.sil_type;
this.sil = data.sil;
this.nav_qnh = data.nav_qnh;
this.geom_rate = data.geom_rate;
this.rc = data.rc;
this.squawk = data.squawk;
this.category = data.category;
this.version = data.version;
2019-07-26 15:21:08 +02:00
// fields with more complex behaviour
if ("true_heading" in data)
this.true_heading = data.true_heading;
else
this.true_heading = null;
2019-07-26 15:21:08 +02:00
// don't expire callsigns
if ('flight' in data)
this.flight = data.flight;
2019-08-03 20:26:12 +02:00
if ('type' in data)
this.addrtype = data.type;
else
this.addrtype = null;
2019-07-26 15:21:08 +02:00
2019-07-28 23:59:46 +02:00
if ('lat' in data && SitePosition) {
//var WGS84 = new ol.Sphere(6378137);
//this.sitedist = WGS84.haversineDistance(SitePosition, this.position);
this.sitedist = ol.sphere.getDistance(SitePosition, this.position);
2019-07-26 15:21:08 +02:00
}
// Pick a selected altitude
if ('nav_altitude_fms' in data) {
this.nav_altitude = data.nav_altitude_fms;
} else if ('nav_altitude_mcp' in data) {
this.nav_altitude = data.nav_altitude_mcp;
} else {
this.nav_altitude = null;
}
// Pick vertical rate from either baro or geom rate
// geometric rate is generally more reliable (smoothed etc)
if ('geom_rate' in data) {
this.vert_rate = data.geom_rate;
} else if ('baro_rate' in data) {
this.vert_rate = data.baro_rate;
} else {
this.vert_rate = null;
}
};
2019-07-31 19:37:00 +02:00
PlaneObject.prototype.updateTick = function(receiver_timestamp, last_timestamp, init) {
2019-07-26 15:21:08 +02:00
// recompute seen and seen_pos
this.seen = receiver_timestamp - this.last_message_time;
2019-08-06 21:49:57 +02:00
this.seen_pos = receiver_timestamp - this.position_time;
2019-07-26 15:21:08 +02:00
// If no packet in over 58 seconds, clear the plane.
2019-07-30 19:59:17 +02:00
// Only clear the plane if it's not selected individually
if ((this.seen > 58 || this.position == null || this.seen_pos > 100)
2019-07-30 19:59:17 +02:00
&& (!this.selected || SelectedAllPlanes)) {
2019-07-26 15:21:08 +02:00
if (this.visible) {
//console.log("hiding " + this.icao);
this.clearMarker();
this.clearLines();
2019-07-26 15:21:08 +02:00
this.visible = false;
if (SelectedPlane == this.icao)
selectPlaneByHex(null,false);
}
} else {
this.visible = true;
2019-07-31 19:37:00 +02:00
if (init || this.updateTrack(receiver_timestamp, last_timestamp)) {
this.updateLines();
this.updateMarker(true);
} else {
this.updateMarker(false); // didn't move
2019-07-26 15:21:08 +02:00
}
}
};
PlaneObject.prototype.clearMarker = function() {
if (this.marker) {
PlaneIconFeatures.remove(this.marker);
/* FIXME google.maps.event.clearListeners(this.marker, 'click'); */
this.marker = null;
2019-07-26 15:21:08 +02:00
}
};
// Update our marker on the map
PlaneObject.prototype.updateMarker = function(moved) {
if (!this.visible || this.position == null || this.isFiltered()) {
this.clearMarker();
return;
}
2019-08-20 14:30:26 +02:00
if (!this.marker) {
2019-07-26 15:21:08 +02:00
this.marker = new ol.Feature(new ol.geom.Point(ol.proj.fromLonLat(this.position)));
this.marker.hex = this.icao;
PlaneIconFeatures.push(this.marker);
2019-08-20 14:30:26 +02:00
} else if (moved) {
this.marker.setGeometry(new ol.geom.Point(ol.proj.fromLonLat(this.position)));
2019-07-26 15:21:08 +02:00
}
2019-08-20 14:30:26 +02:00
this.updateIcon();
2019-07-26 15:21:08 +02:00
};
// return the styling of the lines based on altitude
PlaneObject.prototype.altitudeLines = function(altitude) {
var colorArr = this.getAltitudeColor(altitude);
2019-08-19 20:02:05 +02:00
var color = 'hsl(' + colorArr[0].toFixed(0) + ',' + colorArr[1].toFixed(0) + '%,' + colorArr[2].toFixed(0) + '%)';
2019-08-04 14:28:01 +02:00
if (!debug) {
return new ol.style.Style({
stroke: new ol.style.Stroke({
color: color,
2019-08-07 15:30:13 +02:00
width: 2,
})
});
2019-08-04 14:28:01 +02:00
} else {
return [
new ol.style.Style({
image: new ol.style.Circle({
radius: 2,
fill: new ol.style.Fill({
color: color
})
}),
geometry: function(feature) {
return new ol.geom.MultiPoint(feature.getGeometry().getCoordinates());
}
}),
new ol.style.Style({
stroke: new ol.style.Stroke({
color: color,
2019-08-04 10:02:47 +02:00
width: 2
})
})
];
2019-08-04 14:28:01 +02:00
}
2019-07-26 15:21:08 +02:00
}
// Update our planes tail line,
PlaneObject.prototype.updateLines = function() {
if (!this.selected)
return;
if (this.track_linesegs.length == 0)
return;
var estimateStyle = new ol.style.Style({
stroke: new ol.style.Stroke({
color: '#808080',
2019-08-04 10:02:47 +02:00
width: 1.2
2019-07-26 15:21:08 +02:00
})
});
var airStyle = new ol.style.Style({
stroke: new ol.style.Stroke({
color: '#000000',
width: 2
})
});
var groundStyle = new ol.style.Style({
stroke: new ol.style.Stroke({
color: '#408040',
width: 2
})
});
2019-08-05 20:27:56 +02:00
// create the new elastic band feature
var lastseg = this.track_linesegs[this.track_linesegs.length - 1];
var lastfixed = lastseg.fixed.getCoordinateAt(1.0);
var geom = new ol.geom.LineString([lastfixed, ol.proj.fromLonLat(this.position)]);
this.elastic_feature = new ol.Feature(geom);
if (lastseg.estimated) {
this.elastic_feature.setStyle(estimateStyle);
} else {
this.elastic_feature.setStyle(this.altitudeLines(lastseg.altitude));
}
// elastic feature is always at index 0 for each aircraft
this.trail_features.setAt(0, this.elastic_feature);
// create any missing fixed line features
2019-08-05 20:27:56 +02:00
var start_i = 0;
if (this.track_linesegs.length > 1 && this.track_linesegs[this.track_linesegs.length-2].feature != null)
start_i = this.track_linesegs.length-1;
for (var i = start_i; i < this.track_linesegs.length; ++i) {
var seg = this.track_linesegs[i];
if (!seg.feature) {
seg.feature = new ol.Feature(seg.fixed);
if (seg.estimated) {
seg.feature.setStyle(estimateStyle);
} else {
seg.feature.setStyle(this.altitudeLines(seg.altitude));
}
this.trail_features.push(seg.feature);
}
}
2019-07-26 15:21:08 +02:00
2019-08-06 09:04:39 +02:00
// after making sure everything is drawn, also show the layer
if (!this.layer.getVisible())
this.layer.setVisible(true);
2019-07-26 15:21:08 +02:00
};
PlaneObject.prototype.remakeTrail = function() {
this.trail_features.clear();
for (var i in this.track_linesegs) {
this.track_linesegs[i].feature = null;
}
this.elastic_feature = null;
trailGroup.remove(this.layer);
this.trail_features = new ol.Collection();
this.layer = new ol.layer.Vector({
name: this.icao,
source: new ol.source.Vector({
features: this.trail_features,
})
});
trailGroup.push(this.layer);
this.updateLines();
}
2019-07-26 15:21:08 +02:00
PlaneObject.prototype.destroy = function() {
this.clearLines();
this.clearMarker();
trailGroup.remove(this.layer);
this.trail_features.clear();
2019-08-03 18:06:35 +02:00
if (this.tr) {
this.tr.removeEventListener('click', this.clickListener);
this.tr.removeEventListener('dblclick', this.dblclickListener);
if (this.tr.parentNode)
this.tr.parentNode.removeChild(this.tr);
2019-08-03 18:06:35 +02:00
this.tr = null;
}
2019-08-03 17:28:43 +02:00
this.track_linesegs = null;
this.filter = null;
this.markerIcon = null;
this.markerStyle = null;
2019-08-04 22:51:30 +02:00
if (this.icao == SelectedPlane)
SelectedPlane = null;
2019-07-26 15:21:08 +02:00
};