Replies: 1 comment
-
Sorry, I did not really understand the question. Why do you want to process the collection of files without reading the file? How do you think you can find the average of the point without loading the point? If I understood properly, you want to extract some plots and extract some metrics simultaneously? Is that correct? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am trying to process 60 las tiles where I need to find the mean ground and local maximum of a bunch of plots where my plot centers are location of telecommunication towers.
I looked at the examples here https://cran.r-project.org/web/packages/lidR/vignettes/lidR-LAScatalog-class.html and am able to use the following code to clip out my plots but I was hoping to be able to find the median of ground and local maximum after the
clip_roi
is called but before thewriteLAS
operation.Is it possible to do what I need without a function?
If I need to make my own function, do I need to read in each
chunk
(ie. original las tile) to process the data or can I complete theclip_roi
without definingopt_output_files
and process just the clip_roi points?The example code I am looking at from the vignettes with some comments/questions of what I want to do:
Beta Was this translation helpful? Give feedback.
All reactions