@squawk
    Preparing search index...

    Interface RunwayVisualRange

    Runway Visual Range (RVR) report for a specific runway. Reports the horizontal visibility along a runway measured by transmissometers.

    interface RunwayVisualRange {
        isLessThan: boolean;
        isMoreThan: boolean;
        isVariableMaxMoreThan?: boolean;
        runway: string;
        trend?: RvrTrend;
        variableMaxFt?: number;
        visibilityFt: number;
    }
    Index

    Properties

    isLessThan: boolean

    True when the visibility value has an M (minus) prefix, indicating "less than" the sensor minimum (e.g. M0200FT).

    isMoreThan: boolean

    True when the visibility value has a P (plus) prefix, indicating "greater than" the sensor maximum (e.g. P6000FT).

    isVariableMaxMoreThan?: boolean

    True when the variable max value has a P (plus) prefix (e.g. VP6000FT).

    runway: string

    Runway designator (e.g. "27L", "09R", "15").

    trend?: RvrTrend

    Visibility trend indicator, if reported.

    variableMaxFt?: number

    Upper bound of variable RVR in feet (e.g. 3000 in R27R/1800V3000FT).

    visibilityFt: number

    Reported RVR visibility in feet. When variable, this is the lower bound.