@squawk
    Preparing search index...

    Interface PirepTurbulence

    A parsed turbulence report from the PIREP /TB field.

    interface PirepTurbulence {
        aboveAltitude?: number;
        baseFtMsl?: number;
        belowAltitude?: number;
        frequency?: TurbulenceFrequency;
        intensity: PirepTurbulenceIntensity;
        intensityHigh?: PirepTurbulenceIntensity;
        topFtMsl?: number;
        type?: TurbulenceType;
    }
    Index

    Properties

    aboveAltitude?: number

    True when turbulence is reported above a specified altitude (ABV modifier).

    baseFtMsl?: number

    Base altitude of the turbulence layer in feet MSL.

    belowAltitude?: number

    True when turbulence is reported below a specified altitude (BLO modifier).

    Frequency of turbulence, if reported.

    Turbulence intensity (lower bound when a range is reported).

    intensityHigh?: PirepTurbulenceIntensity

    Upper bound of intensity range (e.g. SEV in "MOD-SEV"). Omitted for single intensities.

    topFtMsl?: number

    Top altitude of the turbulence layer in feet MSL.

    Type of turbulence, if reported.