Re: [QGIS-Developer] [SAGA] Raster values to points

2017-09-25 Thread Giovanni Manghi
> Just as an additional info. > In newer versions of SAGA GIS, e.g. 5.0.0, there are both tools, see No. > 3 and 4: there are both also on saga ltr that we support. I already submitted a fix (thanks to Victor for the tip). cheers! -- G -- ___

Re: [QGIS-Developer] [SAGA] Raster values to points

2017-09-25 Thread Rainer Hurling
Am 25.09.2017 um 13:00 schrieb Giovanni Manghi: >> Hi all, >> updating from 2.18.11 to .13 the ‘Raster values to points’ disappeared to be >> substituted by ‘Raster values to points (randomly)’. The same operation can >> be done with ‘v.what.rast.points’ but, even if well explained in some

Re: [QGIS-Developer] [Qgis-psc] QGIS Grant: Expand unit test coverage for geometry classes

2017-09-25 Thread Tim Sutton
Hi Nyall Thank you so much for doing this work and for your report back! I hope this is just one of many times that we will be able to fund our community members to make substantial improvements to the quality of QGIS! Regards Tim > On 26 Sep 2017, at 9:31 AM, Nyall Dawson

[QGIS-Developer] QGIS Grant: Expand unit test coverage for geometry classes

2017-09-25 Thread Nyall Dawson
Hi PSC, Just reporting in that with PR #5254 [1], the grant work has now been completed and we're sitting as close as possible to 100% unit test coverage for the geometry primitive classes (i.e. the classes which represent the raw geometry types, such as points/multipoints/circular strings/ etc).

Re: [QGIS-Developer] pyqgis - layer.saveDefaultStyle() for PostGIS layers

2017-09-25 Thread kimaidou
I have tried another method * first add default style into DB via UI -> it works * the use console to create a new, not default, style msg = '' layer.saveStyleToDatabase( "a new style", "some description", False, None, msg ); It does not work (not new line created, and msg remains empty. No log

Re: [QGIS-Developer] pyqgis - layer.saveDefaultStyle() for PostGIS layers

2017-09-25 Thread Luigi Pirelli
from the code: mLayer->saveStyleToDatabase and mLayer->saveDefaultStyle and in QString QgsMapLayer::saveDefaultStyle( bool & theResultFlag ) { return saveNamedStyle( styleURI(), theResultFlag ); } => seems you are doing correct. any log message? **

[QGIS-Developer] Standalone and OSGeo4W installers: icons and folder on desktop

2017-09-25 Thread Tom Chadwin
Hello all A year ago, Martin Landa raised the issue of the icons and folder which appear on the Windows desktop when installing QGIS (https://lists.osgeo.org/pipermail/qgis-developer/2016-March/041810.html). The issues were: - installers should not add things to a user's desktop without

Re: [QGIS-Developer] pyqgis - layer.saveDefaultStyle() for PostGIS layers

2017-09-25 Thread Jorge Gustavo Pereira Bastos Rocha
Hi, It already happened to me. The first user to save a style became the owner of the table. No other users were able to write on the layer_style table, because there were DEFAULT PRIVILEGES defined. Can you check the postgrsql log to see if there is any problem related with permissions?

Re: [QGIS-Developer] pyqgis - layer.saveDefaultStyle() for PostGIS layers

2017-09-25 Thread kimaidou
Hi, @ Tom : I really would like to trust QGIS method instead of managing manually different providers. @ Luigi No error message, even worse : i got a message telling everything went well ;) layer.saveDefaultStyle() (u'The style dbname=\'qgis\' host=localhost port=5432 user=\'mdouchin\'

[QGIS-Developer] QGIS master crush upon running latest version on Win32

2017-09-25 Thread Chen Barnoy
Entry point not found: itemToInfo@QwPlot@@UBE?AVQVariant@@PAVQwPlotItem@@@Z of process in dll qwt.dll Best regards and thanks for the help, Chen ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

Re: [QGIS-Developer] [SAGA] Raster values to points

2017-09-25 Thread Giovanni Manghi
> Hi all, > updating from 2.18.11 to .13 the ‘Raster values to points’ disappeared to be > substituted by ‘Raster values to points (randomly)’. The same operation can > be done with ‘v.what.rast.points’ but, even if well explained in some blogs, > it turns to be pretty less user-friendly than

[QGIS-Developer] pyqgis - openfeatureform highlight?

2017-09-25 Thread Anders Vittrup
Hi, I'm making a small plugin for a custom editorwidget and I'm using QgisInterface openFeatureForm from within my widget to open other feature forms on diffrent layers. I just cannot seem to figure out how to make the feature being highlighted on the map (red highlighing when using the identify

[QGIS-Developer] Plugin [1333] WNT Open Source approval notification.

2017-09-25 Thread noreply
Plugin WNT Open Source approval by pcav. The plugin version "[1333] WNT Open Source 0.1 Experimental" is now approved Link: http://plugins.qgis.org/plugins/wntOS/ ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

Re: [QGIS-Developer] Generic use of QgsLocator and friends?

2017-09-25 Thread Nyall Dawson
On 23 September 2017 at 01:13, Richard Duivenvoorde wrote: > > Hi Devs, > > I've been playing a little with the QgsLocatorWidget and friends (in > Python). > > Hoping to be able to use this for a geocoder I have to reimplement. > And also hoping it could be used as a generic

[QGIS-Developer] Plugin [1232] OSM Tools approval notification.

2017-09-25 Thread noreply
Plugin OSM Tools approval by pcav. The plugin version "[1232] OSM Tools 0.3.2" is now approved Link: http://plugins.qgis.org/plugins/OSMtools/ ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

Re: [QGIS-Developer] pyqgis - layer.saveDefaultStyle() for PostGIS layers

2017-09-25 Thread Tom Chadwin
Perhaps you have to do it manually via a PostGIS query matching f_table_catalog, f_table_schema, and f_table_name, and updating styleqml and stylesld? Tom - Buy Pie Spy: Adventures in British pastry 2010-11 on Amazon -- Sent from:

[QGIS-Developer] Plugin [611] QgsWcsClient2 approval notification.

2017-09-25 Thread noreply
Plugin QgsWcsClient2 approval by pcav. The plugin version "[611] QgsWcsClient2 0.3.1" is now approved Link: http://plugins.qgis.org/plugins/QgsWcsClient2/ ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

[QGIS-Developer] pyqgis - layer.saveDefaultStyle() for PostGIS layers

2017-09-25 Thread kimaidou
Hi all, In the "Layer board" plugin, there is a button to save the default style for each selected layers. To do so, I use the method layer.saveDefaultStyle() It seems this method does not work for Postgis layers. I tried manually in the python console, and I confirm it does not achieve to

[QGIS-Developer] Plugin [1232] OSM Tools approval notification.

2017-09-25 Thread noreply
Plugin OSM Tools approval by pcav. The plugin version "[1232] OSM Tools 0.3.3" is now approved Link: http://plugins.qgis.org/plugins/OSMtools/ ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info: