Imagery.h 3.89 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 48
        GOOGLE_MAP = 0,
        GOOGLE_SATELLITE = 1,
        SWISSTOPO_SATELLITE = 2
49 50 51 52 53 54 55 56
    };

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

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

    bool update(void);

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

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

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

95
    QChar UTMLetterDesignator(double latitude) const;
96

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

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

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

107
    ImageryType currentImageryType;
108

109 110 111
    QScopedPointer<TextureCache> textureCache;

    double xOffset, yOffset;
112 113 114
};

#endif // IMAGERY_H