1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 19:55:53 +01:00
GPXSee/src/map/latlon.h

29 lines
661 B
C++

#ifndef LATLON_H
#define LATLON_H
#include "ct.h"
#include "angularunits.h"
class LatLon : public CT
{
public:
LatLon(const AngularUnits &au) : _au(au) {}
virtual CT *clone() const {return new LatLon(*this);}
virtual bool operator==(const CT &ct) const
{
const LatLon *other = dynamic_cast<const LatLon*>(&ct);
return (other != 0 && _au == other->_au);
}
virtual PointD ll2xy(const Coordinates &c) const
{return PointD(_au.fromDegrees(c.lon()), _au.fromDegrees(c.lat()));}
virtual Coordinates xy2ll(const PointD &p) const
{return Coordinates(_au.toDegrees(p.x()), _au.toDegrees(p.y()));}
private:
AngularUnits _au;
};
#endif // LATLON_H