From 3ca25db820a2aa9e2aa60432662b9ab79d96ccfb Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Sat, 20 May 2023 08:05:25 +0100 Subject: [PATCH] Fix doppler correction for #1682. Add Az/El offset setting. --- plugins/feature/satellitetracker/satellitetrackersettings.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/feature/satellitetracker/satellitetrackersettings.h b/plugins/feature/satellitetracker/satellitetrackersettings.h index 92a120b77..b0f370cc7 100644 --- a/plugins/feature/satellitetracker/satellitetrackersettings.h +++ b/plugins/feature/satellitetracker/satellitetrackersettings.h @@ -85,6 +85,8 @@ struct SatelliteTrackerSettings QString m_mapFeature; //!< Which feature when FROM_MAP QString m_fileInputDevice; //!< Which device when FROM_FILE enum Rotators {ALL_ROTATORS, NO_ROTATORS, MATCHING_TARGET} m_drawRotators; //!< Which rotators to draw on polar chart + double m_azimuthOffset; //!< Offset to add to az/el sent to rotator + double m_elevationOffset; int m_columnSort; //!< Which column is used for sorting (-1 for none) Qt::SortOrder m_columnSortOrder;