# igc-analyzer

> Analyze an IGC tracklog

Latest version **0.0.1** (published 2019-01-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install igc-analyzer
pnpm add igc-analyzer
yarn add igc-analyzer
bun add igc-analyzer
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2019-01-12 |
| First published | 2019-01-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 7.8 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Fredi Bach |
| Maintainers | fredibach |

## Links

- npm: https://www.npmjs.com/package/igc-analyzer
- npm.io page: https://npm.io/package/igc-analyzer

## Dependencies (2)

- [lodash](https://npm.io/package/lodash.md) ^4.17.11
- [simple-statistics](https://npm.io/package/simple-statistics.md) ^7.0.0

## Recent versions

- 0.0.1 (latest) — 2019-01-12

## README

# IGC Analyzer

This is a port of an IGC parser/analyzer that I've wrote in PHP a few years ago. The conversion is a little buggy right now, so don't use it for anything serious.

## Usage

Installation:

`npm i igc-analyzer --save`

And than in your script:

```
const IGCAnalyzer = require('igc-analyzer');
const fs = require('fs');

const igcData = fs.readFileSync('test2.igc', 'utf8');

const analyzer = new IGCAnalyzer(igcData);
const analyzedData = analyzer.parse(true, true);
```

---
_Source: https://npm.io/package/igc-analyzer · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
