[GRASS-user] winGrass daily builds - available?

2011-03-09 Thread Sharon M
Could someone advise if the winGrass daily binary snapshots (6.4, 6.5 and 7.0) are still available as the link to the snapshots on the Grass download page (Grass page: http://grass.osgeo.org/grass64/binary/mswindows/native/ to Binary Snapshot link e.g. http://josef.fsv.cvut.cz/wingrass/grass64/)

[GRASS-user] NOAA/NWS GRASS GIS Workshop — CANCELLED!!!

2011-03-09 Thread Thomas Adams
All: Regrettably, I must announce that the NOAA/NWS GRASS GIS Workshop is -CANCELLED- due to the U.S. Federal Budget problems. The funds that we had been promised to sponsor the Workshop were cut. I sincerely apologize for all inconveniences this may cause you. I hope we can do the Workshop

Re: [GRASS-user] r.rescale error

2011-03-09 Thread Glynn Clements
Ned Horning wrote: > I am trying to run r.rescale to apply a contrast stretch to an image to > allow me to more easily locate ground control points using Georectify. > When I run the following command: > > r.rescale input=Quickbird.blue@PERMANENT from=48,106 > output=Quickbird.blue.scale to=0

Re: [GRASS-user] Some thoughts on wxGUI (GRASS Community Sprint)

2011-03-09 Thread stephen sefick
I can help, but this is my field season and I will be galavanting around the SE US. On Mar 9, 2011, at 3:24 PM, Martin Landa wrote: Hi, 2011/3/9 Markus Neteler : http://grass.osgeo.org/wiki/WxGUI#General_GUI_Design -> Proposal for wxGUI layout modification (Recomposition of existing tool

Re: [GRASS-user] Re: GRASS script to export raster

2011-03-09 Thread Glynn Clements
Kim Besson wrote: > WHat I need is to: > - Export raster values in an ASCII file written from left to right and > bottom to top and each line only includes Raster value (not X neither Y). > Is this possible in GRASS with a Python Script? Use r.out.ascii and tac. r.out.ascii writes the cell valu

Re: [GRASS-user] Some thoughts on wxGUI (GRASS Community Sprint)

2011-03-09 Thread Martin Landa
Hi, 2011/3/9 Markus Neteler : > http://grass.osgeo.org/wiki/WxGUI#General_GUI_Design > -> Proposal for wxGUI layout modification (Recomposition of existing toolbars, >   mapview and menus) > > which is essentially trapping the individual wxGUI windows in a single one. > At least optionally... pro

Re: [GRASS-user] Some thoughts on wxGUI (GRASS Community Sprint)

2011-03-09 Thread Markus Neteler
On Tue, Mar 8, 2011 at 6:20 PM, stephen sefick wrote: > On Mar 8, 2011, at 8:46 AM, Martin Landa wrote: >> 2011/3/7 Carlos Grohmann : ... >> Anyway creating separate >> window is not good solution, the more windows the worse for the user. >> > > Less Windows.  I suggest at most three and preferabl

[GRASS-user] r.rescale error

2011-03-09 Thread Ned Horning
Hi - I am trying to run r.rescale to apply a contrast stretch to an image to allow me to more easily locate ground control points using Georectify. When I run the following command: r.rescale input=Quickbird.blue@PERMANENT from=48,106 output=Quickbird.blue.scale to=0,255 I get the followin

Re: [GRASS-user] Re: GRASS script to export raster

2011-03-09 Thread Kim Besson
Hi Glynn, Martin, Hamish and rest of GRASS mailing list Thanks for your feedback. Unfortunely, I was "analyzing" my problem in the wrong way... WHat I need is to: - Export raster values in an ASCII file written from left to right and bottom to top and each line only includes Raster value (not X ne

Re: [GRASS-user] Re: GRASS script to export raster

2011-03-09 Thread Glynn Clements
Martin Landa wrote: > > so just flipping all the rows in the file you can get now? > > > > don't know how to do that in python, but if unix shell powertools are > > available: > >   r.out.ascii | tac > print os.linesep.join(reversed(grass.read_command('r.out.ascii', FWIW, both of these are sub

[GRASS-user] wxPython GUI thoughts

2011-03-09 Thread stephen sefick
I have since erased the thread that I should probably be responding to, but here is a wish of mine. The ability to dock and un-dock windows in the main layer manager. This would be much like firefox: grab the tab, drag, and new window; desktop to cluttered: grab the window, drag back int

Re: [GRASS-user] Re: GRASS script to export raster

2011-03-09 Thread Martin Landa
2011/3/9 Hamish : [...] > so just flipping all the rows in the file you can get now? > > don't know how to do that in python, but if unix shell powertools are > available: >   r.out.ascii | tac import os import grass.script as grass print os.linesep.join(reversed(grass.read_command('r.out.ascii