1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
|
This document describes the format used by EDFbrowser to write montage files.
-----------------------------------------------------------------------------
The montage file uses basic XML elements. XML attributes are not allowed.
The first line of the file must contain:
<?xml version="1.0"?>
The root element must be "EDFbrowser_montage", like:
<EDFbrowser_montage>
</EDFbrowser_montage>
Inside the root element "EDFbrowser_montage", there will be a child element for every signal composition.
A signal composition represents one trace on the screen.
The name of this element must be "signalcomposition", like:
<signalcomposition>
</signalcomposition>
Inside every element "signalcomposition", there must be one element with the name "num_of_signals", like:
<num_of_signals>2</num_of_signals>
The value of this element must be an integer within the range 1 to MAXSIGNALS inclusive.
The value represents from how many signals it is derived i.e. if it's monopolar, bipolar or tripolar, etc.
Note: all signals in the same signalcomposition must share the same samplerate and resolution (e.g. uV/lsb).
Inside every element "signalcomposition", there must be one element with the name "voltpercm", like:
<voltpercm>100.0</voltpercm>
The value of this element must be a floating point number. (The example has a value of 100.0.)
The value represents the amplitude of the signal expressed in it's physical dimension (unit) per cm (vertical).
Inside every element "signalcomposition", there must be one element with the name "screen_offset", like:
<screen_offset>0</screen_offset>
The value of this element must be an integer or floating point number. (The example has a value of 0.)
The value represents the vertical offset compared to the baseline expressed in screen pixels.
Inside every element "signalcomposition", there must be one element with the name "polarity", like:
<polarity>1</polarity>
The value of this element must be either 1 or -1. (The example has a value of 1.)
The value has the following meanings:
1 : normal presentation (not inverted)
-1 : signal will be drawn inverted (upside down)
Inside every element "signalcomposition", there must be one element with the name "color", like:
<color>2</color>
The value of this element must be an integer within the range 2 to 18 inclusive. (The example has a value of 2.)
The value represents the color of the signalcomposition on the screen i.e. the trace or curve.
Colortable:
2 Black
3 White
4 Dark gray
5 Gray
6 Light gray
7 Red
8 Green
9 Blue
10 Cyan
11 Magenta
12 Yellow
13 Dark red
14 Dark green
15 Dark blue
16 Dark cyan
17 Dark magenta
18 Dark Yellow
Inside every element "signalcomposition", there can be one element with the name "alias", like:
<alias>average</alias>
An alias, if present, replaces the signalcomposition label on the screen. It does not influence the montages.
Only 7-bit ASCII characters are allowed. No control-characters. Max 16 characters.
Inside every element "signalcomposition", there can be one element with the name "fidfilter_cnt", like:
<fidfilter_cnt>0</fidfilter_cnt>
The value of this element must be an integer within the range 0 to 8. (The example has a value of 0.)
The value represents the number of fid filters applied to the signalcomposition.
Inside every element "signalcomposition", there can be one element with the name "ravg_filter_cnt", like:
<ravg_filter_cnt>0</ravg_filter_cnt>
The value of this element must be an integer within the range 0 to 8. (The example has a value of 0.)
The value represents the number of running average filters applied to the signalcomposition.
Inside every element "signalcomposition", there must be at least one element with the name "signal", like:
<signal>
</signal>
The number of elements "signal" must be equal to the value of the element "num_of_signals".
Note: all signals in the same signalcomposition must have the same samplerate and resolution.
Inside every element "signal", there must be one element with the name "label", like:
<label>FP1</label>
The value of this element must be a string containing only 7-bit ASCII characters. (The example has a value of "FP1".)
The decimal value of every character must be in the range 32 to 126. This avoids the use of control-codes.
The maximum amount of characters allowed is 16. There must be no termination character (like zero).
The value represents the label of the signal in the file which must be used for this signalcomposition.
Exception:
Instead of an element "label", an element "edfindex" can be used:
<edfindex>4</edfindex>
The value of this element must be an integer within the range 0 to MAXSIGNALS - 1. (The example has a value of 4.)
The value represents a zero-based number of the signal in the file, which must be used for this signalcomposition.
The first signal in an EDF-file has number 0, the second signal has number 1, the third signal has number 2, etc.
Inside the element "signal", there must be one element with the name "factor", like:
<factor>1.0</factor>
Multiplying factor.
The value can be an integer or float in the range -128 to 128. 0 is not allowed. (The example has a value of 1.)
The value must be greater than +0.001 or lower than -0.001.
If the value of element "fidfilter_cnt" is non-zero, there must be at least one element with name "fidfilter", like:
<fidfilter>
</fidfilter>
The number of elements "fidfilter" must be equal to the value of the element "fidfilter_cnt".
Inside every element "fidfilter", there must be one element with the name "type", like:
<type>0</type>
The value of this element must be an integer in the range 0 to 4. (The example has a value of 0.)
filtertype table:
0 higpass
1 lowpass
2 notch
3 bandpass
4 bandstop
Note: when type = 2 (notch), element "model" must be 0 (Butterworth).
Inside every element "fidfilter", there must be one element with the name "frequency", like:
<frequency>0.5</frequency>
The value of this element must be a floating point number. (The example has a value of 0.5 Hz.)
The value represents the cut-off or notch frequency expressed in Hz.
Inside every element "fidfilter", there must be one element with the name "frequency2", like:
<frequency2>100.0</frequency2>
The value of this element must be a floating point number. (The example has a value of 100.0 Hz.)
The value represents the second cut-off frequency of a bandpass or bandstop filter expressed in Hz and
must be higher than the value of "frequency".
Inside every element "fidfilter", there must be one element with the name "ripple", like:
<ripple>3.0</ripple>
The value of this element must be a floating point number. (The example has a value of 3.0 dB.)
The value represents the bandpass ripple expressed in dB.
Inside every element "fidfilter", there must be one element with the name "order", like:
<order>1</order>
The value of this element must be an integer number within the range 1 to 100. (The example has a value of 1.)
The value represents the filters order e.g. 1th order.
Note: when type = 2 (notch), order must be in the range 3 to 100 and represents the Q-factor of the notch-filter.
Inside every element "fidfilter", there must be one element with the name "model", like:
<model>0</model>
The value of this element must be an integer number within the range 0 to 2. (The example has a value of 0.)
The value represents the filters model.
filter model table:
0 Butterworth
1 Chebyshev
2 Bessel
Note: when type = 2 (notch), element "model" must be 0 (Butterworth).
Note:
Not all filter parameters are applicable to all types of filters. Despite, the parameters must be present.
If a parameter is not applicable e.g. frequency2 when using a highpassfilter, fill in some value.
The value will be ignored but must be present in the file.
Inside every element "signalcomposition", there can be one element with the name "ecg_filter", like:
<ecg_filter>1</ecg_filter>
The value of this element must be an integer with the value 1. (The example has a value of 1.)
The value represents the activation of the heartrate detection.
If the value of element "ravg_filter_cnt" is higher than zero, there must be at least one element with name "ravg_filter", like:
<ravg_filter>
</ravg_filter>
The number of elements "ravg_filter" must be equal to the value of the element "ravg_filter_cnt".
Inside every element "ravg_filter", there must be one element with the name "type", like:
<type>0</type>
The value of this element must be an integer in the range 0 to 1. (The example has a value of 0.)
filtertype table:
0 higpass running average filter (also called: moving average filter)
1 lowpass running average filter
Inside every element "ravg_filter", there must be one element with the name "size", like:
<size>16</size>
The value of this element must be an integer in the range 2 to 10000. (The example has a value of 16.)
The value represents the size of the running average filterbuffer expressed in samples.
Inside the root element "EDFbrowser_montage", there must be one element with the name "pagetime", like:
<pagetime>100000000</pagetime>
The value of this element must be an integer with a minimum value of 10000. (The example has a value of 100000000.)
The value represents the timescale (pagetime) expressed in units of 100 nanoSeconds.
Thus, a value of 100000000 means a timescale of 10 seconds.
An example of the content of a montage file.
---------------------------------------------
It contains three signalcompositions.
All of them are derivatives of two signals: F4 - FP2, C4 - F4 and X1 - X2.
The first signalcomposition has two filters: a 1th order highpass Butterworth filter at 0.1 Hz
and a 1th order lowpass Butterworth filter at 35.0 Hz.
("frequency2" and "ripple" are not applicable to this type of filter)
The second signalcomposition has one filter: a notch filter at 50.0 Hz with a Q-factor of 20.
The third signalcomposition has the heartrate detection activated.
The timescale is set to 10 seconds.
<?xml version="1.0"?>
<EDFbrowser_montage>
<signalcomposition>
<num_of_signals>2</num_of_signals>
<voltpercm>50.000000</voltpercm>
<screen_offset>0.000000</screen_offset>
<color>2</color>
<fidfilter_cnt>2</fidfilter_cnt>
<ravg_filter_cnt>0</ravg_filter_cnt>
<signal>
<label>F4</label>
<factor>1</factor>
</signal>
<signal>
<label>FP2</label>
<factor>-1</factor>
</signal>
<fidfilter>
<type>0</type>
<frequency>0.1000000000000000</frequency>
<frequency2>0.1120000000000000</frequency2>
<ripple>-1.0000000000000000</ripple>
<order>1</order>
<model>0</model>
</fidfilter>
<fidfilter>
<type>1</type>
<frequency>35.0000000000000000</frequency>
<frequency2>39.2000000000000028</frequency2>
<ripple>-1.0000000000000000</ripple>
<order>1</order>
<model>0</model>
</fidfilter>
</signalcomposition>
<signalcomposition>
<num_of_signals>2</num_of_signals>
<voltpercm>50.000000</voltpercm>
<screen_offset>0.000000</screen_offset>
<color>2</color>
<fidfilter_cnt>1</fidfilter_cnt>
<ravg_filter_cnt>0</ravg_filter_cnt>
<signal>
<label>C4</label>
<factor>1</factor>
</signal>
<signal>
<label>F4</label>
<factor>-1</factor>
</signal>
<fidfilter>
<type>2</type>
<frequency>50.0000000000000000</frequency>
<frequency2>0.0001000000000000</frequency2>
<ripple>-1.0000000000000000</ripple>
<order>20</order>
<model>0</model>
</fidfilter>
</signalcomposition>
<signalcomposition>
<num_of_signals>2</num_of_signals>
<voltpercm>5.000000</voltpercm>
<screen_offset>415.748031</screen_offset>
<color>7</color>
<fidfilter_cnt>0</fidfilter_cnt>
<ravg_filter_cnt>0</ravg_filter_cnt>
<signal>
<label>X1</label>
<factor>1</factor>
</signal>
<signal>
<label>X2</label>
<factor>-1</factor>
</signal>
<ecg_filter>
<type>1</type>
</ecg_filter>
</signalcomposition>
<pagetime>100000000</pagetime>
</EDFbrowser_montage>
|