<div dir="ltr">Laura,<div>  This might be one method for your multiple NoDATA issue. </div><div><br></div><div>There is in the python example in the *samples *directory called val_repl.py (value replace). It allows you to change one value to another but by switching the line below you can make it greater or less than a certain value. This might allow to first map all you NoDATA values to a single NoDATA before running gdalwarp.</div>

<div><br></div><div>original val_repl.py: <a href="http://svn.osgeo.org/gdal/trunk/gdal/swig/python/samples">http://svn.osgeo.org/gdal/trunk/gdal/swig/python/samples</a></div><div><br></div><div>"val_repl_greater.py" is simply the sample "val_repl.py" (from link above) with one line changed</div>

<div><br></div><div>replace<br></div><div>    scanline = numpy.choose(numpy.equal(scanline,inNoData),(scanline,outNoData))</div><div>with</div><div>    scanline = numpy.choose(numpy.greater(scanline,inNoData),(scanline,outNoData))</div>

<div><br></div><div>good luck,</div><div>Trent</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Oct 28, 2013 at 6:57 AM, laura0 <span dir="ltr"><<a href="mailto:lauramail@iol.it" target="_blank">lauramail@iol.it</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all,<br>
I have discovered gdalwarp options -srcnodata -dstnodata support just 1 no<br>
data value per band. Is there a way to set multiple values to NoData?<br>
<br>
Thanks much,<br>
Laura<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://osgeo-org.1560.x6.nabble.com/gdalwarp-multiple-nodata-tp5086084.html" target="_blank">http://osgeo-org.1560.x6.nabble.com/gdalwarp-multiple-nodata-tp5086084.html</a><br>
Sent from the GDAL - Dev mailing list archive at Nabble.com.<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>
</blockquote></div><br></div>