1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/map/projection.cpp

130 lines
3.1 KiB
C++
Raw Normal View History

2018-01-08 23:47:45 +01:00
#include "datum.h"
2017-11-26 18:54:03 +01:00
#include "mercator.h"
#include "transversemercator.h"
#include "lambertconic.h"
#include "albersequal.h"
#include "lambertazimuthal.h"
#include "latlon.h"
#include "gcs.h"
2018-01-08 23:47:45 +01:00
#include "projection.h"
2017-11-26 18:54:03 +01:00
2018-01-08 23:47:45 +01:00
Projection::Method::Method(int id)
2017-11-26 18:54:03 +01:00
{
2018-01-08 23:47:45 +01:00
switch (id) {
case 1024:
case 9801:
case 9802:
case 9807:
case 9815:
2018-01-08 23:47:45 +01:00
case 9820:
case 9822:
case 9841:
_id = id;
break;
default:
_id = 0;
2017-11-26 18:54:03 +01:00
}
2018-01-08 23:47:45 +01:00
}
Projection::Projection(const GCS *gcs, const Method &method, const Setup &setup,
const LinearUnits &units) : _gcs(gcs), _units(units), _geographic(false)
2018-01-08 23:47:45 +01:00
{
const Ellipsoid *ellipsoid = _gcs->datum().ellipsoid();
2017-11-26 18:54:03 +01:00
2018-01-08 23:47:45 +01:00
switch (method.id()) {
case 1024:
case 9841:
_ct = new Mercator();
break;
case 9801:
case 9815: // Oblique mercator aproximation using LCC1
_ct = new LambertConic1(ellipsoid, setup.latitudeOrigin(),
setup.longitudeOrigin(), setup.scale(), setup.falseEasting(),
setup.falseNorthing());
break;
2018-01-08 23:47:45 +01:00
case 9802:
_ct = new LambertConic2(ellipsoid, setup.standardParallel1(),
2018-01-08 23:47:45 +01:00
setup.standardParallel2(), setup.latitudeOrigin(),
setup.longitudeOrigin(), setup.falseEasting(),
setup.falseNorthing());
break;
case 9807:
_ct = new TransverseMercator(ellipsoid, setup.latitudeOrigin(),
2018-01-08 23:47:45 +01:00
setup.longitudeOrigin(), setup.scale(), setup.falseEasting(),
setup.falseNorthing());
break;
2018-01-08 23:47:45 +01:00
case 9820:
_ct = new LambertAzimuthal(ellipsoid, setup.latitudeOrigin(),
2018-01-08 23:47:45 +01:00
setup.longitudeOrigin(), setup.falseEasting(),
setup.falseNorthing());
break;
2018-01-08 23:47:45 +01:00
case 9822:
_ct = new AlbersEqual(ellipsoid, setup.standardParallel1(),
2018-01-08 23:47:45 +01:00
setup.standardParallel2(), setup.latitudeOrigin(),
setup.longitudeOrigin(), setup.falseEasting(),
setup.falseNorthing());
break;
2018-01-08 23:47:45 +01:00
default:
_ct = 0;
2017-11-26 18:54:03 +01:00
}
}
Projection::Projection(const GCS *gcs) : _gcs(gcs), _geographic(true)
{
_ct = new LatLon(gcs->angularUnits());
_units = LinearUnits(9001);
}
Projection::Projection(const Projection &p)
{
_gcs = p._gcs;
_units = p._units;
2018-03-11 09:24:04 +01:00
_ct = p._ct ? p._ct->clone() : 0;
_geographic = p._geographic;
}
Projection::~Projection()
{
delete _ct;
}
Projection &Projection::operator=(const Projection &p)
{
_gcs = p._gcs;
_units = p._units;
2018-03-11 09:24:04 +01:00
_ct = p._ct ? p._ct->clone() : 0;
_geographic = p._geographic;
return *this;
}
QPointF Projection::ll2xy(const Coordinates &c) const
{
2018-03-11 09:24:04 +01:00
return isValid()
? _units.fromMeters(_ct->ll2xy(_gcs->fromWGS84(c))) : QPointF();
}
Coordinates Projection::xy2ll(const QPointF &p) const
{
2018-03-11 09:24:04 +01:00
return isValid()
? _gcs->toWGS84(_ct->xy2ll(_units.toMeters(p))) : Coordinates();
}
#ifndef QT_NO_DEBUG
2018-01-08 23:47:45 +01:00
QDebug operator<<(QDebug dbg, const Projection::Setup &setup)
{
dbg.nospace() << "Setup(" << setup.latitudeOrigin() << ", "
<< setup.longitudeOrigin() << ", " << setup.scale() << ", "
<< setup.falseEasting() << ", " << setup.falseNorthing() << ", "
<< setup.standardParallel1() << ", " << setup.standardParallel2() << ")";
2018-01-21 11:19:46 +01:00
return dbg.space();
2018-01-08 23:47:45 +01:00
}
QDebug operator<<(QDebug dbg, const Projection::Method &method)
2017-11-26 18:54:03 +01:00
{
2018-01-08 23:47:45 +01:00
dbg.nospace() << "Method(" << method.id() << ")";
2018-01-21 11:19:46 +01:00
return dbg.space();
2017-11-26 18:54:03 +01:00
}
#endif // QT_NO_DEBUG