FIMViz.jsAPI
    Preparing search index...

    Interface DatasetAxis

    interface DatasetAxis {
        commensurable?: boolean;
        entries: DatasetAxisEntry[];
        name: string;
        ordered?: boolean;
        unit?: string;
    }
    Index
    commensurable?: boolean

    do the entries measure the same quantity in the same units, so that averaging across them is meaningful? Gates reduce.

    entries: DatasetAxisEntry[]
    name: string
    ordered?: boolean

    do the coords have a magnitude, so that "between" and "nearest" mean something? Gates selectRange and selectAxisEntry's nearest-match. Without it, nearest-match would happily snap select(1.5) to band 2.

    unit?: string