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:
@ -41,7 +41,7 @@ Defense.
|
||||
|
||||
*/
|
||||
|
||||
#include "ellipsoid.h"
|
||||
#include "map/ellipsoid.h"
|
||||
#include "albersequal.h"
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef ALBERSEQUAL_H
|
||||
#define ALBERSEQUAL_H
|
||||
|
||||
#include "ct.h"
|
||||
#include "map/ct.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ellipsoid.h"
|
||||
#include "map/ellipsoid.h"
|
||||
#include "krovak.h"
|
||||
|
||||
Krovak::Krovak(const Ellipsoid &ellipsoid, double standardParallel,
|
@ -1,7 +1,7 @@
|
||||
#ifndef KROVAK_H
|
||||
#define KROVAK_H
|
||||
|
||||
#include "ct.h"
|
||||
#include "map/ct.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <cmath>
|
||||
#include "ellipsoid.h"
|
||||
#include "map/ellipsoid.h"
|
||||
#include "lambertazimuthal.h"
|
||||
|
||||
#define sin2(x) (sin(x) * sin(x))
|
@ -1,7 +1,7 @@
|
||||
#ifndef LAMBERTAZIMUTHAL_H
|
||||
#define LAMBERTAZIMUTHAL_H
|
||||
|
||||
#include "ct.h"
|
||||
#include "map/ct.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
@ -42,7 +42,7 @@ Defense.
|
||||
*/
|
||||
|
||||
#include <cmath>
|
||||
#include "ellipsoid.h"
|
||||
#include "map/ellipsoid.h"
|
||||
#include "lambertconic.h"
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef LAMBERTCONIC_H
|
||||
#define LAMBERTCONIC_H
|
||||
|
||||
#include "ct.h"
|
||||
#include "map/ct.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
@ -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
|
||||
{
|
@ -41,7 +41,7 @@ Defense.
|
||||
|
||||
*/
|
||||
|
||||
#include "ellipsoid.h"
|
||||
#include "map/ellipsoid.h"
|
||||
#include "mercator.h"
|
||||
|
||||
Mercator::Mercator(const Ellipsoid &ellipsoid, double latitudeOrigin,
|
@ -1,7 +1,7 @@
|
||||
#ifndef MERCATOR_H
|
||||
#define MERCATOR_H
|
||||
|
||||
#include "ct.h"
|
||||
#include "map/ct.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ellipsoid.h"
|
||||
#include "map/ellipsoid.h"
|
||||
#include "obliquestereographic.h"
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef OBLIQUESTEREOGRAPHIC_H
|
||||
#define OBLIQUESTEREOGRAPHIC_H
|
||||
|
||||
#include "ct.h"
|
||||
#include "map/ct.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
@ -41,7 +41,7 @@ Defense.
|
||||
|
||||
*/
|
||||
|
||||
#include "ellipsoid.h"
|
||||
#include "map/ellipsoid.h"
|
||||
#include "polarstereographic.h"
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef POLARSTEREOGRAPHIC_H
|
||||
#define POLARSTEREOGRAPHIC_H
|
||||
|
||||
#include "ct.h"
|
||||
#include "map/ct.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
@ -41,7 +41,7 @@ Defense.
|
||||
|
||||
*/
|
||||
|
||||
#include "ellipsoid.h"
|
||||
#include "map/ellipsoid.h"
|
||||
#include "polyconic.h"
|
||||
|
||||
#define POLY_COEFF_TIMES_SIN(coeff, x, latit) \
|
@ -1,7 +1,7 @@
|
||||
#ifndef POLYCONIC_H
|
||||
#define POLYCONIC_H
|
||||
|
||||
#include "ct.h"
|
||||
#include "map/ct.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
@ -42,7 +42,7 @@ Defense.
|
||||
*/
|
||||
|
||||
#include <cmath>
|
||||
#include "ellipsoid.h"
|
||||
#include "map/ellipsoid.h"
|
||||
#include "transversemercator.h"
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef TRANSVERSEMERCATOR_H
|
||||
#define TRANSVERSEMERCATOR_H
|
||||
|
||||
#include "ct.h"
|
||||
#include "map/ct.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef WEBMERCATOR_H
|
||||
#define WEBMERCATOR_H
|
||||
|
||||
#include "ct.h"
|
||||
#include "map/ct.h"
|
||||
|
||||
class WebMercator : public CT
|
||||
{
|
@ -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"
|
||||
|
Reference in New Issue
Block a user