1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 15:23:22 +02:00
GPXSee/src/data/dem.h

48 lines
759 B
C++

#ifndef DEM_H
#define DEM_H
#include <QString>
#include <QCache>
#include <QByteArray>
class QString;
class Coordinates;
class DEM
{
private:
class Key {
public:
Key(int lon, int lat) : _lon(lon), _lat(lat) {}
int lon() const {return _lon;}
int lat() const {return _lat;}
bool operator==(const Key &other) const
{
return (_lon == other._lon && _lat == other._lat);
}
private:
int _lon, _lat;
};
static QString fileName(const Key &key);
static QString _dir;
static QCache<Key, QByteArray> _data;
public:
static void setDir(const QString &path);
static qreal elevation(const Coordinates &c);
friend uint qHash(const Key &key);
};
inline uint qHash(const DEM::Key &key)
{
return (key.lon() ^ key.lat());
}
#endif // DEM_H