mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
cddc8c9b83
Plot Sun and Moon on sky temperature chart. Plot markers on Galactic line-of-sight chart. Create animations from Galactic line-of-sight chart. Allow weather at antenna location to be downloaded from openweathermap.org Allow target to be entered as Galactic longitude / latitude. Add azimuth and elevation offsets to support scans around targets. Add S7, S8 and S9 targets. Refactor some code from GUI to main plugin, so computed values can be used in other plugins.
74 lines
4.0 KiB
C++
74 lines
4.0 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2021 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 "startrackersettingsdialog.h"
|
|
#include <QDebug>
|
|
|
|
StarTrackerSettingsDialog::StarTrackerSettingsDialog(StarTrackerSettings *settings,
|
|
QWidget* parent) :
|
|
QDialog(parent),
|
|
m_settings(settings),
|
|
ui(new Ui::StarTrackerSettingsDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->epoch->setCurrentIndex(settings->m_jnow ? 1 : 0);
|
|
ui->azElUnits->setCurrentIndex((int)settings->m_azElUnits);
|
|
ui->updatePeriod->setValue(settings->m_updatePeriod);
|
|
ui->serverPort->setValue(settings->m_serverPort);
|
|
ui->enableServer->setChecked(settings->m_enableServer);
|
|
ui->refraction->setCurrentIndex(ui->refraction->findText(settings->m_refraction));
|
|
ui->owmAPIKey->setText(settings->m_owmAPIKey);
|
|
ui->weatherUpdatePeriod->setValue(settings->m_weatherUpdatePeriod);
|
|
ui->pressure->setValue(settings->m_pressure);
|
|
ui->temperature->setValue(settings->m_temperature);
|
|
ui->humidity->setValue(settings->m_humidity);
|
|
ui->height->setValue(settings->m_heightAboveSeaLevel);
|
|
ui->temperatureLapseRate->setValue(settings->m_temperatureLapseRate);
|
|
ui->solarFluxData->setCurrentIndex((int)settings->m_solarFluxData);
|
|
ui->solarFluxUnits->setCurrentIndex((int)settings->m_solarFluxUnits);
|
|
ui->drawSunOnMap->setChecked(settings->m_drawSunOnMap);
|
|
ui->drawMoonOnMap->setChecked(settings->m_drawMoonOnMap);
|
|
}
|
|
|
|
StarTrackerSettingsDialog::~StarTrackerSettingsDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void StarTrackerSettingsDialog::accept()
|
|
{
|
|
m_settings->m_jnow = ui->epoch->currentIndex() == 1;
|
|
m_settings->m_azElUnits = (StarTrackerSettings::AzElUnits)ui->azElUnits->currentIndex();
|
|
m_settings->m_updatePeriod = ui->updatePeriod->value();
|
|
m_settings->m_serverPort = (uint16_t)ui->serverPort->value();
|
|
m_settings->m_enableServer = ui->enableServer->isChecked();
|
|
m_settings->m_refraction = ui->refraction->currentText();
|
|
m_settings->m_owmAPIKey = ui->owmAPIKey->text();
|
|
m_settings->m_weatherUpdatePeriod = ui->weatherUpdatePeriod->value();
|
|
m_settings->m_pressure = ui->pressure->value();
|
|
m_settings->m_temperature = ui->temperature->value();
|
|
m_settings->m_humidity = ui->humidity->value();
|
|
m_settings->m_heightAboveSeaLevel = ui->height->value();
|
|
m_settings->m_temperatureLapseRate = ui->temperatureLapseRate->value();
|
|
m_settings->m_solarFluxData = (StarTrackerSettings::SolarFluxData)ui->solarFluxData->currentIndex();
|
|
m_settings->m_solarFluxUnits = (StarTrackerSettings::SolarFluxUnits)ui->solarFluxUnits->currentIndex();
|
|
m_settings->m_drawSunOnMap = ui->drawSunOnMap->isChecked();
|
|
m_settings->m_drawMoonOnMap = ui->drawMoonOnMap->isChecked();
|
|
m_settings->m_drawStarOnMap = ui->drawStarOnMap->isChecked();
|
|
QDialog::accept();
|
|
}
|