-
Notifications
You must be signed in to change notification settings - Fork 0
Add DFAPath algorithm as 'Experimental' #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,210 @@ | ||
| # -*- coding: utf-8 -*- | ||
|
|
||
| """ | ||
| /*************************************************************************** | ||
| AvaFrameRunComputeDFAPath | ||
| A QGIS plugin | ||
| Connects to AvaFrame | ||
| Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/ | ||
| ------------------- | ||
| begin : 2021-08-26 | ||
| copyright : (C) 2021 by AvaFrame Team | ||
| email : felix@avaframe.org | ||
| ***************************************************************************/ | ||
|
|
||
| /*************************************************************************** | ||
| * * | ||
| * 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__ = 'AvaFrame Team' | ||
| __date__ = '2022' | ||
| __copyright__ = '(C) 2022 by AvaFrame Team' | ||
|
|
||
| # This will get replaced with a git SHA1 when you do a git archive | ||
|
|
||
| __revision__ = '$Format:%H$' | ||
|
|
||
| import subprocess | ||
|
|
||
| from qgis.PyQt.QtCore import QCoreApplication | ||
| from qgis.core import (QgsProcessing, | ||
| QgsProcessingException, | ||
| QgsProcessingAlgorithm, | ||
| QgsProcessingParameterFeatureSource, | ||
| QgsProcessingParameterRasterLayer, | ||
| QgsProcessingParameterMultipleLayers, | ||
| QgsProcessingParameterFolderDestination, | ||
| QgsProcessingOutputVectorLayer, | ||
| QgsProcessingParameterBoolean, | ||
| QgsProcessingOutputMultipleLayers | ||
| ) | ||
|
|
||
|
|
||
| class runAna5DFAPathGenerationAlgorithm(QgsProcessingAlgorithm): | ||
| """ | ||
| This is the AvaFrame Connection, i.e. the part running with QGis. For this | ||
| connector to work, more installation is needed. See instructions at docs.avaframe.org | ||
| """ | ||
|
|
||
| DEM = 'DEM' | ||
| REL = 'REL' | ||
| FOLDEST = 'FOLDEST' | ||
| OUTPUT = 'OUTPUT' | ||
| OUTPPR = 'OUTPPR' | ||
|
|
||
| def initAlgorithm(self, config): | ||
| """ | ||
| Here we define the inputs and output of the algorithm, along | ||
| with some other properties. | ||
| """ | ||
|
|
||
| self.addParameter(QgsProcessingParameterRasterLayer( | ||
| self.DEM, | ||
| self.tr("DEM layer"))) | ||
|
|
||
| self.addParameter(QgsProcessingParameterMultipleLayers( | ||
| self.REL, | ||
| self.tr('Release layer(s)'), | ||
| layerType=QgsProcessing.TypeVectorAnyGeometry | ||
| )) | ||
|
|
||
| self.addParameter(QgsProcessingParameterFolderDestination( | ||
| self.FOLDEST, | ||
| self.tr('Destination folder') | ||
| )) | ||
|
|
||
| self.addOutput(QgsProcessingOutputVectorLayer( | ||
| self.OUTPUT, | ||
| self.tr("Output layer"), | ||
| QgsProcessing.TypeVectorAnyGeometry)) | ||
|
|
||
| self.addOutput(QgsProcessingOutputMultipleLayers( | ||
| self.OUTPPR, | ||
| )) | ||
|
|
||
| def flags(self): | ||
| return super().flags() | ||
| # return super().flags() | QgsProcessingAlgorithm.FlagNoThreading | ||
|
|
||
| def processAlgorithm(self, parameters, context, feedback): | ||
fso42 marked this conversation as resolved.
Show resolved
Hide resolved
fso42 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| """ | ||
| Here is where the processing itself takes place. | ||
| """ | ||
|
|
||
| import avaframe.version as gv | ||
| from . import avaframeConnector_commonFunc as cF | ||
|
|
||
| feedback.pushInfo('AvaFrame Version: ' + gv.getVersion()) | ||
|
|
||
| targetADDTONAME = '' | ||
|
|
||
| sourceDEM = self.parameterAsRasterLayer(parameters, self.DEM, context) | ||
| if sourceDEM is None: | ||
| raise QgsProcessingException(self.invalidSourceError(parameters, self.DEM)) | ||
|
|
||
| # Release files | ||
| allREL = self.parameterAsLayerList(parameters, self.REL, context) | ||
| if allREL is None: | ||
| raise QgsProcessingException(self.invalidSourceError(parameters, self.REL)) | ||
|
|
||
| relDict = {} | ||
| if allREL: | ||
| relDict = {lyr.source(): lyr for lyr in allREL} | ||
|
|
||
| sourceFOLDEST = self.parameterAsFile(parameters, self.FOLDEST, context) | ||
|
|
||
| # create folder structure (targetDir is the tmp one) | ||
| finalTargetDir, targetDir = cF.createFolderStructure(sourceFOLDEST) | ||
|
|
||
| feedback.pushInfo(sourceDEM.source()) | ||
|
|
||
| # copy DEM | ||
| cF.copyDEM(sourceDEM, targetDir) | ||
|
|
||
| # copy all release shapefile parts | ||
| cF.copyMultipleShp(relDict, targetDir / 'Inputs' / 'REL', targetADDTONAME) | ||
|
|
||
| feedback.pushInfo('Starting path generation') | ||
| feedback.pushInfo('See console for progress') | ||
|
|
||
| # Prepare command for subprocess call | ||
| command = ['python', '-m', 'avaframe.runAna5DFAPathGeneration', str(targetDir)] | ||
|
|
||
| cF.runAndCheck(command, self, feedback) | ||
| feedback.pushInfo('Done, start loading the results') | ||
|
|
||
| # Move input, log and output folders to finalTargetDir | ||
| cF.moveInputAndOutputFoldersToFinal(targetDir, finalTargetDir) | ||
|
|
||
| # Get path and split point shapefiles to return to QGIS | ||
| try: | ||
| pathResults = cF.getDFAPathResults(finalTargetDir) | ||
| except: | ||
| raise QgsProcessingException(self.tr('Something went wrong with path generation, please check log files')) | ||
|
|
||
| context = cF.addLayersToContext(context, pathResults, self.OUTPPR) | ||
|
|
||
| feedback.pushInfo('\n---------------------------------') | ||
| feedback.pushInfo('Done, find results and logs here:') | ||
| feedback.pushInfo(str(targetDir.resolve())) | ||
| feedback.pushInfo('---------------------------------\n') | ||
|
|
||
| return {self.OUTPUT: pathResults} | ||
|
|
||
| def name(self): | ||
| """ | ||
| Returns the algorithm name, used for identifying the algorithm. This | ||
| string should be fixed for the algorithm, and must not be localised. | ||
| The name should be unique within each provider. Names should contain | ||
| lowercase alphanumeric characters only and no spaces or other | ||
| formatting characters. | ||
| """ | ||
| return 'dfapath' | ||
|
|
||
| def displayName(self): | ||
| """ | ||
| Returns the translated algorithm name, which should be used for any | ||
| user-visible display of the algorithm name. | ||
| """ | ||
| return self.tr('Generate mass average path (ana5, com1)') | ||
|
|
||
| def group(self): | ||
| """ | ||
| Returns the name of the group this algorithm belongs to. This string | ||
| should be localised. | ||
| """ | ||
| return self.tr(self.groupId()) | ||
|
|
||
| def groupId(self): | ||
| """ | ||
| Returns the unique ID of the group this algorithm belongs to. This | ||
| string should be fixed for the algorithm, and must not be localised. | ||
| The group id should be unique within each provider. Group id should | ||
| contain lowercase alphanumeric characters only and no spaces or other | ||
| formatting characters. | ||
| """ | ||
| return 'Experimental' | ||
|
|
||
| def tr(self, string): | ||
| return QCoreApplication.translate('Processing', string) | ||
|
|
||
| def shortHelpString(self) -> str: | ||
| hstring = ('Generates the mass average path from a dense flow simulation via module ana5Utils.\n\ | ||
| For more information go to (or use the help button below): \n\ | ||
| AvaFrame Documentation: https://docs.avaframe.org\n\ | ||
| Homepage: https://avaframe.org\n\ | ||
| Praxisleitfaden: https://avaframe.org/reports\n') | ||
|
|
||
| return self.tr(hstring) | ||
|
|
||
| def helpUrl(self): | ||
| return "https://docs.avaframe.org/en/latest/connector.html" | ||
|
|
||
| def createInstance(self): | ||
| return runAna5DFAPathGenerationAlgorithm() | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.