Question on voxel resolution #480
-
When you compute voxel metrics and set the resolution, I am curious as to what the bottom voxel represents? The function outputs Z values but are these the top, bottom, or center of the voxel? voxel.metrics <- voxel_metrics(las, ~.stdmetrics_ctrl, res = c(10,2)) and we got a series of Z values for a pixel that were 5, 7, and 9, what do those represent? For Z=5, does this represent points between 5 and 7, 3 and 5, or 4 and 6? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Point returned are voxels centers. So z = 5 with a resolution of 2 is Z in [4, 6[. Or ]4, 6] I don't know, but I don't think it matters much. |
Beta Was this translation helpful? Give feedback.
Point returned are voxels centers. So z = 5 with a resolution of 2 is Z in [4, 6[. Or ]4, 6] I don't know, but I don't think it matters much.