Interface KeplerArrowTableProjectionRequestExperimental

An Apache Arrow table supplied by the host without importing Arrow in SDK core.

interface KeplerArrowTableProjectionRequest {
    arrowTable: unknown;
    crs?: string;
    datasetId: string;
    geometryField?: string;
    label?: string;
    provenance: KeplerSourceProvenance;
    rowIdentityField?: string;
    temporalFields?: readonly string[];
}

Hierarchy (view full)

Properties

arrowTable: unknown
crs?: string

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

datasetId: string
geometryField?: string

Name of a GeoArrow/geometry field, when the table contains geometry.

label?: string
rowIdentityField?: string

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

temporalFields?: readonly string[]

Attribute fields to treat as temporal (Kepler timestamp).