1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345 | /* ============================================================
*
* This file is a part of digiKam project
* https://www.digikam.org
*
* Date : 2023-05-15
* Description : geolocation engine based on Marble.
* (c) 2007-2022 Marble Team
* https://invent.kde.org/education/marble/-/raw/master/data/credits_authors.html
*
* SPDX-FileCopyrightText: 2023-2026 by Gilles Caulier <caulier dot gilles at gmail dot com>
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*
* ============================================================ */
#include "AbstractProjection.h"
#include "AbstractProjection_p.h"
// Qt includes
#include <QRegion>
#include <QPainterPath>
// Local includes
#include "GeoDataLineString.h"
#include "GeoDataLinearRing.h"
#include "GeoDataLatLonAltBox.h"
#include "ViewportParams.h"
#include "digikam_debug.h"
namespace Marble
{
AbstractProjection::AbstractProjection()
: d_ptr(new AbstractProjectionPrivate(this))
{
}
AbstractProjection::AbstractProjection(AbstractProjectionPrivate* dd)
: d_ptr(dd)
{
}
AbstractProjection::~AbstractProjection()
{
}
AbstractProjectionPrivate::AbstractProjectionPrivate(AbstractProjection* parent)
: m_maxLat (0),
m_minLat (0),
m_previousResolution(-1),
m_level (-1),
q_ptr (parent)
{
}
int AbstractProjectionPrivate::levelForResolution(qreal resolution) const
{
if (m_previousResolution == resolution)
{
return m_level;
}
m_previousResolution = resolution;
if (resolution < 0.0000005)
{
m_level = 17;
}
else if (resolution < 0.0000010)
{
m_level = 16;
}
else if (resolution < 0.0000020)
{
m_level = 15;
}
else if (resolution < 0.0000040)
{
m_level = 14;
}
else if (resolution < 0.0000080)
{
m_level = 13;
}
else if (resolution < 0.0000160)
{
m_level = 12;
}
else if (resolution < 0.0000320)
{
m_level = 11;
}
else if (resolution < 0.0000640)
{
m_level = 10;
}
else if (resolution < 0.0001280)
{
m_level = 9;
}
else if (resolution < 0.0002560)
{
m_level = 8;
}
else if (resolution < 0.0005120)
{
m_level = 7;
}
else if (resolution < 0.0010240)
{
m_level = 6;
}
else if (resolution < 0.0020480)
{
m_level = 5;
}
else if (resolution < 0.0040960)
{
m_level = 4;
}
else if (resolution < 0.0081920)
{
m_level = 3;
}
else if (resolution < 0.0163840)
{
m_level = 2;
}
else
{
m_level = 1;
}
return m_level;
}
qreal AbstractProjection::maxValidLat() const
{
return (+90.0 * DEG2RAD);
}
qreal AbstractProjection::maxLat() const
{
Q_D(const AbstractProjection);
return d->m_maxLat;
}
void AbstractProjection::setMaxLat(qreal maxLat)<--- Shadow argument
{
if (maxLat < maxValidLat())
{
qCDebug(DIGIKAM_GEOENGINE_LOG) << Q_FUNC_INFO
<< "Trying to set maxLat to a value "
"that is out of the valid range.";
return;
}
Q_D(AbstractProjection);
d->m_maxLat = maxLat;
}
qreal AbstractProjection::minValidLat() const
{
return (-90.0 * DEG2RAD);
}
qreal AbstractProjection::minLat() const
{
Q_D(const AbstractProjection);
return d->m_minLat;
}
void AbstractProjection::setMinLat(qreal minLat)<--- Shadow argument
{
if (minLat < minValidLat())
{
qCDebug(DIGIKAM_GEOENGINE_LOG) << Q_FUNC_INFO
<< "Trying to set minLat to a value "
"that is out of the valid range.";
return;
}
Q_D(AbstractProjection);
d->m_minLat = minLat;
}
bool AbstractProjection::repeatableX() const
{
return false;
}
bool AbstractProjection::traversablePoles() const
{
return false;
}
bool AbstractProjection::traversableDateLine() const
{
return false;
}
AbstractProjection::PreservationType AbstractProjection::preservationType() const
{
return NoPreservation;
}
bool AbstractProjection::isOrientedNormal() const
{
return true;
}
bool AbstractProjection::isClippedToSphere() const
{
return false;
}
qreal AbstractProjection::clippingRadius() const
{
return 0;
}
bool AbstractProjection::screenCoordinates(const qreal lon, const qreal lat,
const ViewportParams* viewport,
qreal& x, qreal& y) const
{
bool globeHidesPoint;
GeoDataCoordinates geopoint(lon, lat);
return screenCoordinates(geopoint, viewport, x, y, globeHidesPoint);
}
bool AbstractProjection::screenCoordinates(const GeoDataCoordinates& geopoint,
const ViewportParams* viewport,
qreal& x, qreal& y) const
{
bool globeHidesPoint;
return screenCoordinates(geopoint, viewport, x, y, globeHidesPoint);
}
GeoDataLatLonAltBox AbstractProjection::latLonAltBox(const QRect& screenRect,
const ViewportParams* viewport) const
{
// For the case where the whole viewport gets covered there is a
// pretty dirty and generic detection algorithm:
// Move along the screenborder and save the highest and lowest lon-lat values.
QRect projectedRect = mapRegion(viewport).boundingRect();
QRect mapRect = screenRect.intersected(projectedRect);
GeoDataLineString boundingLineString;
qreal lon, lat;
for (int x = mapRect.left() ; x < mapRect.right() ; x += latLonAltBoxSamplingRate)
{
if (geoCoordinates(x, mapRect.bottom(), viewport, lon, lat,
GeoDataCoordinates::Radian))
{
boundingLineString << GeoDataCoordinates(lon, lat);
}
if (geoCoordinates(x, mapRect.top(),
viewport, lon, lat, GeoDataCoordinates::Radian))
{
boundingLineString << GeoDataCoordinates(lon, lat);
}
}
if (geoCoordinates(mapRect.right(), mapRect.top(), viewport, lon, lat,
GeoDataCoordinates::Radian))
{
boundingLineString << GeoDataCoordinates(lon, lat);
}
if (geoCoordinates(mapRect.right(), mapRect.bottom(),
viewport, lon, lat, GeoDataCoordinates::Radian))
{
boundingLineString << GeoDataCoordinates(lon, lat);
}
for (int y = mapRect.bottom() ; y < mapRect.top() ; y += latLonAltBoxSamplingRate)
{
if (geoCoordinates(mapRect.left(), y, viewport, lon, lat,
GeoDataCoordinates::Radian))
{
boundingLineString << GeoDataCoordinates(lon, lat);
}
if (geoCoordinates(mapRect.right(), y,
viewport, lon, lat, GeoDataCoordinates::Radian))
{
boundingLineString << GeoDataCoordinates(lon, lat);
}
}
GeoDataLatLonAltBox latLonAltBox = boundingLineString.latLonAltBox();
// Now we need to check whether maxLat (e.g. the north pole) gets displayed
// inside the viewport.
// We need a point on the screen at maxLat that definitely gets displayed:
// FIXME: Some of the following code can be safely removed as soon as we properly handle
// GeoDataLinearRing::latLonAltBox().
qreal averageLongitude = (latLonAltBox.west() + latLonAltBox.east()) / 2.0;
GeoDataCoordinates maxLatPoint(averageLongitude, maxLat(), 0.0, GeoDataCoordinates::Radian);
GeoDataCoordinates minLatPoint(averageLongitude, minLat(), 0.0, GeoDataCoordinates::Radian);
qreal dummyX, dummyY; // not needed
if ((latLonAltBox.north() > maxLat()) ||
screenCoordinates(maxLatPoint, viewport, dummyX, dummyY))
{
latLonAltBox.setNorth(maxLat());
}
if ((latLonAltBox.north() < minLat()) ||
screenCoordinates(minLatPoint, viewport, dummyX, dummyY))
{
latLonAltBox.setSouth(minLat());
}
latLonAltBox.setMinAltitude(-100000000.0);
latLonAltBox.setMaxAltitude(100000000000000.0);
return latLonAltBox;
}
QRegion AbstractProjection::mapRegion(const ViewportParams* viewport) const
{
return QRegion(mapShape(viewport).toFillPolygon().toPolygon());
}
} // namespace Marble
|