Added dialogs to change home and work locations.
[ptas] / zouba / location.cpp
1 #include "location.h"
2
3 #include "location_p.h"
4
5 #include "ytv.h"
6
7 #include <QString>
8 #include <QObject>
9 #include <QNetworkAccessManager>
10 #include <QUrl>
11 #include <QNetworkRequest>
12 #include <QNetworkReply>
13 #include <QXmlStreamReader>
14 #include <QDebug>
15 #include <QXmlStreamAttributes>
16 #include <QStringRef>
17 #include <QGeoPositionInfo>
18
19 #include <math.h>
20
21 const double Location::KkjZoneInfo[6][2] = {
22   {18.0,  500000.0},
23   {21.0, 1500000.0},
24   {24.0, 2500000.0},
25   {27.0, 3500000.0},
26   {30.0, 4500000.0},
27   {33.0, 5500000.0}
28 };
29
30 QTM_USE_NAMESPACE
31
32 Location::Location( const QString &x, const QString &y, const QString &label ) :
33   q( new LocationPrivate( x, y, label ) ),
34   manager( new QNetworkAccessManager(this) )
35 {
36   connect(
37       manager, SIGNAL( finished(QNetworkReply*) ),
38       this, SLOT( replyFinished(QNetworkReply*) )
39       );
40 }
41
42 Location::Location( const QGeoPositionInfo &positionInfo, const QString &label ) :
43   q( new LocationPrivate( label ) ),
44   manager(0)
45 {
46   qreal latitude = positionInfo.coordinate().latitude();
47   qreal longitude = positionInfo.coordinate().longitude();
48
49   KKJ outX(0);
50   KKJ outY(0);
51
52   WGS84lola_to_KKJxy( longitude, latitude, &outX, &outY);
53
54   q->setX( outX );
55   q->setY( outY );
56   q->setValid( true );
57 }
58
59 Location::Location( const Location &from ) :
60   QObject(0),
61   q( new LocationPrivate( from.label() ) ),
62   manager(0)
63 {
64   q->setAddress( from.address() );
65   q->setX( from.x() );
66   q->setY( from.y() );
67   q->setValid( from.isValid() );
68   if ( from.manager != 0 ) {
69     manager = new QNetworkAccessManager(this);
70     connect( manager, SIGNAL( finished(QNetworkReply*) ), this, SLOT( replyFinished(QNetworkReply*) ) );
71   }
72 }
73
74 Location::Location( const QString &label ) :
75   q( new LocationPrivate( label ) ),
76   manager( new QNetworkAccessManager(this) )
77 {
78   connect( manager, SIGNAL( finished(QNetworkReply*) ), this, SLOT( replyFinished(QNetworkReply*) ) );
79 }
80
81 Location::~Location()
82 {
83   delete q;
84   q=0;
85   delete manager;
86   manager=0;
87 }
88
89 Location &Location::operator=( const Location &from )
90 {
91   q = new LocationPrivate( from.label() );
92   q->setAddress( from.address() );
93   q->setX( from.x() );
94   q->setY( from.y() );
95   q->setValid( from.isValid() );
96   if ( from.manager != 0 ) {
97     manager = new QNetworkAccessManager(this);
98     connect( manager, SIGNAL( finished(QNetworkReply*) ), this, SLOT( replyFinished(QNetworkReply*) ) );
99   } else {
100     manager = 0;
101   }
102   
103   return *this;
104 }
105
106 void Location::resolveAddress( const QString &address )
107 {
108   qDebug() << "resolving address";
109   qDebug() << address;
110
111   q->setAddress( address );
112
113   QUrl fullUrl( Ytv::Url );
114
115   fullUrl.addEncodedQueryItem( "key", address.toAscii().toPercentEncoding() );
116   fullUrl.addQueryItem( "user", Ytv::Username );
117   fullUrl.addQueryItem( "pass", Ytv::Password );
118
119   manager->get( QNetworkRequest( fullUrl ) );
120   qDebug() << "waiting for reply from Ytv";
121 }
122
123 void Location::replyFinished( QNetworkReply * reply )
124 {
125   qDebug() << "address resolved";
126   q->parseReply( reply->readAll() );
127
128   if ( isValid() ) {
129     emit( becomeValid() );
130   }
131 }
132
133 QString Location::x() const
134 {
135   return q->x();
136 }
137
138 QString Location::y() const
139 {
140   return q->y();
141 }
142
143 void Location::setLabel( const QString &label ) const
144 {
145   q->setLabel( label );
146 }
147
148 QString Location::label() const
149 {
150   return q->label();
151 }
152
153 void Location::setAddress( const QString &address ) const
154 {
155   q->setAddress( address );
156 }
157
158 QString Location::address() const
159 {
160   return q->address();
161 }
162
163 bool Location::isValid() const
164 {
165   return q->isValid();
166 }
167
168
169 // Degrees to radians
170 double Location::radians(double deg)
171 {
172   return deg * M_PI / 180.0;
173 }
174
175 // Radians to degrees
176 double Location::degrees(double rad)
177 {
178   return rad * 180.0 / M_PI;
179 }
180
181 // Function:  KKJ_Zone_I
182 int Location::KKJ_Zone_I(KKJ easting)
183 {
184   int zoneNumber = floor(easting / 1000000.0);
185   if (zoneNumber < 0 || zoneNumber > 5) {
186     zoneNumber = -1;
187   }
188
189   return zoneNumber;
190 }
191
192 // Function:  KKJ_Zone_Lo
193 int Location::KKJ_Zone_Lo(double kkjlo)
194 {
195   // determine the zonenumber from KKJ easting
196   // takes KKJ zone which has center meridian
197   // longitude nearest (in math value) to
198   // the given KKJ longitude
199   int zoneNumber = 5;
200   while (zoneNumber >= 0) {
201     if (fabs(kkjlo - KkjZoneInfo[zoneNumber][0]) <= 1.5) {
202       break;
203     }
204     zoneNumber--;
205   }
206
207   return zoneNumber;
208 }
209
210
211 // Function:  KKJlalo_to_WGS84lalo
212 void Location::KKJlola_to_WGS84lola(double kkjlo, double kkjla, double *outLongitude, double *outLatitude)
213 {
214   double dLa = radians(0.124867E+01 + -0.269982E+00 * kkjla + 0.191330E+00 * kkjlo + 0.356119E-02 * kkjla * kkjla + -0.122312E-02 * kkjla * kkjlo + -0.335514E-03 * kkjlo * kkjlo) / 3600.0;
215   double dLo = radians(-0.286111E+02 + 0.114183E+01 * kkjla + -0.581428E+00 * kkjlo + -0.152421E-01 * kkjla * kkjla + 0.118177E-01 * kkjla * kkjlo + 0.826646E-03 * kkjlo * kkjlo) / 3600.0;
216
217   *outLatitude = degrees(radians(kkjla) + dLa);
218   *outLongitude = degrees(radians(kkjlo) + dLo);
219 }
220
221
222 // Function:  WGS84lalo_to_KKJlalo
223 void Location::WGS84lola_to_KKJlola(double longitude, double latitude, double *outLongitude, double *outLatitude) 
224 {
225   double dLa = radians(-0.124766E+01 + 0.269941E+00 * latitude + -0.191342E+00 * longitude + -0.356086E-02 * latitude * latitude + 0.122353E-02 * latitude * longitude + 0.335456E-03 * longitude * longitude) / 3600.0;
226   double dLo = radians(0.286008E+02 + -0.114139E+01 * latitude + 0.581329E+00 * longitude + 0.152376E-01 * latitude * latitude + -0.118166E-01 * latitude * longitude + -0.826201E-03 * longitude * longitude) / 3600.0;
227
228   *outLatitude = degrees(radians(latitude) + dLa);
229   *outLongitude = degrees(radians(longitude) + dLo);
230 }
231
232
233 // Function:  KKJlalo_to_KKJxy
234 void Location::KKJlola_to_KKJxy(double lon, double lat, int zoneNumber, KKJ *outX, KKJ *outY) 
235 {
236   // Hayford ellipsoid
237   double a = 6378388.0;
238   double f  = 1.0 / 297.0;
239   double b  = (1.0 - f) * a;
240   double bb = b * b;
241   double c  = (a / b) * a;
242   double ee = (a * a - bb) / bb;
243   double n = (a - b) / (a + b);
244   double nn = n * n;
245
246   double Lo = radians(lon) - radians(KkjZoneInfo[zoneNumber][0]);
247   double cosLa = cos(radians(lat));
248   double NN = ee * cosLa * cosLa;
249   double LaF = atan(tan(radians(lat)) / cos(Lo * sqrt(1.0 + NN)));
250   double cosLaF = cos(LaF);
251   double t = (tan(Lo) * cosLaF) / sqrt(1.0 + ee * cosLaF * cosLaF);
252   double A = a / (1.0 + n);
253   double A1 = A * (1.0 + nn / 4.0 + nn * nn / 64.0);
254   double A2 = A * 1.5 * n * (1.0 - nn / 8.0);
255   double A3 = A * 0.9375 * nn * (1.0 - nn / 4.0);
256   double A4 = A * 35.0 / 48.0 * nn * n;
257
258   *outY = A1 * LaF - A2 * sin(2.0 * LaF) + A3 * sin(4.0 * LaF) - A4 * sin(6.0 * LaF);
259   *outX = c * log(t + sqrt(1.0 + t * t)) + 500000.0 + zoneNumber * 1000000.0;
260 }
261
262 // Function:  KKJxy_to_KKJlalo
263 void Location::KKJxy_to_KKJlola(KKJ x, KKJ y, double *outLongitude, double *outLatitude)
264 {
265   // Scan iteratively the target area, until find matching
266   // KKJ coordinate value.  Area is defined with Hayford Ellipsoid.
267   int zoneNumber = KKJ_Zone_I(x);
268   double minLo = radians(18.5);
269   double maxLo = radians(32.0);
270   double minLa = radians(59.0);
271   double maxLa = radians(70.5);
272
273   int i = 1;
274   KKJ tmpX, tmpY;
275
276   while (i < 35) {
277     double deltaLo = maxLo - minLo;
278     double deltaLa = maxLa - minLa;
279     *outLongitude = degrees(minLo + 0.5 * deltaLo);
280     *outLatitude = degrees(minLa + 0.5 * deltaLa);
281     KKJlola_to_KKJxy(*outLongitude, *outLatitude, zoneNumber, &tmpX, &tmpY);
282     if (tmpY < y) {
283       minLa = minLa + 0.45 * deltaLa;
284     } else {
285       maxLa = minLa + 0.55 * deltaLa;
286     }
287
288     if (tmpX < x) {
289       minLo = minLo + 0.45 * deltaLo;
290     } else {
291       maxLo = minLo + 0.55 * deltaLo;
292     }
293
294     i++;
295   }
296 }
297
298 void Location::WGS84lola_to_KKJxy(double longitude, double latitude, KKJ *outX, KKJ *outY)
299 {
300   double kkjlo, kkjla;
301
302   WGS84lola_to_KKJlola(longitude, latitude, &kkjlo, &kkjla);
303   int zoneNumber = KKJ_Zone_Lo(kkjlo);
304   KKJlola_to_KKJxy(kkjlo, kkjla, zoneNumber, outX, outY);
305 }
306
307 void Location::KKJxy_to_WGS84lola(KKJ x, KKJ y, double *outLongitude, double *outLatitude)
308 {
309   double kkjlo, kkjla;
310
311   KKJxy_to_KKJlola(x, y, &kkjlo, &kkjla);
312   KKJlola_to_WGS84lola(kkjlo, kkjla, outLongitude, outLatitude);
313
314 }
315