Imagery.h 3.97 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

    enum ImageryType
    {
46 47
        GOOGLE_MAP = 0,
        GOOGLE_SATELLITE = 1,
48 49
        SWISSTOPO_SATELLITE = 2,
        SWISSTOPO_SATELLITE_3D = 3
50 51 52 53 54 55 56 57
    };

    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,
58
                    const QString& utmZone);
59 60 61
    void draw2D(double windowWidth, double windowHeight,
                double zoom, double xOrigin, double yOrigin,
                double viewXOffset, double viewYOffset,
62
                const QString& utmZone);
63

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

    bool update(void);

75
private:
76
    void imageBounds(int32_t tileX, int32_t tileY, double tileResolution,
77
                     double& x1, double& y1, double& x2, double& y2,
78 79 80 81 82 83 84 85
                     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;
86

87 88 89 90
    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;
91 92

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

96
    QChar UTMLetterDesignator(double latitude) const;
97

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

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

105 106
    QString getTileLocation(int32_t tileX, int32_t tileY, int32_t zoomLevel,
                            double tileResolution) const;
107

108
    ImageryType currentImageryType;
109

110 111 112
    QScopedPointer<TextureCache> textureCache;

    double xOffset, yOffset;
113 114 115
};

#endif // IMAGERY_H