1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 06:43:22 +02:00

Compare commits

...

3 Commits

Author SHA1 Message Date
8b391fc871 Removed obsolete code 2024-06-07 19:30:05 +02:00
cb90523ef7 Added missing DEM rect adjustment 2024-06-07 19:29:13 +02:00
3d898bd482 Removed unnecessary list copying 2024-06-07 19:28:10 +02:00
4 changed files with 29 additions and 30 deletions

View File

@ -106,10 +106,6 @@ protected:
private:
struct Polys {
Polys() {}
Polys(const QList<Poly> &polygons, const QList<Poly> &lines)
: polygons(polygons), lines(lines) {}
QList<Poly> polygons;
QList<Poly> lines;
};

View File

@ -2,7 +2,7 @@
using namespace IMG;
static void copyPolys(const RectC &rect, QList<MapData::Poly> *src,
static void copyPolys(const RectC &rect, const QList<MapData::Poly> *src,
QList<MapData::Poly> *dst)
{
for (int i = 0; i < src->size(); i++)
@ -10,7 +10,7 @@ static void copyPolys(const RectC &rect, QList<MapData::Poly> *src,
dst->append(src->at(i));
}
static void copyPoints(const RectC &rect, QList<MapData::Point> *src,
static void copyPoints(const RectC &rect, const QList<MapData::Point> *src,
QList<MapData::Point> *dst)
{
for (int j = 0; j < src->size(); j++)
@ -152,7 +152,6 @@ void VectorTile::polys(const RectC &rect, const Zoom &zoom,
MapData::Polys *polys = cache->object(subdiv);
if (!polys) {
quint32 shift = _tre->shift(subdiv->bits());
QList<MapData::Poly> p, l;
if (!rgnHdl) {
rgnHdl = new SubFile::Handle(_rgn);
@ -163,14 +162,16 @@ void VectorTile::polys(const RectC &rect, const Zoom &zoom,
if (!subdiv->initialized() && !_rgn->subdivInit(*rgnHdl, subdiv))
continue;
polys = new MapData::Polys();
_rgn->polyObjects(*rgnHdl, subdiv, RGNFile::Polygon, _lbl, *lblHdl,
_net, *netHdl, &p);
_net, *netHdl, &polys->polygons);
_rgn->polyObjects(*rgnHdl, subdiv, RGNFile::Line, _lbl, *lblHdl,
_net, *netHdl, &l);
_net, *netHdl, &polys->lines);
_rgn->extPolyObjects(*rgnHdl, subdiv, shift, RGNFile::Polygon, _lbl,
*lblHdl, &p);
*lblHdl, &polys->polygons);
_rgn->extPolyObjects(*rgnHdl, subdiv, shift, RGNFile::Line, _lbl,
*lblHdl, &l);
*lblHdl, &polys->lines);
if (_net && _net->hasLinks()) {
if (!nodHdl)
@ -178,15 +179,16 @@ void VectorTile::polys(const RectC &rect, const Zoom &zoom,
if (!nodHdl2)
nodHdl2 = new SubFile::Handle(_nod);
_rgn->links(*rgnHdl, subdiv, shift, _net, *netHdl, _nod, *nodHdl,
*nodHdl2, _lbl, *lblHdl, &l);
*nodHdl2, _lbl, *lblHdl, &polys->lines);
}
copyPolys(rect, &p, polygons);
copyPolys(rect, &l, lines);
cache->insert(subdiv, new MapData::Polys(p, l));
copyPolys(rect, &polys->polygons, polygons);
copyPolys(rect, &polys->lines, lines);
cache->insert(subdiv, polys);
} else {
copyPolys(rect, &(polys->polygons), polygons);
copyPolys(rect, &(polys->lines), lines);
copyPolys(rect, &polys->polygons, polygons);
copyPolys(rect, &polys->lines, lines);
}
}
@ -226,8 +228,6 @@ void VectorTile::points(const RectC &rect, const Zoom &zoom,
QList<MapData::Point> *pl = cache->object(subdiv);
if (!pl) {
QList<MapData::Point> p;
if (!rgnHdl) {
rgnHdl = new SubFile::Handle(_rgn);
lblHdl = new SubFile::Handle(_lbl);
@ -236,14 +236,17 @@ void VectorTile::points(const RectC &rect, const Zoom &zoom,
if (!subdiv->initialized() && !_rgn->subdivInit(*rgnHdl, subdiv))
continue;
_rgn->pointObjects(*rgnHdl, subdiv, RGNFile::Point, _lbl, *lblHdl,
&p);
_rgn->pointObjects(*rgnHdl, subdiv, RGNFile::IndexedPoint, _lbl,
*lblHdl, &p);
_rgn->extPointObjects(*rgnHdl, subdiv, _lbl, *lblHdl, &p);
pl = new QList<MapData::Point>;
copyPoints(rect, &p, points);
cache->insert(subdiv, new QList<MapData::Point>(p));
_rgn->pointObjects(*rgnHdl, subdiv, RGNFile::Point, _lbl, *lblHdl,
pl);
_rgn->pointObjects(*rgnHdl, subdiv, RGNFile::IndexedPoint, _lbl,
*lblHdl, pl);
_rgn->extPointObjects(*rgnHdl, subdiv, _lbl, *lblHdl, pl);
copyPoints(rect, pl, points);
cache->insert(subdiv, pl);
} else
copyPoints(rect, pl, points);
}
@ -280,6 +283,7 @@ void VectorTile::elevations(const RectC &rect, const Zoom &zoom,
// the given zoom (we prefer rendering quality rather than speed). For
// maps with a single level this has no effect.
int level = qMax(0, _dem->level(zoom) - 1);
QList<const DEMTile*> tiles(_dem->tiles(rect, level));
for (int i = 0; i < tiles.size(); i++) {
const DEMTile *tile = tiles.at(i);

View File

@ -18,6 +18,7 @@ using namespace IMG;
#define EPSILON 1e-6
#define TILE_SIZE 384
#define DELTA 1e-3
static RectC limitBounds(const RectC &bounds, const Projection &proj)
{
@ -274,8 +275,8 @@ double IMGMap::elevation(const Coordinates &c)
if (d->hasDEM()) {
QList<MapData::Elevation> tiles;
d->elevations(RectC(Coordinates(c), Coordinates(c)), d->zooms().max(),
&tiles);
d->elevations(RectC(c, Coordinates(c.lon() + DELTA, c.lat() - DELTA)),
d->zooms().max(), &tiles);
DEMTree tree(tiles);
return tree.elevation(c);

View File

@ -13,8 +13,6 @@ using namespace Mapsforge;
#define PATHS_EXTENT 20
#define SEARCH_EXTENT -0.5
#define BLUR_RADIUS 3
static double LIMIT = cos(deg2rad(170));
static qreal area(const QPainterPath &polygon)