[Qgis-developer] Feedback re future of core c++ plugins in QGIS 3.0

2016-11-07 Thread Nyall Dawson
Hi all, Discussion is currently underway concerning the future of a number of the plugins which come preinstalled with QGIS. This concerns the plugins: - coordinate capture - evis - geometry_checker - georeferencer - heatmap - interpolation - offline editing - oracle raster - raster terrain

Re: [Qgis-developer] Did I miss something on nightly qgis-dev

2016-11-07 Thread Nyall Dawson
On 8 Nov 2016 6:46 AM, "Kari Salovaara" wrote: > > Hi, > > on my morning rituals belongs updating nightly qgis-dev. I've noticed > for some time that there is no new build, the latest is 2.19.0-2. > I'm using osgeo4w to take care of the routine. > > There might be

[Qgis-developer] Did I miss something on nightly qgis-dev

2016-11-07 Thread Kari Salovaara
Hi, on my morning rituals belongs updating nightly qgis-dev. I've noticed for some time that there is no new build, the latest is 2.19.0-2. I'm using osgeo4w to take care of the routine. There might be several solutions to my problem: 1. there is not at all anymore nightly build? 2. it's not

[Qgis-developer] Snapping visual feedback

2016-11-07 Thread Régis Haubourg
Hi there, When editing geometries, it is currently impossible to know on which layer the current edit tool is snapped. So in case of very close vertices, nodes or segments, you have to change your snapping settings each time you need to explicitly snap on a target layer. It seems that there is in

Re: [Qgis-developer] DB Manager SQL window does not open

2016-11-07 Thread Martin Landa
Hi, 2016-11-07 13:53 GMT+01:00 Martin Landa : > I am facing to the same problem on Ubuntu when using QGIS 2.14.8. > Please open new issue. Meanwhile I needed to downgrade to QGIS 2.14.3 > which is working for me. Martin seems to be related to [1]. Ma [1]

Re: [Qgis-developer] QGIS v3 Code sprint in Lyon

2016-11-07 Thread Paolo Cavallini
Il 07/11/2016 14:20, Régis Haubourg ha scritto: > Hi all, > I drafted the wiki page here [0] please tell if there is a better place for > that. > > [0] https://github.com/qgis/QGIS/wiki/Code-Sprint-QGIS-3-Lyon,-end-2016 >

Re: [Qgis-developer] BUG? strpos("area",'.') doesn't work

2016-11-07 Thread Elstermann, Mike
THX to all, that is it. Tipp in help +1! :-) mikeE. Von: Qgis-developer [mailto:qgis-developer-boun...@lists.osgeo.org] Im Auftrag von Mathieu Pellerin Gesendet: Montag, 7. November 2016 12:26 An: Matthias Kuhn Cc: qgis-developer Betreff: Re: [Qgis-developer] BUG? strpos("area",'.') doesn't

Re: [Qgis-developer] BUG? strpos("area",'.') doesn't work

2016-11-07 Thread Mathieu Pellerin
Or we could upgrade regex_match() to return an offset instead of a binary false / true. On Nov 7, 2016 7:17 PM, "Matthias Kuhn" wrote: I haven't found any existing functionality. regexp_pos? On 11/07/2016 01:12 PM, Mathieu Pellerin wrote: > I ll take care of this over the

Re: [Qgis-developer] QGIS v3 Code sprint in Lyon

2016-11-07 Thread Régis Haubourg
Hi all, I drafted the wiki page here [0] please tell if there is a better place for that. [0] https://github.com/qgis/QGIS/wiki/Code-Sprint-QGIS-3-Lyon,-end-2016 Cheers, Régis - --

Re: [Qgis-developer] DB Manager SQL window does not open

2016-11-07 Thread Martin Landa
Hi, 2016-10-06 10:05 GMT+02:00 Julie Pierson : > Version de Python : 2.7.6 (default, Jun 22 2015, 18:01:27) [GCC 4.8.2] > Version de QGIS : 2.14.7-Essen Essen, exported > > Does anyone have the same problem ? Is it a known issue, or should I open > one ? I am facing to the

[Qgis-developer] QGIS v3 Code sprint in Lyon

2016-11-07 Thread Yves Jacolin
Dear Developers, Several french(-swiss) companies are interested to organized a code sprint before the end of the year around QGIS (server) v3. This code sprint would take place in Lyon either in 29-29 November or 12-13 December in regards of your feedback, see[1]. Please answer only if you

Re: [Qgis-developer] BUG? strpos("area",'.') doesn't work

2016-11-07 Thread Matthias Kuhn
I haven't found any existing functionality. regexp_pos? On 11/07/2016 01:12 PM, Mathieu Pellerin wrote: > I ll take care of this over the weekend. What should the regexp function > be called? > > > On Nov 7, 2016 7:10 PM, "Mathieu Pellerin" >

Re: [Qgis-developer] BUG? strpos("area",'.') doesn't work

2016-11-07 Thread Mathieu Pellerin
You read my mind. Big +1 from me. On Nov 7, 2016 6:40 PM, "Matthias Kuhn" wrote: > I wonder if we should change this for QGIS 3.0 and use QString::indexOf > instead, while providing dedicated regexp functions. > > What do you think, Mathieu? > > Matthias > > On 11/07/2016

Re: [Qgis-developer] BUG? strpos("area",'.') doesn't work

2016-11-07 Thread Matthias Kuhn
I wonder if we should change this for QGIS 3.0 and use QString::indexOf instead, while providing dedicated regexp functions. What do you think, Mathieu? Matthias On 11/07/2016 12:26 PM, Mathieu Pellerin wrote: > We should indicate in the function help that strpos is regexp based. > > > On Nov

Re: [Qgis-developer] BUG? strpos("area",'.') doesn't work

2016-11-07 Thread Mathieu Pellerin
We should indicate in the function help that strpos is regexp based. On Nov 7, 2016 6:23 PM, "Matthias Kuhn" wrote: > Hi, > > strpos is based on regexp, a '.' matches any character. > To let the engine treat a . as such you need to prefix it with a > double-backslash. > >

Re: [Qgis-developer] BUG? strpos("area",'.') doesn't work

2016-11-07 Thread Matthias Kuhn
Hi, strpos is based on regexp, a '.' matches any character. To let the engine treat a . as such you need to prefix it with a double-backslash. strpos(to_string("area"), '\\.') Regards Matthias On 11/07/2016 12:07 PM, Elstermann, Mike wrote: > Hi, > > > > “area” is a double-field with

Re: [Qgis-developer] Compile QGIS master on Ubuntu 14.04 / missing packages

2016-11-07 Thread Marco Bernasocchi
Hi Stefan, IIRC Packages for qca-qt5 are not avail for 14.04, yo might be sucessful in building them from source. [1] might help qsci same and python3-future seems avail at [2] but not on the ubuntu repos?? ciao Marco [1]

Re: [Qgis-developer] Compile QGIS master on Ubuntu 14.04 / missing packages

2016-11-07 Thread Stefan Ziegler
Thanks for the info. Stefan On Mon, Nov 7, 2016 at 12:07 PM, Jürgen E. Fischer wrote: > Hi Stefan, > > On Mon, 07. Nov 2016 at 11:53:44 +0100, Stefan Ziegler wrote: > > I'm trying to compile QGIS master on Ubuntu 14.04. According to the > INSTALL > > [1] file I try to install

Re: [Qgis-developer] Compile QGIS master on Ubuntu 14.04 / missing packages

2016-11-07 Thread Jürgen E . Fischer
Hi Stefan, On Mon, 07. Nov 2016 at 11:53:44 +0100, Stefan Ziegler wrote: > I'm trying to compile QGIS master on Ubuntu 14.04. According to the INSTALL > [1] file I try to install the build depencies but I can't find some of them: > E: Unable to locate package libqca-qt5-2-dev libqca-qt5-2-dev

[Qgis-developer] BUG? strpos("area",'.') doesn't work

2016-11-07 Thread Elstermann, Mike
Hi, "area" is a double-field with values e. g. 213.1234, 43215.3456, ... strpos("area",'.') gives only value 1 return :-( strpos(to_string("area"),'.') gives only value 1 return :-( This error exits only by '.', other search-strings e. g. '12', '1', ... work fine Our workarround

Re: [Qgis-developer] Compile QGIS master on Ubuntu 14.04 / missing packages

2016-11-07 Thread Even Rouault
Le lundi 07 novembre 2016 11:53:44, Stefan Ziegler a écrit : > Hi > > I'm trying to compile QGIS master on Ubuntu 14.04. According to the INSTALL > [1] file I try to install the build depencies but I can't find some of > them: > > E: Unable to locate package libqca-qt5-2-dev > E: Unable to

[Qgis-developer] Compile QGIS master on Ubuntu 14.04 / missing packages

2016-11-07 Thread Stefan Ziegler
Hi I'm trying to compile QGIS master on Ubuntu 14.04. According to the INSTALL [1] file I try to install the build depencies but I can't find some of them: E: Unable to locate package libqca-qt5-2-dev E: Unable to locate package libqca-qt5-2-plugins E: Unable to locate package libqwt-qt5-dev E:

[Qgis-developer] Plugin [1134] Convert coordinate system VN2000 unapproval notification.

2016-11-07 Thread noreply
Plugin Convert coordinate system VN2000 unapproval by pcav. The plugin version "[1134] Convert coordinate system VN2000 0.1 Experimental" is now unapproved Link: http://plugins.qgis.org/plugins/ConvertprjBatch/ ___ Qgis-developer mailing list

[Qgis-developer] Plugin [1134] Convert coordinate system VN2000 approval notification.

2016-11-07 Thread noreply
Plugin Convert coordinate system VN2000 approval by pcav. The plugin version "[1134] Convert coordinate system VN2000 0.1 Experimental" is now approved Link: http://plugins.qgis.org/plugins/ConvertprjBatch/ ___ Qgis-developer mailing list

Re: [Qgis-developer] QGIS 2.14.8 startup error

2016-11-07 Thread Stefan Ziegler
Thanks Matthias. Stefan On 4 Nov 2016, 09:29 +0100, Matthias Kuhn , wrote: > Hi Stefan, > > This should already be fixed in 2.14-ltr-dev build [1]. > > Sidenote: In master there are unit tests for the eliminate algorithm and > this error would never have made it to a