Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upVisualisation of point clouds with different colour palette #325
Comments
|
This is a fair feature request that can probably be done within a very short term. |
library(lidR) # >= v3.0.0
las = readLAS("building_WilliamsAZ_Urban_normalized.las")
nonveg = filter_poi(las, Classification != LASHIGHVEGETATION)
veg = filter_poi(las, Classification == LASHIGHVEGETATION)
# Regular plot
plot(las, color = "Classification")
# Two point cloud with different palettes
x = plot(nonveg, color = "Classification")
plot(veg, add = x) |
|
amazing! |

Just for visualisation purposes, a potential improvement of #275 could be to have the possibility to plot together two point clouds with different colour palettes.
I think something like: