Interface KeplerWorkspaceDatasetStateExperimental

Live state the bridge tracks for one open Kepler dataset.

interface KeplerWorkspaceDatasetState {
    authorizationScope?: string;
    cursor?: string;
    datasetId: string;
    fields: readonly KeplerField[];
    planId?: string;
    pointColumns?: {
        latitude: string;
        longitude: string;
    };
    rowIdentityField?: string;
    rows: readonly (readonly unknown[])[];
    schemaVersion?: string;
}

Properties

authorizationScope?: string
cursor?: string

Resume cursor of the last applied event.

datasetId: string
fields: readonly KeplerField[]
planId?: string
pointColumns?: {
    latitude: string;
    longitude: string;
}

Columns a point layer binds to, when geometry is a lon/lat pair.

rowIdentityField?: string

Row identity is mandatory for bounded deltas.

rows: readonly (readonly unknown[])[]
schemaVersion?: string