lidR (version 2.0.2)

lasfilter: Return points with matching conditions

Description

Return points with matching conditions

Usage

lasfilter(las, ...)

Arguments

las

An object of class LAS

Logical predicates. Multiple conditions are combined with '&' or ','

Value

An object of class LAS

See Also

Other lasfilters: lasfilterduplicates, lasfiltersurfacepoints, lasfilters

Examples

Run this code
# NOT RUN {
LASfile <- system.file("extdata", "Megaplot.laz", package="lidR")
lidar = readLAS(LASfile)

# Select the first returns classified as ground
firstground = lasfilter(lidar, Classification == 1 & ReturnNumber == 1)

# Multiple arguments are equivalent to &
firstground = lasfilter(lidar, Classification == 1, ReturnNumber == 1)

# Multiple criteria
first_or_ground = lasfilter(lidar, Classification == 1 | ReturnNumber == 1)
# }

Run the code above in your browser using DataCamp Workspace