Sports Lib API - v17.3.0
    Preparing search index...

    Interface RouteStreamInterface

    A route stream is indexed by route point, not by elapsed activity seconds.

    interface RouteStreamInterface {
        type: string;
        getData(onlyNumeric?: boolean, filterInfinity?: boolean): (number | null)[];
        getStreamDataByIndex(
            onlyNumeric?: boolean,
            filterInfinity?: boolean,
        ): RouteStreamDataItem[];
        isExportable(): boolean;
        setData(data: (number | null)[]): this;
        toJSON(): StreamJSONInterface;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    type: string

    Methods

    • Parameters

      • OptionalonlyNumeric: boolean
      • OptionalfilterInfinity: boolean

      Returns (number | null)[]