Skip to content

A set of stream to parse the sporasub sp2 .dive file

Notifications You must be signed in to change notification settings

wdalmut/sporasub-sp2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sporasub SP2 - Dive reader

A set of streams that read .dive files from Sporasub SP2 diving watch

const page = require('sporasub-sp2/page');
const json = require('sporasub-sp2/to-json');

fs.createReadStream('my.dive')
    .pipe(page())
    .pipe(json())
    .on('data', (dive) => {
        console.log(dive); // object
    });
;

About

A set of stream to parse the sporasub sp2 .dive file

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published