Parsing from a List

If you want to parse a collection of Metar-Strings, you can do so from a List<string.

simply use

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

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

Last updated