<br><br><div class="gmail_quote"><br>Greetings<div>Thanks Markus and Milton for your help But...</div><div>Imagine that I&#39;m running a GRASS Script with Module, and all GRASS functions. How can I integrate it in there? I mean, the user selects a raster and How can i use that input to run a Script that calls R? That is my question. Because I can have a script, like you sent me, but it&#39;s not interactive... </div>

<div>Or is it easier using Python?<div><div></div><div class="h5"><br><br><div class="gmail_quote">On Fri, Apr 16, 2010 at 3:28 PM, Markus Neteler <span dir="ltr">&lt;<a href="mailto:neteler@osgeo.org" target="_blank">neteler@osgeo.org</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div><div></div><div>On Fri, Apr 16, 2010 at 11:21 AM, Gilbert Ferrara<br>
&lt;<a href="mailto:gilbertferrara1974@gmail.com" target="_blank">gilbertferrara1974@gmail.com</a>&gt; wrote:<br>
&gt; Good Morning<br>
&gt; I need to do something similar to what Neteler/Mitasova do in their book<br>
&gt; with spgrass6 and R. Since I will have to perform this a couple of times I<br>
&gt; want to build a simple Script with input/output GUI. But I have never seen a<br>
&gt; GRASS Bash script that calls R and spgrass6. So my question is? Does anyone<br>
&gt; have/knows one? If not, I just need to send to the command line exacly the<br>
&gt; same commands? e.g. R , summary(data) )<br>
<br>
</div></div>Yes. Example:<br>
<br>
GRASS 6.4.0svn (nc_spm_08):~ &gt; cat R_batch_nc.R<br>
library(spgrass6)<br>
mydem &lt;- readRAST6(&quot;elevation&quot;)<br>
summary(mydem)<br>
<br>
To run it inside GRASS, do<br>
<br>
GRASS 6.4.0svn (nc_spm_08):~ &gt; R CMD BATCH R_batch_nc.R<br>
<br>
The standard output result is stored in R_batch_nc.Rout. Of course<br>
you can also generate new GIS data in R and write them back to<br>
GRASS with writeRAST6() or writeVECT6().<br>
<br>
Hope this helps,<br>
<font color="#888888">Markus<br>
</font><br>
PS: Yes, I am also suprised that the GRASS Wiki isn&#39;t full of<br>
useful scripts calling R in GRASS in batch mode...<br>
</blockquote></div><br></div></div></div>
</div><br>