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

2013-05-28 Thread Micha Silver
On 27/05/2013 22:36, Marcello Benigno wrote: Hi Micha, About: Not sure I understand the logic of taking the highest value This was defined by an agronomist, I also do not understand

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

2013-05-28 Thread Marcello Benigno
Micha, Thank you very for helping me. Regards, -- *Marcello Benigno B. de Barros Filho* Prof. do Curso Superior de Tecnologia em Geoprocessamento - IFPB Mestre em Ciências Geodésicas e Tecnologias da Geoinformação - UFPE Doutorando em Tecnologia Ambiental e Recursos Hídricos - UFPE

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

2013-05-28 Thread Rainer M. Krug
Hi 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. , | g.gui.animation rast=rain[1-9],rain1[0-2] ` is not working. It would be very useful to be able to use these. Second question concerns the different

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

2013-05-28 Thread Martin Lacayo
Hi Markus, I did install r.viewshed (it is located in ~/.grass6/addons/), and the full path does appear in $PATH. I am executing the Python script from outside of GRASS. Is this normal? I am hoping for some advice on this. The intent is to liberate some software (naturalcapitalproject.org) from

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

2013-05-28 Thread Markus Metz
On Tue, May 28, 2013 at 7:09 PM, Martin Lacayo mlac...@stanford.edu wrote: Hi Markus, I did install r.viewshed (it is located in ~/.grass6/addons/), and the full path does appear in $PATH. I am executing the Python script from outside of GRASS. Is this normal? I am hoping for some advice on

[GRASS-user] reset zone in projection settings

2013-05-28 Thread Janet Choate
Hello GRASS users, i have reset my locations projection settings - for the purpose of updating the zone from 0 to 11. however, after running g.setproj to make this change, g.region -p still shows the zone set to 0. is there another command that i should use, or a series of commands that need to

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

2013-05-28 Thread Glynn Clements
Marcello Benigno wrote: If you can help me also in this tip, I would be very grateful, I'm reclassifying the slope as follows: r.mapcalc class_1 = 'if(slope = 2.0, 1, null())' r.mapcalc class_2 = 'if(2.0 slope = 5, 2, null())' r.mapcalc class_3 = 'if(5 slope = 10, 3, null())' r.mapcalc

Re: [GRASS-user] reset zone in projection settings

2013-05-28 Thread Paul Kelly
On Tue, 28 May 2013, Janet Choate wrote: Hello GRASS users,i have reset my locations projection settings - for the purpose of updating the zone from 0 to 11.  however, after running g.setproj to make this change, g.region -p still shows the zone set to 0.  is there another command that i

Re: [GRASS-user] reset zone in projection settings

2013-05-28 Thread Nikos Alexandris
Janet Choate wrote: Hello GRASS users,i have reset my locations projection settings - for the purpose of updating the zone from 0 to 11. however, after running g.setproj to make this change, g.region -p still shows the zone set to 0. is there another command that i should use, or a

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

2013-05-28 Thread Hamish
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=,` there's another example in the r.series help page. Hamish