mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-03-28 09:18:26 +01:00
30 lines
587 B
C++
30 lines
587 B
C++
#ifndef LAMBERTCONIC_H
|
|
#define LAMBERTCONIC_H
|
|
|
|
#include "ellipsoid.h"
|
|
#include "projection.h"
|
|
|
|
class LambertConic : public Projection
|
|
{
|
|
public:
|
|
LambertConic(const Ellipsoid &ellipsoid, double standardParallel1,
|
|
double standardParallel2, double latitudeOrigin, double longitudeOrigin,
|
|
double scale, double falseEasting, double falseNorthing);
|
|
|
|
virtual QPointF ll2xy(const Coordinates &c) const;
|
|
virtual Coordinates xy2ll(const QPointF &p) const;
|
|
|
|
private:
|
|
Ellipsoid _e;
|
|
|
|
double _cm;
|
|
double _fe;
|
|
double _fn;
|
|
|
|
double _q0;
|
|
double _R0;
|
|
double _n;
|
|
};
|
|
|
|
#endif // LAMBERTCONIC_H
|