Replies: 1 comment 7 replies
-
You can read all the files as a single collection. You have a message for being careful, but it is only a message to trigger your attention. Process the collection with a chunk size != 0 and it will work. However pay attention to your data quality. It is unlikely that both dataset are perfectly aligned especially in Z.
You can do that by splitting your files in two independent groups and make two CHMs However there is no way to have two LAScatalog and generate the same chunks for both and load two LAS at the same extents to compare the two collection chunk by chunk. That might be the object of a feature request. I can imagine something like multi_ctg = readMultiLAScatalog("folder1", "folder2")
opt_chunk_size(multi_ctg) = 1000
compare = function(las1, las2) { ... }
catalog_compare(multi_ctg, compare) |
Beta Was this translation helpful? Give feedback.
-
I wonder what are the possibilities in lidR to work with point clouds from more than one point in time? Are there examples?
Recently I received ALS data of a larger area where there was data from a couple of years ago for the first time. And revisited surveys are getting more and more I guess.
My first thought was that I could maybe load both data sets in the same LAScatalog and work with it, but I got
Be careful, some tiles seem to overlap each other. lidR may return incorrect outputs with edge artifacts when processing this catalog.
which brought me to this discussion (https://gis.stackexchange.com/questions/345919/overlapping-las-tiles). So it seems working with multiple point clouds for the same area might not be intended in lidR and I guess is also not easy in general as point clouds may vary between ettributes etc. Anyway I think there is a lot of potential to work with mutliteporal point clouds.Possible use cases I was thinking of include:
For single LAS files this should be possible I guess, but what about larger areas in a LAScatalog?
Beta Was this translation helpful? Give feedback.
All reactions