furkot-import-gpx

Import GPX for Furkot

Usage no npm install needed!

<script type="module">
  import furkotImportGpx from 'https://cdn.skypack.dev/furkot-import-gpx';
</script>

README

NPM version Build Status Dependency Status

furkot-import-gpx

Import GPX for Furkot

Install

$ npm install --save furkot-import-gpx

Usage

Use as a transform stream: pipe network responses, files etc. and listen on data event.

var furkotImportGpx = require('furkot-import-gpx');
var request = require('getlet');

request('https://example.com/my.gpx')
  .pipe(furkotImportGpx)
  .on('data', function(trip) {
    console.log(trip);
  });

License

MIT © Damian Krzeminski