↧
Answer by Zoe for Creating orthomosaic from *.las point cloud in R
Okay, so I figured out how to do it, although it's not very elegant:# load datapoints <- readLAS(input_path)# returns the RGB values for the highest pointsRGBZ <- function(r,g,b,z) { bands =...
View ArticleCreating orthomosaic from *.las point cloud in R
Is there a way to export a *.las point cloud in R to a orthomosaic? I loaded my las-file containing the points with the package lidR. I want to export a tif which shows the point cloud from above in...
View Article