-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[processing][needs-docs] Resurrect ability to convert models to scripts
Brings back QGIS 2.18's ability to directly convert a Processing model to an equivalent Processing Python script algorithm, correctly updated and working in the 3.x API. Available from the model dialog, and from the right-click context menu on an existing model. Sponsored by Solspec
- Loading branch information
1 parent
bc76678
commit 56e465c
Showing
4 changed files
with
77 additions
and
7 deletions.
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
python/plugins/processing/modeler/ExportModelAsPythonScriptAction.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
*************************************************************************** | ||
EditModelAction.py | ||
--------------------- | ||
Date : February 2019 | ||
Copyright : (C) 2019 by Nyall Dawson | ||
Email : nyall dot dawson at gmail dot com | ||
*************************************************************************** | ||
* * | ||
* This program is free software; you can redistribute it and/or modify * | ||
* it under the terms of the GNU General Public License as published by * | ||
* the Free Software Foundation; either version 2 of the License, or * | ||
* (at your option) any later version. * | ||
* * | ||
*************************************************************************** | ||
""" | ||
|
||
__author__ = 'Nyall Dawson' | ||
__date__ = 'February 2019' | ||
__copyright__ = '(C) 2019, Nyall Dawson' | ||
|
||
# This will get replaced with a git SHA1 when you do a git archive | ||
|
||
__revision__ = '$Format:%H$' | ||
|
||
from qgis.PyQt.QtCore import QCoreApplication | ||
from qgis.core import QgsProcessingModelAlgorithm, QgsProcessing, QgsApplication | ||
from processing.gui.ContextAction import ContextAction | ||
from processing.script.ScriptEditorDialog import ScriptEditorDialog | ||
|
||
|
||
class ExportModelAsPythonScriptAction(ContextAction): | ||
|
||
def __init__(self): | ||
super().__init__() | ||
self.name = QCoreApplication.translate('ExportModelAsPythonScriptAction', 'Export Model as Python Algorithm…') | ||
|
||
def isEnabled(self): | ||
return isinstance(self.itemData, QgsProcessingModelAlgorithm) | ||
|
||
def icon(self): | ||
return QgsApplication.getThemeIcon('/mActionSaveAsPython.svg') | ||
|
||
def execute(self): | ||
alg = self.itemData | ||
dlg = ScriptEditorDialog(None) | ||
|
||
dlg.editor.setText('\n'.join(alg.asPythonCode(QgsProcessing.PythonQgsProcessingAlgorithmSubclass, 4))) | ||
dlg.show() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters