TerrainTile.cc 9.25 KB
Newer Older
Andreas Bircher's avatar
Andreas Bircher committed
1 2
#include "TerrainTile.h"
#include "JsonHelper.h"
3
#include "QGCMapEngine.h"
Andreas Bircher's avatar
Andreas Bircher committed
4 5 6 7

#include <QJsonDocument>
#include <QJsonObject>
#include <QJsonArray>
8
#include <QDataStream>
Andreas Bircher's avatar
Andreas Bircher committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

QGC_LOGGING_CATEGORY(TerrainTileLog, "TerrainTileLog")

const char*  TerrainTile::_jsonStatusKey        = "status";
const char*  TerrainTile::_jsonDataKey          = "data";
const char*  TerrainTile::_jsonBoundsKey        = "bounds";
const char*  TerrainTile::_jsonSouthWestKey     = "sw";
const char*  TerrainTile::_jsonNorthEastKey     = "ne";
const char*  TerrainTile::_jsonStatsKey         = "stats";
const char*  TerrainTile::_jsonMaxElevationKey  = "max";
const char*  TerrainTile::_jsonMinElevationKey  = "min";
const char*  TerrainTile::_jsonAvgElevationKey  = "avg";
const char*  TerrainTile::_jsonCarpetKey        = "carpet";

TerrainTile::TerrainTile()
    : _minElevation(-1.0)
    , _maxElevation(-1.0)
    , _avgElevation(-1.0)
27 28 29
    , _data(NULL)
    , _gridSizeLat(-1)
    , _gridSizeLon(-1)
Andreas Bircher's avatar
Andreas Bircher committed
30 31 32 33 34 35 36
    , _isValid(false)
{

}

TerrainTile::~TerrainTile()
{
37 38 39 40
    if (_data) {
        for (int i = 0; i < _gridSizeLat; i++) {
            delete _data[i];
        }
Andreas Bircher's avatar
Andreas Bircher committed
41 42
        delete _data;
        _data = NULL;
43
    }
Andreas Bircher's avatar
Andreas Bircher committed
44 45
}

46 47

TerrainTile::TerrainTile(QByteArray byteArray)
Andreas Bircher's avatar
Andreas Bircher committed
48 49 50
    : _minElevation(-1.0)
    , _maxElevation(-1.0)
    , _avgElevation(-1.0)
51 52 53
    , _data(NULL)
    , _gridSizeLat(-1)
    , _gridSizeLon(-1)
Andreas Bircher's avatar
Andreas Bircher committed
54 55
    , _isValid(false)
{
56 57
    QDataStream stream(byteArray);

58
    float lat,lon;
59
    stream >> lat
60
           >> lon;
61 62 63
    _southWest.setLatitude(lat);
    _southWest.setLongitude(lon);
    stream >> lat
64
           >> lon;
65 66 67 68 69
    _northEast.setLatitude(lat);
    _northEast.setLongitude(lon);


    stream >> _minElevation
70 71 72 73 74 75 76
           >> _maxElevation
           >> _avgElevation
           >> _gridSizeLat
           >> _gridSizeLon;

    qCDebug(TerrainTileLog) << "Loading terrain tile: " << _southWest << " - " << _northEast;
    qCDebug(TerrainTileLog) << "min:max:avg:sizeLat:sizeLon" << _minElevation << _maxElevation << _avgElevation << _gridSizeLat << _gridSizeLon;
77 78 79

    for (int i = 0; i < _gridSizeLat; i++) {
        if (i == 0) {
80
            _data = new int16_t*[_gridSizeLat];
81
            for (int k = 0; k < _gridSizeLat; k++) {
82
                _data[k] = new int16_t[_gridSizeLon];
83 84 85
            }
        }
        for (int j = 0; j < _gridSizeLon; j++) {
86 87 88 89
            if (stream.atEnd()) {
                qWarning() << "Terrain tile binary data does not contain all data";
                return;
            }
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
            stream >> _data[i][j];
        }
    }

    _isValid = true;
}


bool TerrainTile::isIn(const QGeoCoordinate& coordinate) const
{
    if (!_isValid) {
        qCDebug(TerrainTileLog) << "isIn requested, but tile not valid";
        return false;
    }
    bool ret = coordinate.latitude() >= _southWest.latitude() && coordinate.longitude() >= _southWest.longitude() &&
            coordinate.latitude() <= _northEast.latitude() && coordinate.longitude() <= _northEast.longitude();
    qCDebug(TerrainTileLog) << "Checking isIn: " << coordinate << " , in sw " << _southWest << " , ne " << _northEast << ": " << ret;
    return ret;
}

110
double TerrainTile::elevation(const QGeoCoordinate& coordinate) const
111 112 113 114 115 116
{
    if (_isValid) {
        qCDebug(TerrainTileLog) << "elevation: " << coordinate << " , in sw " << _southWest << " , ne " << _northEast;
        // Get the index at resolution of 1 arc second
        int indexLat = _latToDataIndex(coordinate.latitude());
        int indexLon = _lonToDataIndex(coordinate.longitude());
117 118 119 120
        if (indexLat == -1 || indexLon == -1) {
            qCWarning(TerrainTileLog) << "Internal error indexLat:indexLon == -1" << indexLat << indexLon;
            return -1.0;
        }
121
        qCDebug(TerrainTileLog) << "indexLat:indexLon" << indexLat << indexLon << "elevation" << _data[indexLat][indexLon];
122
        return static_cast<double>(_data[indexLat][indexLon]);
123 124 125 126 127 128 129 130 131 132 133
    } else {
        qCDebug(TerrainTileLog) << "Asking for elevation, but no valid data.";
        return -1.0;
    }
}

QGeoCoordinate TerrainTile::centerCoordinate(void) const
{
    return _southWest.atDistanceAndAzimuth(_southWest.distanceTo(_northEast) / 2.0, _southWest.azimuthTo(_northEast));
}

134
QByteArray TerrainTile::serialize(QByteArray input)
135
{
136 137 138 139 140 141 142
    QJsonParseError parseError;
    QJsonDocument document = QJsonDocument::fromJson(input, &parseError);
    if (parseError.error != QJsonParseError::NoError) {
        QByteArray emptyArray;
        return emptyArray;
    }

143
    QByteArray byteArray;
144
    QDataStream stream(&byteArray, QIODevice::WriteOnly);
Andreas Bircher's avatar
Andreas Bircher committed
145
    if (!document.isObject()) {
Andreas Bircher's avatar
Andreas Bircher committed
146
        qCDebug(TerrainTileLog) << "Terrain tile json doc is no object";
147 148
        QByteArray emptyArray;
        return emptyArray;
Andreas Bircher's avatar
Andreas Bircher committed
149
    }
Andreas Bircher's avatar
Andreas Bircher committed
150
    QJsonObject rootObject = document.object();
Andreas Bircher's avatar
Andreas Bircher committed
151 152 153 154

    QString errorString;
    QList<JsonHelper::KeyValidateInfo> rootVersionKeyInfoList = {
        { _jsonStatusKey, QJsonValue::String, true },
155
        { _jsonDataKey,   QJsonValue::Object, true },
Andreas Bircher's avatar
Andreas Bircher committed
156 157 158
    };
    if (!JsonHelper::validateKeys(rootObject, rootVersionKeyInfoList, errorString)) {
        qCDebug(TerrainTileLog) << "Error in reading json: " << errorString;
159 160
        QByteArray emptyArray;
        return emptyArray;
Andreas Bircher's avatar
Andreas Bircher committed
161 162 163 164
    }

    if (rootObject[_jsonStatusKey].toString() != "success") {
        qCDebug(TerrainTileLog) << "Invalid terrain tile.";
165 166
        QByteArray emptyArray;
        return emptyArray;
Andreas Bircher's avatar
Andreas Bircher committed
167 168 169 170
    }
    const QJsonObject& dataObject = rootObject[_jsonDataKey].toObject();
    QList<JsonHelper::KeyValidateInfo> dataVersionKeyInfoList = {
        { _jsonBoundsKey, QJsonValue::Object, true },
171
        { _jsonStatsKey,  QJsonValue::Object, true },
Andreas Bircher's avatar
Andreas Bircher committed
172 173 174 175
        { _jsonCarpetKey, QJsonValue::Array, true },
    };
    if (!JsonHelper::validateKeys(dataObject, dataVersionKeyInfoList, errorString)) {
        qCDebug(TerrainTileLog) << "Error in reading json: " << errorString;
176 177
        QByteArray emptyArray;
        return emptyArray;
Andreas Bircher's avatar
Andreas Bircher committed
178 179 180 181 182 183 184 185 186 187
    }

    // Bounds
    const QJsonObject& boundsObject = dataObject[_jsonBoundsKey].toObject();
    QList<JsonHelper::KeyValidateInfo> boundsVersionKeyInfoList = {
        { _jsonSouthWestKey, QJsonValue::Array, true },
        { _jsonNorthEastKey, QJsonValue::Array, true },
    };
    if (!JsonHelper::validateKeys(boundsObject, boundsVersionKeyInfoList, errorString)) {
        qCDebug(TerrainTileLog) << "Error in reading json: " << errorString;
188 189
        QByteArray emptyArray;
        return emptyArray;
Andreas Bircher's avatar
Andreas Bircher committed
190 191 192 193 194
    }
    const QJsonArray& swArray = boundsObject[_jsonSouthWestKey].toArray();
    const QJsonArray& neArray = boundsObject[_jsonNorthEastKey].toArray();
    if (swArray.count() < 2 || neArray.count() < 2 ) {
        qCDebug(TerrainTileLog) << "Incomplete bounding location";
195 196
        QByteArray emptyArray;
        return emptyArray;
Andreas Bircher's avatar
Andreas Bircher committed
197
    }
198 199 200 201
    stream << static_cast<float>(swArray[0].toDouble());
    stream << static_cast<float>(swArray[1].toDouble());
    stream << static_cast<float>(neArray[0].toDouble());
    stream << static_cast<float>(neArray[1].toDouble());
Andreas Bircher's avatar
Andreas Bircher committed
202 203

    // Stats
204
    const QJsonObject& statsObject = dataObject[_jsonStatsKey].toObject();
Andreas Bircher's avatar
Andreas Bircher committed
205 206
    QList<JsonHelper::KeyValidateInfo> statsVersionKeyInfoList = {
        { _jsonMinElevationKey, QJsonValue::Double, true },
207
        { _jsonMaxElevationKey, QJsonValue::Double, true },
Andreas Bircher's avatar
Andreas Bircher committed
208 209 210 211
        { _jsonAvgElevationKey, QJsonValue::Double, true },
    };
    if (!JsonHelper::validateKeys(statsObject, statsVersionKeyInfoList, errorString)) {
        qCDebug(TerrainTileLog) << "Error in reading json: " << errorString;
212 213
        QByteArray emptyArray;
        return emptyArray;
Andreas Bircher's avatar
Andreas Bircher committed
214
    }
215 216 217
    stream << static_cast<int16_t>(statsObject[_jsonMinElevationKey].toInt());
    stream << static_cast<int16_t>(statsObject[_jsonMaxElevationKey].toInt());
    stream << static_cast<float>(statsObject[_jsonAvgElevationKey].toDouble());
Andreas Bircher's avatar
Andreas Bircher committed
218 219 220

    // Carpet
    const QJsonArray& carpetArray = dataObject[_jsonCarpetKey].toArray();
221
    int gridSizeLat = carpetArray.count();
222
    stream << static_cast<int16_t>(gridSizeLat);
223
    int gridSizeLon = 0;
224
    qCDebug(TerrainTileLog) << "Received tile has size in latitude direction: " << carpetArray.count();
225
    for (int i = 0; i < gridSizeLat; i++) {
Andreas Bircher's avatar
Andreas Bircher committed
226
        const QJsonArray& row = carpetArray[i].toArray();
227
        if (i == 0) {
228
            gridSizeLon = row.count();
229
            stream << static_cast<int16_t>(gridSizeLon);
230 231
            qCDebug(TerrainTileLog) << "Received tile has size in longitued direction: " << row.count();
        }
232 233 234 235
        if (row.count() < gridSizeLon) {
            qCDebug(TerrainTileLog) << "Expected row array of " << gridSizeLon << ", instead got " << row.count();
            QByteArray emptyArray;
            return emptyArray;
Andreas Bircher's avatar
Andreas Bircher committed
236
        }
237
        for (int j = 0; j < gridSizeLon; j++) {
238
            stream << static_cast<int16_t>(row[j].toDouble());
Andreas Bircher's avatar
Andreas Bircher committed
239 240 241
        }
    }

242
    return byteArray;
Andreas Bircher's avatar
Andreas Bircher committed
243 244
}

245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262

int TerrainTile::_latToDataIndex(double latitude) const
{
    if (isValid() && _southWest.isValid() && _northEast.isValid()) {
        return qRound((latitude - _southWest.latitude()) / (_northEast.latitude() - _southWest.latitude()) * (_gridSizeLat - 1));
    } else {
        return -1;
    }
}

int TerrainTile::_lonToDataIndex(double longitude) const
{
    if (isValid() && _southWest.isValid() && _northEast.isValid()) {
        return qRound((longitude - _southWest.longitude()) / (_northEast.longitude() - _southWest.longitude()) * (_gridSizeLon - 1));
    } else {
        return -1;
    }
}