Contains lightweight metadata about the source, such as point count.

interface PointCloudMetadata {
    attributes: PointCloudAttribute[];
    crs?: core.geographic.CoordinateSystem;
    pointCount?: number;
    volume?: Box3;
}

Properties

attributes: PointCloudAttribute[]

The supported attributes in this source.

The coordinate system of this source, if any.

pointCount?: number

The total number of points in this source.

Note: if the source cannot provide a total point count (for example, because it is not present in the headers, or because the source is split into many files), this is undefined.

volume?: Box3

The volume of the point cloud.

Note: if the source cannot provide a volume (for example, because it is not present in the headers, or because the source is split into many files), this is undefined. In this case, clients should use the volume of the root node in the hierarchy.