Parsing from any other Enumerable

To parse from any other collection (IEnumerable, Span, whatever you are using) you can use

IEnumerable<Metar> metarEnumerable = ParseMetar.FromCollection(yourInput);

This will return an IEnumerable<Metar>, head over to Metar to check out a single Metar-Item.

Last updated