Interface KeplerCrsDecisionExperimental

CRS decision recorded for every projection. Kepler renders in WGS84 lon/lat only, so the bridge never silently reprojects: a non-WGS84 input is rejected with unsupported-crs.

interface KeplerCrsDecision {
    applied: string;
    reason: string;
    reprojected: boolean;
    requested: string;
}

Properties

applied: string

CRS of the emitted rows. Always "EPSG:4326" when geometry is projected.

reason: string
reprojected: boolean
requested: string

Caller-declared input CRS, verbatim.