@squawk
    Preparing search index...

    Interface PirepCloudLayer

    A single cloud layer as reported in a PIREP sky condition (/SK) field. Unlike METAR cloud layers, PIREP sky conditions report altitudes in feet MSL (not AGL), and bases or tops may be unknown.

    interface PirepCloudLayer {
        baseFtMsl?: number;
        coverage: CloudCoverage | "CLR";
        topFtMsl?: number;
    }
    Index

    Properties

    baseFtMsl?: number

    Cloud base altitude in feet MSL. Omitted when unknown (UNKN).

    coverage: CloudCoverage | "CLR"

    Cloud coverage amount, or 'CLR' for clear skies.

    topFtMsl?: number

    Cloud top altitude in feet MSL. Omitted when unknown (UNKN).