Re: [GRASS-dev] Who wants GUI and who does not and why

2014-05-02 Thread Rainer M Krug
Luca Delucchi lucadel...@gmail.com writes: On 18 April 2014 11:15, Pietro peter.z...@gmail.com wrote: Hi Vaclav, actually I'm a bit more extremist... :-) I would like to split GRASS in three main parts: - grass-lib - grass-cli - grass-gui I also like this idea... I think this would

Re: [GRASS-dev] wxGUI data catalog

2014-05-02 Thread Moritz Lennert
On 01/05/14 19:18, Martin Landa wrote: Hi all, one of my students (Tereza, cc'ed) started to work on simple version of the data catalog implemented as a new tab in Layer Manager. This tool will allow to manage maps in the current location (remove, copy, or rename). Later could be added support

[GRASS-dev] [GRASS GIS] #2276: r.covar: output N (number of cells considered)

2014-05-02 Thread GRASS GIS
#2276: r.covar: output N (number of cells considered) -+-- Reporter: mlennert | Owner: grass-dev@… Type: defect | Status: new Priority: normal |

[GRASS-dev] [GRASS GIS] #2277: graphically set up region bounds

2014-05-02 Thread GRASS GIS
#2277: graphically set up region bounds -+-- Reporter: vincent | Owner: grass-dev@… Type: enhancement | Status: new Priority: normal | Milestone: 6.4.4

Re: [GRASS-dev] Who wants GUI and who does not and why

2014-05-02 Thread Huidae Cho
I agree. grass-cli and grass-gui should be completely independent and at the same level. They are simply two different UIs that directly depend on grass-lib. The user wants either grass-cli grass-lib or grass-gui grass-lib. Now, my opinion is if we put analysis and modeling code in grass-lib,

Re: [GRASS-dev] sample dataset for temporal data

2014-05-02 Thread Anna Petrášová
One more thing, to test the dataset, look at the examples here: http://courses.ncsu.edu/mea592/common/Assign_GISmdmodel/a_temporal.html Anna On Tue, Apr 29, 2014 at 5:07 PM, Anna Petrášová kratocha...@gmail.comwrote: Hi, since more and more users are using temporal framework, we should

Re: [GRASS-dev] [GRASS GIS] #2277: graphically set up region bounds

2014-05-02 Thread GRASS GIS
#2277: graphically set up region bounds -+-- Reporter: vincent | Owner: grass-dev@… Type: enhancement | Status: new Priority: normal | Milestone: 7.0.0

Re: [GRASS-dev] [GRASS GIS] #2277: graphically set up region bounds

2014-05-02 Thread GRASS GIS
#2277: graphically set up region bounds -+-- Reporter: vincent | Owner: grass-dev@… Type: enhancement | Status: new Priority: normal | Milestone: 7.0.0

Re: [GRASS-dev] Who wants GUI and who does not and why

2014-05-02 Thread Moritz Lennert
On 02/05/14 14:29, Huidae Cho wrote: I agree. grass-cli and grass-gui should be completely independent and at the same level. They are simply two different UIs that directly depend on grass-lib. The user wants either grass-cli grass-lib or grass-gui grass-lib. Now, my opinion is if we put

Re: [GRASS-dev] g.mremove: adding 'map name exclusion pattern' option

2014-05-02 Thread Markus Neteler
On Fri, May 2, 2014 at 3:01 AM, Huidae Cho gras...@gmail.com wrote: Well, the g.mremove interface looks convenient, but can be dangerous also. For example, yesterday, I almost deleted my raster files by using the positional parameter thing while trying to delete all my temporary vectors.

Re: [GRASS-dev] Who wants GUI and who does not and why

2014-05-02 Thread Huidae Cho
I'm not talking about the current structure. Yes, the modules are the CLI right now and the GUI calls the CLI modules internally. What I'm saying is that it would great if we could separate the logic and CLI and put the logic in plugins and let the CLI and GUI calls the logic. GUI would be

Re: [GRASS-dev] Who wants GUI and who does not and why

2014-05-02 Thread Huidae Cho
On Fri, May 2, 2014 at 10:03 AM, Vaclav Petras wenzesl...@gmail.com wrote: On Fri, May 2, 2014 at 8:29 AM, Huidae Cho gras...@gmail.com wrote: I agree. grass-cli and grass-gui should be completely independent and at the same level. They are simply two different UIs that directly depend on

Re: [GRASS-dev] [GRASS-SVN] r60048 - grass/trunk/vector/v.in.db

2014-05-02 Thread Martin Landa
Hi, 2014-05-02 18:53 GMT+02:00 svn_gr...@osgeo.org: -Vect_open_new(Map, outvect-answer, with_z); +if (Vect_open_new(Map, outvect-answer, with_z) == -1) + exit(EXIT_FAILURE); + please provide more info where it fails. Also note that Vect_open_new calls G_fatal_error() so the

Re: [GRASS-dev] [GRASS-SVN] r60048 - grass/trunk/vector/v.in.db

2014-05-02 Thread Huidae Cho
Segmentation fault when you do v.in.db ... output=a@other_mapset because Vect_open_new returns -1 with a warning, not a fatal error, unable to create new ... is not the current mapset. I didn't check why it's returning -1 instead of throwing a fatal error in this case. I believe that this warning

Re: [GRASS-dev] [GRASS-SVN] r60048 - grass/trunk/vector/v.in.db

2014-05-02 Thread Huidae Cho
More detail.. When this happens, Map is not fully initialized and following Vect_* calls with Map can fail unexpectedly, which caused a segmentation fault in this case. On Fri, May 2, 2014 at 1:15 PM, Huidae Cho gras...@gmail.com wrote: Segmentation fault when you do v.in.db ...

Re: [GRASS-dev] wxGUI data catalog

2014-05-02 Thread Vaclav Petras
On Thu, May 1, 2014 at 1:18 PM, Martin Landa landa.mar...@gmail.com wrote: one of my students (Tereza, cc'ed) started to work on simple version of the data catalog implemented as a new tab in Layer Manager. This tool will allow to manage maps in the current location (remove, copy, or rename).

Re: [GRASS-dev] [GRASS-SVN] r60048 - grass/trunk/vector/v.in.db

2014-05-02 Thread Huidae Cho
OK, I did a quick search and there are 104 calls to Vect_open_new. 63 calls don't check its return value and 41 calls check. 27 of the 41 that do the check do some cleaning work before finally throwing a fatal error. Most of the cleaning work is Vect_close(already open vectors), which I don't

Re: [GRASS-dev] Who wants GUI and who does not and why

2014-05-02 Thread Blumentrath, Stefan
Hi, if you allow me a user comment on this: The user wants either grass-cli grass-lib or grass-gui grass-lib. Actually, the combination of CLI and GUI is extremely handy in everyday work, which is why I regularly introduce students quite early to this combination. The possibility to copy

Re: [GRASS-dev] [GRASS GIS] #2275: g.gui.timeline datasets with the same name

2014-05-02 Thread GRASS GIS
#2275: g.gui.timeline datasets with the same name +--- Reporter: martinl | Owner: grass-dev@… Type: defect | Status:

Re: [GRASS-dev] [GRASS GIS] #2273: g.gui.animation ignores search path for spatio-temporal datasets

2014-05-02 Thread GRASS GIS
#2273: g.gui.animation ignores search path for spatio-temporal datasets --+- Reporter: martinl | Owner: grass-dev@… Type: defect| Status: new

Re: [GRASS-dev] [GRASS GIS] #2273: g.gui.animation ignores search path for spatio-temporal datasets

2014-05-02 Thread GRASS GIS
#2273: g.gui.animation ignores search path for spatio-temporal datasets --+- Reporter: martinl | Owner: grass-dev@… Type: defect| Status: new

Re: [GRASS-dev] [GRASS GIS] #2275: g.gui.timeline datasets with the same name

2014-05-02 Thread GRASS GIS
#2275: g.gui.timeline datasets with the same name +--- Reporter: martinl | Owner: grass-dev@… Type: defect | Status:

Re: [GRASS-dev] [GRASS GIS] #2267: t.list doesn't respect search path

2014-05-02 Thread GRASS GIS
#2267: t.list doesn't respect search path --+- Reporter: martinl | Owner: grass-dev@… Type: defect | Status: closed Priority: normal | Milestone:

Re: [GRASS-dev] wxGUI data catalog

2014-05-02 Thread Anna Petrášová
Hi, On Thu, May 1, 2014 at 1:18 PM, Martin Landa landa.mar...@gmail.com wrote: Hi all, one of my students (Tereza, cc'ed) started to work on simple version of the data catalog implemented as a new tab in Layer Manager. This tool will allow to manage maps in the current location (remove,