QGIS API Documentation 3.41.0-Master (af5edcb665c)
Loading...
Searching...
No Matches
qgsdemterraintileloader_p.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsdemterraintileloader_p.h
3 --------------------------------------
4 Date : July 2017
5 Copyright : (C) 2017 by Martin Dobias
6 Email : wonder dot sk at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSDEMTERRAINTILELOADER_P_H
17#define QGSDEMTERRAINTILELOADER_P_H
18
20
21//
22// W A R N I N G
23// -------------
24//
25// This file is not part of the QGIS API. It exists purely as an
26// implementation detail. This header file may change from version to
27// version without notice, or even be removed.
28//
29
30#define SIP_NO_FILE
31
32#include <QtConcurrent/QtConcurrentRun>
33#include <QFutureWatcher>
34#include <QElapsedTimer>
35#include <QMutex>
36
37#include "qgschunknode.h"
39#include "qgsrectangle.h"
41#include "qgstilingscheme.h"
42
44class QgsRasterLayer;
47
52class QgsDemTerrainTileLoader : public QgsTerrainTileLoader
53{
54 Q_OBJECT
55 public:
57 QgsDemTerrainTileLoader( QgsTerrainEntity *terrain, QgsChunkNode *node, QgsTerrainGenerator *terrainGenerator );
58
59 Qt3DCore::QEntity *createEntity( Qt3DCore::QEntity *parent ) override;
60
61 private slots:
62 void onHeightMapReady( int jobId, const QByteArray &heightMap );
63
64 private:
65 int mHeightMapJobId;
66 QByteArray mHeightMap;
67 int mResolution;
68 float mSkirtHeight;
69};
70
71
73
78class QgsDemHeightMapGenerator : public QObject
79{
80 Q_OBJECT
81 public:
86 QgsDemHeightMapGenerator( QgsRasterLayer *dtm, const QgsTilingScheme &tilingScheme, int resolution, const QgsCoordinateTransformContext &transformContext );
87 ~QgsDemHeightMapGenerator() override;
88
90 int render( const QgsChunkNodeId &nodeId );
91
93 void waitForFinished();
94
96 int resolution() const { return mResolution; }
97
99 float heightAt( double x, double y );
100
101 signals:
103 void heightMapReady( int jobId, const QByteArray &heightMap );
104
105 private slots:
106 void onFutureFinished();
107
108 private:
110 const QgsRectangle mDtmExtent;
111
113 QgsRasterDataProvider *mClonedProvider = nullptr;
114
115 QgsTilingScheme mTilingScheme;
116
117 int mResolution;
118
119 int mLastJobId;
120
121 std::unique_ptr<QgsTerrainDownloader> mDownloader;
122
123 struct JobData
124 {
125 int jobId;
126 QgsChunkNodeId tileId;
127 QgsRectangle extent;
128 QFuture<QByteArray> future;
129 QElapsedTimer timer;
130 };
131
132 QHash<QFutureWatcher<QByteArray> *, JobData> mJobs;
133
134 void lazyLoadDtmCoarseData( int res, const QgsRectangle &rect );
135 mutable QMutex mLazyLoadDtmCoarseDataMutex;
137 QByteArray mDtmCoarseData;
138
139 QgsCoordinateTransformContext mTransformContext;
140};
141
143
144#endif // QGSDEMTERRAINTILELOADER_P_H
Contains information about the context in which a coordinate transform is executed.
Base class for raster data providers.
Represents a raster layer.
A rectangle specified with double values.