mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-10-30 00:07:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			79 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| """
 | |
| ***************************************************************************
 | |
|     laszipPro.py
 | |
|     ---------------------
 | |
|     Date                 : October 2014
 | |
|     Copyright            : (C) 2014 by Martin Isenburg
 | |
|     Email                : martin near rapidlasso point 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.                                   *
 | |
| *                                                                         *
 | |
| ***************************************************************************
 | |
| """
 | |
| from future import standard_library
 | |
| standard_library.install_aliases()
 | |
| 
 | |
| __author__ = 'Martin Isenburg'
 | |
| __date__ = 'October 2014'
 | |
| __copyright__ = '(C) 2014, Martin Isenburg'
 | |
| # This will get replaced with a git SHA1 when you do a git archive
 | |
| __revision__ = '$Format:%H$'
 | |
| 
 | |
| import os
 | |
| from .LAStoolsUtils import LAStoolsUtils
 | |
| from .LAStoolsAlgorithm import LAStoolsAlgorithm
 | |
| 
 | |
| from processing.core.parameters import ParameterBoolean
 | |
| 
 | |
| 
 | |
| class laszipPro(LAStoolsAlgorithm):
 | |
| 
 | |
|     REPORT_SIZE = "REPORT_SIZE"
 | |
|     CREATE_LAX = "CREATE_LAX"
 | |
|     APPEND_LAX = "APPEND_LAX"
 | |
| 
 | |
|     def defineCharacteristics(self):
 | |
|         self.name, self.i18n_name = self.trAlgorithm('laszipPro')
 | |
|         self.group, self.i18n_group = self.trAlgorithm('LAStools Production')
 | |
|         self.addParametersPointInputFolderGUI()
 | |
|         self.addParameter(ParameterBoolean(laszipPro.REPORT_SIZE,
 | |
|                                            self.tr("only report size"), False))
 | |
|         self.addParameter(ParameterBoolean(laszipPro.CREATE_LAX,
 | |
|                                            self.tr("create spatial indexing file (*.lax)"), False))
 | |
|         self.addParameter(ParameterBoolean(laszipPro.APPEND_LAX,
 | |
|                                            self.tr("append *.lax into *.laz file"), False))
 | |
|         self.addParametersOutputDirectoryGUI()
 | |
|         self.addParametersOutputAppendixGUI()
 | |
|         self.addParametersPointOutputFormatGUI()
 | |
|         self.addParametersAdditionalGUI()
 | |
|         self.addParametersCoresGUI()
 | |
|         self.addParametersVerboseGUI()
 | |
| 
 | |
|     def processAlgorithm(self, progress):
 | |
|         if (LAStoolsUtils.hasWine()):
 | |
|             commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "laszip.exe")]
 | |
|         else:
 | |
|             commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "laszip")]
 | |
|         self.addParametersVerboseCommands(commands)
 | |
|         self.addParametersPointInputFolderCommands(commands)
 | |
|         if self.getParameterValue(laszipPro.REPORT_SIZE):
 | |
|             commands.append("-size")
 | |
|         if self.getParameterValue(laszipPro.CREATE_LAX):
 | |
|             commands.append("-lax")
 | |
|         if self.getParameterValue(laszipPro.APPEND_LAX):
 | |
|             commands.append("-append")
 | |
|         self.addParametersCoresCommands(commands)
 | |
|         self.addParametersOutputDirectoryCommands(commands)
 | |
|         self.addParametersOutputAppendixCommands(commands)
 | |
|         self.addParametersPointOutputFormatCommands(commands)
 | |
|         self.addParametersAdditionalCommands(commands)
 | |
|         self.addParametersCoresCommands(commands)
 | |
| 
 | |
|         LAStoolsUtils.runLAStools(commands, progress)
 |