QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
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#include "qgsterraingenerator.h"
21
22class QgsRasterLayer;
23class QgsDemHeightMapGenerator;
24
25#include "qgsmaplayerref.h"
26
27#define SIP_NO_FILE
28
37{
38 Q_OBJECT
39
40 public:
45
47 ~QgsDemTerrainGenerator() override;
48
52 QgsRasterLayer *layer() const;
53
54 void setCrs( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context ) override;
55 QgsCoordinateReferenceSystem crs() const override { return mCrs; }
56
59 {
60 mResolution = resolution;
61 updateGenerator();
62 }
63
64 int resolution() const { return mResolution; }
65
67 void setSkirtHeight( float skirtHeight ) { mSkirtHeight = skirtHeight; }
69 float skirtHeight() const { return mSkirtHeight; }
70
72 QgsDemHeightMapGenerator *heightMapGenerator() { return mHeightMapGenerator; }
73
74 QgsTerrainGenerator *clone() const override SIP_FACTORY;
75 Type type() const override;
76 QgsRectangle rootChunkExtent() const override;
77 void setExtent( const QgsRectangle &extent ) override;
78 float heightAt( double x, double y, const Qgs3DRenderContext &context ) const override;
79
80 QgsChunkLoader *createChunkLoader( QgsChunkNode *node ) const override SIP_FACTORY;
81
82 private:
83 void updateGenerator();
84
85 QgsDemHeightMapGenerator *mHeightMapGenerator = nullptr;
86
88
89 QgsCoordinateTransformContext mTransformContext;
90
92 QPointer<QgsRasterLayer> mLayer;
94 int mResolution = 16;
96 float mSkirtHeight = 10.f;
97};
98
99
100#endif // QGSDEMTERRAINGENERATOR_H
Rendering context for preparation of 3D entities.
Represents a coordinate reference system (CRS).
Contains information about the context in which a coordinate transform is executed.
static QgsTerrainGenerator * create()
Creates a new instance of a QgsDemTerrainGenerator object.
int resolution() const
Returns resolution of the generator (how many elevation samples on one side of a terrain tile).
QgsRasterLayer * layer() const
Returns raster layer with elevation model to be used for terrain generation.
QgsCoordinateReferenceSystem crs() const override
Returns CRS of the terrain.
QgsDemHeightMapGenerator * heightMapGenerator()
Returns height map generator object - takes care of extraction of elevations from the layer).
void setLayer(QgsRasterLayer *layer)
Sets raster layer with elevation model to be used for terrain generation.
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
float skirtHeight() const
Returns skirt height (in world units). Skirts at the edges of terrain tiles help hide cracks between ...
Represents a raster layer.
A rectangle specified with double values.
Base class for generators of terrain.
virtual QgsTerrainGenerator * clone() const =0SIP_FACTORY
Makes a copy of the current instance.
virtual void setCrs(const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context)
Sets the CRS associated with the terrain.
#define SIP_FACTORY
Definition qgis_sip.h:84