How do you compute the 90% percentile height (Z) in PDAL?

181 views Asked by At

How can you use filters to compute the height (Z) of the point in a point view that is higher than 90% of the other points using PDAL?

1

There are 1 answers

2
herrwusel On BEST ANSWER

Maybe you can use pdal's filters.python. In the filter use numpy.percentile to filter for the 90% percentile.