<div dir="ltr">I got this,<br><div>Map will contain a index to each color used in rendering.</div><div>If someone is having the same problem the example code is below:</div><div><br></div><div>from PyQt4.QtCore import QVariant<br></div><div><div><br></div><div>layer = iface.addVectorLayer("estados.shp", "estados", "ogr")</div><div>if not layer:</div><div>  print "Layer failed to load!"</div><div><br></div><div>layer.loadSldStyle("estados_Nome.sld")</div><div>color = 0</div><div>map = {}</div><div>for curRule in layer.rendererV2().rootRule().children() :</div><div>  layer.dataProvider().setSubsetString(curRule.filterExpression())</div><div>  color +=1</div><div>  for curFeature in layer.dataProvider().getFeatures():</div><div>    map[curFeature.id()] = color</div><div><br></div><div>layer.dataProvider().setSubsetString("")</div><div>map</div></div></div><div class="gmail_extra"><br><div class="gmail_quote">2015-09-10 14:14 GMT-03:00 Danilo da Silveira Figueira <span dir="ltr"><<a href="mailto:danilomalzao@hotmail.com" target="_blank">danilomalzao@hotmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hello All,<div><br></div><div>I'm stuck here, any help would be appreciated.</div><div>I have to create a attribute column with the respective color used in renderer of this attribute, i am using the <a href="http://qgis.org/api/classQgsVectorLayer.html" style="color:rgb(70,101,162);font-weight:bold;outline:none;font-family:Roboto,sans-serif;font-size:14px;white-space:nowrap;background-color:rgb(247,248,251)" target="_blank">QgsVectorLayer</a>.loadSldStyle that creates a <a href="http://qgis.org/api/classQgsRuleBasedRendererV2.html" style="color:rgb(70,101,162);font-weight:bold;outline:none;font-family:Roboto,sans-serif;font-size:14px;white-space:nowrap" target="_blank">QgsRuleBasedRendererV2</a> but the symbolsForFeature is returning empty.</div><div>With the symbol i could get the color and finish my job, but the symbolsList is always empty.</div><div><br></div><div>My Try:<br><br></div><div><div>layer = QgsVectorLayer("estados.shp", "estados", "ogr")</div><div>if not layer:</div><div>  print "Layer failed to load!"</div><div><br></div><div>layer.loadSldStyle("estados_Nome.sld")</div><div>layer.triggerRepaint()</div><div>for curFeature in layer.dataProvider().getFeatures():</div><div>  layer.rendererV2().symbolsForFeature(curFeature)</div></div><div><br></div></div>
</blockquote></div><br></div>