Class: QgsProjectElevationProperties¶
Contains elevation properties for a QgsProject.
Added in version 3.26.
Class Hierarchy¶
Base classes¶
- class qgis.core.QgsProjectElevationProperties[source]¶
Bases:
QObject- __init__(parent: QObject | None = None)
Constructor for QgsProjectElevationProperties with the specified
parentobject.- Parameters:
parent (Optional[QObject] = None)
- signal changed[source]¶
pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL
types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.
- elevationFilterRangeSize(self) float[source]¶
Returns the fixed size for elevation range filtering in the project, used when interactively filtering by elevation.
Returns -1 if no fixed elevation range size is desired.
A fixed size forces the selected elevation range to have a matching difference between the upper and lower elevation.
See also
Added in version 3.38.
- Return type:
float
- elevationRange(self) QgsDoubleRange[source]¶
Returns the project’s elevation range, which indicates the upper and lower elevation limits associated with the project.
Note
This is a manual, use-set property, and does not necessarily coincide with the elevation ranges for individual layers in the project.
See also
See also
Added in version 3.38.
- Return type:
- signal elevationRangeChanged[source]¶
pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL
types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.
- invertElevationFilter(self) bool[source]¶
Returns
Trueif the elevation range filter slider should be inverted for this project.See also
Added in version 3.38.
- Return type:
bool
- readXml(self, element: QDomElement, context: QgsReadWriteContext) bool[source]¶
Reads the property state from a DOM
element.See also
- Parameters:
element (QDomElement)
context (QgsReadWriteContext)
- Return type:
bool
- resolveReferences(self, project: QgsProject | None)[source]¶
Resolves reference to layers from stored layer ID.
- Parameters:
project (Optional[QgsProject])
- setElevationFilterRangeSize(self, size: float)[source]¶
Sets the fixed size for elevation range filtering in the project, used when interactively filtering by elevation.
Set to -1 if no fixed elevation range size is desired.
A fixed size forces the selected elevation range to have a matching difference between the upper and lower elevation.
See also
Added in version 3.38.
- Parameters:
size (float)
- setElevationRange(self, range: QgsDoubleRange)[source]¶
Sets the project’s elevation
range, which indicates the upper and lower elevation limits associated with the project.Note
This is a manual, use-set property, and does not necessarily coincide with the elevation ranges for individual layers in the project.
See also
See also
Added in version 3.38.
- Parameters:
range (QgsDoubleRange)
- setInvertElevationFilter(self, invert: bool)[source]¶
Sets whether the elevation range filter slider should be inverted for this project.
See also
Added in version 3.38.
- Parameters:
invert (bool)
- setTerrainProvider(self, provider: QgsAbstractTerrainProvider | None)[source]¶
Sets the project’s terrain
provider.Ownership of
provideris transferred to this object.See also
- Parameters:
provider (Optional[QgsAbstractTerrainProvider])
- terrainProvider(self) QgsAbstractTerrainProvider | None[source]¶
Returns the project’s terrain provider.
See also
- Return type:
Optional[QgsAbstractTerrainProvider]
- writeXml(self, document: QDomDocument, context: QgsReadWriteContext) QDomElement[source]¶
Returns a DOM element representing the properties.
See also
- Parameters:
document (QDomDocument)
context (QgsReadWriteContext)
- Return type:
QDomElement