mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-01 21:54:55 -04:00
Add Radio Astronomy plugin
This commit is contained in:
@@ -662,13 +662,13 @@ void StarTracker::networkManagerFinished(QNetworkReply *reply)
|
||||
|
||||
void StarTracker::weatherUpdated(float temperature, float pressure, float humidity)
|
||||
{
|
||||
if (!isnan(temperature)) {
|
||||
if (!std::isnan(temperature)) {
|
||||
m_settings.m_temperature = temperature;
|
||||
}
|
||||
if (!isnan(pressure)) {
|
||||
if (!std::isnan(pressure)) {
|
||||
m_settings.m_pressure = pressure;
|
||||
}
|
||||
if (!isnan(humidity)) {
|
||||
if (!std::isnan(humidity)) {
|
||||
m_settings.m_humidity = humidity;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user