Terrain.h 1.55 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/****************************************************************************
 *
 *   (c) 2017 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

#pragma once

#include <QObject>
#include <QGeoCoordinate>
#include <QNetworkAccessManager>

Andreas Bircher's avatar
Andreas Bircher committed
16 17
#include "TerrainCacheTileServer.h"

18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
/* usage example:
    ElevationProvider *p = new ElevationProvider();
    QList<QGeoCoordinate> coordinates;
    QGeoCoordinate c(47.379243, 8.548265);
    coordinates.push_back(c);
    c.setLatitude(c.latitude()+0.01);
    coordinates.push_back(c);
    p->queryTerrainData(coordinates);
 */


class ElevationProvider : public QObject
{
    Q_OBJECT
public:
    ElevationProvider(QObject* parent = NULL);

    /**
     * Async elevation query for a list of lon,lat coordinates. When the query is done, the terrainData() signal
     * is emitted.
     * @param coordinates
     * @return true on success
     */
    bool queryTerrainData(const QList<QGeoCoordinate>& coordinates);

Andreas Bircher's avatar
Andreas Bircher committed
43 44 45 46 47 48 49
    /**
     *
     *
     *
     */
    bool cacheTerrainData(const QGeoCoordinate& southWest, const QGeoCoordinate& northEast);

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
signals:
    void terrainData(bool success, QList<float> altitudes);

private slots:
    void _requestFinished();
private:

    enum class State {
        Idle,
        Downloading,
    };

    State                   _state = State::Idle;
    QNetworkAccessManager   _networkManager;
};