Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thisisnttheway/igc-merger
Merge split IGC files of the same flight
https://github.com/thisisnttheway/igc-merger
Last synced: 18 days ago
JSON representation
Merge split IGC files of the same flight
- Host: GitHub
- URL: https://github.com/thisisnttheway/igc-merger
- Owner: ThisIsntTheWay
- License: gpl-3.0
- Created: 2025-01-01T10:20:33.000Z (19 days ago)
- Default Branch: main
- Last Pushed: 2025-01-01T10:50:12.000Z (19 days ago)
- Last Synced: 2025-01-01T11:26:07.146Z (19 days ago)
- Language: Go
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IGC merger
Merge 2 IGC files together, such as when an FR has erroneously split up a single flight.
Only IGC files of an identical FR, pilot and date will be processed.> [!CAUTION]
> The resultant IGC file will **fail to pass integrity checks** because its security record cannot be faithfully reconstructed.
> Said security record relies on secret keys only known to the manufacturer of the flight recorder that has generated your IGC files.Nonetheless, a security record gets generated to preserve the IGC file structure.
## Usage
```bash
go run .
```The merged file will be written to the current workin directory as `merged.igc`.
## Building
```bash
# With go
go get
go build .# Using ko
ko build --local .
```