edfcore 0.1.13 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -4
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/package.json +1 -1
- package/src/constants.ts +1 -1
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ for (const event of annotations) {
|
|
|
58
58
|
}
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
-
> **Status: 0.1.
|
|
61
|
+
> **Status: 0.1.x, early.** edfcore runs 1,200+ tests on generated fixtures, and it's checked
|
|
62
62
|
> against public corpora it didn't author: the EDF, EDF+ and 24-bit BDF+ test files from
|
|
63
63
|
> teuniz.net, and PhysioNet's sleep-edfx (a real 22-hour polysomnography recording and its
|
|
64
64
|
> sleep-staging file). Those checks are numeric. Channels labelled `sine 8.5 Hz` decode to
|
|
@@ -275,9 +275,14 @@ edfplus.info test files) and a golden-value harness cross-checking physical valu
|
|
|
275
275
|
pyEDFlib and MNE. Until that harness exists this README makes no numerical-interop claim, and it
|
|
276
276
|
will not make one that a test did not produce.
|
|
277
277
|
|
|
278
|
-
**
|
|
279
|
-
|
|
280
|
-
|
|
278
|
+
**Shipped since 0.1.6.** Min/max envelope decimation (`readEnvelope`). BioSemi Status-byte
|
|
279
|
+
helpers (`readTriggers`). Streaming iteration (`streamRecords`). Annotation queries, exact
|
|
280
|
+
time-to-sample conversion, and text formatters for the header and the validation report. See
|
|
281
|
+
[API — helpers](https://edfcore.vercel.app/docs/api-helpers).
|
|
282
|
+
|
|
283
|
+
**Still later, additive.** The `edffloat` logarithmic inverse transform, opt-in — still detected
|
|
284
|
+
and rejected, because applying an inverse edfcore cannot verify against a real edffloat file is
|
|
285
|
+
exactly the invention this library refuses. JSR publication.
|
|
281
286
|
|
|
282
287
|
---
|
|
283
288
|
|
package/dist/constants.d.ts
CHANGED
|
@@ -109,5 +109,5 @@ export declare const SIGNAL_FIELD_BLOCK_OFFSETS: {
|
|
|
109
109
|
readonly reserved: 224;
|
|
110
110
|
};
|
|
111
111
|
/** Published package version. Kept in sync with package.json by a test. */
|
|
112
|
-
export declare const VERSION = "0.1.
|
|
112
|
+
export declare const VERSION = "0.1.14";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/package.json
CHANGED
package/src/constants.ts
CHANGED