Interface KeplerColumnarProjectionRequestExperimental

interface KeplerColumnarProjectionRequest {
    columns: readonly KeplerColumnInput[];
    crs?: string;
    datasetId: string;
    label?: string;
    pointColumns?: {
        latitude: string;
        longitude: string;
    };
    provenance: KeplerSourceProvenance;
    rowCount: number;
    rowIdentityField?: string;
    temporalFields?: readonly string[];
}

Hierarchy (view full)

Properties

columns: readonly KeplerColumnInput[]
crs?: string

Input CRS. Only EPSG:4326 / CRS84 / OGC:CRS84 are accepted.

datasetId: string
label?: string
pointColumns?: {
    latitude: string;
    longitude: string;
}

Longitude/latitude column names, projected into a Kepler point pair.

rowCount: number
rowIdentityField?: string

Attribute field holding stable row identity, used by delta reconciliation.

temporalFields?: readonly string[]

Attribute fields to treat as temporal (Kepler timestamp).