@squawk
    Preparing search index...

    Interface MetarRemarks

    Parsed METAR remarks section. Contains structured fields for commonly coded remark groups. The raw remarks string is always available for any groups not parsed into structured fields.

    interface MetarRemarks {
        hailSizeIn?: number;
        hourlyPrecipitationIn?: number;
        iceAccretion?: IceAccretion[];
        lightning?: LightningObservation[];
        maintenanceIndicator?: boolean;
        missingData?: string[];
        obscurations?: ObscurationReport[];
        peakWind?: PeakWind;
        precipitationEvents?: PrecipitationEvent[];
        preciseDewpointC?: number;
        preciseTemperatureC?: number;
        pressureFallingRapidly?: boolean;
        pressureRisingRapidly?: boolean;
        pressureTendency?: PressureTendency;
        raw: string;
        seaLevelPressureMb?: number;
        seaLevelPressureNotAvailable?: boolean;
        secondLocationObservations?: SecondLocationObservation[];
        sectorVisibility?: SectorVisibility[];
        significantClouds?: SignificantCloudReport[];
        sixHourMaxTemperatureC?: number;
        sixHourMinTemperatureC?: number;
        snowDepthIn?: number;
        snowIncreasing?: SnowIncreasing;
        stationType?: StationType;
        threeSixHourPrecipitationIn?: number;
        thunderstormInfo?: ThunderstormInfo[];
        towerSurfaceVisibility?: TowerSurfaceVisibility[];
        twentyFourHourMaxTemperatureC?: number;
        twentyFourHourMinTemperatureC?: number;
        twentyFourHourPrecipitationIn?: number;
        variableCeiling?: VariableCeiling;
        variableSkyCondition?: VariableSkyCondition[];
        variableVisibility?: VariableVisibility;
        virga?: VirgaObservation[];
        waterEquivalentSnowIn?: number;
        windShift?: WindShift;
    }
    Index

    Properties

    hailSizeIn?: number

    Hail size in inches, from the GR remark (e.g. GR 1 3/4 = 1.75 in). Only present when hail size is explicitly reported in remarks.

    hourlyPrecipitationIn?: number

    Hourly precipitation amount in inches, from the P group (e.g. P0022 = 0.22 in).

    iceAccretion?: IceAccretion[]

    Ice accretion amounts from the I-group (e.g. I1001 = 0.01 in last hour).

    lightning?: LightningObservation[]

    Lightning observations.

    maintenanceIndicator?: boolean

    True when the maintenance indicator ($) is present, signaling the station needs maintenance.

    missingData?: string[]

    List of sensor status codes indicating unavailable data (e.g. TSNO, PWINO, FZRANO, PNO, VISNO, CHINO).

    obscurations?: ObscurationReport[]

    Surface-based obscurations reported in remarks.

    peakWind?: PeakWind

    Peak wind observed during the observation period.

    precipitationEvents?: PrecipitationEvent[]

    Precipitation begin/end events.

    preciseDewpointC?: number

    Precise dewpoint in degrees Celsius to tenths, from the T group (e.g. T01610100 = 10.0C).

    preciseTemperatureC?: number

    Precise temperature in degrees Celsius to tenths, from the T group (e.g. T01610100 = 16.1C).

    pressureFallingRapidly?: boolean

    True when pressure is falling rapidly (PRESFR).

    pressureRisingRapidly?: boolean

    True when pressure is rising rapidly (PRESRR).

    pressureTendency?: PressureTendency

    3-hour pressure tendency from the 5-group (e.g. 52032 = character 2, +3.2 hPa).

    raw: string

    The full raw remarks string (everything after "RMK").

    seaLevelPressureMb?: number

    Sea level pressure in millibars, derived from the SLP group (e.g. SLP189 = 1018.9 mb).

    seaLevelPressureNotAvailable?: boolean

    True when sea level pressure is not available (SLPNO).

    secondLocationObservations?: SecondLocationObservation[]

    Visibility or ceiling observations at secondary locations.

    sectorVisibility?: SectorVisibility[]

    Sector visibility observations.

    significantClouds?: SignificantCloudReport[]

    Significant cloud types observed (CB, TCU, ACC, ACSL, CCSL, etc.).

    sixHourMaxTemperatureC?: number

    6-hour maximum temperature in degrees Celsius, from the 1-group (e.g. 10066 = 6.6C).

    sixHourMinTemperatureC?: number

    6-hour minimum temperature in degrees Celsius, from the 2-group (e.g. 21012 = -1.2C).

    snowDepthIn?: number

    Snow depth on ground in inches, from the 4/group (e.g. 4/012 = 12 inches).

    snowIncreasing?: SnowIncreasing

    Snow increasing rapidly from the SNINCR group (e.g. SNINCR 2/10).

    stationType?: StationType

    Automated station type (AO1 or AO2).

    threeSixHourPrecipitationIn?: number

    3-hour or 6-hour precipitation amount in inches, from the 6-group (e.g. 60048 = 0.48 in).

    thunderstormInfo?: ThunderstormInfo[]

    Thunderstorm location and movement information.

    towerSurfaceVisibility?: TowerSurfaceVisibility[]

    Tower or surface visibility observations.

    twentyFourHourMaxTemperatureC?: number

    24-hour maximum temperature in degrees Celsius, from the 4-group (e.g. 401280028 max=12.8C).

    twentyFourHourMinTemperatureC?: number

    24-hour minimum temperature in degrees Celsius, from the 4-group (e.g. 401280028 min=0.28C).

    twentyFourHourPrecipitationIn?: number

    24-hour precipitation amount in inches, from the 7-group (e.g. 70102 = 1.02 in).

    variableCeiling?: VariableCeiling

    Variable ceiling range observed during the period.

    variableSkyCondition?: VariableSkyCondition[]

    Variable sky condition (layer varying between two coverages).

    variableVisibility?: VariableVisibility

    Variable visibility range observed during the period.

    Virga observations with direction.

    waterEquivalentSnowIn?: number

    Water equivalent of snow on ground in inches, from the 933-group (e.g. 933036 = 3.6 in).

    windShift?: WindShift

    Wind shift event information.