Re: [Qgis-developer] Replacing Q_FOREACH in Qgis code

2017-01-19 Thread Larry Shaffer
Hi David, Thanks for bringing this up. After reading the referenced KDAB article (and especially the not-so-happy comments about this deprecation), I looked at the code base. Instances of Q_FOREACH in QGIS 2.99 (master): 2023 Why can't Qt just leave the macro in and recommend using a better

Re: [Qgis-developer] What SAGA version is recommended?

2017-01-19 Thread Andreas Neumann
ok - I finally got SAGA 2.3.1 working after patching the io_gdal command in file SagaAlgorithm214.py to use the "RESAMPLING" parameter instead of the "INTERPOL" one - just as described by gcarillo in http://hub.qgis.org/issues/14735 Thanks for the help! Andreas On 19.01.2017 09:47, matteo

Re: [Qgis-developer] Interrupt WFS request not working?

2017-01-19 Thread Even Rouault
On jeudi 19 janvier 2017 18:34:28 CET Paolo Cavallini wrote: > Hi all, > I tried today to interrupt a slow WFS request, with the button on the > dialog, but I got no effect: is this a known limitation, a bug, or am I > missing something? It is supposed to work. Do you reproduce that with a

[Qgis-developer] Plugin [1163] Plugin Load Times approval notification.

2017-01-19 Thread noreply
Plugin Plugin Load Times approval by pcav. The plugin version "[1163] Plugin Load Times 0.5 Experimental" is now approved Link: http://plugins.qgis.org/plugins/PluginLoadTimes/ ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org List info:

[Qgis-developer] Plugin [1163] Plugin Load Times approval notification.

2017-01-19 Thread noreply
Plugin Plugin Load Times approval by pcav. The plugin version "[1163] Plugin Load Times 0.5.1 Experimental" is now approved Link: http://plugins.qgis.org/plugins/PluginLoadTimes/ ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org List info:

[Qgis-developer] Plugin [1163] Plugin Load Times approval notification.

2017-01-19 Thread noreply
Plugin Plugin Load Times approval by pcav. The plugin version "[1163] Plugin Load Times 0.5.1 Experimental" is now approved Link: http://plugins.qgis.org/plugins/PluginLoadTimes/ ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org List info:

[Qgis-developer] Interrupt WFS request not working?

2017-01-19 Thread Paolo Cavallini
Hi all, I tried today to interrupt a slow WFS request, with the button on the dialog, but I got no effect: is this a known limitation, a bug, or am I missing something? Thanks. -- Paolo Cavallini - www.faunalia.eu QGIS & PostGIS courses: http://www.faunalia.eu/training.html

[Qgis-developer] Plugin [740] qgis2web approval notification.

2017-01-19 Thread noreply
Plugin qgis2web approval by pcav. The plugin version "[740] qgis2web 2.2.0" is now approved Link: http://plugins.qgis.org/plugins/qgis2web/ ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org List info:

[Qgis-developer] [Server] 2.14: Selection in GetPrint doesn't work

2017-01-19 Thread René-Luc Dhont
Hi dev, I'm facing a strange issue in GetPrint. The SELECTION is not apply to the MapComposer. The code is quite old: https://github.com/qgis/QGIS/blame/release-2_14/src/server/qgswmsserver.cpp#L1273 And there is no test to verify it. Do someone know how selection is apply to MapComposer ?

Re: [Qgis-developer] Processing ctest for QGIS timeout

2017-01-19 Thread matteo
Hi guys, this issue is still there, I'm not able to run ProcessingQgis tests I also tried to comment the last tests uploaded (that some days ago run without problem) but it does not solve the problem. Any hints? Thanks again Cheers Matteo ___

Re: [Qgis-developer] Python bindings for "QgsMapToolCapture"

2017-01-19 Thread Matthias Kuhn
Hi Bo, 2.18.2 here: from qgis.gui import QgsMapToolCapture tool = QgsMapToolCapture() Hint: You probably want to subclass QgsMapToolCapture Matthias On 01/19/2017 03:33 PM, Bo Victor Thomsen wrote: > To the QGIS developers (and not a newbie QGIS plugin developer like me) - > > Is there a QGIS

[Qgis-developer] Python bindings for "QgsMapToolCapture"

2017-01-19 Thread Bo Victor Thomsen
To the QGIS developers (and not a newbie QGIS plugin developer like me) - Is there a QGIS python binding for class "QgsMapToolCapture". Or do I have to recreate the various point, line and polygon capture tools ? My goal is to have 3 tools (point, line and polygon capture) available though a

[Qgis-developer] Minor UI issue on Geoprocessing tools → Convex hull

2017-01-19 Thread Jorge Gustavo Rocha
Hi devs, This discussion addresses a minor UI issue in the Convex hull dialog (under Vector → Geoprocessing tools). The Convex hull dialog [1] has two independent options, which are: Field, to create convex hulls by classes Method: to create a single convex hull or convex hulls by classes

Re: [Qgis-developer] QGIS Server in Python?

2017-01-19 Thread Alessandro Pasotti
On Thu, Jan 19, 2017 at 11:03 AM, Sören Gebbert < soerengebb...@googlemail.com> wrote: > Dear developers, > i have a naive question. > > Would it be possible and meaningful to implement the QGIS Server in Python? > > There are several nice Python Web-frameworks (Django, Flask) which would > make

Re: [Qgis-developer] Z or M styling in QGIS

2017-01-19 Thread Régis Haubourg
Hi all, playing with my experimental Z styles I noticed strange rendering issues with vertices not being rendered at the right place. See short screen cast here https://youtu.be/NdoyysCzEUs I'm filing that in Does that look like a bug underneath in QGIS or

Re: [Qgis-developer] QGIS Server in Python?

2017-01-19 Thread Jürgen E . Fischer
Hi Sören, On Thu, 19. Jan 2017 at 11:03:29 +0100, Sören Gebbert wrote: > Do you think this may be a good idea to implement? Something in the direction of https://github.com/wonder-sk/qgis-tile-server Jürgen -- Jürgen E. Fischer norBIT GmbH Tel. +49-4931-918175-31

Re: [Qgis-developer] QGIS Server in Python?

2017-01-19 Thread David Marteau
Hi, The server is actually under heavy refactoring: the new version - planned with Qgis 3 - enables you to embed the server in any framework (python or C++) by using abstract request/response objects that links all I/O between server and your embedding frameworks. Examples will follow soon.

[Qgis-developer] QGIS Server in Python?

2017-01-19 Thread Sören Gebbert
Dear developers, i have a naive question. Would it be possible and meaningful to implement the QGIS Server in Python? There are several nice Python Web-frameworks (Django, Flask) which would make it easy to expose the rendering, data management and processing functionality of QGIS as WMS, WFS or

Re: [Qgis-developer] [Processing] how to handle selections

2017-01-19 Thread Bernhard Ströbl
gis-developer Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer __ Information from ESET Mail Security, version of virus signature database 14793 (20170119) __ The message was checked by ESET Mail Security. http://www.eset.com __ Information

Re: [Qgis-developer] [Processing] how to handle selections

2017-01-19 Thread Victor Olaya
abase 14787 (20170118) __ >>> >>> The message was checked by ESET Mail Security. >>> http://www.eset.com >>> >>> >>> ___ >>> Qgis-developer mailing list >>> Qgis-developer@l

Re: [Qgis-developer] [Processing] how to handle selections

2017-01-19 Thread Bernhard Ströbl
o: https://lists.osgeo.org/mailman/listinfo/qgis-developer Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer __ Information from ESET Mail Security, version of virus signature database 14793 (20170119) __ The message was checked by ESET Mail Sec

Re: [Qgis-developer] [Processing] how to handle selections

2017-01-19 Thread Victor Olaya
Good catch I fixed it and now it uses the selected features, regardless of the config parameter. The change is in 2.18 and master branches Thanks! 2017-01-18 10:44 GMT+01:00 Bernhard Ströbl : > Hi all, > processing sports the "Save selected features" algorithm. However

[Qgis-developer] Replacing Q_FOREACH in Qgis code

2017-01-19 Thread David Marteau
Hi, I would like to know if there is plans for replacing Q_FOREACH (use discouraged from QT 5.7) with C++11 range based loop in QGIS code and if it is appropriate to start the move in new PR ? Some références: http://doc.qt.io/qt-5/qtglobal.html#Q_FOREACH

Re: [Qgis-developer] What SAGA version is recommended?

2017-01-19 Thread matteo
Hi all, > this is a long standing issue. IMHO the reasonable choice is to support > the SAGA LTR, and convince packagers for various OSs this is the one to > package. > I'm interested on this, available for help. me too.. available for testing and/or general helping. Sometimes running SAGA