lidRviewer icon indicating copy to clipboard operation
lidRviewer copied to clipboard

lidRviewer 1.0.0 announcement

Open Jean-Romain opened this issue 6 months ago • 12 comments

The devel branch contains the version 1.0.0 which is complete redesign of the package. @H4estu @caiohamamura @ptompalski @liamirwin may I ask you to test it and provide feedback. It is designed to efficiently display arbitrarily large in-memory point clouds, with tested cases including over 130 million points.

remotes::install_github("r-lidar-lab/lidRviewer", ref = "devel" )

Usage

Use library(lidRviewer) after library(lidR) to overide the default rgl plot function from lidR.

library(lidR)
library(lidRviewer)
LASfile <- system.file("extdata", "Megaplot.laz", package="lidR")
las <- readLAS(LASfile)
plot(las)
  • Rotate with left mouse button
  • Zoom with mouse wheel
  • Pan with right mouse button
  • Keyboard r or g or b to color with RGB
  • Keyboard z to color with Z
  • Keyboard i to color with Intensity
  • Keyboard c to color with Classification
  • Keyboard + or - to change the point size
  • Keyboard l to enable/disable eyes-dome lightning

Jean-Romain avatar Aug 25 '24 15:08 Jean-Romain