Thanks you guys.<br><br>The SQL statement did the trick.<br><br><div class="gmail_quote">2010/2/9 Frank Warmerdam <span dir="ltr">&lt;<a href="mailto:warmerdam@pobox.com">warmerdam@pobox.com</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">Peter Rankor wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
List,<br>
<br>
I need to rasterize a polygon layer coming from a SHP file. However, the values in the outputraster need to be the FID of the corresponding polygon.<br>
<br>
My command:<br>
gdal_rasterize -a FID -l FECS FECS.shp flattenedRaster.tif<br>
</blockquote>
<br></div>
Peter,<br>
<br>
Could you try:<br>
<br>
gdal_rasterize -a FID \<br>
    -sql &quot;select FID, * from FECS&quot; FEC.shp flattenedRaster.tif<br>
<br>
The ExecuteSQL() method invoked for -sql should be able to treat FID<br>
as a pseudo-attribute.  It&#39;s a bit unfortunate this sort of thing doesn&#39;t<br>
work directly without the SQL route.<br>
<br>
Best regards,<br><font color="#888888">
-- <br>
---------------------------------------+--------------------------------------<br>
I set the clouds in motion - turn up   | Frank Warmerdam, <a href="mailto:warmerdam@pobox.com" target="_blank">warmerdam@pobox.com</a><br>
light and sound - activate the windows | <a href="http://pobox.com/%7Ewarmerdam" target="_blank">http://pobox.com/~warmerdam</a><br>
and watch the world go round - Rush    | Geospatial Programmer for Rent<br>
<br>
</font></blockquote></div><br>