QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
|
Go to the documentation of this file.
35 cloned->mExtent = mExtent;
36 cloned->mResolution = mResolution;
37 cloned->mSkirtHeight = mSkirtHeight;
38 cloned->updateGenerator();
55 if ( mHeightMapGenerator )
56 return mHeightMapGenerator->heightAt( x, y );
64 QDomElement elemExtent = elem.ownerDocument().createElement( QStringLiteral(
"extent" ) );
65 elemExtent.setAttribute( QStringLiteral(
"xmin" ), QString::number( r.
xMinimum() ) );
66 elemExtent.setAttribute( QStringLiteral(
"xmax" ), QString::number( r.
xMaximum() ) );
67 elemExtent.setAttribute( QStringLiteral(
"ymin" ), QString::number( r.
yMinimum() ) );
68 elemExtent.setAttribute( QStringLiteral(
"ymax" ), QString::number( r.
yMaximum() ) );
69 elem.appendChild( elemExtent );
71 elem.setAttribute( QStringLiteral(
"resolution" ), mResolution );
72 elem.setAttribute( QStringLiteral(
"skirt-height" ), mSkirtHeight );
79 mResolution = elem.attribute( QStringLiteral(
"resolution" ) ).toInt();
80 mSkirtHeight = elem.attribute( QStringLiteral(
"skirt-height" ) ).toFloat();
82 const QDomElement elemExtent = elem.firstChildElement( QStringLiteral(
"extent" ) );
83 const double xmin = elemExtent.attribute( QStringLiteral(
"xmin" ) ).toDouble();
84 const double xmax = elemExtent.attribute( QStringLiteral(
"xmax" ) ).toDouble();
85 const double ymin = elemExtent.attribute( QStringLiteral(
"ymin" ) ).toDouble();
86 const double ymax = elemExtent.attribute( QStringLiteral(
"ymax" ) ).toDouble();
96 mTransformContext = context;
111 void QgsOnlineTerrainGenerator::updateGenerator()
123 mHeightMapGenerator.reset(
new QgsDemHeightMapGenerator(
nullptr,
mTerrainTilingScheme, mResolution, mTransformContext ) );
Contains information about the context in which a coordinate transform is executed.
void extentChanged()
Emitted when the terrain extent has changed.
const QgsCoordinateReferenceSystem & crs
void setExtent(const QgsRectangle &extent) override
sets the extent of the terrain in terrain's CRS
double yMinimum() const SIP_HOLDGIL
Returns the y minimum value (bottom side of rectangle).
QgsTerrainGenerator * clone() const override SIP_FACTORY
Makes a copy of the current instance.
A rectangle specified with double values.
QgsCoordinateReferenceSystem crs() const
Returns CRS of the terrain.
double xMaximum() const SIP_HOLDGIL
Returns the x maximum value (right side of rectangle).
QgsTerrainEntity * mTerrain
QgsTilingScheme mTerrainTilingScheme
Tiling scheme of the terrain.
Base class for generators of terrain.
Type type() const override
What texture generator implementation is this.
void readXml(const QDomElement &elem) override
Read terrain generator's configuration from XML.
void setCrs(const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context)
Sets CRS of the terrain.
Type
Enumeration of the available terrain generators.
~QgsOnlineTerrainGenerator() override
double xMinimum() const SIP_HOLDGIL
Returns the x minimum value (left side of rectangle).
QgsChunkLoader * createChunkLoader(QgsChunkNode *node) const override SIP_FACTORY
QgsRectangle tileToExtent(int x, int y, int z) const
Returns map coordinates of the extent of a tile.
This class represents a coordinate reference system (CRS).
double yMaximum() const SIP_HOLDGIL
Returns the y maximum value (top side of rectangle).
void writeXml(QDomElement &elem) const override
Write terrain generator's configuration to XML.
@ Online
Terrain is built from downloaded tiles with digital elevation model.
Implementation of terrain generator that uses online resources to download heightmaps.
The class encapsulates tiling scheme (just like with WMTS / TMS / XYZ layers).
QgsOnlineTerrainGenerator()
Constructor for QgsOnlineTerrainGenerator.
float heightAt(double x, double y, const Qgs3DMapSettings &map) const override
Returns height at (x,y) in terrain's CRS.
QgsRectangle extent() const override
extent of the terrain in terrain's CRS
bool isNull() const
Test if the rectangle is null (all coordinates zero or after call to setMinimal()).
void setTerrain(QgsTerrainEntity *t)
Sets terrain entity for the generator (does not transfer ownership)