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

44 lines
610 B
C
Raw Normal View History

#ifndef DEM_H
#define DEM_H
#include <QMap>
#include <QByteArray>
#include <QDir>
class QDir;
class Coordinates;
class DEM
{
public:
DEM() {}
2019-01-07 22:07:03 +01:00
DEM(const QString &dir) : _dir(dir) {}
qreal elevation(const Coordinates &c);
private:
struct Key {
int lon;
int lat;
Key(int lon, int lat) : lon(lon), lat(lat) {}
bool operator<(const Key &other) const
{
if (lon < other.lon)
return true;
else if (lon > other.lon)
return false;
else
return (lat < other.lat);
}
};
QString fileName(const Key &key) const;
2019-01-07 22:07:03 +01:00
QString _dir;
QMap<Key, QByteArray> _data;
};
#endif // DEM_H