@pond-ts/process API Reference
    Preparing search index...

    Interface OpContext

    What an op's run is handed.

    interface OpContext {
        id: string;
        inputs: Readonly<Record<string, string>>;
        params: Params;
        series: TimeSeries<SeriesSchema>;
    }
    Index

    Properties

    Properties

    id: string

    This spec's id — the output column name, or a band's prefix.

    inputs: Readonly<Record<string, string>>

    Column name per input role.

    params: Params
    series: TimeSeries<SeriesSchema>

    The bound source, widened to carry this op's input columns under the names in inputs. Prepared by the plan layer so an op can call the corpus normally — the studies take (series, { column }).