QGIS API Documentation  3.26.3-Buenos Aires (65e4edfdad)
qgsonlineterraingenerator.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsonlineterraingenerator.h
3  --------------------------------------
4  Date : March 2019
5  Copyright : (C) 2019 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 QGSONLINETERRAINGENERATOR_H
17 #define QGSONLINETERRAINGENERATOR_H
18 
19 #include "qgis_3d.h"
20 
21 #include "qgsterraingenerator.h"
22 
24 
25 class QgsDemHeightMapGenerator;
26 
27 #define SIP_NO_FILE
28 
38 {
39  Q_OBJECT
40  public:
43  ~QgsOnlineTerrainGenerator() override;
44 
46  void setCrs( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context );
48  QgsCoordinateReferenceSystem crs() const { return mCrs; }
49 
51  void setResolution( int resolution ) { mResolution = resolution; updateGenerator(); }
53  int resolution() const { return mResolution; }
54 
56  void setSkirtHeight( float skirtHeight ) { mSkirtHeight = skirtHeight; }
58  float skirtHeight() const { return mSkirtHeight; }
59 
61  QgsDemHeightMapGenerator *heightMapGenerator() { return mHeightMapGenerator.get(); }
62 
63  QgsTerrainGenerator *clone() const override SIP_FACTORY;
64  Type type() const override;
65  QgsRectangle extent() const override;
66  void setExtent( const QgsRectangle &extent ) override;
67  float heightAt( double x, double y, const Qgs3DMapSettings &map ) const override;
68  void writeXml( QDomElement &elem ) const override;
69  void readXml( const QDomElement &elem ) override;
70  //void resolveReferences( const QgsProject &project ) override;
71 
72  QgsChunkLoader *createChunkLoader( QgsChunkNode *node ) const override SIP_FACTORY;
73 
74  private:
75 
76  void updateGenerator();
77 
78  QgsRectangle mExtent;
80  QgsCoordinateTransformContext mTransformContext;
81 
83  int mResolution = 16;
85  float mSkirtHeight = 10.f;
86 
87  std::unique_ptr<QgsDemHeightMapGenerator> mHeightMapGenerator;
88 };
89 
90 #endif // QGSONLINETERRAINGENERATOR_H
QgsCoordinateTransformContext
Contains information about the context in which a coordinate transform is executed.
Definition: qgscoordinatetransformcontext.h:57
qgscoordinatetransformcontext.h
crs
const QgsCoordinateReferenceSystem & crs
Definition: qgswfsgetfeature.cpp:105
QgsOnlineTerrainGenerator::resolution
int resolution() const
Returns resolution of the generator (how many elevation samples on one side of a terrain tile)
Definition: qgsonlineterraingenerator.h:53
QgsRectangle
A rectangle specified with double values.
Definition: qgsrectangle.h:41
SIP_FACTORY
#define SIP_FACTORY
Definition: qgis_sip.h:76
QgsOnlineTerrainGenerator::crs
QgsCoordinateReferenceSystem crs() const
Returns CRS of the terrain.
Definition: qgsonlineterraingenerator.h:48
geos::unique_ptr
std::unique_ptr< GEOSGeometry, GeosDeleter > unique_ptr
Scoped GEOS pointer.
Definition: qgsgeos.h:79
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
QgsOnlineTerrainGenerator::heightMapGenerator
QgsDemHeightMapGenerator * heightMapGenerator()
Returns height map generator object - takes care of extraction of elevations from the layer)
Definition: qgsonlineterraingenerator.h:61
Qgs3DMapSettings
Definition of the world.
Definition: qgs3dmapsettings.h:57
QgsCoordinateReferenceSystem
This class represents a coordinate reference system (CRS).
Definition: qgscoordinatereferencesystem.h:211
QgsOnlineTerrainGenerator::setSkirtHeight
void setSkirtHeight(float skirtHeight)
Sets skirt height (in world units). Skirts at the edges of terrain tiles help hide cracks between adj...
Definition: qgsonlineterraingenerator.h:56
QgsOnlineTerrainGenerator::setResolution
void setResolution(int resolution)
Sets resolution of the generator (how many elevation samples on one side of a terrain tile)
Definition: qgsonlineterraingenerator.h:51
QgsOnlineTerrainGenerator
Implementation of terrain generator that uses online resources to download heightmaps.
Definition: qgsonlineterraingenerator.h:37
QgsOnlineTerrainGenerator::skirtHeight
float skirtHeight() const
Returns skirt height (in world units). Skirts at the edges of terrain tiles help hide cracks between ...
Definition: qgsonlineterraingenerator.h:58