Metar.Decoder 1.0.9

dotnet add package Metar.Decoder --version 1.0.9
                    
NuGet\Install-Package Metar.Decoder -Version 1.0.9
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Metar.Decoder" Version="1.0.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Metar.Decoder" Version="1.0.9" />
                    
Directory.Packages.props
<PackageReference Include="Metar.Decoder" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Metar.Decoder --version 1.0.9
                    
#r "nuget: Metar.Decoder, 1.0.9"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Metar.Decoder@1.0.9
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Metar.Decoder&version=1.0.9
                    
Install as a Cake Addin
#tool nuget:?package=Metar.Decoder&version=1.0.9
                    
Install as a Cake Tool

Metar.Decoder

A .NET library to decode METAR (Meteorological Aerodrome Report) strings into structured objects.

Compatible with .NET Standard 2.0, .NET 8.0, .NET 10.0, and .NET Framework 4.8.


Quick Start

using Metar.Decoder;
using Metar.Decoder.Entity;

var decoded = MetarDecoder.ParseWithMode("METAR LFPO 231027Z 24004G09KT 2500 +FZRA FEW015 17/10 Q1009");

if (decoded.IsValid)
{
    Console.WriteLine($"ICAO: {decoded.ICAO}");                    // "LFPO"
    Console.WriteLine($"Wind: {decoded.SurfaceWind.MeanSpeed.ActualValue} {decoded.SurfaceWind.MeanSpeed.ActualUnit}");
    Console.WriteLine($"Visibility: {decoded.Visibility.PrevailingVisibility.ActualValue}m");
    Console.WriteLine($"Temperature: {decoded.AirTemperature.ActualValue}C");
    Console.WriteLine($"Pressure: {decoded.Pressure.ActualValue} {decoded.Pressure.ActualUnit}");
}

Features

  • Full METAR parsing: Report type, ICAO, datetime, surface wind, visibility, RVR, present weather, clouds, temperature, dew point, pressure, recent weather, windshear, trend, remarks
  • Strict and non-strict modes: Continue parsing on errors or stop at first error
  • Unit conversion: Built-in conversion between speed, distance, and pressure units
  • Null-safe: All optional fields are nullable with safe access patterns
  • Cross-platform: Works on Windows, Linux, macOS

Decoded Properties

Property Description
ICAO ICAO 4-letter airport code
SurfaceWind Wind direction, speed, gusts
Visibility Prevailing and minimum visibility
RunwaysVisualRange RVR per runway
PresentWeather Current weather phenomena
Clouds Cloud layers (amount, height, type)
AirTemperature Air temperature
DewPointTemperature Dew point temperature
Pressure QNH pressure
RecentWeather Recent weather
WindshearRunways Runways with windshear
TrendType Trend (NOSIG, BECMG, TEMPO)
Remark Remarks section (after RMK)
SeaLevelPressure SLP from remarks

Unit Conversion

// Convert wind speed to knots
float knots = decoded.SurfaceWind.MeanSpeed.GetConvertedValue(Value.Unit.Knot);

// Convert visibility to feet
float feet = decoded.Visibility.PrevailingVisibility.GetConvertedValue(Value.Unit.Feet);

// Convert pressure to inHg
float inHg = decoded.Pressure.GetConvertedValue(Value.Unit.MercuryInch);

Parsing Modes

// Non-strict (default) - continues on errors
var decoded = MetarDecoder.ParseWithMode(rawMetar);

// Strict - stops at first error
var decoded = MetarDecoder.ParseWithMode(rawMetar, isStrict: true);

// Instance-based with global mode
var decoder = new MetarDecoder();
decoder.SetStrictParsing(true);
var result = decoder.Parse(rawMetar);

Documentation & Source

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.8

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.9 82 5/6/2026
1.0.8 959 7/11/2025
1.0.7 121 7/11/2025
1.0.6 136 7/11/2025
1.0.5 3,324 3/8/2024
1.0.4 1,885 3/1/2023
1.0.3 2,218 11/9/2022
1.0.2 963 10/10/2022
1.0.1 552 10/7/2022
1.0.0 514 10/6/2022