Ken,<br><br>KernelFilteredSource is derived from SimpleSource. It does not support setting a nodata value to the source band.<br>Make sure your source image has a nodata value. You can set it using gdal_translate with the -a_nodata option.<br>
<br><div class="gmail_quote">On Fri, Nov 19, 2010 at 2:10 AM, Boss, Ken (DNR) <span dir="ltr">&lt;<a href="mailto:Ken.Boss@state.mn.us">Ken.Boss@state.mn.us</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Chaitanya--<br>
<br>
Thanks much for your response.<br>
<br>
I don&#39;t think that I described my problem effectively.  Let me restate it and see if we are talking about the same thing.<br>
<br>
Here is a .vrt file that I think should accomplish what I am after:<br>
<div class="im"><br>
&lt;VRTDataset rasterYSize=&#39;690&#39; rasterXSize=&#39;575&#39;&gt;<br>
  &lt;SRS&gt;EPSG:26915&lt;/SRS&gt;<br>
  &lt;GeoTransform&gt;190000, 1000, 0, 4795000, 0, 1000&lt;/GeoTransform&gt;<br>
  &lt;VRTRasterBand band=&#39;1&#39; dataType=&#39;Byte&#39;&gt;<br>
    &lt;KernelFilteredSource&gt;<br>
</div>      &lt;SourceFilename&gt;D:/MyFiles/aptana_workspace/fire-webpage-mgmt/data/tmp_images/interpolated.tif&lt;/SourceFilename&gt;<br>
<div class="im">      &lt;SourceBand&gt;1&lt;/SourceBand&gt;<br>
      &lt;NoDataValue&gt;255&lt;/NoDataValue&gt;<br>
</div><div class="im">      &lt;Kernel normalized=&quot;1&quot;&gt;<br>
        &lt;Size&gt;5&lt;/Size&gt;<br>
        &lt;Coefs&gt;0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04&lt;/Coefs&gt;<br>
      &lt;/Kernel&gt;<br>
    &lt;/KernelFilteredSource&gt;<br>
  &lt;/VRTRasterBand&gt;<br>
&lt;/VRTDataset&gt;<br>
<br>
</div>I believe this file to be saying that interpolated.tif uses a value of 255 for nodata, and that the kernel is to be normalized - that is, it should:<br>
<br>
 o ignore any nodata pixels within the kernel window when operating on a valid pixel<br>
 o adjust the coefficients to sum to one for the number of valid pixels in the window when operating on a valid pixel<br>
 o do nothing at all when centered on a nodata pixel<br>
<br>
I would expect then that any pixels that go in as nodata should come out as nodata, and that pixels with valid data values that are near nodata pixels should not be influenced by them.<br>
<br>
However, the outputs are not what I expect.  The averaging is applied to both nodata and valid pixels alike.  Have I set this up correctly, and is there a bug somewhere, or (more likely) is my vrt improperly constructed?<br>

<br>
Thanks for your help,<br>
<font color="#888888"><br>
--Ken<br>
</font><div><div></div><div class="h5"><br>
&gt; -----Original Message-----<br>
&gt; From: Chaitanya kumar CH [mailto:<a href="mailto:chaitanya.ch@gmail.com">chaitanya.ch@gmail.com</a>]<br>
&gt; Sent: Wednesday, November 17, 2010 11:11 PM<br>
&gt; To: Boss, Ken (DNR)<br>
&gt; Cc: <a href="mailto:gdal-dev@lists.osgeo.org">gdal-dev@lists.osgeo.org</a><br>
&gt; Subject: Re: [gdal-dev] KernelFilteredSource and nodata<br>
&gt;<br>
&gt; Ken,<br>
&gt;<br>
&gt; The current kernel filter does not ignore the boundaries of nodata pixels. But it<br>
&gt; does normalize the kernel after ignoring the nodata pixels in the kernel, if the<br>
&gt; &#39;normalized&#39; attribute is set to 1.<br>
&gt;<br>
&gt; You can raise a ticket to request for this feature at<br>
&gt; <a href="http://trac.osgeo.org/gdal/newticket" target="_blank">http://trac.osgeo.org/gdal/newticket</a><br>
&gt;<br>
&gt;&gt; On Thu, Nov 18, 2010 at 6:08 AM, Boss, Ken (DNR) &lt;<a href="mailto:Ken.Boss@state.mn.us">Ken.Boss@state.mn.us</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt; Hello list--<br>
&gt;&gt;<br>
&gt;&gt; I am attempting to filter a raster using gdal_translate (v 1.7) and a vrt with a<br>
&gt;&gt; KernelFilteredSource.  The input raster contains large areas of &quot;nodata&quot; values.  I<br>
&gt;&gt; would like the filter to ignore those areas.  I have tried various combinations of<br>
&gt;&gt; &lt;NoDataValue&gt;, &lt;HideNoDataValue&gt;, &lt;NODATA&gt; and &lt;Kernel normalized=&#39;1&#39;&gt;,<br>
&gt;&gt; but have not been able to prevent the filter from applying itself at data/nodata<br>
&gt;&gt; boundaries.<br>
&gt;&gt;<br>
&gt;&gt; My current VRT and gdal_translate command lines are below.  Can anyone tell me<br>
&gt;&gt; what I am doing wrong?<br>
&gt;&gt;<br>
&gt;&gt; Thanks,<br>
&gt;&gt;<br>
&gt;&gt; Ken Boss<br>
&gt;&gt; Minnesota DNR<br>
&gt;&gt;<br>
&gt;&gt; ===== kernel_filter.vrt ===================<br>
&gt;&gt;<br>
&gt;&gt; &lt;VRTDataset rasterYSize=&#39;690&#39; rasterXSize=&#39;575&#39;&gt;<br>
&gt;&gt;  &lt;SRS&gt;EPSG:26915&lt;/SRS&gt;<br>
&gt;&gt;  &lt;GeoTransform&gt;190000, 1000, 0, 4795000, 0, 1000&lt;/GeoTransform&gt;<br>
&gt;&gt;  &lt;VRTRasterBand band=&#39;1&#39; dataType=&#39;Byte&#39;&gt;<br>
&gt;&gt;    &lt;KernelFilteredSource&gt;<br>
&gt;&gt;      &lt;SourceFilename&gt;interpolated.tif&lt;/SourceFilename&gt;<br>
&gt;&gt;      &lt;SourceBand&gt;1&lt;/SourceBand&gt;<br>
&gt;&gt;      &lt;NoDataValue&gt;255&lt;/NoDataValue&gt;<br>
&gt;&gt;      &lt;HideNoDataValue&gt;1&lt;/HideNoDataValue&gt;<br>
&gt;&gt;      &lt;Kernel normalized=&#39;1&#39;&gt;<br>
&gt;&gt;        &lt;Size&gt;5&lt;/Size&gt;<br>
&gt;&gt;        &lt;Coefs&gt;0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04<br>
&gt;&gt; 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04 0.04&lt;/Coefs&gt;<br>
&gt;&gt;      &lt;/Kernel&gt;<br>
&gt;&gt;    &lt;/KernelFilteredSource&gt;<br>
&gt;&gt;  &lt;/VRTRasterBand&gt;<br>
&gt;&gt; &lt;/VRTDataset&gt;<br>
&gt;&gt;<br>
&gt;&gt; =====================================<br>
&gt;&gt;<br>
&gt;&gt; gdal_translate -of GTiff -ot Byte -a_srs EPSG:26915 kernel_filter.vrt<br>
&gt;&gt; kernel_filtered.tif<br>
&gt;&gt;<br>
&gt; _______________________________________________<br>
&gt; gdal-dev mailing list<br>
&gt; <a href="mailto:gdal-dev@lists.osgeo.org">gdal-dev@lists.osgeo.org</a><br>
&gt; <a href="http://lists.osgeo.org/mailman/listinfo/gdal-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/gdal-dev</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Best regards,<br>
&gt; Chaitanya kumar CH.<br>
&gt; /tʃaɪθənjə/ /kʊmɑr/<br>
&gt; +91-9494447584<br>
&gt; 17.2416N 80.1426E<br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Best regards,<br>Chaitanya kumar CH.<br>/tʃaɪθənjə/ /kʊmɑr/ <br>+91-9494447584<br>17.2416N 80.1426E<br>