1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Map: Add support for Ionosonde stations

This commit is contained in:
Jon Beniston
2022-07-20 17:41:11 +01:00
parent 2a1476bb29
commit 22a30b5ea0
21 changed files with 725 additions and 47 deletions
+18
View File
@@ -159,6 +159,24 @@ void CesiumInterface::setAntiAliasing(const QString &antiAliasing)
send(obj);
}
void CesiumInterface::showMUF(bool show)
{
QJsonObject obj {
{"command", "showMUF"},
{"show", show}
};
send(obj);
}
void CesiumInterface::showfoF2(bool show)
{
QJsonObject obj {
{"command", "showfoF2"},
{"show", show}
};
send(obj);
}
void CesiumInterface::updateImage(const QString &name, float east, float west, float north, float south, float altitude, const QString &data)
{
QJsonObject obj {