IGC (igc v1.1.1)
Documentation for IGC
.
Link to this section Summary
Link to this section Functions
Link to this function
parse(stream)
Parses an IGC file and creates a stream of the following IGC record types:
:fix
[B record]: Positional updates:pilot_event
[E record]: Pilot event:data
[K record]: Additional data as described in the headers:satellite_constellation
[F record]: Satellite constellation data and changes:logbook
[L records]: Logbook entries
Each stem entry is a tuple following the format {type, data, headers}
.
Link to this function
parse(stream, filter)
Like parse/1
, but filters the stream to only the specified types.
For example, to only get the positional updates:
IGC.parse(stream, [:fix])
Link to this function