<div class="gmail_quote">Here&#39;s another way you can do it, a Python script that will create discreet color classes from a grayscale image.  It uses a function named MakeColor which is currently set to work on Z values between 0 and 255.  You can test it by converting your file into an 8-bit version (gdal_translate -scale -ot Byte &lt;infile&gt; &lt;outfile&gt; ), and then running the tool on it.  Once you see how it works, it should be pretty simple to modify the function to deal with the actual ranges in your data.<br>
<br>Roger<br>--<br><br>On Thu, Apr 9, 2009 at 4:24 PM, alvarez00 <span dir="ltr">&lt;<a href="mailto:oalvarez00@gmail.com">oalvarez00@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
I&#39;m trying to make a color ramp for a 1-band tiff file or a jpeg. I have a 1-band tiff file and I converted that tiff file into VRT. I was reading some of the posts and some suggest to modify the VRT file and add a ColorTable tag but that doesn&#39;t work. My objective is to show the tiff(or)jpeg on google earth. I&#39;m running version 1.4.1.0 of gdal. Below is the VRT file without any modifications. What I modify was the &#39;&lt;ColorInterp&gt;Gray&lt;/ColorInterp&gt;&#39; to &#39;&lt;ColorInterp&gt;Palette&lt;/ColorInterp&gt;&#39; and added a ColorTable.<br>

<br>
VRTDataset rasterXSize=&quot;1200&quot; rasterYSize=&quot;1096&quot;&gt;<br>
  &lt;SRS&gt;GEOGCS[&amp;quot;NAD83&amp;quot;,DATUM[&amp;quot;North_American_Datum_1983&amp;quot;,SPHEROID[&amp;quot;GRS 1980&amp;quot;,6378137,298.2572221010002,AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;7019&amp;quot;]],AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;6269&amp;quot;]],PRIMEM[&amp;quot;Greenwich&amp;quot;,0],UNIT[&amp;quot;degree&amp;quot;,0.0174532925199433],AUTHORITY[&amp;quot;EPSG&amp;quot;,&amp;quot;4269&amp;quot;]]&lt;/SRS&gt;<br>

  &lt;GeoTransform&gt; -1.2459079918952935e+02,  8.9964705882352915e-03,  0.0000000000000000e+00,  4.2216820949146452e+01,  0.0000000000000000e+00, -8.9964705882352915e-03&lt;/GeoTransform&gt;<br>
  &lt;Metadata&gt;<br>
    &lt;MDI key=&quot;AREA_OR_POINT&quot;&gt;Area&lt;/MDI&gt;<br>
  &lt;/Metadata&gt;<br>
  &lt;VRTRasterBand dataType=&quot;Float32&quot; band=&quot;1&quot;&gt;<br>
    &lt;Metadata/&gt;<br>
    &lt;NoDataValue&gt;-3.40282346638529E+38&lt;/NoDataValue&gt;<br>
    &lt;ColorInterp&gt;Gray&lt;/ColorInterp&gt;<br>
    &lt;SimpleSource&gt;<br>
      &lt;SourceFilename relativeToVRT=&quot;1&quot;&gt;GoesWest1V1561915.tif&lt;/SourceFilename&gt;<br>
      &lt;SourceBand&gt;1&lt;/SourceBand&gt;<br>
      &lt;SrcRect xOff=&quot;0&quot; yOff=&quot;0&quot; xSize=&quot;1200&quot; ySize=&quot;1096&quot;/&gt;<br>
      &lt;DstRect xOff=&quot;0&quot; yOff=&quot;0&quot; xSize=&quot;1200&quot; ySize=&quot;1096&quot;/&gt;<br>
    &lt;/SimpleSource&gt;<br>
  &lt;/VRTRasterBand&gt;<br>
&lt;/VRTDataset&gt;<br>
<font color="#888888"><br>
--<br>
View this message in context: <a href="http://n2.nabble.com/1-band-TIFF-FILE-color-ramp-NEEDED-tp2613963p2613963.html" target="_blank">http://n2.nabble.com/1-band-TIFF-FILE-color-ramp-NEEDED-tp2613963p2613963.html</a><br>

Sent from the GDAL - Dev mailing list archive at Nabble.com.<br>
<br>
_______________________________________________<br>
gdal-dev mailing list<br>
<a href="mailto:gdal-dev@lists.osgeo.org">gdal-dev@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/gdal-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/gdal-dev</a><br>
</font></blockquote></div><br>