edf2csv 0.5.122 → 0.5.123
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/CHANGELOG.md +30 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
Notable changes to edf2csv. Versions follow [semantic versioning](https://semver.org); while the
|
|
4
4
|
major version is 0, a minor bump may contain breaking changes.
|
|
5
5
|
|
|
6
|
+
## 0.5.123
|
|
7
|
+
|
|
8
|
+
### Fixed: the FAQ showed one recording's long layout under another recording's command
|
|
9
|
+
|
|
10
|
+
"Why did I get several signals files instead of one?" answers with `sleep-study.edf`: it lists
|
|
11
|
+
that recording's three rates, names all five of its channels, and then offers `--layout long`
|
|
12
|
+
as the one-file alternative:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
edf2csv sleep-study.edf --out ./converted --layout long
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
time_s,channel,value
|
|
20
|
+
0.00000000,EEG Fpz-Cz,0.061
|
|
21
|
+
0.00000000,ECG,0.00122
|
|
22
|
+
0.00000000,Temp rectal,37.00073
|
|
23
|
+
0.00390625,EEG Fpz-Cz,9.096
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Three channels, one of them an ECG that recording does not have, at the eight decimal places a
|
|
27
|
+
256 Hz channel needs and none of its channels ask for. It is `mixed-rates.edf` converted, and
|
|
28
|
+
captioned with somebody else's command — eight lines under the same answer's own list of what
|
|
29
|
+
the file holds.
|
|
30
|
+
|
|
31
|
+
What that command writes is five channels at the first instant and `time_s` at three places,
|
|
32
|
+
which is what the block shows now. cli-reference has had it right all along; the two pages now
|
|
33
|
+
agree because a test converts the recording and holds every `--layout long` block on the site
|
|
34
|
+
to what came out.
|
|
35
|
+
|
|
6
36
|
## 0.5.122
|
|
7
37
|
|
|
8
38
|
### Fixed: asking for the annotation channel was answered by denying it exists
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.123",
|
|
4
4
|
"description": "Convert EDF, EDF+ and BDF biosignal recordings (European Data Format) to CSV from the command line. Local, streaming, and never resamples or alters units.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"edf",
|