Re: [GRASS-dev] the function of v.buffer `minordistance' option

2014-06-04 Thread Moritz Lennert
On 03/06/14 19:59, Maciej Sieczka wrote: Hi, Anybody knows what is the v.buffer's `minordistance' option supposed to do? The manual is not verbose about that, but as I understand it, together with `distance', it should allow to create a buffer with different extent along the minor and major

Re: [GRASS-dev] [GRASS GIS] #1628: segfault in r.walk

2014-06-04 Thread GRASS GIS
#1628: segfault in r.walk +--- Reporter: pertusus| Owner: grass-dev@… Type: defect | Status: new Priority: normal | Milestone: 6.4.4

[GRASS-dev] Standard options label vs description

2014-06-04 Thread Huidae Cho
Hi, The Option and Flag structures have label and description. If label is missing, description is used as the main description. Otherwise, label becomes the main description and description becomes an indented explanation. When we want to add examples or explanations to some standard options,

Re: [GRASS-dev] [GRASS-SVN] r60679 - grass/trunk/lib/python/script

2014-06-04 Thread Martin Landa
2014-06-03 9:10 GMT+02:00 Pietro peter.z...@gmail.com: Remove Popen() magic on Windows; it creates more problems than it solves Please, could you explain which problems creates? I am waiting for reasonable/acceptable explanation for long time, I do not assume that it will ever come. Anyway,

Re: [GRASS-dev] [GRASS-SVN] r60679 - grass/trunk/lib/python/script

2014-06-04 Thread Helmut Kudrnovsky
Martin Landa wrote 2014-06-03 9:10 GMT+02:00 Pietro lt; peter.zamb@ gt;: Remove Popen() magic on Windows; it creates more problems than it solves Please, could you explain which problems creates? I am waiting for reasonable/acceptable explanation for long time, I do not assume that it

Re: [GRASS-dev] [GRASS-SVN] r60679 - grass/trunk/lib/python/script

2014-06-04 Thread Glynn Clements
Pietro wrote: Reminder for all Windows users, please note that winGRASS 7.1 no.981 will be broken (calling python script from python script issue - eg. wxGUI Extension manager) again. 2014-06-03 7:24 GMT+02:00 svn_gr...@osgeo.org: Author: glynn Date: 2014-06-02 22:24:32 -0700

Re: [GRASS-dev] [GRASS-SVN] r60703 - in grass/trunk: display/d.vect general/g.gisenv gui/wxpython/animation lib/python/temporal raster/r.colors raster/r.external raster/r.in.bin raster/r.mapcalc raste

2014-06-04 Thread Martin Landa
Hi, 2014-06-04 19:17 GMT+02:00 svn_gr...@osgeo.org: 1. Consolite option/flag mutually exslusive messages. it would be nice to solve it in the parser level... Martin -- Martin Landa * http://geo.fsv.cvut.cz/gwiki/Landa ___ grass-dev mailing list

Re: [GRASS-dev] [GRASS-SVN] r60703 - in grass/trunk: display/d.vect general/g.gisenv gui/wxpython/animation lib/python/temporal raster/r.colors raster/r.external raster/r.in.bin raster/r.mapcalc raste

2014-06-04 Thread Huidae Cho
I was thinking about the same thing. Maybe add char *exclusive_group to Option and Flag and G_parser() takes care of exclusiveness? On Wed, Jun 4, 2014 at 2:03 PM, Martin Landa landa.mar...@gmail.com wrote: Hi, 2014-06-04 19:17 GMT+02:00 svn_gr...@osgeo.org: 1. Consolite option/flag

Re: [GRASS-dev] the function of v.buffer `minordistance' option

2014-06-04 Thread Maciej Sieczka
W dniu 04.06.2014 14:53, Moritz Lennert pisze: On 03/06/14 19:59, Maciej Sieczka wrote: Anybody knows what is the v.buffer's `minordistance' option supposed to do? The manual is not verbose about that, but as I understand it, together with `distance', it should allow to create a buffer with

Re: [GRASS-dev] the function of v.buffer `minordistance' option

2014-06-04 Thread Moritz Lennert
On 04/06/14 20:42, Maciej Sieczka wrote: W dniu 04.06.2014 14:53, Moritz Lennert pisze: On 03/06/14 19:59, Maciej Sieczka wrote: Anybody knows what is the v.buffer's `minordistance' option supposed to do? The manual is not verbose about that, but as I understand it, together with

Re: [GRASS-dev] [GRASS-SVN] r60679 - grass/trunk/lib/python/script

2014-06-04 Thread Markus Neteler
On Wed, Jun 4, 2014 at 7:56 PM, Glynn Clements gl...@gclements.plus.com wrote: ... So either: 1. GRASS 7 will need .bat wrappers for Python scripts on Windows. That has the same issues as using shell=True, but at least it only applies in the case where we're executing a script. ... this

Re: [GRASS-dev] the function of v.buffer `minordistance' option

2014-06-04 Thread Maciej Sieczka
W dniu 04.06.2014 21:24, Moritz Lennert pisze: On 04/06/14 20:42, Maciej Sieczka wrote: W dniu 04.06.2014 14:53, Moritz Lennert pisze: On 03/06/14 19:59, Maciej Sieczka wrote: Anybody knows what is the v.buffer's `minordistance' option supposed to do? The manual is not verbose about that,

Re: [GRASS-dev] [GRASS-SVN] r60679 - grass/trunk/lib/python/script

2014-06-04 Thread Martin Landa
2014-06-04 22:35 GMT+02:00 Markus Neteler nete...@osgeo.org: 2. If we know that the program is a script, the interpreter can be specified explicitly (i.e. python path/to/script.py). This keeps the shell out of the picture. ... how much effort is the latter? Check file type and path to file?