TreeLS (version 1.0)

treeMap: Map tree occurrences from TLS data

Description

Estimates tree occurrence regions from a normalized point cloud.

Usage

treeMap(las, method = map.hough())

Arguments

las

LAS object.

method

tree mapping algorithm - currently available: map.hough.

Value

LAS object with tree_map signature.

Output

The output is a LAS object with extra fields in the data slot. For more details on the output fields checkout map.hough's help page.

Examples

Run this code
# NOT RUN {
file = system.file("extdata", "model_boles.laz", package="TreeLS")
tls = readTLS(file)
plot(tls)

## build a 3D map of tree occurrences
map = treeMap(tls)
plot(map, color='Radii')

## get a 2D representation of the tree map
xymap = treePositions(map)
head(xymap)
# }

Run the code above in your browser using DataCamp Workspace