<div dir="ltr">Hi Markus, Rainer, all,<div><br></div><div>Thanks a lot for the help! :) </div><div><br></div><div>I've now completed the update of: </div><div><a href="http://grasswiki.osgeo.org/wiki/R_statistics/rgrass7#GRASS_within_R" target="_blank">http://grasswiki.osgeo.org/wiki/R_statistics/rgrass7#GRASS_within_R</a></div><div><br></div><div>Cheers, </div><div>Vero</div><div><br></div><div>ps: I insist it would be awesome to also have support to read/write spatio-temporal raster datasets (strds) in rgrass7 :)</div></div><div class="gmail_extra"><br><div class="gmail_quote">2015-07-31 11:56 GMT-03:00 Markus Neteler <span dir="ltr"><<a href="mailto:neteler@osgeo.org" target="_blank">neteler@osgeo.org</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<span class=""><br>
On Fri, Jul 24, 2015 at 9:47 AM, Rainer M Krug <<a href="mailto:Rainer@krugs.de">Rainer@krugs.de</a>> wrote:<br>
> Markus Neteler <<a href="mailto:neteler@osgeo.org">neteler@osgeo.org</a>> writes:<br>
><br>
>> On Wed, Jul 22, 2015 at 3:11 PM, Rainer M Krug <<a href="mailto:Rainer@krugs.de">Rainer@krugs.de</a>> wrote:<br>
>>> Hi Veronica,<br>
>>><br>
>>> Veronica Andreo <<a href="mailto:veroandreo@gmail.com">veroandreo@gmail.com</a>> writes:<br>
>>><br>
>>>> Hi,<br>
>>>><br>
>>>> I'm trying to run GRASS from R using:<br>
>>>><br>
>>>> library(rgrass7)<br>
>>>> initGRASS(gisBase="/home/veroandreo/software/grass-7.0.svn",<br>
>>>>           home=tempdir(), gisDbase="/home/veroandreo/grassdata",<br>
>>>>           location="latlong_wgs84", mapset="clorofila", override=TRUE)<br>
>>><br>
>>> I assume you use Linux.<br>
>>><br>
>>>><br>
>>>> but I get the following error:<br>
>>>><br>
>>>> sh: g.gisenv: command not found<br>
<br>
</span>so, I found the trick:<br>
<br>
In the first place, find out the path to the GRASS GIS library. This<br>
can be easily done with the following command (still outside of R; or<br>
through a system() call inside of R):<br>
<br>
 grass70 --config path<br>
<br>
<br>
It may report something like:<br>
 /home/veroandreo/software/grass-7.0.svn/dist.x86_64-unknown-linux-gnu<br>
<br>
This path must be used then:<br>
<br>
library(rgrass7)<br>
<br>
# initialisation and the use of North Carolina sample dataset<br>
initGRASS(gisBase =<br>
"/home/veroandreo/software/grass-7.0.svn/dist.x86_64-unknown-linux-gnu",<br>
home = tempdir(),<br>
          gisDbase = "/home/veroandreo/grassdata/",<br>
          location = "nc_spm_08_grass7", mapset = "user1", SG="elevation",<br>
          override = TRUE)<br>
...<br>
<br>
and it works fine.<br>
<br>
I have updated the Wiki page accordingly:<br>
<a href="http://grasswiki.osgeo.org/wiki/R_statistics/rgrass7#GRASS_within_R" rel="noreferrer" target="_blank">http://grasswiki.osgeo.org/wiki/R_statistics/rgrass7#GRASS_within_R</a><br>
<br>
Cheers<br>
<span class="HOEnZb"><font color="#888888">Markus<br>
</font></span></blockquote></div><br></div>