Changes: gps controller uses labels for fake gps
[ptas] / zouba / src / location.h
1 #ifndef LOCATION_H
2 #define LOCATION_H
3
4 #include "location_p.h"
5
6 #include <QString>
7 #include <QObject>
8 #include <QNetworkAccessManager>
9 #include <QNetworkReply>
10 #include <QGeoPositionInfo>
11 #include <math.h>
12
13 QTM_USE_NAMESPACE
14
15 class Location : public QObject
16 {
17 Q_OBJECT
18
19 public:
20   Location( const QString &x, const QString &y, const QString &label=QString() );
21   Location( const QGeoPositionInfo &positionInfo, const QString &label=QString() );
22   Location( const Location &from );
23   Location &operator=( const Location &from );
24   Location( const QString &label=QString() );
25
26   ~Location();
27
28   QString x() const;
29
30   QString y() const;
31
32   void setLocation( const QGeoPositionInfo &positionInfo );
33
34   void setAddress( const QString &address ) const;
35   QString address() const;
36
37   void setLabel( const QString &label ) const;
38   QString label() const;
39
40   bool isValid() const;
41
42 public Q_SLOTS:
43   void resolveAddress( const QString &address );
44
45 Q_SIGNALS:
46   void becomeValid();
47
48 private Q_SLOTS:
49   void replyFinished( QNetworkReply * reply );
50
51 private:
52
53   LocationPrivate *q;
54   QNetworkAccessManager *manager;
55
56   typedef uint KKJ;
57
58   /**
59    * Transformes WGS84 longitude/latitude coordinates to KKJ x/y coordinates.
60    * @param longitude the input longitude in degrees
61    * @param latitude the input latitude in degrees
62    * @param outX the result x (easting)
63    * @param outY the result y (northing)
64    */
65   void WGS84lola_to_KKJxy(double longitude, double latitude, KKJ *outX, KKJ *outY);
66
67   /**
68    * Transformes KKJ x/y coordinates to WGS84 longitude/latitude coordinates.
69    * @param x the input x (easting)
70    * @param y the input y (northing)
71    * @param outLongitude the result longitude in degrees
72    * @param outLatitude the result latitude in degrees
73    */
74   void KKJxy_to_WGS84lola(KKJ x, KKJ y, double *outLongitude, double *outLatitude);
75
76   // Degrees to radians
77   double radians(double deg);
78
79   // Radians to degrees
80   double degrees(double rad);
81
82   // Constants
83   // Longitude0 and Center meridian of KKJ bands
84   static const double KkjZoneInfo[][2];
85
86   // Function:  KKJ_Zone_I
87   int KKJ_Zone_I(KKJ easting);
88
89   // Function:  KKJ_Zone_Lo
90   int KKJ_Zone_Lo(double kkjlo);
91
92   // Function:  KKJlalo_to_WGS84lalo
93   void KKJlola_to_WGS84lola(double kkjlo, double kkjla, double *outLongitude, double *outLatitude);
94
95   // Function:  WGS84lalo_to_KKJlalo
96   void WGS84lola_to_KKJlola(double longitude, double latitude, double *outLongitude, double *outLatitude);
97
98   // Function:  KKJlalo_to_KKJxy
99   void KKJlola_to_KKJxy(double lon, double lat, int zoneNumber, KKJ *outX, KKJ *outY);
100
101   // Function:  KKJxy_to_KKJlalo
102   void KKJxy_to_KKJlola(KKJ x, KKJ y, double *outLongitude, double *outLatitude);
103
104 };
105
106 #endif // LOCATION_H