AspectLayerGroup
- class AspectLayerGroup
-
- property name
The name of the aspect layer group.
- Type
- Raises
ReadOnlyError -- If
Database
is in read only mode.
- property visible
The aspect layer group visibility.
- Type
- Raises
ReadOnlyError -- If
Database
is in read only mode.
- property parent_group
The parent group of this group or
None
if the group is at the root of the hierarchy.- Type
- Raises
ReadOnlyError -- If
Database
is in read only mode.
- list_aspect_layers(recursive=True)
List the aspect layers of the group.
- list_child_groups(recursive=True)
List the child aspect layer groups of this group.
- duplicate()
Duplicate this aspect layer group.
- Returns
The duplicated aspect layer group.
- Return type
- Raises
ReadOnlyError -- If
Database
is in read only mode.
- remove(force=False)
Delete a aspect layer group
Note
By default, only empty groups can be deleted (
NotEmptyError
is raised otherwise), useforce
to force deletion of non empty groups.- Parameters
force (bool) -- Force the deletion of the group even if it contains aspect layers and/or groups.
- Raises
NotEmptyError -- If
force
isFalse
and the group contains aspect layers and/or groups.ReadOnlyError -- If
Database
is in read only mode.