> For the complete documentation index, see [llms.txt](https://tim-u.gitbook.io/metarsharp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tim-u.gitbook.io/metarsharp/quickstart.md).

# Quickstart

Download the Nuget package.

Use the project in your CS-File

`using Metarsharp;`

Parse a Metar from a string

`Metar yourMetar = ParseMetar.FromString("EDDF 221350Z AUTO 02008KT 9999 FEW019 BKN039 OVC048 03/M01 Q1028 NOSIG")`

This will output the [Metar-Class](/metarsharp/metar/overview.md).

Head over to [Parsing](/metarsharp/parsing/parsing-from-a-string.md) to check out all the different types of parsing a metar.
