<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Nov 25, 2014 at 11:25 AM, Martin Landa <span dir="ltr"><<a href="mailto:landa.martin@gmail.com" target="_blank">landa.martin@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<span class=""><br>
2014-11-25 17:06 GMT+01:00 Erick Opiyo <<a href="mailto:osgis.dev@gmail.com">osgis.dev@gmail.com</a>>:<br>
<br>
> If I set overwrite=True, then it would make my script overwrite an already<br>
> processed images, I'm executing the script a numbers of times to match my<br>
> machine CPU load average and the overwrite check, makes sure that a<br>
> subsequent process skips an already processes image from a previously<br>
> executed process.<br>
<br>
</span>well, but it's related to the error<br>
<br>
ERROR: output map <MOD13Q1.h16v05.2000081.EVI.<br>
Filtered.tiff> exists<br></blockquote><div><br></div><div>if you want to ignore it, you can catch the exception:</div><div><br></div><div>from grass.exceptions import CalledModuleError</div><div>...</div><div><br></div><div>try:</div><div>    # call mapcalc</div><div>except CalledModuleError:</div><div>    pass</div><div><br></div><div>Anna</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
...<br>
<div class="HOEnZb"><div class="h5"><br>
Martin<br>
<br>
--<br>
Martin Landa<br>
<a href="http://geo.fsv.cvut.cz/gwiki/Landa" target="_blank">http://geo.fsv.cvut.cz/gwiki/Landa</a><br>
<a href="http://gismentors.eu/mentors/landa" target="_blank">http://gismentors.eu/mentors/landa</a><br>
_______________________________________________<br>
grass-dev mailing list<br>
<a href="mailto:grass-dev@lists.osgeo.org">grass-dev@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/grass-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/grass-dev</a><br>
</div></div></blockquote></div><br></div></div>