On Wed, May 20, 2009 at 9:04 PM, Milton Cezar Ribeiro <[email protected]> wrote: > Hi GrassGurus, > > I have a Project Location with two mapsets, like: > > MyProjLocation > +PERMANENT > +TEMP_mapset > > Now I need to move some rasters from @PERMANENT to @TEMP_mapset > I tryed something like: > g.copy rast=A @PERMENENT,A @TEMP_mapset (without spaces) > > But it not works.
What is the error? I suspect Illegal filename. Character <@> not allowed. Solution: don't specify @TEMP_mapset in the target name since you write to the current mapset. So: g.copy ras...@permanent,A will do it. Markus _______________________________________________ grass-user mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/grass-user
