Plot voxelized LiDAR data
This function implements a 3D plot method for 'lasmetrics3d' objects
## S3 method for class 'lasmetrics3d' plot( x, y, color = "Z", colorPalette = height.colors(50), bg = "black", trim = Inf, ... )
x |
An object of the class |
y |
Unused (inherited from R base) |
color |
characters. The field used to color the points. Default is Z coordinates. Or a vector of colors. |
colorPalette |
characters. A color palette name. Default is |
bg |
The color for the background. Default is black. |
trim |
numeric. Enables trimming of values when outliers break the color palette range. Default is 1 meaning that the whole range of the values is used for the color palette. 0.9 means that 10 In this case the values higher than the 90th percentile are set to the highest color. They are not removed. |
... |
Supplementary parameters for points3d if the display method is "points". |
LASfile <- system.file("extdata", "Megaplot.laz", package="lidR") lidar = readLAS(LASfile) voxels = voxel_metrics(lidar, list(Imean = mean(Intensity)), res = 5) plot(voxels, color = "Imean", colorPalette = heat.colors(50), trim=60)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.