<div dir="ltr">Hi Joseph<div><br></div><div>If you just want to highlight a particular feature, you do not need to use the identify tool. The following code will load a feature and highlight it in canvas. It should work if you try it in QGIS python console.</div><div><br></div><div><div>l = iface.activeLayer()   # your layer</div><div>fid = 10   # your feature id</div></div><div><br></div><div><div>from PyQt4.QtCore import Qt</div><div>from qgis.gui import *</div><div>f = l.getFeatures(QgsFeatureRequest(fid)).next()<br></div><div>r = QgsRubberBand(iface.mapCanvas())</div><div>r.setColor(Qt.red)</div><div>r.setToGeometry(f.geometry(), l)</div><div>r.show()</div></div><div><br></div><div>If your layer is a polygon layer (instead of line layer), add second argument to QgsRubberBand with value QGis.Polygon</div><div><br></div><div>Cheers</div><div>Martin</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Jan 17, 2015 at 4:08 AM, jKrienert <span dir="ltr"><<a href="mailto:krienert@gmail.com" target="_blank">krienert@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hoping to activate the identify feature tool for a specific feature via<br>
PyQgis.<br>
I have asked the question in another forum (link below), but it seemed that<br>
planting a seed here might help reveal a solution.<br>
gis.stackexchange posting<br>
<<a href="http://gis.stackexchange.com/questions/130552/identifyfeature-use-via-pyqgis" target="_blank">http://gis.stackexchange.com/questions/130552/identifyfeature-use-via-pyqgis</a>><br>
After spending much time on the issue, I am concerned as to if even such a<br>
process is possible...<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://osgeo-org.1560.x6.nabble.com/Identify-Feature-programatically-PyQgis-tp5181980.html" target="_blank">http://osgeo-org.1560.x6.nabble.com/Identify-Feature-programatically-PyQgis-tp5181980.html</a><br>
Sent from the Quantum GIS - Developer mailing list archive at Nabble.com.<br>
_______________________________________________<br>
Qgis-developer mailing list<br>
<a href="mailto:Qgis-developer@lists.osgeo.org">Qgis-developer@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/qgis-developer" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-developer</a><br>
</blockquote></div><br></div>