QGIS API Documentation  3.26.3-Buenos Aires (65e4edfdad)
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 
26 class QgsRasterLayer;
27 class QgsDemHeightMapGenerator;
28 
29 #include "qgsmaplayerref.h"
30 
31 #define SIP_NO_FILE
32 
42 {
43  Q_OBJECT
44 
45  public:
47  QgsDemTerrainGenerator() = default;
48  ~QgsDemTerrainGenerator() override;
49 
51  void setLayer( QgsRasterLayer *layer );
53  QgsRasterLayer *layer() const;
54 
56  void setCrs( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context );
57 
59  void setResolution( int resolution ) { mResolution = resolution; updateGenerator(); }
61  int resolution() const { return mResolution; }
62 
64  void setSkirtHeight( float skirtHeight ) { mSkirtHeight = skirtHeight; }
66  float skirtHeight() const { return mSkirtHeight; }
67 
69  QgsDemHeightMapGenerator *heightMapGenerator() { return mHeightMapGenerator; }
70 
71  QgsTerrainGenerator *clone() const override SIP_FACTORY;
72  Type type() const override;
73  QgsRectangle extent() const 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
QgsCoordinateTransformContext
Contains information about the context in which a coordinate transform is executed.
Definition: qgscoordinatetransformcontext.h:57
QgsDemTerrainGenerator::setResolution
void setResolution(int resolution)
Sets resolution of the generator (how many elevation samples on one side of a terrain tile)
Definition: qgsdemterraingenerator.h:59
QgsDemTerrainGenerator::skirtHeight
float skirtHeight() const
Returns skirt height (in world units). Skirts at the edges of terrain tiles help hide cracks between ...
Definition: qgsdemterraingenerator.h:66
crs
const QgsCoordinateReferenceSystem & crs
Definition: qgswfsgetfeature.cpp:105
QgsRectangle
A rectangle specified with double values.
Definition: qgsrectangle.h:41
QgsProject
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
Definition: qgsproject.h:103
SIP_FACTORY
#define SIP_FACTORY
Definition: qgis_sip.h:76
QgsDemTerrainGenerator::heightMapGenerator
QgsDemHeightMapGenerator * heightMapGenerator()
Returns height map generator object - takes care of extraction of elevations from the layer)
Definition: qgsdemterraingenerator.h:69
QgsTerrainGenerator
Base class for generators of terrain.
Definition: qgsterraingenerator.h:49
QgsTerrainGenerator::clone
virtual QgsTerrainGenerator * clone() const =0SIP_FACTORY
Makes a copy of the current instance.
qgsterraingenerator.h
Qgs3DMapSettings
Definition of the world.
Definition: qgs3dmapsettings.h:57
QgsRasterLayer
Represents a raster layer.
Definition: qgsrasterlayer.h:76
QgsCoordinateReferenceSystem
This class represents a coordinate reference system (CRS).
Definition: qgscoordinatereferencesystem.h:211
QgsDemTerrainGenerator
Implementation of terrain generator that uses a raster layer with DEM to build terrain.
Definition: qgsdemterraingenerator.h:41
qgsmaplayerref.h
QgsDemTerrainGenerator::setSkirtHeight
void setSkirtHeight(float skirtHeight)
Sets skirt height (in world units). Skirts at the edges of terrain tiles help hide cracks between adj...
Definition: qgsdemterraingenerator.h:64
_LayerRef< QgsMapLayer >
QgsDemTerrainGenerator::resolution
int resolution() const
Returns resolution of the generator (how many elevation samples on one side of a terrain tile)
Definition: qgsdemterraingenerator.h:61