mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 23:41:16 -05:00
68 lines
2.9 KiB
C++
68 lines
2.9 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2021 Jon Beniston, M7RCE //
|
|
// Copyright (C) 2020 Edouard Griffiths, F4EXB //
|
|
// //
|
|
// 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/>. //
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef INCLUDE_FEATURE_STARTRACKERSETTINGS_H_
|
|
#define INCLUDE_FEATURE_STARTRACKERSETTINGS_H_
|
|
|
|
#include <QByteArray>
|
|
#include <QString>
|
|
|
|
#include "util/message.h"
|
|
|
|
class Serializable;
|
|
|
|
struct StarTrackerSettings
|
|
{
|
|
QString m_ra;
|
|
QString m_dec;
|
|
double m_latitude;
|
|
double m_longitude;
|
|
QString m_target; // Sun, Moon, Custom
|
|
QString m_dateTime; // Date/time for observation, or "" for now
|
|
QString m_refraction; // Refraction correction. "None", "Saemundsson" or "Positional Astronomy Library"
|
|
double m_pressure; // Air pressure in millibars
|
|
double m_temperature; // Air temperature in C
|
|
double m_humidity; // Humidity in %
|
|
double m_heightAboveSeaLevel; // In metres
|
|
double m_temperatureLapseRate; // In K/km
|
|
double m_frequency; // Observation frequency in Hz
|
|
uint16_t m_serverPort;
|
|
bool m_enableServer; // Enable Stellarium server
|
|
enum AzElUnits {DMS, DM, D, Decimal} m_azElUnits;
|
|
float m_updatePeriod;
|
|
bool m_jnow; // Use JNOW epoch rather than J2000
|
|
bool m_drawSunOnMap;
|
|
bool m_drawMoonOnMap;
|
|
bool m_drawStarOnMap;
|
|
|
|
QString m_title;
|
|
quint32 m_rgbColor;
|
|
bool m_useReverseAPI;
|
|
QString m_reverseAPIAddress;
|
|
uint16_t m_reverseAPIPort;
|
|
uint16_t m_reverseAPIFeatureSetIndex;
|
|
uint16_t m_reverseAPIFeatureIndex;
|
|
|
|
StarTrackerSettings();
|
|
void resetToDefaults();
|
|
QByteArray serialize() const;
|
|
bool deserialize(const QByteArray& data);
|
|
};
|
|
|
|
#endif // INCLUDE_FEATURE_STARTRACKERSETTINGS_H_
|