Hi there<div><br></div><div>I&#39;m doing a Python script, based on r.in.aster, to import a set of images but, I&#39;m not sure for that is used the following:</div><div>    grass.debug(&quot;gdalwarp -t_srs %s %s %s&quot; % (proj, srcfile, tempfile))</div>
<div>WHat is the point of using grass.debug if I do the following after this:</div><div><div>if platform.system() == &quot;Darwin&quot;:</div><div>        cmd = [&quot;arch&quot;, &quot;-i386&quot;, &quot;gdalwarp&quot;, &quot;-t_srs&quot;, proj, srcfile, tempfile ]</div>
<div>    else:</div><div>        cmd = [&quot;gdalwarp&quot;, &quot;-t_srs&quot;, proj, srcfile, tempfile ]</div><div>    p = grass.call(cmd)</div><div>    if p != 0:</div><div>        #check to see if gdalwarp executed properly</div>
<div>        return</div></div><div><br></div><div><br></div><div>Thanks</div><div><br>Luisa</div>