If you want to parse a collection of Metar-Strings, you can do so from a List<string.
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 3 years ago