2014-05-19 19:58:33 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
flightlinesToSingleCHMpitFree.py
|
|
|
|
---------------------
|
|
|
|
Date : May 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = 'Martin Isenburg'
|
|
|
|
__date__ = 'May 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
|
2016-03-21 04:58:12 +01:00
|
|
|
from .LAStoolsUtils import LAStoolsUtils
|
|
|
|
from .LAStoolsAlgorithm import LAStoolsAlgorithm
|
2014-05-19 19:58:33 +02:00
|
|
|
|
2014-07-14 14:19:09 +02:00
|
|
|
from processing.core.parameters import ParameterSelection
|
|
|
|
from processing.core.parameters import ParameterNumber
|
2014-05-19 19:58:33 +02:00
|
|
|
|
2015-08-22 14:29:41 +02:00
|
|
|
|
2014-05-19 19:58:33 +02:00
|
|
|
class flightlinesToSingleCHMpitFree(LAStoolsAlgorithm):
|
|
|
|
|
|
|
|
TILE_SIZE = "TILE_SIZE"
|
|
|
|
BUFFER = "BUFFER"
|
|
|
|
TERRAIN = "TERRAIN"
|
|
|
|
TERRAINS = ["wilderness", "nature", "town", "city", "metro"]
|
|
|
|
BEAM_WIDTH = "BEAM_WIDTH"
|
|
|
|
|
|
|
|
def defineCharacteristics(self):
|
2015-07-26 03:48:27 +02:00
|
|
|
self.name, self.i18n_name = self.trAlgorithm('flightlinesToSingleCHMpitFree')
|
|
|
|
self.group, self.i18n_group = self.trAlgorithm('LAStools Pipelines')
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersPointInputFolderGUI()
|
2015-01-14 20:57:56 +02:00
|
|
|
self.addParameter(ParameterNumber(flightlinesToSingleCHMpitFree.TILE_SIZE,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr("tile size (side length of square tile)"),
|
|
|
|
0, None, 1000.0))
|
2015-01-14 20:57:56 +02:00
|
|
|
self.addParameter(ParameterNumber(flightlinesToSingleCHMpitFree.BUFFER,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr("buffer around each tile (avoids edge artifacts)"),
|
|
|
|
0, None, 25.0))
|
2015-01-14 20:57:56 +02:00
|
|
|
self.addParameter(ParameterSelection(flightlinesToSingleCHMpitFree.TERRAIN,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr("terrain type"), flightlinesToSingleCHMpitFree.TERRAINS, 1))
|
2015-01-14 20:57:56 +02:00
|
|
|
self.addParameter(ParameterNumber(flightlinesToSingleCHMpitFree.BEAM_WIDTH,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr("laser beam width (diameter of laser footprint)"), 0, None, 0.2))
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersStepGUI()
|
|
|
|
self.addParametersTemporaryDirectoryGUI()
|
|
|
|
self.addParametersRasterOutputGUI()
|
|
|
|
self.addParametersCoresGUI()
|
|
|
|
self.addParametersVerboseGUI()
|
|
|
|
|
|
|
|
def processAlgorithm(self, progress):
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
# needed for thinning and killing
|
2014-05-19 19:58:33 +02:00
|
|
|
step = self.getParametersStepValue()
|
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
# first we tile the data
|
2014-12-22 12:32:37 +01:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lastile")]
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersPointInputFolderCommands(commands)
|
|
|
|
commands.append("-files_are_flightlines")
|
|
|
|
tile_size = self.getParameterValue(flightlinesToSingleCHMpitFree.TILE_SIZE)
|
|
|
|
commands.append("-tile_size")
|
2015-08-16 20:57:24 +02:00
|
|
|
commands.append(unicode(tile_size))
|
2014-05-19 19:58:33 +02:00
|
|
|
buffer = self.getParameterValue(flightlinesToSingleCHMpitFree.BUFFER)
|
|
|
|
if buffer != 0.0:
|
|
|
|
commands.append("-buffer")
|
2015-08-16 20:57:24 +02:00
|
|
|
commands.append(unicode(buffer))
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersTemporaryDirectoryAsOutputDirectoryCommands(commands)
|
|
|
|
commands.append("-o")
|
|
|
|
commands.append("tile.laz")
|
|
|
|
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
# then we ground classify the tiles
|
2014-12-22 12:32:37 +01:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasground")]
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersTemporaryDirectoryAsInputFilesCommands(commands, "tile*.laz")
|
|
|
|
method = self.getParameterValue(flightlinesToSingleCHMpitFree.TERRAIN)
|
|
|
|
if method != 1:
|
|
|
|
commands.append("-" + flightlinesToSingleCHMpitFree.TERRAINS[method])
|
|
|
|
if method > 2:
|
|
|
|
commands.append("-ultra_fine")
|
|
|
|
elif method > 1:
|
|
|
|
commands.append("-extra_fine")
|
|
|
|
elif method > 0:
|
|
|
|
commands.append("-fine")
|
|
|
|
self.addParametersTemporaryDirectoryAsOutputDirectoryCommands(commands)
|
|
|
|
commands.append("-odix")
|
|
|
|
commands.append("_g")
|
|
|
|
commands.append("-olaz")
|
|
|
|
self.addParametersCoresCommands(commands)
|
2014-05-21 21:25:18 +02:00
|
|
|
|
2014-05-19 19:58:33 +02:00
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
# then we height-normalize the tiles
|
2014-12-22 12:32:37 +01:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasheight")]
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersTemporaryDirectoryAsInputFilesCommands(commands, "tile*_g.laz")
|
|
|
|
commands.append("-replace_z")
|
|
|
|
self.addParametersTemporaryDirectoryAsOutputDirectoryCommands(commands)
|
|
|
|
commands.append("-odix")
|
|
|
|
commands.append("h")
|
|
|
|
commands.append("-olaz")
|
|
|
|
self.addParametersCoresCommands(commands)
|
2014-05-21 21:25:18 +02:00
|
|
|
|
2014-05-19 19:58:33 +02:00
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
# then we thin and splat the tiles
|
2014-12-22 12:32:37 +01:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasthin")]
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersTemporaryDirectoryAsInputFilesCommands(commands, "tile*_gh.laz")
|
|
|
|
beam_width = self.getParameterValue(flightlinesToSingleCHMpitFree.BEAM_WIDTH)
|
|
|
|
if beam_width != 0.0:
|
|
|
|
commands.append("-subcircle")
|
2015-08-22 14:29:41 +02:00
|
|
|
commands.append(unicode(beam_width / 2))
|
2014-05-19 19:58:33 +02:00
|
|
|
commands.append("-step")
|
2015-08-22 14:29:41 +02:00
|
|
|
commands.append(unicode(step / 4))
|
2014-05-19 19:58:33 +02:00
|
|
|
commands.append("-highest")
|
|
|
|
self.addParametersTemporaryDirectoryAsOutputDirectoryCommands(commands)
|
|
|
|
commands.append("-odix")
|
|
|
|
commands.append("t")
|
|
|
|
commands.append("-olaz")
|
|
|
|
self.addParametersCoresCommands(commands)
|
|
|
|
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
# then we rasterize the classified tiles into the partial CHMs at level 00
|
2014-12-22 12:32:37 +01:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2dem")]
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersTemporaryDirectoryAsInputFilesCommands(commands, "tile*_ght.laz")
|
|
|
|
self.addParametersStepCommands(commands)
|
|
|
|
commands.append("-use_tile_bb")
|
|
|
|
self.addParametersTemporaryDirectoryAsOutputDirectoryCommands(commands)
|
|
|
|
commands.append("-ocut")
|
|
|
|
commands.append("4")
|
|
|
|
commands.append("-odix")
|
|
|
|
commands.append("_chm00")
|
|
|
|
commands.append("-obil")
|
|
|
|
self.addParametersCoresCommands(commands)
|
|
|
|
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
# then we rasterize the classified tiles into the partial CHMs at level 02
|
2014-12-22 12:32:37 +01:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2dem")]
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersTemporaryDirectoryAsInputFilesCommands(commands, "tile*_ght.laz")
|
|
|
|
commands.append("-drop_z_below")
|
|
|
|
commands.append("2")
|
|
|
|
self.addParametersStepCommands(commands)
|
|
|
|
commands.append("-kill")
|
2015-08-22 14:29:41 +02:00
|
|
|
commands.append(unicode(step * 3))
|
2014-05-19 19:58:33 +02:00
|
|
|
commands.append("-use_tile_bb")
|
|
|
|
self.addParametersTemporaryDirectoryAsOutputDirectoryCommands(commands)
|
|
|
|
commands.append("-ocut")
|
|
|
|
commands.append("4")
|
|
|
|
commands.append("-odix")
|
|
|
|
commands.append("_chm02")
|
|
|
|
commands.append("-obil")
|
|
|
|
self.addParametersCoresCommands(commands)
|
|
|
|
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
# then we rasterize the classified tiles into the partial CHMs at level 05
|
2014-12-22 12:32:37 +01:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2dem")]
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersTemporaryDirectoryAsInputFilesCommands(commands, "tile*_ght.laz")
|
|
|
|
commands.append("-drop_z_below")
|
|
|
|
commands.append("5")
|
|
|
|
self.addParametersStepCommands(commands)
|
|
|
|
commands.append("-kill")
|
2015-08-22 14:29:41 +02:00
|
|
|
commands.append(unicode(step * 3))
|
2014-05-19 19:58:33 +02:00
|
|
|
commands.append("-use_tile_bb")
|
|
|
|
self.addParametersTemporaryDirectoryAsOutputDirectoryCommands(commands)
|
|
|
|
commands.append("-ocut")
|
|
|
|
commands.append("4")
|
|
|
|
commands.append("-odix")
|
|
|
|
commands.append("_chm05")
|
|
|
|
commands.append("-obil")
|
|
|
|
self.addParametersCoresCommands(commands)
|
|
|
|
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
# then we rasterize the classified tiles into the partial CHMs at level 10
|
2014-12-22 12:32:37 +01:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2dem")]
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersTemporaryDirectoryAsInputFilesCommands(commands, "tile*_ght.laz")
|
|
|
|
commands.append("-drop_z_below")
|
|
|
|
commands.append("10")
|
|
|
|
self.addParametersStepCommands(commands)
|
|
|
|
commands.append("-kill")
|
2015-08-22 14:29:41 +02:00
|
|
|
commands.append(unicode(step * 3))
|
2014-05-19 19:58:33 +02:00
|
|
|
commands.append("-use_tile_bb")
|
|
|
|
self.addParametersTemporaryDirectoryAsOutputDirectoryCommands(commands)
|
|
|
|
commands.append("-ocut")
|
|
|
|
commands.append("4")
|
|
|
|
commands.append("-odix")
|
|
|
|
commands.append("_chm10")
|
|
|
|
commands.append("-obil")
|
|
|
|
self.addParametersCoresCommands(commands)
|
|
|
|
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
# then we rasterize the classified tiles into the partial CHMs at level 15
|
2014-12-22 12:32:37 +01:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2dem")]
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersTemporaryDirectoryAsInputFilesCommands(commands, "tile*_ght.laz")
|
|
|
|
commands.append("-drop_z_below")
|
|
|
|
commands.append("15")
|
|
|
|
self.addParametersStepCommands(commands)
|
|
|
|
commands.append("-kill")
|
2015-08-22 14:29:41 +02:00
|
|
|
commands.append(unicode(step * 3))
|
2014-05-19 19:58:33 +02:00
|
|
|
commands.append("-use_tile_bb")
|
|
|
|
self.addParametersTemporaryDirectoryAsOutputDirectoryCommands(commands)
|
|
|
|
commands.append("-ocut")
|
|
|
|
commands.append("4")
|
|
|
|
commands.append("-odix")
|
|
|
|
commands.append("_chm15")
|
|
|
|
commands.append("-obil")
|
|
|
|
self.addParametersCoresCommands(commands)
|
|
|
|
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
# then we rasterize the classified tiles into the partial CHMs at level 20
|
2014-12-22 12:32:37 +01:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2dem")]
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersTemporaryDirectoryAsInputFilesCommands(commands, "tile*_ght.laz")
|
|
|
|
commands.append("-drop_z_below")
|
|
|
|
commands.append("20")
|
|
|
|
self.addParametersStepCommands(commands)
|
|
|
|
commands.append("-kill")
|
2015-08-22 14:29:41 +02:00
|
|
|
commands.append(unicode(step * 3))
|
2014-05-19 19:58:33 +02:00
|
|
|
commands.append("-use_tile_bb")
|
|
|
|
self.addParametersTemporaryDirectoryAsOutputDirectoryCommands(commands)
|
|
|
|
commands.append("-ocut")
|
|
|
|
commands.append("4")
|
|
|
|
commands.append("-odix")
|
|
|
|
commands.append("_chm20")
|
|
|
|
commands.append("-obil")
|
|
|
|
self.addParametersCoresCommands(commands)
|
|
|
|
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
# then we combine the partial CHMs into a single output CHM
|
2014-12-22 12:32:37 +01:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasgrid")]
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersTemporaryDirectoryAsInputFilesCommands(commands, "tile_chm*.bil")
|
|
|
|
commands.append("-highest")
|
|
|
|
self.addParametersStepCommands(commands)
|
|
|
|
self.addParametersRasterOutputCommands(commands)
|
|
|
|
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|