Replies: 1 comment 4 replies
-
When applying a method on a collection of file by chunks with a buffer you necessarily compute some stuff twice or more in some regions. For example, for a DTM, you compute the DTM twice or more in the buffered regions because the buffered region are loaded more than once (they overlap). For rasters the buffer is removed on-the-fly based on easy spatial criterion. If a pixel is in the buffer we remove it. Job done! For After processing, for each chunk we have some sensor position that are duplicated with other chunks. And each sensor position is not estimated with the same score of accuracy. There is no way to produce a clean and continuous output by processing each chunk independently due to the fact we are processing spatial chunk instead of temporal chunk. Consequently, at the end, all the results are merged and duplicated sensor position are removed by keeping the best one. This means we cannot process each spatial chunk independently. We need to see what is in the other chunks to produce a clean an continuous output. This is why it is not possible to write the result of each chunk independently. In your case, if you have a buffer large enough (200m is not large enough), your code looks legit. You compute the sensor, the sensor is poor on the edge, consequently the normalization is poor on the edge but who care because you rasterize later and clip the spatial buffer on the edges. You don't keep the sensor positions anyway. If your intensity raster is not written it comes from somewhere else. |
Beta Was this translation helpful? Give feedback.
-
My aim is to create some intensity metrics as raster. I want to normalize values within tiles but also try to normalize the range bewteen tiles from different flight campaigns (at least approximately).
I use the following code but have the problem that no files are written to the output location.
I tried to find the error for quite a long time until I just recognized the Non-supported LAScatalog options of
track sensor
.I dont really understand what is meant with
I guess the files are not written at all, or are they just written somewhere else where I cant find them?
And if they are not written what would I have to do to process a catalog to normalize intensities?
Beta Was this translation helpful? Give feedback.
All reactions