Imagery.h 3.87 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 32 33 34
/*=====================================================================

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>
 *
 */

#ifndef IMAGERY_H
#define IMAGERY_H

35
#include <osg/Geode>
36 37 38 39 40
#include <QScopedPointer>
#include <QString>

#include "TextureCache.h"

41
class Imagery : public osg::Geode
42 43 44 45
{
public:
    enum ImageryType
    {
46 47 48 49
        BLANK_MAP = 0,
        GOOGLE_MAP = 1,
        GOOGLE_SATELLITE = 2,
        SWISSTOPO_SATELLITE = 3
50 51 52 53
    };

    Imagery();

54
    ImageryType getImageryType(void) const;
55 56 57 58 59 60 61 62
    void setImageryType(ImageryType type);
    void setOffset(double xOffset, double yOffset);

    void prefetch2D(double windowWidth, double windowHeight,
                    double zoom, double xOrigin, double yOrigin,
                    const QString& utmZone);
    void draw2D(double windowWidth, double windowHeight,
                double zoom, double xOrigin, double yOrigin,
63
                double xOffset, double yOffset, double zOffset,
64 65 66 67
                const QString& utmZone);

    void prefetch3D(double radius, double tileResolution,
                    double xOrigin, double yOrigin,
68
                    const QString& utmZone);
69 70
    void draw3D(double radius, double tileResolution,
                double xOrigin, double yOrigin,
71
                double xOffset, double yOffset, double zOffset,
72
                const QString& utmZone);
73 74 75

    bool update(void);

76 77 78 79 80 81
    static void LLtoUTM(double latitude, double longitude,
                        double& utmNorthing, double& utmEasting,
                        QString& utmZone);
    static void UTMtoLL(double utmNorthing, double utmEasting, const QString& utmZone,
                        double& latitude, double& longitude);

82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
private:
    void imageBounds(int tileX, int tileY, double tileResolution,
                     double& x1, double& y1, double& x2, double& y2,
                     double& x3, double& y3, double& x4, double& y4) const;
    void tileBounds(double tileResolution,
                    double minUtmX, double minUtmY,
                    double maxUtmX, double maxUtmY, const QString& utmZone,
                    int& minTileX, int& minTileY,
                    int& maxTileX, int& maxTileY,
                    int& zoomLevel) const;

    double tileXToLongitude(int tileX, int numTiles) const;
    double tileYToLatitude(int tileY, int numTiles) const;
    int longitudeToTileX(double longitude, int numTiles) const;
    int latitudeToTileY(double latitude, int numTiles) const;

    void UTMtoTile(double northing, double easting, const QString& utmZone,
                   double tileResolution, int& tileX, int& tileY,
                   int& zoomLevel) const;
101
    static QChar UTMLetterDesignator(double latitude);
102 103 104 105 106 107 108 109 110 111 112 113 114

    QString getTileLocation(int tileX, int tileY, int zoomLevel,
                            double tileResolution) const;

    QScopedPointer<TextureCache> textureCache;

    ImageryType currentImageryType;

    double xOffset;
    double yOffset;
};

#endif // IMAGERY_H