<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Alfredo Alessandrini schrieb:
<blockquote
 cite="mid:d2c05c5a0801280408q27277327qcc8f169e74c270e7@mail.gmail.com"
 type="cite">
  <pre wrap="">how can import a raster from a mapset to other?


Alfredo
_______________________________________________
grass-user mailing list
<a class="moz-txt-link-abbreviated" href="mailto:grass-user@lists.osgeo.org">grass-user@lists.osgeo.org</a>
<a class="moz-txt-link-freetext" href="http://lists.osgeo.org/mailman/listinfo/grass-user">http://lists.osgeo.org/mailman/listinfo/grass-user</a>
  </pre>
</blockquote>
>From current mapset&nbsp; just use
<br>
<font face="Courier New, Courier, monospace">g.copy
[rast=from@source_mapset,to]
</font><br>
<br>
i.e.
<br>
<font face="Courier New, Courier, monospace">g.copy
rast=map1@mapset1,map1
</font><br>
<br>
<br>
If you want to copie more than one maps you could use this script I
wrote:<br>
<br>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++<br>
<font face="Courier New, Courier, monospace">#!/bin/sh<br>
<br>
## copies all rastermaps (map) <br>
## r.copy map(1) map(2) map(n)<br>
## from desired mapset to the current mapset<br>
<br>
<br>
<br>
echo "Source-mapset?"<br>
read&nbsp; answer1<br>
echo "Would you like to add a suffix to the map-names?"<br>
echo "(i.e. '_a' results in map_a)"<br>
read answer2<br>
echo "Would you like a prefix to the map-names?"<br>
echo "(i.e. 'b_' results in b_map)"<br>
read answer3<br>
<br>
filelist=$*<br>
<br>
<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for f in $filelist ; do<br>
<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; echo copies ${f}\@${answer1} to ${answer3}$f${answer2}<br>
&nbsp;&nbsp;&nbsp; &nbsp; echo<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; g.copy rast=${f}\@${answer1},${answer3}$f${answer2}<br>
<br>
</font><font face="Courier New, Courier, monospace">###################################################################</font><br>
<font face="Courier New, Courier, monospace">####### for copying
vektorfiles change the scirpt in ##############<br>
</font><font face="Courier New, Courier, monospace">#</font><font
 face="Courier New, Courier, monospace">########</font><font
 face="Courier New, Courier, monospace"> g.copy
vect=${f}\@${answer1},${answer3}$f${answer2}######<br>
###################################################################<br>
</font><font face="Courier New, Courier, monospace"><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; done</font><br>
<br>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++<br>
You can list the desired mapset with i.e.<br>
<br>
<font face="Courier New, Courier, monospace">g.list rast
mapset=PERMANENT</font><br>
<br>
cheers
<br>
Philipp<br>
<br>
<br>
</body>
</html>