[GRASS-dev] group does not update REF file upon g.remove raster file

2014-12-15 Thread Yann Chemin
Hi, did g.remove a raster, and the group REF file referencing the raster did not update accordingly. Is this a known behaviour? Yann -- ___ grass-dev mailing list grass-dev@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #2409: last call for options keys consolidation

2014-12-15 Thread GRASS GIS
#2409: last call for options keys consolidation --+- Reporter: martinl | Owner: grass-dev@… Type: task | Status: new Priority: blocker

Re: [GRASS-dev] GRASS 7 - Ubuntu package build problem on Launchpad

2014-12-15 Thread Ivan Mincik
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 12/15/2014 08:39 AM, Nikos Alexandris wrote: On 15.12.2014 01:13, Ivan Mincik wrote: .. Thanks Nikos, now packages are finally built. Nice. If you think my registration here might be an obstacle in getting things done, please, feel free to

Re: [GRASS-dev] Custom GRASS command line prompt

2014-12-15 Thread Michel Wortmann
Hi Nikos, Hamish and list, you guys played around with your commandline prompts last year (see below), I was just implementing the same thing into my ~/.grass.bashrc (GRASS 7.0.0b3) but found that the location and mapset arent actually changed when changing them with g.mapset, i.e.

Re: [GRASS-dev] Custom GRASS command line prompt

2014-12-15 Thread Nikos Alexandris
On 15.12.2014 12:33, Michel Wortmann wrote: Hi Nikos, Hamish and list, you guys played around with your commandline prompts last year (see below), I was just implementing the same thing into my ~/.grass.bashrc (GRASS 7.0.0b3) but found that the location and mapset arent actually changed when

[GRASS-dev] remove RasterNumpy class from pygrass

2014-12-15 Thread Pietro
Dear all, If you are ok with that, I would like to remove the RasterNumpy class, as far as I aware, nobody is using it. So I would like to avoid to introduce a class in grass70 and remove the class in grass71. However the RasterNumpy class can be easily replaced by functions like: {{{ def

Re: [GRASS-dev] [GRASS GIS] #2403: cairo driver fails to create surface

2014-12-15 Thread GRASS GIS
#2403: cairo driver fails to create surface +--- Reporter: martinl | Owner: martinl Type: defect | Status: assigned Priority: major |

[GRASS-dev] Option snap for v.in.ogr via g.gui (GRASS 7)

2014-12-15 Thread Nikos Alexandris
Hi devs, we are missing the snap option (v.in.ogr) in GRASS 7 (wxGUI). Actually, we miss the Command dialog button. Is this a bug? Thanks, Nikos ___ grass-dev mailing list grass-dev@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] Option snap for v.in.ogr via g.gui (GRASS 7)

2014-12-15 Thread Nikos Alexandris
On 15.12.2014 20:09, Nikos Alexandris wrote: Hi devs, we are missing the snap option (v.in.ogr) in GRASS 7 (wxGUI). Actually, we miss the Command dialog button. Is this a bug? Sorry, forgot to note: this is under a Windows 7 machine. Nikos ___

Re: [GRASS-dev] Option snap for v.in.ogr via g.gui (GRASS 7)

2014-12-15 Thread Martin Landa
Hi, 2014-12-15 19:13 GMT+01:00 Nikos Alexandris n...@nikosalexandris.net: we are missing the snap option (v.in.ogr) in GRASS 7 (wxGUI). Actually, we miss the Command dialog button. Is this a bug? try to run v.in.ogr with --ui flag. Martin -- Martin Landa http://geo.fsv.cvut.cz/gwiki/Landa

Re: [GRASS-dev] Custom GRASS command line prompt

2014-12-15 Thread Huidae Cho
Mine looks like this (bash shell): grass_ps(){ echo G `g.gisenv LOCATION_NAME`/`g.gisenv MAPSET` } export PS1=\[\033]0;\$(grass_ps) \w\007\]\$(grass_ps) \w The prompt gets updated dynamically since grass_ps() is called every time you hit enter. Huidae On Mon, Dec 15, 2014 at 6:15 AM,

Re: [GRASS-dev] Custom GRASS command line prompt

2014-12-15 Thread Martin Landa
Hi, 2014-12-15 22:34 GMT+01:00 Huidae Cho gras...@gmail.com: Mine looks like this (bash shell): grass_ps(){ echo G `g.gisenv LOCATION_NAME`/`g.gisenv MAPSET` btw, in trunk you can avoid calling `g.gisenv` twice g.gisenv get=LOCATION_NAME,MAPSET sep='/' Martin -- Martin Landa

Re: [GRASS-dev] Custom GRASS command line prompt

2014-12-15 Thread Huidae Cho
That's cool. I'll try it tonight. Thanks. -- Sent from my phone On Dec 15, 2014 5:12 PM, Martin Landa landa.mar...@gmail.com wrote: Hi, 2014-12-15 22:34 GMT+01:00 Huidae Cho gras...@gmail.com: Mine looks like this (bash shell): grass_ps(){ echo G `g.gisenv