Saturday 14 February 2015

qgis - pyqgis traversing subgroups and group layers


I am trying to find the name of subgroups using pyqgis. I have been trying to use Playing with subgroups


I am however unable to traverse and get the names of the subgroup. I have tried the code on this article.


for child in root.children():
if isinstance(child, QgsLayerTreeGroup):
print "- group: " + child.name()

if child.name() == "test": #to check subgroups within test group
for child in root.children(): #which I think i am making a mistake here because the root is supposed to contain all nodes

Answer



Since you want to start reading children from your main group (not from root anymore), try this (pay attention to the last 3 lines):


for child in root.children():
if isinstance(child, QgsLayerTreeGroup):
print "- group: " + child.name()
if child.name() == "test": #to check subgroups within test group
for subChild in child.children():
if isinstance(subChild, QgsLayerTreeGroup):

subChild.name()

No comments:

Post a Comment

arcpy - Changing output name when exporting data driven pages to JPG?

Is there a way to save the output JPG, changing the output file name to the page name, instead of page number? I mean changing the script fo...