1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-25 04:05:53 +01:00
GPXSee/src/map/map.cpp

74 lines
1.5 KiB
C++
Raw Normal View History

#include <cmath>
#include <QLineF>
#include "map.h"
#define SAMPLES 100
#define DELTA 1e-6
2023-05-06 21:53:40 +02:00
static void growLeft(const Coordinates &c, RectC &rect)
{
if (c.lon() < rect.left())
rect.setLeft(c.lon());
}
2023-05-06 21:53:40 +02:00
static void growRight(const Coordinates &c, RectC &rect)
{
if (c.lon() > rect.right())
rect.setRight(c.lon());
}
2023-05-06 21:53:40 +02:00
static void growTop(const Coordinates &c, RectC &rect)
{
if (c.lat() > rect.top())
rect.setTop(c.lat());
}
2023-05-06 21:53:40 +02:00
static void growBottom(const Coordinates &c, RectC &rect)
{
if (c.lat() < rect.bottom())
rect.setBottom(c.lat());
}
RectC Map::llBounds()
{
QRectF b(bounds());
double dx = b.width() / SAMPLES;
double dy = b.height() / SAMPLES;
Coordinates tl(xy2ll(b.topLeft()));
Coordinates br(xy2ll(b.bottomRight()));
RectC rect(tl, br);
for (int i = 0; i <= SAMPLES; i++) {
double x = b.left() + i * dx;
2023-05-06 21:53:40 +02:00
growBottom(xy2ll(QPointF(x, b.bottom())), rect);
growTop(xy2ll(QPointF(x, b.top())), rect);
}
for (int i = 0; i <= SAMPLES; i++) {
double y = b.top() + i * dy;
2023-05-06 21:53:40 +02:00
growLeft(xy2ll(QPointF(b.left(), y)), rect);
growRight(xy2ll(QPointF(b.right(), y)), rect);
}
if (rect.right() <= -180.0 + DELTA)
rect.setRight(180.0);
if (rect.left() >= 180.0 - DELTA)
rect.setLeft(-180.0);
return rect;
}
qreal Map::resolution(const QRectF &rect)
{
qreal cy = rect.center().y();
QPointF cl(rect.left(), cy);
QPointF cr(rect.right(), cy);
qreal ds = xy2ll(cl).distanceTo(xy2ll(cr));
qreal ps = QLineF(cl, cr).length();
return ds/ps;
}