filters.kdistance¶
The K-Distance filter creates a new attribute KDistance
that
contains the euclidean distance to a point’s k-th nearest neighbor.
Note
The K-distance filter is deprecated and has been replaced by filters.nndistance.
Example¶
[
"input.las",
{
"type":"filters.kdistance",
"k":8
},
{
"type":"writers.bpf",
"filename":"output.las",
"output_dims":"X,Y,Z,KDistance"
}
]
Options¶
- k
- The number of k nearest neighbors. [Default: 10]