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

    Interface ProfileSample

    A (distance, value) sample on a distance-domain channel profile.

    interface ProfileSample {
        bandHi: number;
        bandLo: number;
        distanceMeters: number;
        innerHi: number;
        innerLo: number;
        value: number;
    }
    Index

    Properties

    bandHi: number

    Outer band edge (high) — a high percentile, not the raw max.

    bandLo: number

    Outer band edge (low) — a low percentile, not the raw min. NaN if empty.

    distanceMeters: number
    innerHi: number

    Inner band edge (high) — the 75th percentile (the typical-range ceiling).

    innerLo: number

    Inner band edge (low) — the 25th percentile (the typical-range floor).

    value: number

    Median of the raw samples in the bucket — robust to anomalies.