Im trying to run pdal merge on a large number of laz files. An example of my current script is..
pdal merge file1.laz file2.laz file3.laz d:\outputs\merged.copc.laz
I know form the documents theres a way to create a where expression, to remove unwanted classifications, from my own investigations I believe the syntax of what I want to be, for example...
((Classification != 0) && (Classification != 7))
I cannot see though, how to implament the where expression in my script, does anyone have any experience in this that might be able to guide me?