https://github.com/wdalmut/sporasub-sp2
A set of stream to parse the sporasub sp2 .dive file
https://github.com/wdalmut/sporasub-sp2
dive sp2 sporasub watch
Last synced: 2 months ago
JSON representation
A set of stream to parse the sporasub sp2 .dive file
- Host: GitHub
- URL: https://github.com/wdalmut/sporasub-sp2
- Owner: wdalmut
- Created: 2017-10-29T20:39:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-29T20:41:07.000Z (over 7 years ago)
- Last Synced: 2025-02-23T00:05:06.323Z (3 months ago)
- Topics: dive, sp2, sporasub, watch
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sporasub SP2 - Dive reader
A set of streams that read `.dive` files from Sporasub SP2 diving watch
```js
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
});
;```