2017-11-14 23:30:25 +01:00
|
|
|
#ifndef LAMBERTAZIMUTHAL_H
|
|
|
|
#define LAMBERTAZIMUTHAL_H
|
2017-11-14 22:17:59 +01:00
|
|
|
|
2018-01-25 00:19:11 +01:00
|
|
|
#include "ct.h"
|
2017-11-14 22:17:59 +01:00
|
|
|
|
2018-02-26 19:13:57 +01:00
|
|
|
class Ellipsoid;
|
|
|
|
|
2018-01-25 00:19:11 +01:00
|
|
|
class LambertAzimuthal : public CT
|
2017-11-14 22:17:59 +01:00
|
|
|
{
|
|
|
|
public:
|
2018-01-20 20:13:56 +01:00
|
|
|
LambertAzimuthal(const Ellipsoid *ellipsoid, double latitudeOrigin,
|
2017-11-14 22:17:59 +01:00
|
|
|
double longitudeOrigin, double falseEasting, double falseNorthing);
|
|
|
|
|
2018-01-25 00:19:11 +01:00
|
|
|
virtual CT *clone() const {return new LambertAzimuthal(*this);}
|
2020-04-21 23:26:35 +02:00
|
|
|
virtual bool operator==(const CT &ct) const;
|
2018-01-25 00:19:11 +01:00
|
|
|
|
2018-04-15 16:27:47 +02:00
|
|
|
virtual PointD ll2xy(const Coordinates &c) const;
|
|
|
|
virtual Coordinates xy2ll(const PointD &p) const;
|
2017-11-14 22:17:59 +01:00
|
|
|
|
|
|
|
private:
|
2018-02-22 00:46:05 +01:00
|
|
|
double _lon0;
|
2020-01-23 23:19:32 +01:00
|
|
|
double _fn, _fe;
|
|
|
|
double _a, _e, _es, _qP, _beta0, _rq, _d;
|
2017-11-14 22:17:59 +01:00
|
|
|
};
|
|
|
|
|
2017-11-14 23:30:25 +01:00
|
|
|
#endif // LAMBERTAZIMUTHAL_H
|