Imagery.h 3.79 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

    QGROUNDCONTROL 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, either version 3 of the License, or
    (at your option) any later version.

    QGROUNDCONTROL 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 for more details.

    You should have received a copy of the GNU General Public License
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

/**
 * @file
 *   @brief Definition of the class Imagery.
 *
 *   @author Lionel Heng <hengli@student.ethz.ch>
 *
 */

32 33 34 35 36
#ifndef IMAGERY_H
#define IMAGERY_H

#include <inttypes.h>

37
#include "TextureCache.h"
38

39
class Imagery
40 41
{
public:
42
    Imagery();
43 44 45 46 47 48 49 50 51 52 53 54 55

    enum ImageryType
    {
        MAP = 0,
        SATELLITE = 1
    };

    void setImageryType(ImageryType type);
    void setOffset(double xOffset, double yOffset);

    void prefetch2D(double windowWidth, double windowHeight,
                    double zoom, double xOrigin, double yOrigin,
                    double viewXOffset, double viewYOffset,
56
                    const QString& utmZone);
57 58 59
    void draw2D(double windowWidth, double windowHeight,
                double zoom, double xOrigin, double yOrigin,
                double viewXOffset, double viewYOffset,
60
                const QString& utmZone);
61

62
    void prefetch3D(double radius, double tileResolution,
63 64
                    double xOrigin, double yOrigin,
                    double viewXOffset, double viewYOffset,
65
                    const QString& utmZone);
66
    void draw3D(double radius, double tileResolution,
67 68
                double xOrigin, double yOrigin,
                double viewXOffset, double viewYOffset,
69
                const QString& utmZone);
70 71 72

    bool update(void);

73
private:
74
    void imageBounds(int32_t tileX, int32_t tileY, double tileResolution,
75
                     double& x1, double& y1, double& x2, double& y2,
76 77 78 79 80 81 82 83
                     double& x3, double& y3, double& x4, double& y4) const;

    void tileBounds(double tileResolution,
                    double minUtmX, double minUtmY,
                    double maxUtmX, double maxUtmY, const QString& utmZone,
                    int32_t& minTileX, int32_t& minTileY,
                    int32_t& maxTileX, int32_t& maxTileY,
                    int32_t& zoomLevel) const;
84

85 86 87 88
    double tileXToLongitude(int32_t tileX, int32_t numTiles) const;
    double tileYToLatitude(int32_t tileY, int32_t numTiles) const;
    int32_t longitudeToTileX(double longitude, int32_t numTiles) const;
    int32_t latitudeToTileY(double latitude, int32_t numTiles) const;
89 90

    void UTMtoTile(double northing, double easting, const QString& utmZone,
91 92
                   double tileResolution, int32_t& tileX, int32_t& tileY,
                   int32_t& zoomLevel) const;
93

94
    QChar UTMLetterDesignator(double latitude) const;
95

96
    void LLtoUTM(double latitude, double longitude,
97
                 double& utmNorthing, double& utmEasting,
98
                 QString& utmZone) const;
99

100 101
    void UTMtoLL(double utmNorthing, double utmEasting, const QString& utmZone,
                 double& latitude, double& longitude) const;
102

103
    QString getTileURL(int32_t tileX, int32_t tileY, int32_t zoomLevel) const;
104

105
    ImageryType currentImageryType;
106

107 108 109
    QScopedPointer<TextureCache> textureCache;

    double xOffset, yOffset;
110 111 112
};

#endif // IMAGERY_H