<div>Hi Markus,</div>
<div> </div>
<div>Under windows I needed only small changes</div>
<div> </div>
<div>rasterfiles &lt;- read.table(textConnection(system(&quot;g.mlist.exe rast pattern=*output*&quot;, intern = TRUE)))<br></div>
<div>Thanks a lot,</div>
<div> </div>
<div>milton<br><br></div>
<div class="gmail_quote">2009/5/4 Markus Neteler <span dir="ltr">&lt;<a href="mailto:neteler@osgeo.org">neteler@osgeo.org</a>&gt;</span><br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<div class="im">On Mon, May 4, 2009 at 8:57 PM, Milton Cezar Ribeiro<br>&lt;<a href="mailto:miltinho.astronauta@gmail.com">miltinho.astronauta@gmail.com</a>&gt; wrote:<br>&gt; Dear all,<br>&gt;<br>&gt; I am running R inside GRASS 6.4 and I can see a list<br>
&gt; of all my raster files when I type (from the R session)<br>&gt;<br>&gt; system(&quot;g.list rast&quot;)<br>&gt;<br>&gt; But I would like to pass the list of rasters to a vector object in R.<br>&gt;<br>&gt; I tryed innocently this, but not worked:<br>
&gt;<br>&gt; my.rast.list&lt;-system(&quot;g.list rast&quot;)<br><br></div>Try this:<br><br>&gt; rasterfiles &lt;- read.table(textConnection(system(&quot;g.mlist rast&quot;,intern = TRUE)))<br>&gt; str(rasterfiles)<br>&#39;data.frame&#39;:   42 obs. of  1 variable:<br>
 $ V1: Factor w/ 42 levels &quot;aspect&quot;,&quot;basin_50K&quot;,..: 31 1 2 3 4 5 6 7 8 9 ...<br>&gt; rasterfiles<br>                    V1<br>1            myfacility<br>2                aspect<br>3             basin_50K<br>
4  boundary_county_500m<br>...<br>
<div class="im"><br>&gt; I also would like to define a pattern of raster names to the g.list command,<br>&gt; like only return that raster names that have &quot;_output_&quot; on the name.<br><br></div>So:<br>&gt; rasterfiles &lt;- read.table(textConnection(system(&quot;g.mlist rast pattern=&quot;*_output_*&quot;,intern = TRUE)))<br>
&gt; str(rasterfiles)<br>
<div class="im"><br><br><br>&gt; By the way, I am running GRASS inside MSYS, under windows.<br><br></div>Please report if above works (as it does on Linux).<br><font color="#888888"><br>Markus<br></font></blockquote></div>
<br>