Taf.Decoder 1.0.7

dotnet add package Taf.Decoder --version 1.0.7
                    
NuGet\Install-Package Taf.Decoder -Version 1.0.7
                    
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="Taf.Decoder" Version="1.0.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Taf.Decoder" Version="1.0.7" />
                    
Directory.Packages.props
<PackageReference Include="Taf.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 Taf.Decoder --version 1.0.7
                    
#r "nuget: Taf.Decoder, 1.0.7"
                    
#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 Taf.Decoder@1.0.7
                    
#: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=Taf.Decoder&version=1.0.7
                    
Install as a Cake Addin
#tool nuget:?package=Taf.Decoder&version=1.0.7
                    
Install as a Cake Tool

Taf.Decoder

A .NET library to decode TAF (Terminal Aerodrome Forecast) strings into structured objects.

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


Quick Start

using Taf.Decoder;
using Taf.Decoder.Entity;

var decoded = TafDecoder.ParseWithMode(
    "TAF LEMD 080500Z 0806/0912 23010KT 9999 SCT025 TX12/0816Z TN04/0807Z");

if (decoded.IsValid)
{
    Console.WriteLine($"ICAO: {decoded.Icao}");    // "LEMD"
    Console.WriteLine($"Wind: {decoded.SurfaceWind.MeanSpeed.ActualValue} {decoded.SurfaceWind.MeanSpeed.ActualUnit}");
    Console.WriteLine($"Visibility: {decoded.Visibility.ActualVisibility.ActualValue}m");
    Console.WriteLine($"Max Temp: {decoded.MaximumTemperature?.TemperatureValue.ActualValue}C");
    Console.WriteLine($"Min Temp: {decoded.MinimumTemperature?.TemperatureValue.ActualValue}C");
}

Features

  • Full TAF parsing: Report type, ICAO, datetime, forecast period, surface wind, visibility, weather, clouds, temperatures, evolutions
  • RTD Support: Decodes "Report Delayed" TAF messages
  • Evolution handling: Parses BECMG, TEMPO, and PROB forecast changes
  • 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
  • Cross-platform: Works on Windows, Linux, macOS

Decoded Properties

Property Description
Icao ICAO 4-letter airport code
Type Report type: TAF, TAFAMD, TAFCOR, RTD
ForecastPeriod Valid period (FromDay/FromHour to ToDay/ToHour)
SurfaceWind Wind direction, speed, gusts
Visibility Prevailing visibility
Cavok CAVOK indicator
WeatherPhenomenons Weather phenomena
Clouds Cloud layers (amount, height, type)
MaximumTemperature Forecast maximum temperature with time
MinimumTemperature Forecast minimum temperature with time
Evolutions Forecast changes (BECMG, TEMPO, PROB)

Supported Report Types

Type Description
TAF Standard TAF forecast
TAFAMD Amended TAF forecast
TAFCOR Corrected TAF forecast
RTD Report Delayed

Evolutions (Forecast Changes)

var decoded = TafDecoder.ParseWithMode(
    "TAF EGLL 080500Z 0806/0906 24015G25KT 9999 BKN040 " +
    "TEMPO 0806/0812 30018G30KT 3000 +SHRA BKN012CB " +
    "BECMG 0812/0814 25010KT");

foreach (var evo in decoded.Evolutions)
{
    Console.WriteLine($"{evo.Type}: {evo.FromDay}{evo.FromHour}Z-{evo.ToDay}{evo.ToHour}Z");
    if (evo.SurfaceWind != null)
        Console.WriteLine($"  Wind: {evo.SurfaceWind.MeanSpeed?.ActualValue} {evo.SurfaceWind.MeanSpeed?.ActualUnit}");
}

Parsing Modes

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

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

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

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.7 77 5/6/2026
1.0.6 120 2/18/2026
1.0.5 278 7/11/2025
1.0.4 150 7/11/2025
1.0.3 158 7/11/2025
1.0.2 1,010 3/12/2024
1.0.1 229 3/8/2024
1.0.0 1,221 3/1/2023