Parsing from an Array

If you want to parse a collection of Metar-Strings, you can do so from a string array string[]

simply use

Metar[] metarArray = ParseMetar.FromArray(yourInputList);

or

List<Metar> metarList = ParseMetar.FromArray(yourInputList).ToList();

This will return an array or a List of Metars, head over to Metar to check out a single Metar-Item.

Last updated