QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsdemterraingenerator.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsdemterraingenerator.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 QGSDEMTERRAINGENERATOR_H
17#define QGSDEMTERRAINGENERATOR_H
18
19#include "qgis_3d.h"
20
21#include "qgsterraingenerator.h"
22
23
24#include <memory>
25
26class QgsRasterLayer;
27class QgsDemHeightMapGenerator;
28
29#include "qgsmaplayerref.h"
30
31#define SIP_NO_FILE
32
41{
42 Q_OBJECT
43
44 public:
47 ~QgsDemTerrainGenerator() override;
48
50 void setLayer( QgsRasterLayer *layer );
52 QgsRasterLayer *layer() const;
53
55 void setCrs( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context );
56
58 void setResolution( int resolution ) { mResolution = resolution; updateGenerator(); }
60 int resolution() const { return mResolution; }
61
63 void setSkirtHeight( float skirtHeight ) { mSkirtHeight = skirtHeight; }
65 float skirtHeight() const { return mSkirtHeight; }
66
68 QgsDemHeightMapGenerator *heightMapGenerator() { return mHeightMapGenerator; }
69
70 QgsTerrainGenerator *clone() const override SIP_FACTORY;
71 Type type() const override;
72 QgsRectangle rootChunkExtent() const override;
73 void setExtent( const QgsRectangle &extent ) override;
74 float heightAt( double x, double y, const Qgs3DMapSettings &map ) const override;
75 void writeXml( QDomElement &elem ) const override;
76 void readXml( const QDomElement &elem ) override;
77 void resolveReferences( const QgsProject &project ) override;
78
79 QgsChunkLoader *createChunkLoader( QgsChunkNode *node ) const override SIP_FACTORY;
80
81 private:
82 void updateGenerator();
83
84 QgsDemHeightMapGenerator *mHeightMapGenerator = nullptr;
85
87
88 QgsCoordinateTransformContext mTransformContext;
89
91 QgsMapLayerRef mLayer;
93 int mResolution = 16;
95 float mSkirtHeight = 10.f;
96};
97
98
99#endif // QGSDEMTERRAINGENERATOR_H
This class represents a coordinate reference system (CRS).
Contains information about the context in which a coordinate transform is executed.
int resolution() const
Returns resolution of the generator (how many elevation samples on one side of a terrain tile)
QgsDemHeightMapGenerator * heightMapGenerator()
Returns height map generator object - takes care of extraction of elevations from the layer)
void setSkirtHeight(float skirtHeight)
Sets skirt height (in world units). Skirts at the edges of terrain tiles help hide cracks between adj...
void setResolution(int resolution)
Sets resolution of the generator (how many elevation samples on one side of a terrain tile)
QgsDemTerrainGenerator()=default
Constructor for QgsDemTerrainGenerator.
float skirtHeight() const
Returns skirt height (in world units). Skirts at the edges of terrain tiles help hide cracks between ...
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
Definition: qgsproject.h:107
Represents a raster layer.
A rectangle specified with double values.
Definition: qgsrectangle.h:42
virtual QgsTerrainGenerator * clone() const =0SIP_FACTORY
Makes a copy of the current instance.
#define SIP_FACTORY
Definition: qgis_sip.h:76
const QgsCoordinateReferenceSystem & crs