24.3. Provedor de algoritmo LAStools¶
LAStools is a collection of highly efficient, multicore command line tools for LiDAR data processing.
24.3.1. blast2dem¶
24.3.1.1. Descrição¶
Turns points (up to billions) via seamless Delaunay triangulation implemented using streaming into large elevation, intensity, or RGB rasters.
For more info see the blast2dem page and its online README file.
24.3.1.2. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
The file containing the points to be rastered in LAS/LAZ format. |
filter (by return, classification, flag) |
|
[enumeration] Padrão: 0 |
Specifies which points to use to construct the temporary TIN that is then rasterized. One of:
|
step size / pixel size |
|
[number] Padrão: 1.0 |
Specifies the size of the cells of the grid the TIN is rasterized onto |
Atributo |
|
[enumeration] Padrão: 0 |
Specifies the attribute that is to be rastered. One of:
|
Product |
|
[enumeration] Padrão: 0 |
Specifies how the attribute is to be turned into raster values. One of:
|
Use tile bounding box (after tiling with buffer) |
|
[boolean] Padrão: Falso |
Specifies to limit the rastered area to the tile bounding box (only meaningful for input LAS/LAZ tiles that were created with lastile). |
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output raster file |
|
[raster] Default: |
Specifies where the output raster is stored. Use image rasters like TIF, PNG, and JPG for false color, gray ramps, and hillshades. Use value rasters like TIF, BIL, IMG, ASC, DTM, FLT, XYZ, and CSV for actual values. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.1.3. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output raster file |
|
[raster] |
The output raster |
24.3.1.4. Python code¶
Algorithm ID: lastools:blast2dem
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.2. blast2iso¶
24.3.2.1. Descrição¶
Turns points (up to billions) via seamless Delaunay triangulation implemented using streaming into iso-contour lines.
For more info see the blast2iso page and its online README file.
24.3.2.2. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
The file containing the points to be used for creating iso-contour lines. |
smooth underlying TIN |
|
[number] Padrão: 0 |
Specifies if and with how many passes the temporary TIN should be smoothed |
extract isoline with a spacing of |
|
[number] Padrão: 10.0 |
Specifies spacing at which iso-contour lines are getting extracted (contour interval) |
clean isolines shorter than (0 = do not clean) |
|
[number] Padrão: 0.0 |
Omits iso-contour lines that are shorter than the specified length |
simplify segments shorter than (0 = do not simplify) |
|
[number] Padrão: 0.0 |
Rudimentary simplification of iso-contour line segments that are shorter than the specified length. |
simplify segment pairs with area less than (0 = do not simplify) |
|
[number] Padrão: 0.0 |
Rudimentary simplification of bumps formed by consecutive line segments whose area is smaller than the specified size. |
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output vector file |
|
[vector: line] Default: |
Specifies where the output vector is stored. Use SHP or WKT output files. If your input LiDAR file is in geographic coordinates (long/lat) or has geo-referencing information (but only then) you can also create a KML output file. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.2.3. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output vector file |
|
[vector: line] |
The output line vector layer with contours |
24.3.2.4. Python code¶
Algorithm ID: lastools:blast2iso
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.3. las2dem¶
24.3.3.1. Descrição¶
Turns points (up to 20 million) via a temporary Delaunay triangulation that is rasterized with a user-defined step size into an elevation, intensity, or RGB raster.
For more info see the las2dem page and its online README file.
24.3.3.2. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
run new 64 bit executable |
|
[boolean] Padrão: Falso |
|
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
The file containing the points to be rastered in LAS/LAZ format. |
filter (by return, classification, flags) |
|
[enumeration] Padrão: 0 |
Specifies which points to use to construct the temporary TIN that is then rasterized. One of:
|
step size / pixel size |
|
[number] Padrão: 1.0 |
Specifies the size of the cells of the grid the TIN is rasterized onto |
Atributo |
|
[enumeration] Padrão: 0 |
Specifies the attribute to rasterise. One of:
|
Product |
|
[enumeration] Padrão: 0 |
Specifies how the attribute is to be turned into raster values. One of:
|
Use tile bounding box (after tiling with buffer) |
|
[boolean] Padrão: Falso |
Specifies to limit the rastered area to the tile bounding box (only meaningful for input LAS/LAZ tiles that were created with lastile). |
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output raster file |
|
[raster] Default: |
Specifies where the output raster is stored. Use image rasters like TIF, PNG, and JPG for false color, gray ramps, and hillshades. Use value rasters like TIF, BIL, IMG, ASC, DTM, FLT, XYZ, and CSV for actual values. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.3.3. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output raster file |
|
[raster] |
The output raster |
24.3.3.4. Python code¶
Algorithm ID: lastools:las2dem
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.4. las2iso¶
24.3.4.1. Descrição¶
Turns point clouds (up to 20 million per file) into iso-contour lines by creating a temporary Delaunay triangulation on which the contours are then traced.
For more info see the las2iso page and its online README file.
24.3.4.2. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
run new 64 bit executable |
|
[boolean] Padrão: Falso |
|
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
The file containing the points to be used for creating iso-contour lines. |
smooth underlying TIN |
|
[number] Padrão: 0 |
Specifies if and with how many passes the temporary TIN should be smoothed |
extract isoline with a spacing of |
|
[number] Padrão: 10.0 |
Specifies spacing at which iso-contour lines are getting extracted (contour interval) |
clean isolines shorter than (0 = do not clean) |
|
[number] Padrão: 0.0 |
Omits iso-contour lines that are shorter than the specified length |
simplify segments shorter than (0 = do not simplify) |
|
[number] Padrão: 0.0 |
Rudimentary simplification of iso-contour line segments that are shorter than the specified length. |
simplify segment pairs with area less than (0 = do not simplify) |
|
[number] Padrão: 0.0 |
Rudimentary simplification of bumps formed by consecutive line segments whose area is smaller than the specified size. |
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output vector file |
|
[vector: line] Default: |
Specifies where the output vector is stored. Use SHP or WKT output files. If your input LiDAR file is in geographic coordinates (long/lat) or has geo-referencing information (but only then) you can also create a KML output file. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.4.3. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output vector file |
|
[vector: line] |
The output line vector layer with contours |
24.3.4.4. Python code¶
Algorithm ID: lastools:las2iso
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.5. las2las_filter¶
24.3.5.1. Descrição¶
Uses las2las to filter LiDAR points based on different attributes and to write the surviving subset of points to a new LAZ or LAS file.
For more info see the las2las page and its online README file.
24.3.5.2. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
run new 64 bit executable |
|
[boolean] Padrão: Falso |
|
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
The file containing the points to be used for creating iso-contour lines. |
filter (by return, classification, flags) |
|
[enumeration] Padrão: 0 |
Filters points based on various options such as return, classification, or flags. One of:
|
second filter (by return, classification, flags) |
|
[enumeration] Padrão: 0 |
Filters points based on various options such as return, classification, or flags. One of:
|
filter (by coordinate, intensity, GPS time, …) |
|
[enumeration] Padrão: 0 |
Filters points based on various other options (that require a value as argument). One of:
|
value for filter (by coordinate, intensity, GPS time, …) |
|
[number] Padrão: Nenhum |
The value to use as the argument for the filter selected above |
second filter (by coordinate, intensity, GPS time, …) |
|
[enumeration] Padrão: 0 |
Filters points based on various other options (that require a value as argument). One of:
|
value for second filter (by coordinate, intensity, GPS time, …) |
|
[number] Padrão: Nenhum |
The value to use as the argument for the filter selected above |
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output LAS/LAZ file |
|
[file] Default: |
Specifies where the output point cloud is stored. Use LAZ for compressed output, LAS for uncompressed output, and TXT for ASCII. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.5.3. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output LAS/LAZ file |
|
[file] |
The output LAS/LAZ format file |
24.3.5.4. Python code¶
Algorithm ID: lastools:las2las_filter
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.6. las2las_project¶
Transform LAS/LAZ files in a folder to another CRS.
24.3.6.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
run new 64 bit executable |
|
[boolean] Padrão: Falso |
|
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
Input LAS/LAZ file |
source projection |
|
[enumeration] Padrão: 0 |
Um de:
|
source utm zone |
|
[enumeration] Padrão: 0 |
Um de:
|
source state plane code |
|
[enumeration] Padrão: 0 |
Um de:
|
target projection |
|
[enumeration] Padrão: 0 |
Um de:
|
target utm zone |
|
[enumeration] Padrão: 0 |
Um de:
|
target state plane code |
|
[enumeration] Padrão: 0 |
Um de:
|
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output LAS/LAZ file |
|
[folder] Default: |
Specifies where the folder for the output point clouds. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.6.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output LAS/LAZ file |
|
[file] |
The output LAS/LAZ format file |
24.3.6.3. Python code¶
Algorithm ID: lastools:las2las_project
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.7. las2las_transform¶
24.3.7.1. Descrição¶
Uses las2las to filter LiDAR points based on different attributes and to write the surviving subset of points to a new LAZ or LAS file.
For more info see the las2las page and its online README file.
24.3.7.2. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
run new 64 bit executable |
|
[boolean] Padrão: Falso |
|
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
The first file containing points to be merged |
transform (coordinates) |
|
[enumeration] Padrão: 0 |
Either translate, scale, or clamp the X, Y, or Z coordinate by the value specified below. One of:
|
value for transform (coordinates) |
|
[string] Padrão: ‘’ |
The value that specifies the amount of translating, scaling, or clamping done by the transform selected above. |
second transform (coordinates) |
|
[enumeration] Padrão: 0 |
Either translate, scale, or clamp the X, Y, or Z coordinate by the value specified below. One of:
|
value for second transform (coordinates) |
|
[string] Padrão: ‘’ |
The value that specifies the amount of translating, scaling, or clamping done by the transform selected above. |
transform (intensities, scan angles, GPS times, …) |
|
[enumeration] Padrão: 0 |
Either translate, scale, or clamp the X, Y, or Z coordinate by the value specified below. One of:
|
value for transform (intensities, scan angles, GPS times, …) |
|
[string] Padrão: ‘’ |
The value that specifies the amount of scaling, translating, clamping or setting that is done by the transform selected above. |
second transform (intensities, scan angles, GPS times, …) |
|
[enumeration] Padrão: 0 |
Either translate, scale, or clamp the X, Y, or Z coordinate by the value specified below. One of:
|
value for second transform (intensities, scan angles, GPS times, …) |
|
[string] Padrão: ‘’ |
The value that specifies the amount of scaling, translating, clamping or setting that is done by the transform selected above. |
operations (first 7 need an argument) |
|
[enumeration] Padrão: 0 |
Um de:
|
argument for operation |
|
[string] Padrão: ‘’ |
The value to use as the argument for the operation selected above |
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output LAS/LAZ file |
|
[file] Default: |
Specifies where the output point cloud is stored. Use LAZ for compressed output, LAS for uncompressed output, and TXT for ASCII. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.7.3. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output LAS/LAZ file |
|
[file] |
The output (merged) LAS/LAZ format file |
24.3.7.4. Python code¶
Algorithm ID: lastools:las2las_transform
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.8. las2txt¶
24.3.8.1. Descrição¶
Translates a LAS/LAZ file to a text file.
24.3.8.2. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
|
run new 64 bit executable |
|
[boolean] Padrão: Falso |
|
open LAStools GUI |
|
[boolean] Padrão: Falso |
|
input LAS/LAZ file |
|
[file] Padrão: Nenhum |
|
parse_string |
|
[string] Default: ‘xyz’ |
|
additional command line parameters Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output ASCII file |
|
[file] Default: |
Specify the output file. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.8.3. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output ASCII file |
|
[file] |
The output file |
24.3.8.4. Python code¶
Algorithm ID: lastools:las2txt
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.9. lasindex¶
24.3.9.1. Descrição¶
<Inserir a descrição do algoritmo aqui>
24.3.9.2. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
|
run new 64 bit executable |
|
[boolean] Padrão: Falso |
|
open LAStools GUI |
|
[boolean] Padrão: Falso |
|
input LAS/LAZ file |
|
[file] Padrão: Nenhum |
|
append *.lax file to *.laz file |
|
[boolean] Padrão: Falso |
|
is mobile or terrestrial LiDAR (not airborne) |
|
[boolean] Padrão: Falso |
|
additional command line parameters Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
24.3.9.3. Saídas¶
The algorithm has no output.
24.3.9.4. Python code¶
Algorithm ID: lastools:lasindex
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.10. lasgrid¶
Grids a selected attribute (e.g. elevation, intensity, classification, scan angle, …) of a large point clouds with a user-defined step size onto raster using a particular method (e.g. min, max, average).
For more info see the lasgrid page and its online README file.
24.3.10.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
run new 64 bit executable |
|
[boolean] Padrão: Falso |
|
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
The file containing the points to be rastered in LAS/LAZ format. |
filter (by return, classification, flags) |
|
[enumeration] Padrão: 0 |
Specifies the subset of points to use for the gridding. One of:
|
step size / pixel size |
|
[number] Padrão: 1.0 |
Specifies the size of the cells of the grid the TIN is rasterized onto |
Atributo |
|
[enumeration] Padrão: 0 |
Specifies the attribute to rasterise. One of:
|
Método |
|
[enumeration] Padrão: 0 |
Specifies how the attributes falling into one cell are turned into a raster value. One of:
|
use tile bounding box (after tiling with buffer) |
|
[boolean] Padrão: Falso |
Specifies to limit the rastered area to the tile bounding box (only meaningful for input LAS/LAZ tiles that were created with lastile). |
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output raster file |
|
[raster] Default: |
Specifies where the output raster is stored. Use image rasters like TIF, PNG, and JPG for false color, gray ramps, and hillshades. Use value rasters like TIF, BIL, IMG, ASC, DTM, FLT, XYZ, and CSV for actual values. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.10.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output raster file |
|
[raster] |
The output raster |
24.3.10.3. Python code¶
Algorithm ID: lastools:lasgrid
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.11. lasinfo¶
24.3.11.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
run new 64 bit executable |
|
[boolean] Padrão: Falso |
|
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
The file to get information about. |
compute density |
|
[boolean] Padrão: Falso |
|
repair bounding box |
|
[boolean] Padrão: Falso |
|
repair counters |
|
[boolean] Padrão: Falso |
|
histogram |
|
[enumeration] Padrão: 0 |
First histogram. One of:
|
bin size |
|
[number] Padrão: 1.0 |
|
histogram |
|
[enumeration] Padrão: 0 |
Second histogram. One of:
|
bin size |
|
[number] Padrão: 1.0 |
|
histogram |
|
[enumeration] Padrão: 0 |
Third histogram. One of:
|
bin size |
|
[number] Padrão: 1.0 |
|
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output ASCII file |
|
[file] Default: |
Specifies where the output is stored. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.11.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output ASCII file |
|
[file] |
The file with the output |
24.3.11.3. Python code¶
Algorithm ID: lastools:lasinfo
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.12. lasmerge¶
Merge up to seven LAS/LAZ files into one.
24.3.12.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
run new 64 bit executable |
|
[boolean] Padrão: Falso |
|
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
files are flightlines |
|
[boolean] Padrão: Falso |
|
apply file source ID |
|
[boolean] Padrão: Falso |
|
input LAS/LAZ file |
|
[file] |
The first file containing points to be merged |
2nd file Opcional |
|
[file] |
The second file to merge |
3rd file Opcional |
|
[file] |
The third file to merge |
4th file Opcional |
|
[file] |
The fourth file to merge |
5th file Opcional |
|
[file] |
The fifth file to merge |
6th file Opcional |
|
[file] |
The sixth file to merge |
7th file Opcional |
|
[file] |
The seventh file to merge |
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output LAS/LAZ file |
|
[file] Default: |
Specifies where the output point cloud is stored. Use LAZ for compressed output, LAS for uncompressed output, and TXT for ASCII. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.12.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output LAS/LAZ file |
|
[file] |
The output (merged) LAS/LAZ format file |
24.3.12.3. Python code¶
Algorithm ID: lastools:lasmerge
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.13. lasprecision¶
24.3.13.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
The file the input point cloud |
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output ASCII file |
|
[file] Default: |
Specifies where the output ASCII file is stored. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.13.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output ASCII file |
|
[file] |
The output ASCII file |
24.3.13.3. Python code¶
Algorithm ID: lastools:lasprecision
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.14. lasquery¶
24.3.14.1. Descrição¶
<Inserir a descrição do algoritmo aqui>
24.3.14.2. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
The file the input point cloud |
area of interest |
|
[extent] |
The extent |
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
24.3.14.3. Saídas¶
24.3.14.4. Python code¶
Algorithm ID: lastools:lasquery
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.15. lasvalidate¶
24.3.15.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
input LAS/LAZ file |
|
[file] |
The file the input point cloud |
save report to ‘*_LVS.xml’ |
|
[boolean] |
|
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output XML file |
|
[file] Default: |
Specifies where the output XML file is stored. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.15.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output XML file |
|
[file] |
The output XML file |
24.3.15.3. Python code¶
Algorithm ID: lastools:lasvalidate
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.16. laszip¶
24.3.16.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
run new 64 bit executable |
|
[boolean] Padrão: Falso |
|
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
The file to be zipped |
only report size |
|
[boolean] Padrão: Falso |
|
create spatial indexing file (*.lax) |
|
[boolean] Padrão: Falso |
|
append *.lax into *.laz file |
|
[boolean] Padrão: Falso |
|
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output LAS/LAZ file |
|
[file] Default: |
Specifies where the output point cloud is stored. Use LAZ for compressed output, LAS for uncompressed output, and TXT for ASCII. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.16.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
Output LAS/LAZ file |
|
[file] |
The output file |
24.3.16.3. Python code¶
Algorithm ID: lastools:laszip
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.
24.3.17. txt2las¶
24.3.17.1. Parâmetros¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
verbose |
|
[boolean] Padrão: Falso |
Generates more textual control output to the console |
run new 64 bit executable |
|
[boolean] Padrão: Falso |
|
open LAStools GUI |
|
[boolean] Padrão: Falso |
Starts the GUI of LAStools with pre-populated input files |
input LAS/LAZ file |
|
[file] |
The file to be zipped |
parse lines as |
|
[string] Default: ‘xyz’ |
|
skip the first n lines |
|
[number] Padrão: 0 |
|
resolution of x and y coordinate |
|
[number] Default: 0.01 |
|
resolution of z coordinate |
|
[number] Default: 0.01 |
|
resolution of z coordinate |
|
[number] Default: 0.01 |
|
source projection |
|
[enumeration] Padrão: 0 |
Um de:
|
source epsg code |
|
[number] |
|
utm zone |
|
[enumeration] Padrão: 0 |
Um de:
|
state plane code |
|
[enumeration] Padrão: 0 |
Um de:
|
additional command line parameter(s) Opcional |
|
[string] Padrão: ‘’ |
Specifies other command-line switches not available via this menu but known to the (advanced) LAStools user. |
Output LAS/LAZ file |
|
[file] Default: |
Specifies where the output point cloud is stored. Use LAZ for compressed output, LAS for uncompressed output, and TXT for ASCII. One of:
A codificação do arquivo também pode ser alterada aqui. |
24.3.17.2. Saídas¶
Etiqueta |
Nome |
Tipo |
Descrição |
---|---|---|---|
output LAS/LAZ file |
|
[file] |
The output file |
24.3.17.3. Python code¶
Algorithm ID: lastools:txt2las
import processing
processing.run("algorithm_id", {parameter_dictionary})
The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.