2020-10-27 16:22:10 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2017 Edouard Griffiths, F4EXB //
|
|
|
|
// Copyright (C) 2020 Jon Beniston, M7RCE //
|
|
|
|
// //
|
|
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation as version 3 of the License, or //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <QColor>
|
2021-10-27 22:25:14 +01:00
|
|
|
#include <QDataStream>
|
|
|
|
#include <QDebug>
|
2020-10-27 16:22:10 +00:00
|
|
|
|
|
|
|
#include "util/simpleserializer.h"
|
|
|
|
#include "settings/serializable.h"
|
|
|
|
|
|
|
|
#include "adsbdemodsettings.h"
|
|
|
|
|
|
|
|
ADSBDemodSettings::ADSBDemodSettings() :
|
2022-01-09 05:27:12 +01:00
|
|
|
m_channelMarker(nullptr),
|
|
|
|
m_rollupState(nullptr)
|
2020-10-27 16:22:10 +00:00
|
|
|
{
|
|
|
|
resetToDefaults();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ADSBDemodSettings::resetToDefaults()
|
|
|
|
{
|
|
|
|
m_inputFrequencyOffset = 0;
|
|
|
|
m_rfBandwidth = 2*1300000;
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
m_correlationThreshold = 7.0f; //<! ones/zero powers correlation threshold in dB
|
|
|
|
m_chipsThreshold = 0;
|
2020-10-31 05:09:28 +01:00
|
|
|
m_samplesPerBit = 4;
|
2020-10-27 16:22:10 +00:00
|
|
|
m_removeTimeout = 60;
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
m_feedEnabled = false;
|
2022-02-09 16:36:09 +00:00
|
|
|
m_exportClientEnabled = true;
|
|
|
|
m_exportClientHost = "feed.adsbexchange.com";
|
|
|
|
m_exportClientPort = 30005;
|
|
|
|
m_exportClientFormat = BeastBinary;
|
|
|
|
m_exportServerEnabled = false;
|
|
|
|
m_exportServerPort = 30005;
|
|
|
|
m_importEnabled = false;
|
|
|
|
m_importHost = "opensky-network.org";
|
|
|
|
m_importUsername = "";
|
|
|
|
m_importPassword = "";
|
|
|
|
m_importParameters = "";
|
|
|
|
m_importPeriod = 10.0;
|
|
|
|
m_importMinLatitude = "";
|
|
|
|
m_importMaxLatitude = "";
|
|
|
|
m_importMinLongitude = "";
|
|
|
|
m_importMaxLongitude = "";
|
2021-02-26 20:45:12 +00:00
|
|
|
m_rgbColor = QColor(244, 151, 57).rgb();
|
2020-10-27 16:22:10 +00:00
|
|
|
m_title = "ADS-B Demodulator";
|
|
|
|
m_streamIndex = 0;
|
|
|
|
m_useReverseAPI = false;
|
|
|
|
m_reverseAPIAddress = "127.0.0.1";
|
|
|
|
m_reverseAPIPort = 8888;
|
|
|
|
m_reverseAPIDeviceIndex = 0;
|
|
|
|
m_reverseAPIChannelIndex = 0;
|
2021-11-12 16:51:23 +00:00
|
|
|
m_airportRange = 100.0f;
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
m_airportMinimumSize = AirportType::Medium;
|
|
|
|
m_displayHeliports = false;
|
|
|
|
m_flightPaths = true;
|
2021-01-13 17:15:32 +00:00
|
|
|
m_allFlightPaths = false;
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
m_siUnits = false;
|
|
|
|
m_tableFontName = "Liberation Sans";
|
|
|
|
m_tableFontSize = 9;
|
2021-01-13 17:15:32 +00:00
|
|
|
m_displayDemodStats = false;
|
ADS-B: Add support for decoding Comm-B replies in Mode-S frames. This adds TAS, IAS, Mach, Selelected Alt, Selected Heading, Turn rate, Roll angle, Autopilot enabled, Vertical and lateral navigation modes, Baro setting, Headwind, OAT, Wind speed and direction, Pressure, Static air temperature, Humidity.
2022-08-26 12:35:12 +01:00
|
|
|
m_demodModeS = true;
|
2020-11-10 14:27:42 +00:00
|
|
|
m_autoResizeTableColumns = false;
|
2020-11-12 13:25:49 +00:00
|
|
|
m_interpolatorPhaseSteps = 4; // Higher than these two values will struggle to run in real-time
|
|
|
|
m_interpolatorTapsPerPhase = 3.5f; // without gaining much improvement in PER
|
2022-06-06 10:53:10 +01:00
|
|
|
m_aviationstackAPIKey = "";
|
|
|
|
m_checkWXAPIKey = "";
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
for (int i = 0; i < ADSBDEMOD_COLUMNS; i++)
|
|
|
|
{
|
|
|
|
m_columnIndexes[i] = i;
|
|
|
|
m_columnSizes[i] = -1; // Autosize
|
|
|
|
}
|
2021-11-03 17:19:21 +00:00
|
|
|
m_logFilename = "adsb_log.csv";
|
|
|
|
m_logEnabled = false;
|
2023-02-16 12:20:31 +00:00
|
|
|
m_airspaces = QStringList({"CTR"});
|
2021-11-12 16:51:23 +00:00
|
|
|
m_airspaceRange = 500.0f;
|
2022-09-30 15:59:51 +01:00
|
|
|
#ifdef LINUX
|
|
|
|
m_mapProvider = "mapboxgl"; // osm maps do not work in some versions of Linux https://github.com/f4exb/sdrangel/issues/1169 & 1369
|
2022-06-06 11:52:29 +01:00
|
|
|
#else
|
|
|
|
m_mapProvider = "osm";
|
|
|
|
#endif
|
2021-11-12 16:51:23 +00:00
|
|
|
m_mapType = AVIATION_LIGHT;
|
|
|
|
m_displayNavAids = true;
|
|
|
|
m_displayPhotos = true;
|
2022-02-04 16:57:45 +00:00
|
|
|
m_verboseModelMatching = false;
|
2023-02-16 12:20:31 +00:00
|
|
|
m_aircraftMinZoom = 11;
|
2022-04-12 16:20:45 +02:00
|
|
|
m_workspaceIndex = 0;
|
2022-04-12 18:27:27 +02:00
|
|
|
m_hidden = false;
|
2023-10-26 16:31:37 +01:00
|
|
|
m_atcLabels = true;
|
|
|
|
m_atcCallsigns = true;
|
|
|
|
m_transitionAlt = 6000; // Depends on airport. 18,000 in USA
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
m_qnh = 1013.25;
|
|
|
|
m_manualQNH = false;
|
|
|
|
m_displayCoverage = false;
|
|
|
|
m_displayChart = false;
|
|
|
|
m_displayOrientation = false;
|
|
|
|
m_displayRadius = false;
|
|
|
|
for (int i = 0; i < ADSB_IC_MAX; i++) {
|
|
|
|
m_displayIC[i] = false;
|
|
|
|
}
|
|
|
|
m_flightPathPaletteName = "Spectral";
|
|
|
|
applyPalette();
|
|
|
|
m_favourLivery = true;
|
2020-10-27 16:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray ADSBDemodSettings::serialize() const
|
|
|
|
{
|
|
|
|
SimpleSerializer s(1);
|
|
|
|
s.writeS32(1, m_inputFrequencyOffset);
|
|
|
|
s.writeReal(2, m_rfBandwidth);
|
|
|
|
s.writeReal(3, m_correlationThreshold);
|
|
|
|
s.writeS32(4, m_samplesPerBit);
|
|
|
|
s.writeS32(5, m_removeTimeout);
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
s.writeBool(6, m_feedEnabled);
|
2022-02-09 16:36:09 +00:00
|
|
|
s.writeString(7, m_exportClientHost);
|
|
|
|
s.writeU32(8, m_exportClientPort);
|
2020-10-27 16:22:10 +00:00
|
|
|
s.writeU32(9, m_rgbColor);
|
2022-01-09 05:27:12 +01:00
|
|
|
|
2020-10-27 16:22:10 +00:00
|
|
|
if (m_channelMarker) {
|
|
|
|
s.writeBlob(10, m_channelMarker->serialize());
|
|
|
|
}
|
2022-01-09 05:27:12 +01:00
|
|
|
|
2020-10-27 16:22:10 +00:00
|
|
|
s.writeString(11, m_title);
|
|
|
|
s.writeBool(12, m_useReverseAPI);
|
|
|
|
s.writeString(13, m_reverseAPIAddress);
|
|
|
|
s.writeU32(14, m_reverseAPIPort);
|
|
|
|
s.writeU32(15, m_reverseAPIDeviceIndex);
|
|
|
|
s.writeU32(16, m_reverseAPIChannelIndex);
|
|
|
|
s.writeS32(17, m_streamIndex);
|
|
|
|
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
s.writeFloat(18, m_airportRange);
|
|
|
|
s.writeS32(19, (int)m_airportMinimumSize);
|
|
|
|
s.writeBool(20, m_displayHeliports);
|
|
|
|
s.writeBool(21, m_flightPaths);
|
|
|
|
s.writeBool(23, m_siUnits);
|
2022-02-09 16:36:09 +00:00
|
|
|
s.writeS32(24, (int)m_exportClientFormat);
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
s.writeString(25, m_tableFontName);
|
|
|
|
s.writeS32(26, m_tableFontSize);
|
|
|
|
s.writeBool(27, m_displayDemodStats);
|
|
|
|
s.writeBool(29, m_demodModeS);
|
2020-11-10 14:27:42 +00:00
|
|
|
s.writeBool(30, m_autoResizeTableColumns);
|
2020-11-12 13:25:49 +00:00
|
|
|
s.writeS32(31, m_interpolatorPhaseSteps);
|
|
|
|
s.writeFloat(32, m_interpolatorTapsPerPhase);
|
2021-01-13 17:15:32 +00:00
|
|
|
s.writeBool(33, m_allFlightPaths);
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
|
2021-10-27 22:25:14 +01:00
|
|
|
s.writeBlob(34, serializeNotificationSettings(m_notificationSettings));
|
2022-06-06 10:53:10 +01:00
|
|
|
s.writeString(35, m_aviationstackAPIKey);
|
2021-10-27 22:25:14 +01:00
|
|
|
|
2021-11-03 17:19:21 +00:00
|
|
|
s.writeString(36, m_logFilename);
|
|
|
|
s.writeBool(37, m_logEnabled);
|
|
|
|
|
2021-11-12 16:51:23 +00:00
|
|
|
s.writeString(38, m_airspaces.join(" "));
|
|
|
|
s.writeFloat(39, m_airspaceRange);
|
|
|
|
s.writeS32(40, (int)m_mapType);
|
|
|
|
s.writeBool(41, m_displayNavAids);
|
|
|
|
s.writeBool(42, m_displayPhotos);
|
2022-01-09 05:27:12 +01:00
|
|
|
|
|
|
|
if (m_rollupState) {
|
|
|
|
s.writeBlob(43, m_rollupState->serialize());
|
|
|
|
}
|
2021-11-12 16:51:23 +00:00
|
|
|
|
2022-02-04 16:57:45 +00:00
|
|
|
s.writeBool(44, m_verboseModelMatching);
|
|
|
|
|
2022-02-09 16:36:09 +00:00
|
|
|
s.writeBool(46, m_exportClientEnabled);
|
|
|
|
s.writeBool(47, m_exportServerEnabled);
|
|
|
|
s.writeBool(48, m_exportServerPort);
|
|
|
|
s.writeBool(49, m_importEnabled);
|
|
|
|
s.writeString(50, m_importHost);
|
|
|
|
s.writeString(51, m_importUsername);
|
|
|
|
s.writeString(52, m_importPassword);
|
|
|
|
s.writeString(53, m_importParameters);
|
|
|
|
s.writeFloat(54, m_importPeriod);
|
|
|
|
s.writeString(55, m_importMinLatitude);
|
|
|
|
s.writeString(56, m_importMaxLatitude);
|
|
|
|
s.writeString(57, m_importMinLongitude);
|
|
|
|
s.writeString(58, m_importMaxLongitude);
|
2022-04-12 16:20:45 +02:00
|
|
|
s.writeS32(59, m_workspaceIndex);
|
|
|
|
s.writeBlob(60, m_geometryBytes);
|
2022-04-12 18:27:27 +02:00
|
|
|
s.writeBool(61, m_hidden);
|
2022-06-06 10:53:10 +01:00
|
|
|
s.writeString(62, m_checkWXAPIKey);
|
2022-06-06 11:52:29 +01:00
|
|
|
s.writeString(63, m_mapProvider);
|
2023-02-16 12:20:31 +00:00
|
|
|
s.writeS32(64, m_aircraftMinZoom);
|
2022-02-09 16:36:09 +00:00
|
|
|
|
2023-10-26 16:31:37 +01:00
|
|
|
s.writeBool(65, m_atcLabels);
|
|
|
|
s.writeBool(66, m_atcCallsigns);
|
|
|
|
s.writeS32(67, m_transitionAlt);
|
|
|
|
s.writeString(68, m_amDemod);
|
|
|
|
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
s.writeFloat(69, m_qnh);
|
|
|
|
s.writeBool(70, m_manualQNH);
|
|
|
|
|
|
|
|
s.writeBool(71, m_displayCoverage);
|
|
|
|
s.writeBool(72, m_displayChart);
|
|
|
|
s.writeBool(73, m_displayOrientation);
|
|
|
|
s.writeBool(74, m_displayRadius);
|
|
|
|
s.writeString(75, m_flightPathPaletteName);
|
|
|
|
s.writeS32(76, m_chipsThreshold);
|
|
|
|
s.writeBool(77, m_favourLivery);
|
|
|
|
|
2021-11-12 16:51:23 +00:00
|
|
|
for (int i = 0; i < ADSBDEMOD_COLUMNS; i++) {
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
s.writeS32(100 + i, m_columnIndexes[i]);
|
2021-11-12 16:51:23 +00:00
|
|
|
}
|
|
|
|
for (int i = 0; i < ADSBDEMOD_COLUMNS; i++) {
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
s.writeS32(200 + i, m_columnSizes[i]);
|
2021-11-12 16:51:23 +00:00
|
|
|
}
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
|
2020-10-27 16:22:10 +00:00
|
|
|
return s.final();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ADSBDemodSettings::deserialize(const QByteArray& data)
|
|
|
|
{
|
|
|
|
SimpleDeserializer d(data);
|
|
|
|
|
|
|
|
if (!d.isValid())
|
|
|
|
{
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (d.getVersion() == 1)
|
|
|
|
{
|
|
|
|
QByteArray bytetmp;
|
|
|
|
qint32 tmp;
|
|
|
|
uint32_t utmp;
|
2021-10-27 22:25:14 +01:00
|
|
|
QByteArray blob;
|
2021-11-12 16:51:23 +00:00
|
|
|
QString string;
|
2020-10-27 16:22:10 +00:00
|
|
|
|
|
|
|
if (m_channelMarker)
|
|
|
|
{
|
|
|
|
d.readBlob(10, &bytetmp);
|
|
|
|
m_channelMarker->deserialize(bytetmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
d.readS32(1, &tmp, 0);
|
|
|
|
m_inputFrequencyOffset = tmp;
|
|
|
|
d.readReal(2, &m_rfBandwidth, 2*1300000);
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
d.readReal(3, &m_correlationThreshold, 7.0f);
|
2020-10-31 05:09:28 +01:00
|
|
|
d.readS32(4, &m_samplesPerBit, 4);
|
2020-10-27 16:22:10 +00:00
|
|
|
d.readS32(5, &m_removeTimeout, 60);
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
d.readBool(6, &m_feedEnabled, false);
|
2022-02-09 16:36:09 +00:00
|
|
|
d.readString(7, &m_exportClientHost, "feed.adsbexchange.com");
|
2020-10-27 16:22:10 +00:00
|
|
|
d.readU32(8, &utmp, 0);
|
|
|
|
if ((utmp > 1023) && (utmp < 65535)) {
|
2022-02-09 16:36:09 +00:00
|
|
|
m_exportClientPort = utmp;
|
2020-10-27 16:22:10 +00:00
|
|
|
} else {
|
2022-02-09 16:36:09 +00:00
|
|
|
m_exportClientPort = 30005;
|
2020-10-27 16:22:10 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 20:45:12 +00:00
|
|
|
d.readU32(9, &m_rgbColor, QColor(244, 151, 57).rgb());
|
2020-10-27 16:22:10 +00:00
|
|
|
d.readString(11, &m_title, "ADS-B Demodulator");
|
|
|
|
d.readBool(12, &m_useReverseAPI, false);
|
|
|
|
d.readString(13, &m_reverseAPIAddress, "127.0.0.1");
|
|
|
|
d.readU32(14, &utmp, 0);
|
|
|
|
|
|
|
|
if ((utmp > 1023) && (utmp < 65535)) {
|
|
|
|
m_reverseAPIPort = utmp;
|
|
|
|
} else {
|
|
|
|
m_reverseAPIPort = 8888;
|
|
|
|
}
|
|
|
|
|
|
|
|
d.readU32(15, &utmp, 0);
|
|
|
|
m_reverseAPIDeviceIndex = utmp > 99 ? 99 : utmp;
|
|
|
|
d.readU32(16, &utmp, 0);
|
|
|
|
m_reverseAPIChannelIndex = utmp > 99 ? 99 : utmp;
|
|
|
|
d.readS32(17, &m_streamIndex, 0);
|
|
|
|
|
2021-11-12 16:51:23 +00:00
|
|
|
d.readFloat(18, &m_airportRange, 100.0f);
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
d.readS32(19, (int *)&m_airportMinimumSize, AirportType::Medium);
|
|
|
|
d.readBool(20, &m_displayHeliports, false);
|
|
|
|
d.readBool(21, &m_flightPaths, true);
|
|
|
|
d.readBool(23, &m_siUnits, false);
|
2022-02-09 16:36:09 +00:00
|
|
|
d.readS32(24, (int *) &m_exportClientFormat, BeastBinary);
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
d.readString(25, &m_tableFontName, "Liberation Sans");
|
|
|
|
d.readS32(26, &m_tableFontSize, 9);
|
|
|
|
d.readBool(27, &m_displayDemodStats, false);
|
ADS-B: Add support for decoding Comm-B replies in Mode-S frames. This adds TAS, IAS, Mach, Selelected Alt, Selected Heading, Turn rate, Roll angle, Autopilot enabled, Vertical and lateral navigation modes, Baro setting, Headwind, OAT, Wind speed and direction, Pressure, Static air temperature, Humidity.
2022-08-26 12:35:12 +01:00
|
|
|
d.readBool(29, &m_demodModeS, true);
|
2020-11-10 14:27:42 +00:00
|
|
|
d.readBool(30, &m_autoResizeTableColumns, false);
|
2020-11-12 13:25:49 +00:00
|
|
|
d.readS32(31, &m_interpolatorPhaseSteps, 4);
|
|
|
|
d.readFloat(32, &m_interpolatorTapsPerPhase, 3.5f);
|
2021-01-13 17:15:32 +00:00
|
|
|
d.readBool(33, &m_allFlightPaths, false);
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
|
2021-10-27 22:25:14 +01:00
|
|
|
d.readBlob(34, &blob);
|
|
|
|
deserializeNotificationSettings(blob, m_notificationSettings);
|
2022-06-06 10:53:10 +01:00
|
|
|
d.readString(35, &m_aviationstackAPIKey, "");
|
2021-10-27 22:25:14 +01:00
|
|
|
|
2021-11-03 17:19:21 +00:00
|
|
|
d.readString(36, &m_logFilename, "adsb_log.csv");
|
|
|
|
d.readBool(37, &m_logEnabled, false);
|
|
|
|
|
2023-02-16 12:20:31 +00:00
|
|
|
d.readString(38, &string, "CTR");
|
2021-11-12 16:51:23 +00:00
|
|
|
m_airspaces = string.split(" ");
|
|
|
|
d.readFloat(39, &m_airspaceRange, 500.0f);
|
|
|
|
d.readS32(40, (int *)&m_mapType, (int)AVIATION_LIGHT);
|
|
|
|
d.readBool(41, &m_displayNavAids, true);
|
|
|
|
d.readBool(42, &m_displayPhotos, true);
|
2022-01-09 05:27:12 +01:00
|
|
|
|
|
|
|
if (m_rollupState)
|
|
|
|
{
|
|
|
|
d.readBlob(43, &bytetmp);
|
|
|
|
m_rollupState->deserialize(bytetmp);
|
|
|
|
}
|
2021-11-12 16:51:23 +00:00
|
|
|
|
2022-02-04 16:57:45 +00:00
|
|
|
d.readBool(44, &m_verboseModelMatching, false);
|
|
|
|
|
2022-02-09 16:36:09 +00:00
|
|
|
d.readBool(46, &m_exportClientEnabled, true);
|
|
|
|
d.readBool(47, &m_exportServerEnabled, true);
|
|
|
|
d.readU32(48, &utmp, 0);
|
|
|
|
if ((utmp > 1023) && (utmp < 65535)) {
|
|
|
|
m_exportServerPort = utmp;
|
|
|
|
} else {
|
|
|
|
m_exportServerPort = 30005;
|
|
|
|
}
|
|
|
|
d.readBool(49, &m_importEnabled, false);
|
|
|
|
d.readString(50, &m_importHost, "opensky-network.org");
|
|
|
|
d.readString(51, &m_importUsername, "");
|
|
|
|
d.readString(52, &m_importPassword, "");
|
|
|
|
d.readString(53, &m_importParameters, "");
|
|
|
|
d.readFloat(54, &m_importPeriod, 10.0f);
|
|
|
|
d.readString(55, &m_importMinLatitude, "");
|
|
|
|
d.readString(56, &m_importMaxLatitude, "");
|
|
|
|
d.readString(57, &m_importMinLongitude, "");
|
|
|
|
d.readString(58, &m_importMaxLongitude, "");
|
2022-04-12 16:20:45 +02:00
|
|
|
d.readS32(59, &m_workspaceIndex, 0);
|
|
|
|
d.readBlob(60, &m_geometryBytes);
|
2022-04-12 18:27:27 +02:00
|
|
|
d.readBool(61, &m_hidden, false);
|
2022-06-06 10:53:10 +01:00
|
|
|
d.readString(62, &m_checkWXAPIKey, "");
|
2022-06-06 11:52:29 +01:00
|
|
|
d.readString(63, &m_mapProvider, "osm");
|
2023-02-16 12:20:31 +00:00
|
|
|
d.readS32(64, &m_aircraftMinZoom, 11);
|
2023-10-26 16:31:37 +01:00
|
|
|
|
|
|
|
d.readBool(65, &m_atcLabels, true);
|
|
|
|
d.readBool(66, &m_atcCallsigns, true);
|
|
|
|
d.readS32(67, &m_transitionAlt, 6000);
|
|
|
|
d.readString(68, &m_amDemod);
|
|
|
|
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
d.readFloat(69, &m_qnh, 1013.25);
|
|
|
|
d.readBool(70, &m_manualQNH, false);
|
|
|
|
|
|
|
|
d.readBool(71, &m_displayCoverage, false);
|
|
|
|
d.readBool(72, &m_displayChart, false);
|
|
|
|
d.readBool(73, &m_displayOrientation, false);
|
|
|
|
d.readBool(74, &m_displayRadius, false);
|
|
|
|
d.readString(75, &m_flightPathPaletteName, "Spectral");
|
|
|
|
d.readS32(76, &m_chipsThreshold, 0);
|
|
|
|
d.readBool(77, &m_favourLivery, true);
|
|
|
|
|
|
|
|
applyPalette();
|
|
|
|
|
2022-12-20 22:33:58 +00:00
|
|
|
#ifdef LINUX
|
|
|
|
if (m_mapProvider == "osm") {
|
|
|
|
m_mapProvider = "mapboxgl";
|
|
|
|
}
|
2022-06-06 11:52:29 +01:00
|
|
|
#endif
|
2022-02-09 16:36:09 +00:00
|
|
|
|
2021-11-12 16:51:23 +00:00
|
|
|
for (int i = 0; i < ADSBDEMOD_COLUMNS; i++) {
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
d.readS32(100 + i, &m_columnIndexes[i], i);
|
2021-11-12 16:51:23 +00:00
|
|
|
}
|
|
|
|
for (int i = 0; i < ADSBDEMOD_COLUMNS; i++) {
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
d.readS32(200 + i, &m_columnSizes[i], -1);
|
2021-11-12 16:51:23 +00:00
|
|
|
}
|
ADS-B Demodulator updates.
Add OpenSky Network aircraft database support, for information about
aircraft model, owner, registration.
Add airline logos and country & military flags for display in the table.
Add OurAirports airport database support, to allow airports and ATC
frequencies to be displayed on the map.
Allow ATC frequency to be tuned by clicking on the map.
Add support for displaying flight paths on the map.
Allow columns in table to be rearranged and hidden.
Allow rows in table to be sorted by clicking on header.
Allow switching units from ft, kn, ft/min to m, kph, m/s
Allow aircraft timeout to be set by the user.
Allow font used for the table to be set by the user.
Add optional display of demodulator statistics.
Support multithreading in demodulator to reduce FIFO overflows.
Add support for demodulating all Mode-S frames and feeding them.
Add support for feeding in Beast hex format.
Allow option of correlating against full preamble or partial preamble.
Supporting highlighting of an aircraft in the table by selecting it on
the map.
Use difference of zeros and ones correlation, rather than absolute
threshold, to better account for varying conditions and make the
threshold easier to set.
Enable anti-aliasing for text on the map.
Improve CRC performance by 5x-10x.
Add HttpDownloadManager class to support downloading of files from the
web to disk.
2020-11-06 12:18:55 +00:00
|
|
|
|
2020-10-27 16:22:10 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2021-10-27 22:25:14 +01:00
|
|
|
|
|
|
|
QDataStream& operator<<(QDataStream& out, const ADSBDemodSettings::NotificationSettings* settings)
|
|
|
|
{
|
|
|
|
out << settings->m_matchColumn;
|
|
|
|
out << settings->m_regExp;
|
|
|
|
out << settings->m_speech;
|
|
|
|
out << settings->m_command;
|
2021-11-07 19:38:46 +01:00
|
|
|
out << settings->m_autoTarget;
|
2021-10-27 22:25:14 +01:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
QDataStream& operator>>(QDataStream& in, ADSBDemodSettings::NotificationSettings*& settings)
|
|
|
|
{
|
|
|
|
settings = new ADSBDemodSettings::NotificationSettings();
|
|
|
|
in >> settings->m_matchColumn;
|
|
|
|
in >> settings->m_regExp;
|
|
|
|
in >> settings->m_speech;
|
|
|
|
in >> settings->m_command;
|
2021-11-07 19:38:46 +01:00
|
|
|
in >> settings->m_autoTarget;
|
2021-10-27 22:25:14 +01:00
|
|
|
settings->updateRegularExpression();
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray ADSBDemodSettings::serializeNotificationSettings(QList<NotificationSettings *> notificationSettings) const
|
|
|
|
{
|
|
|
|
QByteArray data;
|
|
|
|
QDataStream *stream = new QDataStream(&data, QIODevice::WriteOnly);
|
|
|
|
(*stream) << notificationSettings;
|
|
|
|
delete stream;
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ADSBDemodSettings::deserializeNotificationSettings(const QByteArray& data, QList<NotificationSettings *>& notificationSettings)
|
|
|
|
{
|
|
|
|
QDataStream *stream = new QDataStream(data);
|
|
|
|
(*stream) >> notificationSettings;
|
|
|
|
delete stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
ADSBDemodSettings::NotificationSettings::NotificationSettings()
|
|
|
|
{
|
|
|
|
m_matchColumn = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ADSBDemodSettings::NotificationSettings::updateRegularExpression()
|
|
|
|
{
|
|
|
|
m_regularExpression.setPattern(m_regExp);
|
|
|
|
m_regularExpression.optimize();
|
2021-10-29 12:54:10 +01:00
|
|
|
if (!m_regularExpression.isValid()) {
|
2021-10-27 22:25:14 +01:00
|
|
|
qDebug() << "ADSBDemod: Regular expression is not valid: " << m_regExp;
|
|
|
|
}
|
|
|
|
}
|
2024-11-05 10:31:32 +00:00
|
|
|
|
|
|
|
void ADSBDemodSettings::applySettings(const QStringList& settingsKeys, const ADSBDemodSettings& settings)
|
|
|
|
{
|
|
|
|
if (settingsKeys.contains("inputFrequencyOffset")) {
|
|
|
|
m_inputFrequencyOffset = settings.m_inputFrequencyOffset;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("rfBandwidth")) {
|
|
|
|
m_rfBandwidth = settings.m_rfBandwidth;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("correlationThreshold")) {
|
|
|
|
m_correlationThreshold = settings.m_correlationThreshold;
|
|
|
|
}
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
if (settingsKeys.contains("chipsThreshold")) {
|
|
|
|
m_chipsThreshold = settings.m_chipsThreshold;
|
|
|
|
}
|
2024-11-05 10:31:32 +00:00
|
|
|
if (settingsKeys.contains("samplesPerBit")) {
|
|
|
|
m_samplesPerBit = settings.m_samplesPerBit;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("removeTimeout")) {
|
|
|
|
m_removeTimeout = settings.m_removeTimeout;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("feedEnabled")) {
|
|
|
|
m_feedEnabled = settings.m_feedEnabled;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("exportClientEnabled")) {
|
|
|
|
m_exportClientEnabled = settings.m_exportClientEnabled;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("exportClientHost")) {
|
|
|
|
m_exportClientHost = settings.m_exportClientHost;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("exportClientPort")) {
|
|
|
|
m_exportClientPort = settings.m_exportClientPort;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("exportClientFormat")) {
|
|
|
|
m_exportClientFormat = settings.m_exportClientFormat;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("exportServerEnabled")) {
|
|
|
|
m_exportServerEnabled = settings.m_exportServerEnabled;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("exportServerPort")) {
|
|
|
|
m_exportServerPort = settings.m_exportServerPort;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importEnabled")) {
|
|
|
|
m_importEnabled = settings.m_importEnabled;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importHost")) {
|
|
|
|
m_importHost = settings.m_importHost;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importUsername")) {
|
|
|
|
m_importUsername = settings.m_importUsername;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importPassword")) {
|
|
|
|
m_importPassword = settings.m_importPassword;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importParameters")) {
|
|
|
|
m_importParameters = settings.m_importParameters;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importPeriod")) {
|
|
|
|
m_importPeriod = settings.m_importPeriod;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importMinLatitude")) {
|
|
|
|
m_importMinLatitude = settings.m_importMinLatitude;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importMaxLatitude")) {
|
|
|
|
m_importMaxLatitude = settings.m_importMaxLatitude;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importMinLongitude")) {
|
|
|
|
m_importMinLongitude = settings.m_importMinLongitude;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importMaxLongitude")) {
|
|
|
|
m_importMaxLongitude = settings.m_importMaxLongitude;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("rgbColor")) {
|
|
|
|
m_rgbColor = settings.m_rgbColor;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("title")) {
|
|
|
|
m_title = settings.m_title;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("useReverseAPI")) {
|
|
|
|
m_useReverseAPI = settings.m_useReverseAPI;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("reverseAPIAddress")) {
|
|
|
|
m_reverseAPIAddress = settings.m_reverseAPIAddress;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("reverseAPIPort")) {
|
|
|
|
m_reverseAPIPort = settings.m_reverseAPIPort;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("reverseAPIDeviceIndex")) {
|
|
|
|
m_reverseAPIDeviceIndex = settings.m_reverseAPIDeviceIndex;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("columnIndexes")) {
|
|
|
|
std::copy(std::begin(settings.m_columnIndexes), std::end(settings.m_columnIndexes), std::begin(m_columnIndexes));
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("columnSizes")) {
|
|
|
|
std::copy(std::begin(settings.m_columnSizes), std::end(settings.m_columnIndexes), std::begin(m_columnSizes));
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("airportRange")) {
|
|
|
|
m_airportRange = settings.m_airportRange;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("airportMinimumSize")) {
|
|
|
|
m_airportMinimumSize = settings.m_airportMinimumSize;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayHeliports")) {
|
|
|
|
m_displayHeliports = settings.m_displayHeliports;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("flightPaths")) {
|
|
|
|
m_flightPaths = settings.m_flightPaths;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("allFlightPaths")) {
|
|
|
|
m_allFlightPaths = settings.m_allFlightPaths;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("siUnits")) {
|
|
|
|
m_siUnits = settings.m_siUnits;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("tableFontName")) {
|
|
|
|
m_tableFontName = settings.m_tableFontName;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("tableFontSize")) {
|
|
|
|
m_tableFontSize = settings.m_tableFontSize;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayDemodStats")) {
|
|
|
|
m_displayDemodStats = settings.m_displayDemodStats;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("demodModeS")) {
|
|
|
|
m_demodModeS = settings.m_demodModeS;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("amDemod")) {
|
|
|
|
m_amDemod = settings.m_amDemod;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("autoResizeTableColumns")) {
|
|
|
|
m_autoResizeTableColumns = settings.m_autoResizeTableColumns;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("interpolatorPhaseSteps")) {
|
|
|
|
m_interpolatorPhaseSteps = settings.m_interpolatorPhaseSteps;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("interpolatorTapsPerPhase")) {
|
|
|
|
m_interpolatorTapsPerPhase = settings.m_interpolatorTapsPerPhase;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("notificationSettings")) {
|
|
|
|
m_notificationSettings = settings.m_notificationSettings;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("aviationstackAPIKey")) {
|
|
|
|
m_aviationstackAPIKey = settings.m_aviationstackAPIKey;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("checkWXAPIKey")) {
|
|
|
|
m_checkWXAPIKey = settings.m_checkWXAPIKey;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("logFilename")) {
|
|
|
|
m_logFilename = settings.m_logFilename;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("logEnabled")) {
|
|
|
|
m_logEnabled = settings.m_logEnabled;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("airspaces")) {
|
|
|
|
m_airspaces = settings.m_airspaces;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("airspaceRange")) {
|
|
|
|
m_airspaceRange = settings.m_airspaceRange;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("mapProvider")) {
|
|
|
|
m_mapProvider = settings.m_mapProvider;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("mapType")) {
|
|
|
|
m_mapType = settings.m_mapType;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayNavAids")) {
|
|
|
|
m_displayNavAids = settings.m_displayNavAids;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayPhotos")) {
|
|
|
|
m_displayPhotos = settings.m_displayPhotos;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("verboseModelMatching")) {
|
|
|
|
m_verboseModelMatching = settings.m_verboseModelMatching;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("aircraftMinZoom")) {
|
|
|
|
m_aircraftMinZoom = settings.m_aircraftMinZoom;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("atcLabels")) {
|
|
|
|
m_atcLabels = settings.m_atcLabels;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("atcCallsigns")) {
|
|
|
|
m_atcCallsigns = settings.m_atcCallsigns;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("transitionAlt")) {
|
|
|
|
m_transitionAlt = settings.m_transitionAlt;
|
|
|
|
}
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
if (settingsKeys.contains("qnh")) {
|
|
|
|
m_qnh = settings.m_qnh;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("manualQNH")) {
|
|
|
|
m_manualQNH = settings.m_manualQNH;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayCoverage")) {
|
|
|
|
m_displayCoverage = settings.m_displayCoverage;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayChart")) {
|
|
|
|
m_displayChart = settings.m_displayChart;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayOrientation")) {
|
|
|
|
m_displayOrientation = settings.m_displayOrientation;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayRadius")) {
|
|
|
|
m_displayRadius = settings.m_displayRadius;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("flightPathPaletteName"))
|
|
|
|
{
|
|
|
|
m_flightPathPaletteName = settings.m_flightPathPaletteName;
|
|
|
|
applyPalette();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("favourLivery")) {
|
|
|
|
m_favourLivery = settings.m_favourLivery;
|
|
|
|
}
|
2024-11-05 10:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString ADSBDemodSettings::getDebugString(const QStringList& settingsKeys, bool force) const
|
|
|
|
{
|
|
|
|
std::ostringstream ostr;
|
|
|
|
|
|
|
|
if (settingsKeys.contains("inputFrequencyOffset") || force) {
|
|
|
|
ostr << " m_inputFrequencyOffset: " << m_inputFrequencyOffset;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("rfBandwidth") || force) {
|
|
|
|
ostr << " m_rfBandwidth: " << m_rfBandwidth;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("correlationThreshold") || force) {
|
|
|
|
ostr << " m_correlationThreshold: " << m_correlationThreshold;
|
|
|
|
}
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
if (settingsKeys.contains("chipsThreshold") || force) {
|
|
|
|
ostr << " m_chipsThreshold: " << m_chipsThreshold;
|
|
|
|
}
|
2024-11-05 10:31:32 +00:00
|
|
|
if (settingsKeys.contains("samplesPerBit") || force) {
|
|
|
|
ostr << " m_samplesPerBit: " << m_samplesPerBit;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("removeTimeout") || force) {
|
|
|
|
ostr << " m_removeTimeout: " << m_removeTimeout;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("feedEnabled") || force) {
|
|
|
|
ostr << " m_feedEnabled: " << m_feedEnabled;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("exportClientEnabled") || force) {
|
|
|
|
ostr << " m_exportClientEnabled: " << m_exportClientEnabled;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("exportClientHost") || force) {
|
|
|
|
ostr << " m_exportClientHost: " << m_exportClientHost.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("exportClientPort") || force) {
|
|
|
|
ostr << " m_exportClientPort: " << m_exportClientPort;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("exportClientFormat") || force) {
|
|
|
|
ostr << " m_exportClientFormat: " << m_exportClientFormat;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("exportServerEnabled") || force) {
|
|
|
|
ostr << " m_exportServerEnabled: " << m_exportServerEnabled;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("exportServerPort") || force) {
|
|
|
|
ostr << " m_exportServerPort: " << m_exportServerPort;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importEnabled") || force) {
|
|
|
|
ostr << " m_importEnabled: " << m_importEnabled;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importHost") || force) {
|
|
|
|
ostr << " m_importHost: " << m_importHost.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importUsername") || force) {
|
|
|
|
ostr << " m_importUsername: " << m_importUsername.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importPassword") || force) {
|
|
|
|
ostr << " m_importPassword: " << m_importPassword.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importParameters") || force) {
|
|
|
|
ostr << " m_importParameters: " << m_importParameters.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importPeriod") || force) {
|
|
|
|
ostr << " m_importPeriod: " << m_importPeriod;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importMinLatitude") || force) {
|
|
|
|
ostr << " m_importMinLatitude: " << m_importMinLatitude.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importMaxLatitude") || force) {
|
|
|
|
ostr << " m_importMaxLatitude: " << m_importMaxLatitude.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importMinLongitude") || force) {
|
|
|
|
ostr << " m_importMinLongitude: " << m_importMinLongitude.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("importMaxLongitude") || force) {
|
|
|
|
ostr << " m_importMaxLongitude: " << m_importMaxLongitude.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("title") || force) {
|
|
|
|
ostr << " m_title: " << m_title.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("useReverseAPI") || force) {
|
|
|
|
ostr << " m_useReverseAPI: " << m_useReverseAPI;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("reverseAPIAddress") || force) {
|
|
|
|
ostr << " m_reverseAPIAddress: " << m_reverseAPIAddress.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("reverseAPIPort") || force) {
|
|
|
|
ostr << " m_reverseAPIPort: " << m_reverseAPIPort;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("reverseAPIDeviceIndex") || force) {
|
|
|
|
ostr << " m_reverseAPIDeviceIndex: " << m_reverseAPIDeviceIndex;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("airportRange") || force) {
|
|
|
|
ostr << " m_airportRange: " << m_airportRange;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("airportMinimumSize") || force) {
|
|
|
|
ostr << " m_airportMinimumSize: " << m_airportMinimumSize;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayHeliports") || force) {
|
|
|
|
ostr << " m_displayHeliports: " << m_displayHeliports;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("flightPaths") || force) {
|
|
|
|
ostr << " m_flightPaths: " << m_flightPaths;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("allFlightPaths") || force) {
|
|
|
|
ostr << " m_allFlightPaths: " << m_allFlightPaths;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("siUnits") || force) {
|
|
|
|
ostr << " m_siUnits: " << m_siUnits;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("tableFontName") || force) {
|
|
|
|
ostr << " m_tableFontName: " << m_tableFontName.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("tableFontSize") || force) {
|
|
|
|
ostr << " m_tableFontSize: " << m_tableFontSize;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayDemodStats") || force) {
|
|
|
|
ostr << " m_displayDemodStats: " << m_displayDemodStats;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("demodModeS") || force) {
|
|
|
|
ostr << " m_demodModeS: " << m_demodModeS;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("amDemod") || force) {
|
|
|
|
ostr << " m_amDemod: " << m_amDemod.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("autoResizeTableColumns") || force) {
|
|
|
|
ostr << " m_autoResizeTableColumns: " << m_autoResizeTableColumns;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("interpolatorPhaseSteps") || force) {
|
|
|
|
ostr << " m_interpolatorPhaseSteps: " << m_interpolatorPhaseSteps;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("notificationSettings") || force) {
|
|
|
|
//ostr << " m_notificationSettings: " << m_notificationSettings.join(",").toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("aviationstackAPIKey") || force) {
|
|
|
|
ostr << " m_aviationstackAPIKey: " << m_aviationstackAPIKey.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("checkWXAPIKey") || force) {
|
|
|
|
ostr << " m_checkWXAPIKey: " << m_checkWXAPIKey.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("logFilename") || force) {
|
|
|
|
ostr << " m_logFilename: " << m_logFilename.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("logEnabled") || force) {
|
|
|
|
ostr << " m_logEnabled: " << m_logEnabled;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("airspaces") || force) {
|
|
|
|
ostr << " m_airspaces: " << m_airspaces.join(",").toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("airspaceRange") || force) {
|
|
|
|
ostr << " m_airspaceRange: " << m_airspaceRange;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("mapProvider") || force) {
|
|
|
|
ostr << " m_mapProvider: " << m_mapProvider.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("mapType") || force) {
|
|
|
|
ostr << " m_mapType: " << m_mapType;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayNavAids") || force) {
|
|
|
|
ostr << " m_displayNavAids: " << m_displayNavAids;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayPhotos") || force) {
|
|
|
|
ostr << " m_displayPhotos: " << m_displayPhotos;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("verboseModelMatching") || force) {
|
|
|
|
ostr << " m_verboseModelMatching: " << m_verboseModelMatching;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("aircraftMinZoom") || force) {
|
|
|
|
ostr << " m_aircraftMinZoom: " << m_aircraftMinZoom;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("atcLabels") || force) {
|
|
|
|
ostr << " m_atcLabels: " << m_atcLabels;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("atcCallsigns") || force) {
|
|
|
|
ostr << " m_atcCallsigns: " << m_atcCallsigns;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("transitionAlt") || force) {
|
|
|
|
ostr << " m_transitionAlt: " << m_transitionAlt;
|
|
|
|
}
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
if (settingsKeys.contains("qnh") || force) {
|
|
|
|
ostr << " m_qnh: " << m_qnh;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("manualQNH") || force) {
|
|
|
|
ostr << " m_manualQNH: " << m_manualQNH;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayCoverage") || force) {
|
|
|
|
ostr << " m_displayCoverage: " << m_displayCoverage;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayChart") || force) {
|
|
|
|
ostr << " m_displayChart: " << m_displayChart;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayOrientation") || force) {
|
|
|
|
ostr << " m_displayOrientation: " << m_displayOrientation;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("displayRadius") || force) {
|
|
|
|
ostr << " m_displayRadius: " << m_displayRadius;
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("flightPathPaletteName") || force) {
|
|
|
|
ostr << " m_flightPathPaletteName: " << m_flightPathPaletteName.toStdString();
|
|
|
|
}
|
|
|
|
if (settingsKeys.contains("favourLivery") || force) {
|
|
|
|
ostr << " m_favourLivery: " << m_favourLivery;
|
|
|
|
}
|
2024-11-05 10:31:32 +00:00
|
|
|
|
|
|
|
return QString(ostr.str().c_str());
|
|
|
|
}
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
|
|
|
|
void ADSBDemodSettings::applyPalette()
|
|
|
|
{
|
|
|
|
if (m_palettes.contains(m_flightPathPaletteName)) {
|
|
|
|
m_flightPathPalette = m_palettes.value(m_flightPathPaletteName);
|
|
|
|
} else {
|
|
|
|
m_flightPathPalette = m_rainbowPalette;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const QVariant ADSBDemodSettings::m_rainbowPalette[8] = {
|
2025-06-04 19:28:47 +01:00
|
|
|
QVariant(QColor(0xff, 0x00, 0x00)),
|
|
|
|
QVariant(QColor(0xff, 0x7f, 0x00)),
|
|
|
|
QVariant(QColor(0xff, 0xff, 0x00)),
|
|
|
|
QVariant(QColor(0xf7, 0xff, 0x00)),
|
|
|
|
QVariant(QColor(0x00, 0xff, 0x00)),
|
|
|
|
QVariant(QColor(0x00, 0xff, 0x7f)),
|
|
|
|
QVariant(QColor(0x00, 0xff, 0xff)),
|
|
|
|
QVariant(QColor(0x00, 0x7f, 0xff)),
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const QVariant ADSBDemodSettings::m_pastelPalette[8] = {
|
2025-06-04 19:28:47 +01:00
|
|
|
QVariant(QColor(0xff, 0xad, 0xad)),
|
|
|
|
QVariant(QColor(0xff, 0xd6, 0xa5)),
|
|
|
|
QVariant(QColor(0xfd, 0xff, 0xb6)),
|
|
|
|
QVariant(QColor(0xca, 0xff, 0xbf)),
|
|
|
|
QVariant(QColor(0x9b, 0xf6, 0xff)),
|
|
|
|
QVariant(QColor(0xa0, 0xc4, 0xff)),
|
|
|
|
QVariant(QColor(0xbd, 0xb2, 0xff)),
|
|
|
|
QVariant(QColor(0xff, 0xc6, 0xff)),
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const QVariant ADSBDemodSettings::m_spectralPalette[8] = {
|
2025-06-04 19:28:47 +01:00
|
|
|
QVariant(QColor(0xd5, 0x3e, 0x4f)),
|
|
|
|
QVariant(QColor(0xf4, 0x6d, 0x43)),
|
|
|
|
QVariant(QColor(0xfd, 0xae, 0x61)),
|
|
|
|
QVariant(QColor(0xfe, 0xe0, 0x8b)),
|
|
|
|
QVariant(QColor(0xe6, 0xf5, 0x98)),
|
|
|
|
QVariant(QColor(0xab, 0xdd, 0xa4)),
|
|
|
|
QVariant(QColor(0x66, 0xc2, 0xa5)),
|
|
|
|
QVariant(QColor(0x32, 0x88, 0xbd)),
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const QVariant ADSBDemodSettings::m_bluePalette[8] = {
|
2025-06-04 19:28:47 +01:00
|
|
|
QVariant(QColor(0xde, 0xeb, 0xf7)),
|
|
|
|
QVariant(QColor(0xc6, 0xdb, 0xef)),
|
|
|
|
QVariant(QColor(0x9e, 0xca, 0xe1)),
|
|
|
|
QVariant(QColor(0x6b, 0xae, 0xd6)),
|
|
|
|
QVariant(QColor(0x42, 0x92, 0xc6)),
|
|
|
|
QVariant(QColor(0x21, 0x71, 0xb5)),
|
|
|
|
QVariant(QColor(0x08, 0x51, 0x9c)),
|
|
|
|
QVariant(QColor(0x08, 0x30, 0x6b)),
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const QVariant ADSBDemodSettings::m_purplePalette[8] = {
|
2025-06-04 19:28:47 +01:00
|
|
|
QVariant(QColor(0xcc, 0xaf, 0xf2)),
|
|
|
|
QVariant(QColor(0xb6, 0x99, 0xe0)),
|
|
|
|
QVariant(QColor(0xa0, 0x84, 0xcf)),
|
|
|
|
QVariant(QColor(0x8a, 0x6f, 0xbd)),
|
|
|
|
QVariant(QColor(0x76, 0x5a, 0xac)),
|
|
|
|
QVariant(QColor(0x62, 0x45, 0x9a)),
|
|
|
|
QVariant(QColor(0x4f, 0x30, 0x89)),
|
|
|
|
QVariant(QColor(0x3e, 0x18, 0x78)),
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const QVariant ADSBDemodSettings::m_greyPalette[8] = {
|
2025-06-04 19:28:47 +01:00
|
|
|
QVariant(QColor(0x80, 0x80, 0x80)),
|
|
|
|
QVariant(QColor(0x80, 0x80, 0x80)),
|
|
|
|
QVariant(QColor(0x80, 0x80, 0x80)),
|
|
|
|
QVariant(QColor(0x80, 0x80, 0x80)),
|
|
|
|
QVariant(QColor(0x80, 0x80, 0x80)),
|
|
|
|
QVariant(QColor(0x80, 0x80, 0x80)),
|
|
|
|
QVariant(QColor(0x80, 0x80, 0x80)),
|
|
|
|
QVariant(QColor(0x80, 0x80, 0x80)),
|
Add additional demod stats.
Add analysis of Mode S frames in order to help filter out false positives.
Remove Boost. Use Profiler instead.
Fix crash if interrrupted before run.
Decode full preamble for Mode S frames.
Add support for additional Mode S downlink formats.
Allow demod stats to be reset.
Add timestamps for buffers, to ensure ordering of frames.
Add additional data columns (Aircraft Type, Sideview, Track, Interrogator Code, TCAS, ACAS, RA, Max speed, Version, Length, Width, ADS-B/Mode S frame counts, radius, NACp, NACv, GVA, NIC, SIL, Stops).
Add PCE (Preamble Chip Errors) settings for Mode S demod.
Remove correlate full preamable setting.
Send aircraft state to Map feature for display on PFD.
Add support for airline route database.
Use combined aircraft database from sdrangel.org rather than OSN database.
Add stats table, with demod stats and breakdown of frame types received..
Add button to delete all aircraft from table.
Add display of interrogator code coverage.
Remove airport elevation setting as now calculated dynamically.
Add QNH setting.
Add coverage map.
Add chart of frame rate and aircraft count.
Add table/map orientation setting.
Add display of aircraft position uncertainty.
Add coloured flight paths with several palettes.
Add setting to favour airline livery over aircraft type in 3D model matching.
Only use 4 engine map icon for aircraft with 4 engines.
Add specialised aircraft map icons (Eurofighter, Spitfire, F35, A400M, Apache, Chinook, Glider)
Display aircraft route in labels.
Better validate local/global aircraft positions.
Add support for tc==31, aircraft operational status frames.
Add decoding of Mode S df 0, 11, 16 frames.
Add decoding of BDS 0,5 0,8, 0,9.
2025-06-04 18:05:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const QHash<QString, const QVariant *> ADSBDemodSettings::m_palettes = {
|
|
|
|
{"Rainbow", &ADSBDemodSettings::m_rainbowPalette[0]},
|
|
|
|
{"Pastel", &ADSBDemodSettings::m_pastelPalette[0]},
|
|
|
|
{"Spectral", &ADSBDemodSettings::m_spectralPalette[0]},
|
|
|
|
{"Blues", &ADSBDemodSettings::m_bluePalette[0]},
|
|
|
|
{"Purples", &ADSBDemodSettings::m_purplePalette[0]},
|
|
|
|
{"Grey", &ADSBDemodSettings::m_greyPalette[0]},
|
|
|
|
};
|