Re: [GRASS-user] Suggestion for creating a script to create a map of agricultural capacity

2013-05-29 Thread Moritz Lennert
On 28/05/13 21:33, Glynn Clements wrote: But for this specific case, it's probably simpler to just generate an integer version of the slope map (if it isn't already) and use r.reclass, e.g. r.reclass input=slope output=slope.reclass rules=-EOF 0 thru 2 = 1 3 thru 5 = 2

Re: [GRASS-user] Using wildcards or regular expressions in r.gui.animation?

2013-05-29 Thread Rainer M. Krug
Hamish hamis...@yahoo.com writes: Rainer wrote: is it possible to specify the names of the raster maps to be animated by using UNIX style wild cards as in r.out.mpeg, i.e. use g.mlist. for example: r.patch out=mosaic.dem in=`g.mlist rast patt=tile.* sep=,` True - should have thought

Re: [GRASS-user] Suggestion for creating a script to create a map of agricultural capacity

2013-05-29 Thread Hamish
Glynn wrote: But for this specific case, it's probably simpler to just generate an integer version of the slope map (if it isn't already) and use r.reclass, e.g.     r.reclass input=slope output=slope.reclass rules=- EOF     0 thru 2 = 1     3 thru 5 = 2     6 thru 10 = 3     11 thru 15

Re: [GRASS-user] r.viewshed Python Script OSError

2013-05-29 Thread Martin Lacayo
Hi Markus, Thank you for the link, that is very helpful. I would prefer to use SEXTANTE over GRASS since it also gives access to other tools as well, but so far I have had more luck with GRASS. I will post an update once one of these approaches works. I've compiled and installed GRASS 6.4.3RC3

Re: [GRASS-user] Suggestion for creating a script to create a map of agricultural capacity

2013-05-29 Thread Glynn Clements
Hamish wrote: But for this specific case, it's probably simpler to just generate an integer version of the slope map (if it isn't already) and use r.reclass, e.g.     r.reclass input=slope output=slope.reclass rules=- EOF     0 thru 2 = 1     3 thru 5 = 2     6 thru 10 = 3