@squawk
    Preparing search index...

    Interface SkyCondition

    Sky condition as reported in a METAR, SPECI, or TAF. Contains cloud layers and/or special indicators for clear sky or vertical visibility.

    interface SkyCondition {
        clear?: SkyClearType;
        layers: CloudLayer[];
        verticalVisibilityFtAgl?: number;
    }
    Index

    Properties

    clear?: SkyClearType

    Clear sky indicator, if reported.

    layers: CloudLayer[]

    Cloud layers reported, ordered by ascending altitude. Empty when sky is clear or only vertical visibility is reported.

    verticalVisibilityFtAgl?: number

    Vertical visibility in feet AGL, reported when the sky is obscured (VVxxx).