Skip to content

skyhop/Igc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

skyhop logo


Igc

This project contains an IGC file parser and generator based on prior work in the Turbo87/igc-parser repository. The parser in this project is a C# adaption of the code found in that project.

Installation

The library can be added to your project in a number of ways:

NuGet

The Skyhop.Igc library is available through NuGet and can be installed as follows:

Install-Package Skyhop.Igc

.NET CLI

To install the library through the .NET CLI you can use the following command:

dotnet add package Skyhop.Igc

Building From Source

You can always grab the source on GitHub and build the code yourself!

Usage

Using the code is as easy as passing the contents of an IGC file to the parser;

string fileContents = File.ReadAllText(filePath);

IgcFile file = Skyhop.Igc.Parser.Parse(fileContents);

Releases

No releases published

Packages

No packages published

Languages