Is it possible to copy a single class from one point cloud to another using lascopy?
There was a mistake early on in our processing where a class 12 was dropped, we're now at the final steps before wrapping this project and realized class 12 was gone. Is it possible to use lascopy to move only class 12 to the near final point cloud?
My assumption is no, so this is the approach I took but it doesn't seem to be working and i'm assuming thats because the data has been georectified since the class 12 was dropped and the points no longer align. With the las2las, i'm isolating the points in class 12 and then using that output in the lascopy. The results are not producing any points in class 12, but if I add the -match_point_source_id flag it generates points in class 12 but they do not match the points from class12_only.laz.
las2las -i "source.las" -keep_classification 12 -o "class12_only.laz"
lascopy64 -i "class12_only.laz" -i "missing_class12.laz" -match_xy 0.5 -o "new_with_class12.laz" -v
Any suggestions would be appreciated.