@squawk
    Preparing search index...

    Interface TafIcingLayer

    Icing layer as reported in a US Military TAF (6-group).

    Format: 6IhshshsD where I is intensity (0-9), hshshs is the base altitude in hundreds of feet, and D is the layer depth in thousands of feet.

    interface TafIcingLayer {
        baseAltitudeFt: number;
        depthFt: number;
        intensity: IcingIntensity;
    }
    Index

    Properties

    baseAltitudeFt: number

    Base altitude of the icing layer in feet (hundreds of feet multiplied by 100).

    depthFt: number

    Depth of the icing layer in feet (thousands of feet multiplied by 1,000).

    intensity: IcingIntensity

    Icing intensity code (0-9).