Interface DatasetInterface

A Dataset contains and groups the recoded data (like images, point clouds, or maps).

interface DatasetInterface {
    acquisitionTime: Date;
    crs: ReferenceSystemInterface;
    id: number;
    name: string;
    pointCloudVisible: boolean;
    siteModelEntities: SiteModelEntityInterface[];
    title: string;
}

Hierarchy (view full)

Properties

acquisitionTime: Date

Timestamp of when the dataset was recorded.

Dataset's coordinate reference system.

id: number

Entity id number

name: string

Name representing the dataset.

pointCloudVisible: boolean

Visibility of the dataset's point cloud.

siteModelEntities: SiteModelEntityInterface[]

Site model entities in which the dataset is located.

title: string

Short summary text describing the dataset.

Generated using TypeDoc