Re: [QGIS-Developer] Error in Processing modeller

2018-11-25 Thread Paolo Cavallini
Thanks Nyall! Il 26 novembre 2018 06:52:47 CET, Nyall Dawson ha scritto: >On Fri, 23 Nov 2018 at 03:47, Paolo Cavallini >wrote: >> >> Hi all, >> >> when creating a model in Processing (QGIS 3.4.1), if one param is >missing (band number in gdal contour, BTW this should default at 1), an >error

Re: [QGIS-Developer] Error in Processing modeller

2018-11-25 Thread Nyall Dawson
On Fri, 23 Nov 2018 at 03:47, Paolo Cavallini wrote: > > Hi all, > > when creating a model in Processing (QGIS 3.4.1), if one param is missing > (band number in gdal contour, BTW this should default at 1), an error is > thrown [0] before showing the proper error message. Thanks, PR at

[QGIS-Developer] Error in Processing modeller

2018-11-22 Thread Paolo Cavallini
Hi all, when creating a model in Processing (QGIS 3.4.1), if one param is missing (band number in gdal contour, BTW this should default at 1), an error is thrown [0] before showing the proper error message. Does anybody confirm? All the best. [0] An error has occurred while executing Python

[QGIS-Developer] Error message: Processing toolbox

2017-09-30 Thread Pat Hin
> Von: "Pat Hin" > Datum: 30. September 2017 um 19:08 > An: "qgis-userlists.osgeo.org" > Betreff: Error message: Processing toolbox > > Hello, >   > i have crashed my QGIS :-)) >   > What i did: Unter "Processing toolbox->option->menu" i enabled

Re: [Qgis-developer] Error in Processing

2016-02-15 Thread Matthias Kuhn
Thank you Victor. I think 2.12 is just a nice to have. Once 2.14 is released, 2.12 will reach EOL. The question is mainly how to provide the current LTR with bugfixes in a reasonable time during its lifetime (i.e. an updated 2.14 version until Feb 2017). Cheers On 02/15/2016 11:47 AM, Victor

Re: [Qgis-developer] Error in Processing

2016-02-15 Thread Victor Olaya
The changes are minimal, and it will be easy to make a version that runs in both 2.14 and 2.12. I can add it easily About plugin releases, we do that since sometimes there are important changes and it was better to release instead of waiting for the next QGIS release. AFAIK, no other core plugin

Re: [Qgis-developer] Error in Processing

2016-02-15 Thread Matthias Kuhn
Hi Victor On 02/14/2016 07:22 PM, Victor Olaya wrote: > Yes, we can make a release once 2.14 is out, but there are changes in > the new Processing (using virtual layers)¨that make it uncompatible > with QGIS < 2.14 Are these changes so low-level that this version cannot be shipped with both?

Re: [Qgis-developer] Error in Processing

2016-02-14 Thread Victor Olaya
Yes, we can make a release once 2.14 is out, but there are changes in the new Processing (using virtual layers)¨that make it uncompatible with QGIS < 2.14 2016-02-14 14:20 GMT+01:00 Pedro Venâncio : > Alexander, Victor, > > Will you update the version of Processing

Re: [Qgis-developer] Error in Processing

2016-02-14 Thread Pedro Venâncio
Thanks Alexander and Victor, I'll update that plugins! Best regards, Pedro 2016-02-14 10:51 GMT+00:00 Victor Olaya : > +1 to what Alex said > > 2016-02-14 11:38 GMT+01:00 Alexander Bruy : > > Hi Pedro, > > > > GdalAlgorithm is an internal

Re: [Qgis-developer] Error in Processing

2016-02-14 Thread Pedro Venâncio
Alexander, Victor, Will you update the version of Processing in the plugin manager (2.12.2), soon? 2016-02-14 12:24 GMT+00:00 Pedro Venâncio : > Thanks Alexander and Victor, > > I'll update that plugins! > > Best regards, > Pedro > > > > 2016-02-14 10:51 GMT+00:00

Re: [Qgis-developer] Error in Processing

2016-02-14 Thread Alexander Bruy
Hi Pedro, GdalAlgorithm is an internal Processing class and should not be used in 3rd party plugins. The error happens because GdalAlgorithm class was refactored and new mandatory methods were introduced. Personally I think that all 3rd party plugins should use only public Processing API, e.g.

Re: [Qgis-developer] Error in Processing

2016-02-14 Thread Victor Olaya
+1 to what Alex said 2016-02-14 11:38 GMT+01:00 Alexander Bruy : > Hi Pedro, > > GdalAlgorithm is an internal Processing class and should not > be used in 3rd party plugins. > > The error happens because GdalAlgorithm class was refactored > and new mandatory methods were

Re: [Qgis-developer] Error in Processing

2016-02-13 Thread Pedro Venâncio
Hi Alexander and Victor, Actually the problem seems related with the new shortHelp function, introduced in commit 62302377db1990485f7821f1ccef4ff6ef4d07d9. Removing def shortHelp(self): return self._formatHelp('''This algorithm is based on the GDAL %s module. For

Re: [Qgis-developer] Error in Processing

2016-02-13 Thread Victor Olaya
Algorithms are expected to have that method, so providers that extend GDALAlgorithm should have a commandName() function or override the implementation of shortHelp() Sounds to me like an easy update Regards 2016-02-14 0:44 GMT+01:00 Pedro Venâncio : > Hi Alexander

[Qgis-developer] Error in Processing

2016-02-08 Thread Paolo Cavallini
Hi all, I'm getting consistent errors in activating Processing on master, see below. Anyone has the same? All the best. === An error has occurred while executing Python code: AttributeError: RasterAT_MGIETRS89DirInv instance has no attribute 'getConsoleCommands' Traceback (most recent call last):

Re: [Qgis-developer] Error in Processing

2016-02-08 Thread Alexander Bruy
Hi Paolo, this is not a Processing issue, but bug in 3rd party plugin. The bug is caused by fact that plugin uses internal Processing classes (which was changed) instead of subclassing public GeoAlgorithm class. 2016-02-08 13:10 GMT+02:00 Paolo Cavallini : > Hi all, > I'm

Re: [Qgis-developer] Error in Processing

2016-02-08 Thread Paolo Cavallini
Il 08/02/2016 12:10, Paolo Cavallini ha scritto: > Hi all, > I'm getting consistent errors in activating Processing on master, see > below. Anyone has the same? This is triggered by filtering algs. All the best. -- Paolo Cavallini - www.faunalia.eu QGIS & PostGIS courses:

Re: [Qgis-developer] Error in Processing

2016-02-08 Thread Victor Olaya
looks like ntv2 provider hasn't updated its algorithms to the latest changes in GDAL provider? 2016-02-08 12:10 GMT+01:00 Paolo Cavallini : > Hi all, > I'm getting consistent errors in activating Processing on master, see > below. Anyone has the same? > All the best. > ===

Re: [Qgis-developer] Error in Processing

2016-02-08 Thread Paolo Cavallini
Il 08/02/2016 12:20, Alexander Bruy ha scritto: > Hi Paolo, > > this is not a Processing issue, but bug in 3rd party plugin. > The bug is caused by fact that plugin uses internal Processing > classes (which was changed) instead of subclassing public > GeoAlgorithm class. confirmed, I deactivated

Re: [Qgis-developer] Error in Processing

2016-02-08 Thread Paolo Cavallini
Il 08/02/2016 12:17, Victor Olaya ha scritto: > looks like ntv2 provider hasn't updated its algorithms to the latest > changes in GDAL provider? Right, deactivating it generates another error, and QGIS hangs. All the best, and thanks. -- Paolo Cavallini - www.faunalia.eu QGIS & PostGIS courses:

[Qgis-developer] Error Import Processing.

2015-02-09 Thread Ivan sarteguas
Hi I'm working with QGIS 2.2.0 Valmiera, LAStools and Windows 7. My problem is when I want import the library processing, I don't see anythin problem. But when I use processing.runalg(lidarlastools:lasground,...) (for example) i can see the next error: Error: Algorithm not found. My paths are:

[Qgis-developer] Error import Processing

2015-02-06 Thread Ivan sarteguas
Hi I am working with QGIS Valmiera 2.2.0 in a Windows 7. I need import the library Processing, but I can't load. My code is as follow: import sysimport qgisfrom qgis.core import *from qgis.utils import *from qgis.gui import *from PyQt4.QtCore import *from PyQt4.QtGui import *app =

[Qgis-developer] Error in Processing MOdeller?

2014-03-27 Thread Paolo Cavallini
Hi all. Following the training Processing manual, modeler_hydro_calculator.rst, I have a problem in adding reslts from Calculator: I add the suggested formula, but when closing the popup all the connecting lines are disappeared, and the calculation is gone. Anyone confirms? All the best. -- Paolo

[Qgis-developer] Error in Processing manual?

2014-03-27 Thread Paolo Cavallini
Hi all. Sorry for flooding the list; the interpolation.rst first command does not seem to be working (all points filtered away, results in an empty file). Anyone confirms? Thanks. -- Paolo Cavallini - www.faunalia.eu QGIS PostGIS courses: http://www.faunalia.eu/training.html