1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-27 11:39:16 +02:00

Project structure cleanup

This commit is contained in:
2021-09-17 23:45:12 +02:00
parent 499461ff76
commit 11c83b405f
23 changed files with 138 additions and 138 deletions

View File

@ -41,7 +41,7 @@ Defense.
*/
#include "ellipsoid.h"
#include "map/ellipsoid.h"
#include "albersequal.h"

View File

@ -1,7 +1,7 @@
#ifndef ALBERSEQUAL_H
#define ALBERSEQUAL_H
#include "ct.h"
#include "map/ct.h"
class Ellipsoid;

View File

@ -1,4 +1,4 @@
#include "ellipsoid.h"
#include "map/ellipsoid.h"
#include "krovak.h"
Krovak::Krovak(const Ellipsoid &ellipsoid, double standardParallel,

View File

@ -1,7 +1,7 @@
#ifndef KROVAK_H
#define KROVAK_H
#include "ct.h"
#include "map/ct.h"
class Ellipsoid;

View File

@ -1,5 +1,5 @@
#include <cmath>
#include "ellipsoid.h"
#include "map/ellipsoid.h"
#include "lambertazimuthal.h"
#define sin2(x) (sin(x) * sin(x))

View File

@ -1,7 +1,7 @@
#ifndef LAMBERTAZIMUTHAL_H
#define LAMBERTAZIMUTHAL_H
#include "ct.h"
#include "map/ct.h"
class Ellipsoid;

View File

@ -42,7 +42,7 @@ Defense.
*/
#include <cmath>
#include "ellipsoid.h"
#include "map/ellipsoid.h"
#include "lambertconic.h"

View File

@ -1,7 +1,7 @@
#ifndef LAMBERTCONIC_H
#define LAMBERTCONIC_H
#include "ct.h"
#include "map/ct.h"
class Ellipsoid;

View File

@ -1,8 +1,8 @@
#ifndef LATLON_H
#define LATLON_H
#include "ct.h"
#include "angularunits.h"
#include "map/ct.h"
#include "map/angularunits.h"
class LatLon : public CT
{

View File

@ -41,7 +41,7 @@ Defense.
*/
#include "ellipsoid.h"
#include "map/ellipsoid.h"
#include "mercator.h"
Mercator::Mercator(const Ellipsoid &ellipsoid, double latitudeOrigin,

View File

@ -1,7 +1,7 @@
#ifndef MERCATOR_H
#define MERCATOR_H
#include "ct.h"
#include "map/ct.h"
class Ellipsoid;

View File

@ -1,4 +1,4 @@
#include "ellipsoid.h"
#include "map/ellipsoid.h"
#include "obliquestereographic.h"

View File

@ -1,7 +1,7 @@
#ifndef OBLIQUESTEREOGRAPHIC_H
#define OBLIQUESTEREOGRAPHIC_H
#include "ct.h"
#include "map/ct.h"
class Ellipsoid;

View File

@ -41,7 +41,7 @@ Defense.
*/
#include "ellipsoid.h"
#include "map/ellipsoid.h"
#include "polarstereographic.h"

View File

@ -1,7 +1,7 @@
#ifndef POLARSTEREOGRAPHIC_H
#define POLARSTEREOGRAPHIC_H
#include "ct.h"
#include "map/ct.h"
class Ellipsoid;

View File

@ -41,7 +41,7 @@ Defense.
*/
#include "ellipsoid.h"
#include "map/ellipsoid.h"
#include "polyconic.h"
#define POLY_COEFF_TIMES_SIN(coeff, x, latit) \

View File

@ -1,7 +1,7 @@
#ifndef POLYCONIC_H
#define POLYCONIC_H
#include "ct.h"
#include "map/ct.h"
class Ellipsoid;

View File

@ -42,7 +42,7 @@ Defense.
*/
#include <cmath>
#include "ellipsoid.h"
#include "map/ellipsoid.h"
#include "transversemercator.h"

View File

@ -1,7 +1,7 @@
#ifndef TRANSVERSEMERCATOR_H
#define TRANSVERSEMERCATOR_H
#include "ct.h"
#include "map/ct.h"
class Ellipsoid;

View File

@ -1,7 +1,7 @@
#ifndef WEBMERCATOR_H
#define WEBMERCATOR_H
#include "ct.h"
#include "map/ct.h"
class WebMercator : public CT
{

View File

@ -1,15 +1,15 @@
#include "proj/mercator.h"
#include "proj/webmercator.h"
#include "proj/transversemercator.h"
#include "proj/lambertconic.h"
#include "proj/albersequal.h"
#include "proj/lambertazimuthal.h"
#include "proj/krovak.h"
#include "proj/polarstereographic.h"
#include "proj/obliquestereographic.h"
#include "proj/polyconic.h"
#include "proj/latlon.h"
#include "datum.h"
#include "mercator.h"
#include "webmercator.h"
#include "transversemercator.h"
#include "lambertconic.h"
#include "albersequal.h"
#include "lambertazimuthal.h"
#include "krovak.h"
#include "polarstereographic.h"
#include "obliquestereographic.h"
#include "polyconic.h"
#include "latlon.h"
#include "gcs.h"
#include "pcs.h"
#include "projection.h"