Class: QgsProject¶
Encapsulates a QGIS project, including sets of map layers and their styles, layouts, annotations, canvases, etc.
QgsProject is available both as a singleton
(QgsProject.instance()) and for use as standalone objects.
The QGIS project singleton always gives access to the canonical project
reference open within the main QGIS application.
Note
QgsProject has two general kinds of state to make persistent. (I.e., to read and
write.) First, QGIS proprietary information. Second plugin information.
Class Hierarchy¶
Base classes¶
Abstract interface for generating an expression context. |
|
Abstract interface for generating an expression context scope. |
|
An interface for objects which can translate project strings. |
- class qgis.core.QgsProject[source]¶
Bases:
QObject,QgsExpressionContextGenerator,QgsExpressionContextScopeGenerator,QgsProjectTranslator- __init__(parent: QObject | None = None, capabilities: Qgis.ProjectCapabilities | Qgis.ProjectCapability = Qgis.ProjectCapability.ProjectStyles)
Create a new QgsProject.
Most of the time you want to use
QgsProject.instance()instead as many components of QGIS work with the singleton.Since QGIS 3.26.1 the
capabilitiesargument specifies optional capabilities which can be selectively enabled for the project. These affect the QgsProject object for its entire lifetime.- Parameters:
parent (Optional[QObject] = None)
capabilities (Union[Qgis.ProjectCapabilities, Qgis.ProjectCapability] = Qgis.ProjectCapability.ProjectStyles)
- class AvoidIntersectionsMode(*values)¶
Bases:
IntEnumFlags which control how intersections of pre-existing feature are handled when digitizing new features.
Note
Prior to QGIS 3.26 this was available as
QgsProject.AvoidIntersectionsModeAdded in version 3.26.
AllowIntersections: Overlap with any feature allowed when digitizing new featuresAvoidIntersectionsCurrentLayer: Overlap with features from the active layer when digitizing new features not allowedAvoidIntersectionsLayers: Overlap with features from a specified list of layers when digitizing new features not allowed
- class DataDefinedServerProperty(*values)¶
Bases:
IntEnumData defined properties. Overrides of user defined server parameters are stored in a property collection and they can be retrieved using the indexes specified in this enum.
Added in version 3.14.
NoProperty: No propertyAllProperties: All properties for itemWMSOnlineResource: Alias
- FileFormat¶
alias of
ProjectFileFormat
- ReadFlag¶
alias of
ProjectReadFlag
- ReadFlags¶
alias of
ProjectReadFlags
- signal aboutToBeCleared[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.
- absoluteFilePath(self) str[source]¶
Returns full absolute path to the project file if the project is stored in a file system - derived from
fileName(). Returns empty string when the project is stored in a project storage (there is no concept of paths for custom project storages).Added in version 3.2.
- Return type:
str
- absolutePath(self) str[source]¶
Returns full absolute path to the project folder if the project is stored in a file system - derived from
fileName(). Returns empty string when the project is stored in a project storage (there is no concept of paths for custom project storages).Added in version 3.2.
- Return type:
str
- accept(self, visitor: QgsStyleEntityVisitorInterface | None) bool[source]¶
Accepts the specified style entity
visitor, causing it to visit all style entities associated with the project.Returns
Trueif the visitor should continue visiting other objects, orFalseif visiting should be canceled.Added in version 3.10.
accept(self, visitor: Optional[QgsObjectEntityVisitorInterface], context:
QgsObjectVisitorContext) -> bool Accepts the specified object entityvisitor, causing it to visit all object entities associated with the project.Returns
Trueif the visitor should continue visiting other objects, orFalseif visiting should be canceled.Added in version 4.0.
- Parameters:
visitor (Optional[QgsStyleEntityVisitorInterface])
- Return type:
bool
- addMapLayer(self, mapLayer: QgsMapLayer | None, addToLegend: bool = True) QgsMapLayer | None[source]¶
Add a layer to the map of loaded layers.
The
layersAdded()andlayerWasAdded()signals will always be emitted. ThelegendLayersAdded()signal is emitted only if addToLegend isTrue. If you are adding multiple layers at once, you should useaddMapLayers()instead.- Parameters:
mapLayer (Optional[QgsMapLayer]) – A layer to add to the registry
addToLegend (bool = True) – If
True(by default), the layer will be added to the legend and to the main canvas. If you have a private layer you can set this parameter toFalseto hide it.
- Return type:
Optional[QgsMapLayer]
- Returns:
Noneif unable to add layer, otherwise pointer to newly added layer
See also
Note
As a side-effect
QgsProjectis made dirty.Note
Use addMapLayers if adding more than one layer at a time
Note
takeOwnership is not available in the Python bindings - the registry will always take ownership
See also
- addMapLayers(self, mapLayers: Iterable[QgsMapLayer], addToLegend: bool = True) List[QgsMapLayer]¶
Add a list of layers to the map of loaded layers.
The
layersAdded()andlayerWasAdded()signals will always be emitted. ThelegendLayersAdded()signal is emitted only if addToLegend isTrue.- Parameters:
mapLayers (Iterable[QgsMapLayer]) – A list of layer which should be added to the registry
addToLegend (bool = True) – If
True(by default), the layers will be added to the legend and to the main canvas. If you have a private layer you can set this parameter toFalseto hide it.
- Return type:
- Returns:
a list of the map layers that were added successfully. If a layer or already exists in the registry, it will not be part of the returned QList.
Note
As a side-effect
QgsProjectis made dirty.Note
takeOwnership is not available in the Python bindings - the registry will always take ownership
See also
- annotationManager(self) QgsAnnotationManager | None[source]¶
Returns pointer to the project’s annotation manager.
- Return type:
Optional[QgsAnnotationManager]
- areaUnits(self) Qgis.AreaUnit[source]¶
Convenience function to query default area measurement units for project.
See also
- Return type:
- signal areaUnitsChanged[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.
- attachedFiles(self) List[str][source]¶
Returns a map of all attached files with identifier and real paths.
See also
Added in version 3.22.
- Return type:
List[str]
- attachmentIdentifier(self, attachedFile: str | None) str[source]¶
Returns an identifier for an attachment file path An attachment identifier is a string which does not depend on the project archive storage location.
- Parameters:
attachedFile (Optional[str]) – An attachment file path
- Return type:
str
- Returns:
An identifier for the attached file
Added in version 3.22.
- autoTransaction(self) bool[source]¶
Transactional editing means that on supported datasources (postgres databases) the edit state of all tables that originate from the same database are synchronized and executed in a server side transaction.
Deprecated since version 3.26: Use
transactionMode()instead.- Return type:
bool
- auxiliaryStorage(self) QgsAuxiliaryStorage | None[source]¶
Returns the current auxiliary storage.
- Return type:
Optional[QgsAuxiliaryStorage]
- avoidIntersectionsLayers(self) List[QgsVectorLayer]¶
A list of layers with which intersections should be avoided.
- Return type:
- signal avoidIntersectionsLayersChanged[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.
- avoidIntersectionsMode(self) Qgis.AvoidIntersectionsMode[source]¶
Returns the current avoid intersections mode.
Added in version 3.14.
- Return type:
- signal avoidIntersectionsModeChanged[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.
- backgroundColor(self) QColor[source]¶
Returns the default background color used by default map canvases.
See also
Added in version 3.10.
- Return type:
QColor
- signal backgroundColorChanged[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.
- baseName(self) str[source]¶
Returns the base name of the project file without the path and without extension - derived from
fileName().Added in version 3.2.
- Return type:
str
- blockDirtying¶
alias of
ProjectDirtyBlocker
- bookmarkManager(self) QgsBookmarkManager | None[source]¶
Returns the project’s bookmark manager, which manages bookmarks within the project.
Added in version 3.10.
- Return type:
Optional[QgsBookmarkManager]
- capabilities(self) Qgis.ProjectCapabilities[source]¶
Returns the project’s capabilities, which dictate optional functionality which can be selectively enabled for a
QgsProjectobject.Added in version 3.26.1.
- Return type:
- clear(self)[source]¶
Clears the project, removing all settings and resetting it back to an empty, default state.
See also
- signal cleared[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.
- commitChanges(self, stopEditing: bool = True, vectorLayer: QgsVectorLayer | None = None)[source]¶
Attempts to commit to the underlying data provider any buffered changes made since the last to call to
startEditing().Returns the result of the attempt. If a commit fails (i.e.
Falseis returned), the in-memory changes are left untouched and are not discarded. This allows editing to continue if the commit failed on e.g. a disallowed value in a Postgres database - the user can re-edit and try again.The commits occur in distinct stages, (add attributes, add features, change attribute values, change geometries, delete features, delete attributes) so if a stage fails, it can be difficult to roll back cleanly. Therefore any error message returned by commitErrors also includes which stage failed so that the user has some chance of repairing the damage cleanly.
- Parameters:
stopEditing (bool = True) – if set to
False, the layer will stay in editing mode. Otherwise the layer editing mode will be disabled if the commit is successful.vectorLayer (Optional[QgsVectorLayer] = None) -> (bool) – for which the changes will be committed. For buffered transactions this parameter is not mandatory, as the changes from all layers will be committed.
- Returns:
Trueif the commit was successful.commitErrors: a list of descriptive errors if the commit fails.
See also
See also
Added in version 3.26.
- createAttachedFile(self, nameTemplate: str | None) str[source]¶
Attaches a file to the project
- Parameters:
nameTemplate (Optional[str]) – Any filename template, used as a basename for attachment file, i.e. “myfile.ext”
- Return type:
str
- Returns:
The path to the file where the contents can be written to.
Note
If the attachment file is used as a source for a project layer, the attachment will be removed automatically when the layer is deleted.
Added in version 3.22.
- createEmbeddedGroup(self, groupName: str | None, projectFilePath: str | None, invisibleLayers: Iterable[str | None], flags: Qgis.ProjectReadFlags | Qgis.ProjectReadFlag = Qgis.ProjectReadFlags()) QgsLayerTreeGroup | None¶
Create layer group instance defined in an arbitrary project file.
The optional
flagsargument can be used to control layer reading behavior.- Parameters:
groupName (Optional[str])
projectFilePath (Optional[str])
invisibleLayers (Iterable[Optional[str]])
flags (Union[Qgis.ProjectReadFlags, Qgis.ProjectReadFlag] = Qgis.ProjectReadFlags())
- Return type:
Optional[QgsLayerTreeGroup]
- crs(self) QgsCoordinateReferenceSystem[source]¶
Returns the project’s native coordinate reference system.
Warning
Since QGIS 3.38, consider using
crs3D()whenever transforming 3D data or whenever z/elevation value handling is important.See also
See also
See also
See also
See also
- Return type:
- crs3D(self) QgsCoordinateReferenceSystem[source]¶
Returns the CRS to use for the project when transforming 3D data, or when z/elevation value handling is important.
The returned CRS will take into account
verticalCrs()when appropriate, e.g. it may return a compound CRS consisting ofcrs()+verticalCrs(). This method may still return a 2D CRS, e.g in the case thatcrs()is a 2D CRS and noverticalCrs()has been set for the project. CheckQgsCoordinateReferenceSystem.type()on the returned value to determine the type of CRS returned by this method.Warning
It is NOT guaranteed that the returned CRS will actually be a 3D CRS, but rather it is guaranteed that the returned CRS is ALWAYS the most appropriate CRS to use when handling 3D data.
See also
See also
See also
Added in version 3.38.
- Return type:
- signal crs3DChanged[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.
- signal crsChanged[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.
- customVariables(self) Dict[str, Any][source]¶
A map of custom project variables. To get all available variables including generated ones use
QgsExpressionContextUtils.projectScope()instead.- Return type:
Dict[str, Any]
- signal customVariablesChanged[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.
- dataDefinedServerProperties(self) QgsPropertyCollection[source]¶
Returns the data defined properties used for overrides in user defined server parameters
Added in version 3.14.
- Return type:
- defaultCrsForNewLayers(self) QgsCoordinateReferenceSystem[source]¶
Returns the default CRS for new layers based on the settings and the current project CRS
- Return type:
- signal dirtySet[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.
- displaySettings(self) QgsProjectDisplaySettings | None[source]¶
Returns the project’s display settings, which contains settings and properties relating to how a
QgsProjectshould display values such as map coordinates and bearings.Added in version 3.12.
- Return type:
Optional[QgsProjectDisplaySettings]
- distanceUnits(self) Qgis.DistanceUnit[source]¶
Convenience function to query default distance measurement units for project.
See also
See also
- Return type:
- signal distanceUnitsChanged[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.
- editBufferGroup(self) QgsVectorLayerEditBufferGroup | None[source]¶
Returns the edit buffer group
Added in version 3.26.
- Return type:
Optional[QgsVectorLayerEditBufferGroup]
- elevationProfileManager(self) QgsElevationProfileManager | None[source]¶
Returns the project’s elevation profile manager, which manages elevation profiles within the project.
Added in version 4.0.
- Return type:
Optional[QgsElevationProfileManager]
- elevationProperties(self) QgsProjectElevationProperties | None[source]¶
Returns the project’s elevation properties, which contains the project’s elevation related settings.
Added in version 3.26.
- Return type:
Optional[QgsProjectElevationProperties]
- elevationShadingRenderer(self) QgsElevationShadingRenderer[source]¶
Returns the elevation shading renderer used for map shading
Added in version 3.30.
- Return type:
- signal elevationShadingRendererChanged[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.
- ellipsoid(self) str[source]¶
Returns a proj string representing the project’s ellipsoid setting, e.g., “WGS84”.
See also
See also
See also
- Return type:
str
- signal ellipsoidChanged[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.
- entryList(self, scope: str | None, key: str | None) List[str][source]¶
Returns a list of child keys with values which exist within the the specified
scopeandkey.This method does not return keys that contain other keys. See
subkeyList()to retrieve keys which contain other keys.Note
equivalent to
QgsSettingsentryList()- Parameters:
scope (Optional[str])
key (Optional[str])
- Return type:
List[str]
- evaluateDefaultValues(self) bool[source]¶
Should default values be evaluated on provider side when requested and not when committed.
Deprecated since version 3.40: Test whether the
flags()method returns theQgis.ProjectFlag.EvaluateDefaultValuesOnProviderSide flag instead.- Return type:
bool
- fileInfo(self) QFileInfo[source]¶
Returns QFileInfo object for the project’s associated file.
Note
The use of this method is discouraged since QGIS 3.2 as it only works with project files stored in the file system. It is recommended to use
absoluteFilePath(),baseName(),lastModifiedTime()as replacements that are aware of the fact that projects may be saved in other project storages.See also
Deprecated since version 3.2: Use
absoluteFilePath(),baseName()orlastModifiedTime()instead.- Return type:
QFileInfo
- fileName(self) str[source]¶
Returns the project’s file name. This is the file or the storage URI which contains the project’s XML representation.
See also
See also
- Return type:
str
- signal fileNameChanged[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.
- filePathStorage(self) Qgis.FilePathType[source]¶
Returns the type of paths used when storing file paths in a QGS/QGZ project file.
See also
Added in version 3.22.
- Return type:
- flags(self) Qgis.ProjectFlags[source]¶
Returns the project’s flags, which dictate the behavior of the project.
See also
See also
Added in version 3.26.
- Return type:
- generateTsFile(self, locale: str | None)[source]¶
Triggers the collection strings of .qgs to be included in ts file and calls
writeTsFile()Added in version 3.4.
- Parameters:
locale (Optional[str])
- gpsSettings(self) QgsProjectGpsSettings | None[source]¶
Returns the project’s GPS settings, which contains settings and properties relating to how a
QgsProjectshould interact with a GPS device.Added in version 3.30.
- Return type:
Optional[QgsProjectGpsSettings]
- homePath(self) str[source]¶
Returns the project’s home path. This will either be a manually set home path (see
presetHomePath()) or the path containing the project file itself.This method always returns the absolute path to the project’s home. See
presetHomePath()to retrieve any manual project home path override (e.g. relative home paths).See also
See also
See also
- Return type:
str
- signal homePathChanged[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.
- static instance() QgsProject | None[source]¶
Returns the
QgsProjectsingleton instance- Return type:
Optional[QgsProject]
- isDirty(self) bool[source]¶
Returns
Trueif the project has been modified since the lastwrite()- Return type:
bool
- signal isDirtyChanged[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.
- isZipped(self) bool[source]¶
Returns
Trueif the project comes from a zip archive,Falseotherwise.- Return type:
bool
- labelingEngineSettings(self) QgsLabelingEngineSettings¶
Returns project’s global labeling engine settings
- Return type:
- signal labelingEngineSettingsChanged[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.
- lastModified(self) QDateTime[source]¶
Returns last modified time of the project file as returned by the file system (or other project storage).
Added in version 3.2.
- Return type:
QDateTime
- lastSaveDateTime(self) QDateTime[source]¶
Returns the date and time when the project was last saved.
Added in version 3.14.
- Return type:
QDateTime
- lastSaveVersion(self) QgsProjectVersion[source]¶
Returns the QGIS version which the project was last saved using.
Added in version 3.14.
- Return type:
- layerIsEmbedded(self, id: str | None) str[source]¶
Returns the source project file path if the layer with matching
idis embedded from other project file.Returns an empty string if the matching layer is not embedded.
- Parameters:
id (Optional[str])
- Return type:
str
- signal layerLoaded[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.
- signal layerRemoved[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.
- layerStore(self) QgsMapLayerStore | None[source]¶
Returns a pointer to the project’s internal layer store.
- Return type:
Optional[QgsMapLayerStore]
- layerTreeRegistryBridge(self) QgsLayerTreeRegistryBridge | None[source]¶
Returns pointer to the helper class that synchronizes map layer registry with layer tree
- Return type:
Optional[QgsLayerTreeRegistryBridge]
- layerTreeRoot(self) QgsLayerTree | None[source]¶
Returns pointer to the root (invisible) node of the project’s layer tree
- Return type:
Optional[QgsLayerTree]
- signal layerWasAdded[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.
- signal layerWillBeRemoved[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.
- signal layersAdded[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.
- signal layersAddedWithoutLegend[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.
- signal layersRemoved[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.
- signal layersWillBeRemoved[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.
- layoutManager(self) QgsLayoutManager | None[source]¶
Returns the project’s layout manager, which manages print layouts, atlases and reports within the project.
- Return type:
Optional[QgsLayoutManager]
- signal legendLayersAdded[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.
- signal loadingLayer[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.
- signal loadingLayerMessageReceived[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.
- mainAnnotationLayer(self) QgsAnnotationLayer | None[source]¶
Returns the main annotation layer associated with the project.
This layer is always present in projects, and will always be rendered above any other map layers during map render jobs.
It forms the default location to place new annotation items which should appear above all map layers.
Added in version 3.16.
- Return type:
Optional[QgsAnnotationLayer]
- mapLayer(self, layerId: str | None) QgsMapLayer | None[source]¶
Retrieve a pointer to a registered layer by layer ID.
- Parameters:
layerId (Optional[str]) – ID of layer to retrieve
- Return type:
Optional[QgsMapLayer]
- Returns:
matching layer, or
Noneif no matching layer found
See also
See also
- mapLayers(self, validOnly: bool = False) Any¶
Returns a map of all registered layers by layer ID.
- Parameters:
validOnly (bool = False) – if set only valid layers will be returned
See also
See also
See also
layers()- Return type:
- mapLayersByName(self, layerName: str | None) List[QgsMapLayer]¶
Retrieve a list of matching registered layers by layer name.
- Parameters:
layerName (Optional[str]) – name of layers to match
- Return type:
- Returns:
list of matching layers
See also
See also
- mapLayersByShortName(self, shortName: str | None) List[QgsMapLayer]¶
Retrieves a list of matching registered layers by layer
shortName. If layer’s short name is empty a match with layer’s name is attempted.- Return type:
- Returns:
list of matching layers
See also
See also
Added in version 3.10.
- Parameters:
shortName (Optional[str])
- mapScales(self) List[float]¶
Returns the list of custom project map scales.
The scales list consists of a list of scale denominator values, e.g. 1000 for a 1:1000 scale.
See also
See also
Deprecated since version 3.40: Use
viewSettings()instead.- Return type:
List[float]
- signal mapScalesChanged[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.
- mapThemeCollection(self) QgsMapThemeCollection | None[source]¶
Returns pointer to the project’s map theme collection.
Note
renamed in QGIS 3.0, formerly
QgsVisibilityPresetCollection- Return type:
Optional[QgsMapThemeCollection]
- signal mapThemeCollectionChanged[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.
- metadata(self) QgsProjectMetadata¶
Returns a reference to the project’s metadata store.
See also
See also
Added in version 3.2.
- Return type:
- signal metadataChanged[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.
- signal missingDatumTransforms[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.
- nonIdentifiableLayers(self) List[str][source]¶
Gets the list of layers which currently should not be taken into account on map identification
Deprecated since version 3.4: Use
QgsMapLayer.setFlags()instead.- Return type:
List[str]
- signal nonIdentifiableLayersChanged[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.
- signal oldProjectVersionWarning[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.
- originalPath(self) str[source]¶
Returns the original path associated with the project.
This is intended for use with non-qgs/qgz project files (see
QgsCustomProjectOpenHandler) in order to allow custom project open handlers to specify the original file name of the project. For custom project formats, it is NOT appropriate to callsetFileName()with the original project path, as this causes the original (non QGIS) project file to be overwritten when the project is next saved.See also
Added in version 3.14.
- Return type:
str
- pathResolver(self) QgsPathResolver[source]¶
Returns path resolver object with considering whether the project uses absolute or relative paths and using current project’s path.
- Return type:
- presetHomePath(self) str[source]¶
Returns any manual project home path setting, or an empty string if not set.
This path may be a relative path. See
homePath()to retrieve a path which is always an absolute path.See also
See also
See also
Added in version 3.2.
- Return type:
str
- signal projectColorsChanged[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.
- signal projectSaved[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.
- projectStorage(self) QgsProjectStorage | None[source]¶
Returns pointer to project storage implementation that handles read/write of the project file. If the project file is stored in the local file system, returns
None. The project storage object is inferred fromfileName()of the project.Added in version 3.2.
- Return type:
Optional[QgsProjectStorage]
- read(self, filename: str | None, flags: Qgis.ProjectReadFlags | Qgis.ProjectReadFlag = Qgis.ProjectReadFlags()) bool[source]¶
Reads given project file from the given file.
- Parameters:
filename (Optional[str]) – name of project file to read
flags (Union[Qgis.ProjectReadFlags, Qgis.ProjectReadFlag] = Qgis.ProjectReadFlags()) – optional flags which control the read behavior of projects
- Returns:
Trueif project file has been read successfully
read(self, flags: Union[Qgis.ProjectReadFlags, Qgis.ProjectReadFlag] = Qgis.ProjectReadFlags()) -> bool Reads the project from its currently associated file (see
fileName()).The
flagsargument can be used to specify optional flags which control the read behavior of projects.- Return type:
bool
- Returns:
Trueif project file has been read successfully
- readBoolEntry(self, scope: str | None, key: str | None, def_: bool = False)[source]¶
Reads a boolean from the specified
scopeandkey.- Parameters:
scope (Optional[str]) – entry scope (group) name
key (Optional[str]) – entry key name. Keys are ‘/’-delimited entries, implying a hierarchy of keys and corresponding values.
def (bool = False) -> (bool) – default value to return if the specified
keydoes not exist within thescope.def
- Returns:
entry value as boolean from
scopegiven itskeyok: set to
Trueif key exists and has been successfully retrieved as a boolean
- readDoubleEntry(self, scope: str | None, key: str | None, def_: float = 0)[source]¶
Reads a double from the specified
scopeandkey.- Parameters:
scope (Optional[str]) – entry scope (group) name
key (Optional[str]) – entry key name. Keys are ‘/’-delimited entries, implying a hierarchy of keys and corresponding values.
def (float = 0) -> (float) – default value to return if the specified
keydoes not exist within thescope.def
- Returns:
entry value as double from
scopegiven itskeyok: set to
Trueif key exists and has been successfully retrieved as a double
- readEntry(self, scope: str | None, key: str | None, def_: str | None = '')[source]¶
Reads a string from the specified
scopeandkey.- Parameters:
scope (Optional[str]) – entry scope (group) name
key (Optional[str]) – entry key name. Keys are ‘/’-delimited entries, implying a hierarchy of keys and corresponding values.
def (Optional[str] = '') -> (str) – default value to return if the specified
keydoes not exist within thescope.def
- Returns:
entry value as string from
scopegiven itskeyok: set to
Trueif key exists and has been successfully retrieved as a string value
- readLayer(self, layerNode: QDomNode) bool[source]¶
Reads the layer described in the associated DOM node.
Note
This method is mainly for use by
QgsProjectBadLayerHandlersubclasses that may fix definition of bad layers with the user’s help in GUI. Calling this method with corrected DOM node adds the layer back to the project.- Parameters:
layerNode (QDomNode) – represents a
QgsProjectDOM node that encodes a specific layer.- Return type:
bool
- readListEntry(self, scope: str | None, key: str | None, def_: Iterable[str | None] = [])[source]¶
Reads a string list from the specified
scopeandkey.- Parameters:
scope (Optional[str]) – entry scope (group) name
key (Optional[str]) – entry key name. Keys are ‘/’-delimited entries, implying a hierarchy of keys and corresponding values.
def (Iterable[Optional[str]] = []) -> (List[str]) – default value to return if the specified
keydoes not exist within thescope.def
- Returns:
entry value as a string list
ok: set to
Trueif key exists and has been successfully retrieved as a string list
- signal readMapLayer[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.
- readNumEntry(self, scope: str | None, key: str | None, def_: int = 0)[source]¶
Reads an integer from the specified
scopeandkey.- Parameters:
scope (Optional[str]) – entry scope (group) name
key (Optional[str]) – entry key name. Keys are ‘/’-delimited entries, implying a hierarchy of keys and corresponding values.
def (int = 0) -> (int) – default value to return if the specified
keydoes not exist within thescope.def
- Returns:
entry value as integer from
scopegiven itskeyok: set to
Trueif key exists and has been successfully retrieved as an integer
- readPath(self, filename: str | None) str[source]¶
Transforms a
filenameread from the project file to an absolute path.- Parameters:
filename (Optional[str])
- Return type:
str
- signal readProject[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.
- signal readProjectWithContext[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.
- signal readVersionMismatchOccurred[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.
- registerTranslatableContainers(self, translationContext: QgsTranslationContext | None, parent: QgsAttributeEditorContainer | None, layerId: str | None)[source]¶
Registers the containers that require translation into the translationContext. This is a recursive function to get all the child containers.
- Parameters:
translationContext (Optional[QgsTranslationContext]) – where the objects will be registered
parent (Optional[QgsAttributeEditorContainer]) – parent-container containing list of children
layerId (Optional[str]) – to store under the correct context
Added in version 3.4.
- registerTranslatableObjects(self, translationContext: QgsTranslationContext | None)[source]¶
Registers the objects that require translation into the
translationContext. So there can be created a ts file with these values.Added in version 3.4.
- Parameters:
translationContext (Optional[QgsTranslationContext])
- relationManager(self) QgsRelationManager | None[source]¶
- Return type:
Optional[QgsRelationManager]
- reloadAllLayers(self)[source]¶
Reload all registered layer’s provider data caches, synchronising the layer with any changes in the datasource.
See also
- signal removeAll[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.
- removeAllMapLayers(self)[source]¶
Removes all registered layers. If the registry has ownership of any layers these layers will also be deleted.
Note
As a side-effect the
QgsProjectinstance is marked dirty.Note
Calling this method will cause the
removeAll()signal to be emitted.See also
See also
- removeAttachedFile(self, path: str | None) bool[source]¶
Removes the attached file
- Parameters:
path (Optional[str]) – Path to the attached file
- Return type:
bool
- Returns:
Whether removal succeeded.
See also
Added in version 3.22.
- removeEntry(self, scope: str | None, key: str | None) bool[source]¶
Remove the given
keyfrom the specifiedscope.- Parameters:
scope (Optional[str])
key (Optional[str])
- Return type:
bool
- removeMapLayer(self, layerId: str | None)[source]¶
Remove a layer from the registry by layer ID.
The specified layer will be removed from the registry. If the registry has ownership of the layer then it will also be deleted.
- Parameters:
layerId (Optional[str]) – ID of the layer to remove
Note
As a side-effect the
QgsProjectinstance is marked dirty.See also
See also
removeMapLayer(self, layer: Optional[QgsMapLayer]) Remove a layer from the registry.
The specified layer will be removed from the registry. If the registry has ownership of the layer then it will also be deleted.
- Parameters:
layer – The layer to remove.
Nonevalues are ignored.
Note
As a side-effect the
QgsProjectinstance is marked dirty.See also
See also
- removeMapLayers(self, layers: List[QgsVectorLayer] | List[str])[source]¶
Remove a set of layers from the registry.
The specified layers will be removed from the registry. If the registry has ownership of any layers these layers will also be deleted.
- Parameters:
layers (Union[List[QgsVectorLayer], List[str]]) – list of layers or list of layer IDs of the layers to remove
Note
As a side-effect the
QgsProjectinstance is marked dirty.See also
See also
- requiredLayers(self) Set[QgsMapLayer]¶
Returns a set of map layers that are required in the project and therefore they should not get removed from the project. The set of layers may be configured by users in project properties. and it is mainly a hint for the user interface to protect users from removing layers that important in the project. The
removeMapLayer(),removeMapLayers()calls do not block removal of layers listed here.Deprecated since version 3.4: Use
QgsMapLayer.flags()instead.Added in version 3.2.
- Return type:
- resolveAttachmentIdentifier(self, identifier: str | None) str[source]¶
Resolves an attachment identifier to a attachment file path
- Parameters:
identifier (Optional[str]) – An attachment identifier
- Return type:
str
- Returns:
The attachment file path, or an empty string if the identifier is invalid
Added in version 3.22.
- rollBack(self, stopEditing: bool = True, vectorLayer: QgsVectorLayer | None = None)[source]¶
Stops a current editing operation on vectorLayer and discards any uncommitted edits.
- Parameters:
stopEditing (bool = True) – if set to
False, the layer will stay in editing mode. Otherwise the layer editing mode will be disabled if the rollback is successful.vectorLayer (Optional[QgsVectorLayer] = None) -> (bool) – for which the changes will be rolled back. For buffered transactions this parameter is not mandatory, as the changes from all layers will be rolled back.
- Returns:
Trueif the rollback was successful.rollbackErrors: a list of descriptive errors if the rollback fails.
See also
See also
Added in version 3.26.
- saveUser(self) str[source]¶
Returns the user name that did the last save.
See also
Added in version 3.12.
- Return type:
str
- saveUserFullName(self) str[source]¶
Returns the full user name that did the last save.
See also
Added in version 3.12.
- Return type:
str
- scaleMethod(self) Qgis.ScaleCalculationMethod[source]¶
Returns the method to use for map scale calculations for the project.
See also
See also
Added in version 3.44.
- Return type:
- signal scaleMethodChanged[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.
- selectionColor(self) QColor[source]¶
Returns the color used to highlight selected features
See also
Added in version 3.10.
- Return type:
QColor
- signal selectionColorChanged[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.
- sensorManager(self) QgsSensorManager | None[source]¶
Returns the project’s sensor manager, which manages sensors within the project.
Added in version 3.32.
- Return type:
Optional[QgsSensorManager]
- setAreaUnits(self, unit: Qgis.AreaUnit)[source]¶
Sets the default area measurement units for the project.
See also
See also
- Parameters:
unit (Qgis.AreaUnit)
- setAutoTransaction(self, autoTransaction: bool)[source]¶
Transactional editing means that on supported datasources (postgres databases) the edit state of all tables that originate from the same database are synchronized and executed in a server side transaction.
Warning
Make sure that this is only called when all layers are not in edit mode.
Deprecated since version 3.26: Use
setTransactionMode()instead.- Parameters:
autoTransaction (bool)
- setAvoidIntersectionsLayers(self, layers: Iterable[QgsVectorLayer])[source]¶
Sets the list of layers with which intersections should be avoided. Only used if the avoid intersection mode is set to advanced. Line and point layers will not be added.
- Parameters:
layers (Iterable[QgsVectorLayer])
- setAvoidIntersectionsMode(self, mode: Qgis.AvoidIntersectionsMode)[source]¶
Sets the avoid intersections mode.
Added in version 3.14.
- Parameters:
mode (Qgis.AvoidIntersectionsMode)
- setBackgroundColor(self, color: QColor | Qt.GlobalColor)[source]¶
Sets the default background
colorused by default map canvases.See also
Added in version 3.10.
- Parameters:
color (Union[QColor, Qt.GlobalColor])
- setBadLayerHandler(self, handler: QgsProjectBadLayerHandler | None)[source]¶
Change handler for missing layers. Deletes old handler and takes ownership of the new one.
- Parameters:
handler (Optional[QgsProjectBadLayerHandler])
- setCrs(self, crs: QgsCoordinateReferenceSystem, adjustEllipsoid: bool = False)[source]¶
Sets the project’s native coordinate reference system.
If
adjustEllipsoidis set toTrue, the ellipsoid of this project will be set to the ellipsoid imposed by the CRS.Changing the CRS will trigger a
crsChanged()signal. Additionally, ifcrsis a compound CRS, then theverticalCrsChanged()signal will also be emitted.See also
See also
See also
See also
- Parameters:
adjustEllipsoid (bool = False)
- setCustomVariables(self, customVariables: Dict[str, Any])[source]¶
A map of custom project variables. Be careful not to set generated variables.
- Parameters:
customVariables (Dict[str, Any])
- setDataDefinedServerProperties(self, properties: QgsPropertyCollection)[source]¶
Sets the data defined properties used for overrides in user defined server parameters to
propertiesAdded in version 3.14.
- Parameters:
properties (QgsPropertyCollection)
- setDirty(self, b: bool = True)[source]¶
Flag the project as dirty (modified). If this flag is set, the user will be asked to save changes to the project before closing the current project.
Note
promoted to public slot in 2.16
- Parameters:
b (bool = True)
- setDistanceUnits(self, unit: Qgis.DistanceUnit)[source]¶
Sets the default distance measurement units for the project.
See also
See also
- Parameters:
unit (Qgis.DistanceUnit)
- setElevationShadingRenderer(self, elevationShadingRenderer: QgsElevationShadingRenderer)[source]¶
Sets the elevation shading renderer used for global map shading
Added in version 3.30.
- Parameters:
elevationShadingRenderer (QgsElevationShadingRenderer)
- setEllipsoid(self, ellipsoid: str | None)[source]¶
Sets the project’s
ellipsoidfrom a proj string representation, e.g., “WGS84”.See also
See also
See also
- Parameters:
ellipsoid (Optional[str])
- setEvaluateDefaultValues(self, evaluateDefaultValues: bool)[source]¶
Defines if default values should be evaluated on provider side when requested and not when committed.
Deprecated since version 3.40: Use setFlag(
Qgis.ProjectFlag.EvaluateDefaultValuesOnProviderSide ) instead.- Parameters:
evaluateDefaultValues (bool)
- setFileName(self, name: str | None)[source]¶
Sets the file name associated with the project. This is the file or the storage URI which contains the project’s XML representation.
- Parameters:
name (Optional[str]) – project file name
See also
- setFilePathStorage(self, type: Qgis.FilePathType)[source]¶
Sets the
typeof paths used when storing file paths in a QGS/QGZ project file.See also
Added in version 3.22.
- Parameters:
type (Qgis.FilePathType)
- setFlag(self, flag: Qgis.ProjectFlag, enabled: bool = True)[source]¶
Sets whether a project
flagisenabled.See also
See also
Added in version 3.26.
- Parameters:
flag (Qgis.ProjectFlag)
enabled (bool = True)
- setFlags(self, flags: Qgis.ProjectFlags | Qgis.ProjectFlag)[source]¶
Sets the project’s
flags, which dictate the behavior of the project.See also
See also
Added in version 3.26.
- Parameters:
flags (Union[Qgis.ProjectFlags, Qgis.ProjectFlag])
- static setInstance(project: QgsProject | None)[source]¶
Set the current project singleton instance to
projectNote
this method is provided mainly for the server, which caches the projects and (potentially) needs to switch the current instance on every request.
Warning
calling this method can have serious, unintended consequences, including instability, data loss and undefined behavior. Use with EXTREME caution!
See also
Added in version 3.10.11.
- Parameters:
project (Optional[QgsProject])
- setLabelingEngineSettings(self, settings: QgsLabelingEngineSettings)[source]¶
Sets project’s global labeling engine settings
- Parameters:
settings (QgsLabelingEngineSettings)
- setMapScales(self, scales: Iterable[float])[source]¶
Sets the list of custom project map
scales.The
scaleslist consists of a list of scale denominator values, e.g. 1000 for a 1:1000 scale.See also
See also
Deprecated since version 3.40: Use
viewSettings()instead.- Parameters:
scales (Iterable[float])
- setMetadata(self, metadata: QgsProjectMetadata)[source]¶
Sets the project’s
metadatastore.See also
See also
Added in version 3.2.
- Parameters:
metadata (QgsProjectMetadata)
- setNonIdentifiableLayers(self, layers: Iterable[QgsMapLayer])[source]¶
Set a list of layers which should not be taken into account on map identification
Deprecated since version 3.4: Use
QgsMapLayer.setFlags()instead.setNonIdentifiableLayers(self, layerIds: Iterable[Optional[str]]) Set a list of layers which should not be taken into account on map identification
Deprecated since version 3.4: Use
QgsMapLayer.setFlags()instead.- Parameters:
layers (Iterable[QgsMapLayer])
- setOriginalPath(self, path: str | None)[source]¶
Sets the original
pathassociated with the project.This is intended for use with non-qgs/qgz project files (see
QgsCustomProjectOpenHandler) in order to allow custom project open handlers to specify the original file name of the project. For custom project formats, it is NOT appropriate to callsetFileName()with the original project path, as this causes the original (non QGIS) project file to be overwritten when the project is next saved.See also
Added in version 3.14.
- Parameters:
path (Optional[str])
- setPresetHomePath(self, path: str | None)[source]¶
Sets the project’s home
path. If an empty path is specified than the home path will be automatically determined from the project’s file path.See also
See also
See also
Added in version 3.2.
- Parameters:
path (Optional[str])
- setProjectColors(self, colors: Iterable[Tuple[QColor | Qt.GlobalColor, str | None]])[source]¶
Sets the
colorsfor the project’s color scheme (seeQgsProjectColorScheme).See also
Added in version 3.6.
- Parameters:
colors (Iterable[Tuple[Union[QColor, Qt.GlobalColor], Optional[str]]])
- setRequiredLayers(self, layers: Iterable[QgsMapLayer])[source]¶
Configures a set of map layers that are required in the project and therefore they should not get removed from the project. The set of layers may be configured by users in project properties. and it is mainly a hint for the user interface to protect users from removing layers that important in the project. The
removeMapLayer(),removeMapLayers()calls do not block removal of layers listed here.Deprecated since version 3.4: Use
QgsMapLayer.setFlags()instead.Added in version 3.2.
- Parameters:
layers (Iterable[QgsMapLayer])
- setScaleMethod(self, method: Qgis.ScaleCalculationMethod)[source]¶
Sets the
methodto use for map scale calculations for the project.See also
See also
Added in version 3.44.
- Parameters:
method (Qgis.ScaleCalculationMethod)
- setSelectionColor(self, color: QColor | Qt.GlobalColor)[source]¶
Sets the
colorused to highlight selected features.See also
Added in version 3.10.
- Parameters:
color (Union[QColor, Qt.GlobalColor])
- setSnappingConfig(self, snappingConfig: QgsSnappingConfig)[source]¶
The snapping configuration for this project.
- Parameters:
snappingConfig (QgsSnappingConfig)
- setTitle(self, title: str | None)[source]¶
Sets the project’s title.
- Parameters:
title (Optional[str]) – new title
Note
Since QGIS 3.2 this is just a shortcut to setting the title in the project’s
metadata().See also
- setTopologicalEditing(self, enabled: bool)[source]¶
Convenience function to set topological editing
- Parameters:
enabled (bool)
- setTransactionMode(self, transactionMode: Qgis.TransactionMode) bool[source]¶
Set transaction mode
- Return type:
bool
- Returns:
Trueif the transaction mode could be changed
Note
Transaction mode can be changed only when all layers are not in edit mode.
See also
Qgis.TransactionMode
Added in version 3.26.
- Parameters:
transactionMode (Qgis.TransactionMode)
- setTransformContext(self, context: QgsCoordinateTransformContext)[source]¶
Sets the project’s coordinate transform
context, which stores various information regarding which datum transforms should be used when transforming points from a source to destination coordinate reference system.See also
See also
- Parameters:
context (QgsCoordinateTransformContext)
- setTrustLayerMetadata(self, trust: bool)[source]¶
Sets the trust option allowing to indicate if the extent has to be read from the XML document when data source has no metadata or if the data provider has to determine it. Moreover, when this option is activated, primary key unicity is not checked for views and materialized views with Postgres provider.
- Parameters:
trust (bool) –
Trueto trust the project,Falseotherwise
Deprecated since version 3.40: Use setFlag(
Qgis.ProjectFlag.TrustStoredLayerStatistics ) instead.
- setUseProjectScales(self, enabled: bool)[source]¶
Sets whether project
mapScales()areenabled.See also
See also
Deprecated since version 3.40: Use
viewSettings()instead.- Parameters:
enabled (bool)
- setVerticalCrs(self, crs: QgsCoordinateReferenceSystem)[source]¶
Sets the project’s vertical coordinate reference system.
The
verticalCrsChanged()signal will be raised if the vertical CRS is changed.Note
If the project
crs()is a compound CRS, then the CRS returned forverticalCrs()will be the vertical component ofcrs(). Otherwise it will be the value explicitly set by this call.- Parameters:
crs (
QgsCoordinateReferenceSystem) -> (bool) – the vertical CRS- Returns:
Trueif vertical CRS was successfully seterrorMessage: a descriptive message if the vertical CRS could not be set
See also
See also
Added in version 3.38.
- snappingConfig(self) QgsSnappingConfig[source]¶
The snapping configuration for this project.
- Return type:
- signal snappingConfigChanged[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.
- startEditing(self, vectorLayer: QgsVectorLayer | None = None) bool[source]¶
Makes the layer editable.
This starts an edit session on vectorLayer. Changes made in this edit session will not be made persistent until
commitChanges()is called, and can be reverted by callingrollBack().- Return type:
bool
- Returns:
Trueif the layer was successfully made editable, orFalseif the operation failed (e.g. due to an underlying read-only data source, or lack of edit support by the backend data provider).
See also
See also
Added in version 3.26.
- Parameters:
vectorLayer (Optional[QgsVectorLayer] = None)
- styleSettings(self) QgsProjectStyleSettings | None[source]¶
Returns the project’s style settings, which contains settings and properties relating to how a
QgsProjectshould handle styling. (e.g. styling of a newly added vector layer)Added in version 3.26.
- Return type:
Optional[QgsProjectStyleSettings]
- subkeyList(self, scope: str | None, key: str | None) List[str][source]¶
Returns a list of child keys which contain other keys that exist within the the specified
scopeandkey.This method only returns keys with keys, it will not return keys that contain only values. See
entryList()to retrieve keys with values.Note
equivalent to
QgsSettingssubkeyList()- Parameters:
scope (Optional[str])
key (Optional[str])
- Return type:
List[str]
- takeMapLayer(self, layer: QgsMapLayer | None) QgsMapLayer | None[source]¶
Takes a layer from the registry. If the layer was owned by the project, the layer will be returned without deleting it. The caller takes ownership of the layer and is responsible for deleting it.
See also
- Parameters:
layer (Optional[QgsMapLayer])
- Return type:
Optional[QgsMapLayer]
- timeSettings(self) QgsProjectTimeSettings | None[source]¶
Returns the project’s time settings, which contains the project’s temporal range and other time based settings.
Added in version 3.14.
- Return type:
Optional[QgsProjectTimeSettings]
- title(self) str[source]¶
Returns the project’s title.
See also
Note
Since QGIS 3.2 this is just a shortcut to retrieving the title from the project’s
metadata().- Return type:
str
- signal titleChanged[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.
- topologicalEditing(self) bool[source]¶
Convenience function to query topological editing status
- Return type:
bool
- signal topologicalEditingChanged[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.
- transactionGroup(self, providerKey: str | None, connString: str | None) QgsTransactionGroup | None[source]¶
Returns the matching transaction group from a provider key and connection string.
Returns
Noneif a matching transaction group is not available.Added in version 3.2.
- Parameters:
providerKey (Optional[str])
connString (Optional[str])
- Return type:
Optional[QgsTransactionGroup]
- signal transactionGroupsChanged[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.
- transactionMode(self) Qgis.TransactionMode[source]¶
Returns the transaction mode
See also
Qgis.TransactionMode
Added in version 3.26.
- Return type:
- signal transactionModeChanged[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.
- transformContext(self) QgsCoordinateTransformContext[source]¶
Returns a copy of the project’s coordinate transform context, which stores various information regarding which datum transforms should be used when transforming points from a source to destination coordinate reference system.
See also
See also
- Return type:
- signal transformContextChanged[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.
- trustLayerMetadata(self) bool[source]¶
Returns
Trueif the trust option is activated,Falseotherwise. This option allows indicateing if the extent has to be read from the XML document when data source has no metadata or if the data provider has to determine it. Moreover, when this option is activated, primary key unicity is not checked for views and materialized views with Postgres provider.Deprecated since version 3.40: Test whether the
flags()method returns theQgis.ProjectFlag.TrustStoredLayerStatistics flag instead.- Return type:
bool
- useProjectScales(self) bool[source]¶
Returns
Trueif projectmapScales()are enabled.See also
See also
Deprecated since version 3.40: Use
viewSettings()instead.- Return type:
bool
- verticalCrs(self) QgsCoordinateReferenceSystem[source]¶
Returns the project’s vertical coordinate reference system.
If the project
crs()is a compound CRS, then the CRS returned will be the vertical component ofcrs(). Otherwise it will be the value explicitly set by a call tosetVerticalCrs().The returned CRS will be invalid if the project has no vertical CRS.
Note
Consider also using
crs3D(), which will return a CRS which takes into account bothcrs()andverticalCrs().See also
See also
See also
Added in version 3.38.
- Return type:
- signal verticalCrsChanged[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.
- viewSettings(self) QgsProjectViewSettings | None[source]¶
Returns the project’s view settings, which contains settings and properties relating to how a
QgsProjectshould be viewed and behave inside a map canvas (e.g. map scales and default view extent)Added in version 3.10.1.
- Return type:
Optional[QgsProjectViewSettings]
- viewsManager(self) QgsMapViewsManager | None[source]¶
Returns the project’s views manager, which manages map views (including 3d maps) in the project.
Added in version 3.24.
- Return type:
Optional[QgsMapViewsManager]
- write(self, filename: str | None) bool[source]¶
Writes the project to a file.
- Parameters:
filename (Optional[str]) – destination file
- Returns:
Trueif project was written successfully
Note
calling this implicitly sets the project’s filename (see
setFileName())Note
isDirty()will be set toFalseif project is successfully writtenwrite(self) -> bool Writes the project to its current associated file (see
fileName()).- Return type:
bool
- Returns:
Trueif project was written successfully
Note
isDirty()will be set toFalseif project is successfully written
- writeEntry(self, scope: str | None, key: str | None, value: int) bool[source]¶
Write an integer
valueto the project file.Keys are ‘/’-delimited entries, implying a hierarchy of keys and corresponding values
Note
The key string must be valid xml tag names in order to be saved to the file.
See also
writeEntry(self, scope: Optional[str], key: Optional[str], value: Optional[str]) -> bool Write a string
valueto the project file.Keys are ‘/’-delimited entries, implying a hierarchy of keys and corresponding values
Note
The key string must be valid xml tag names in order to be saved to the file.
See also
writeEntry(self, scope: Optional[str], key: Optional[str], value: Iterable[Optional[str]]) -> bool Write a string list
valueto the project file.Keys are ‘/’-delimited entries, implying a hierarchy of keys and corresponding values
Note
The key string must be valid xml tag names in order to be saved to the file.
See also
- Parameters:
scope (Optional[str])
key (Optional[str])
value (int)
- Return type:
bool
- writeEntryBool(self, scope: str | None, key: str | None, value: bool) bool¶
Write a boolean
valueto the project file.Keys are ‘/’-delimited entries, implying a hierarchy of keys and corresponding values
Note
The key string must be valid xml tag names in order to be saved to the file.
See also
- Parameters:
scope (Optional[str])
key (Optional[str])
value (bool)
- Return type:
bool
- writeEntryDouble(self, scope: str | None, key: str | None, value: float) bool¶
Write a double
valueto the project file.Keys are ‘/’-delimited entries, implying a hierarchy of keys and corresponding values
Note
The key string must be valid xml tag names in order to be saved to the file.
See also
- Parameters:
scope (Optional[str])
key (Optional[str])
value (float)
- Return type:
bool
- signal writeMapLayer[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.
- writePath(self, filename: str | None) str[source]¶
Prepare a filename to save it to the project file. Creates an absolute or relative path according to the project settings. Paths written to the project file should be prepared with this method.
- Parameters:
filename (Optional[str])
- Return type:
str
- signal writeProject[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.