[QGIS-Developer] Plugin [970] TUFLOW approval notification.

2019-05-16 Thread noreply
Plugin TUFLOW approval by pcav. The plugin version "[970] TUFLOW 3.0.3" is now approved Link: http://plugins.qgis.org/plugins/tuflow/ ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

Re: [QGIS-Developer] save QgsRasterCalculator output file in ascii format (.asc and .xyz)

2019-05-16 Thread Nyall Dawson
On Thu, 16 May 2019 at 20:30, Roberta Fagandini wrote: > > Hi devs, > I'm using the QgsRasterCalculator within a python plugin and I would like to > save the output file in ascii format but it seems to be not available. Is it > right? > A solution could be to save the output file as virtual

Re: [QGIS-Developer] How to use postProcessLayer in plugin processing

2019-05-16 Thread Nyall Dawson
On Thu, 16 May 2019 at 18:33, René-Luc Dhont wrote: > > Thanks, this link is helpful > https://gist.github.com/nyalldawson/26c091dd48b4f8bf56f172efe22cf75f > > It contains a hack to work around sip bug! Hey Matthias, on this hack -- is it the same issue as you fixed a while back for registry

[QGIS-Developer] Plugin [246] Flow Trace approval notification.

2019-05-16 Thread noreply
Plugin Flow Trace approval by pcav. The plugin version "[246] Flow Trace 1.0.1" is now approved Link: http://plugins.qgis.org/plugins/flowTrace/ ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

Re: [QGIS-Developer] Recent rendering changes that might affect TimeManager

2019-05-16 Thread Anita Graser
Sorry, only #290 is about rendering. ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] Trying to build with GDAL3/PROJ6, anybody successful?

2019-05-16 Thread Richard Duivenvoorde
On 16/05/2019 15.04, Even Rouault wrote: > Richard, > > as I see /home/richard/bin/proj/lib/libinternalproj.so.15 , I assume you > built > PROJ with the -DPROJ_RENAME_SYMBOLS trick. So QGIS should also be built with > this define set > > you might try adding the following to your ccmake

[QGIS-Developer] Plugin [1719] Bezier Editing approval notification.

2019-05-16 Thread noreply
Plugin Bezier Editing approval by pcav. The plugin version "[1719] Bezier Editing 1.0.0" is now approved Link: http://plugins.qgis.org/plugins/BezierEditing/ ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

Re: [QGIS-Developer] Trying to build with GDAL3/PROJ6, anybody successful?

2019-05-16 Thread Even Rouault
Richard, as I see /home/richard/bin/proj/lib/libinternalproj.so.15 , I assume you built PROJ with the -DPROJ_RENAME_SYMBOLS trick. So QGIS should also be built with this define set you might try adding the following to your ccmake invokation: -DCMAKE_CXX_FLAGS=-DPROJ_RENAME_SYMBOLS Even --

[QGIS-Developer] save QgsRasterCalculator output file in ascii format (.asc and .xyz)

2019-05-16 Thread Roberta Fagandini
Hi devs, I'm using the QgsRasterCalculator within a python plugin and I would like to save the output file in ascii format but it seems to be not available. Is it right? A solution could be to save the output file as virtual raster and then translate it. Are there other possible solution to

[QGIS-Developer] git .mailmap

2019-05-16 Thread Sandro Santilli
Hi all, I've tweaked the .mailmap file as it seemed to be failing to do proper join of git authors. I did the tweaks by looking at history and guessing who was who at different points in time. Please review the output of `git shortlog -esn` to see if your name/email is shown to your liking and if

[QGIS-Developer] Broken osgeo4w for download?

2019-05-16 Thread DelazJ
Hi, The last QGIS version I can fetch using osgeo4w setup is https://github.com/qgis/QGIS/commit/10dd209e4a0a4dc5eff9ad0fbf78cddf350f1872, seven days old? Is that boken or do I miss something? Regards, Harrissou ___ QGIS-Developer mailing list

[QGIS-Developer] Trying to build with GDAL3/PROJ6, anybody successful?

2019-05-16 Thread Richard Duivenvoorde
Hi, To be able to test some (gdal) wfs3 stuff I've succesfully build my own gdal3 and proj lib. But I fail to build QGIS with it. Anybody already succesfull? My try (using options I used to build QGIS earlier with my own builds of gdal/proj): export

Re: [QGIS-Developer] How to use postProcessLayer in plugin processing

2019-05-16 Thread René-Luc Dhont
Thanks, this link is helpful https://gist.github.com/nyalldawson/26c091dd48b4f8bf56f172efe22cf75f It contains a hack to work around sip bug! Regards, René-Luc Le 16/05/2019 à 10:25, Tom Chadwin a écrit : Don't know if any of the links in this reply from Nyall are of any use?

Re: [QGIS-Developer] How to use postProcessLayer in plugin processing

2019-05-16 Thread Tom Chadwin
Don't know if any of the links in this reply from Nyall are of any use? https://lists.osgeo.org/pipermail/qgis-developer/2018-September/054480.html Tom - Buy Pie Spy: Adventures in British pastry 2010-11 on Amazon -- Sent from:

[QGIS-Developer] How to use postProcessLayer in plugin processing

2019-05-16 Thread René-Luc Dhont
Hi Devs, I would like to set the style an output layer in a script processing. My algorithm is added to QGIS Processing by a plugin. I have tested this : ``` class loadNamedStylePostProcessor(QgsProcessingLayerPostProcessorInterface):     def __init__(self, outputName, feedback):