forked from alivecor/musexmlexport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
69 lines (49 loc) · 2.78 KB
/
README
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
file: README A. Ricke 23 July 2009
Last revised: 23 July 2009
_______________________________________________________________________________
xmlecgex: An utility to extract an ECG rhythm strip from a MUSE(R) XML file
Copyright (C) 2009 GE Healthcare
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program (it is embedded in the text of this script).
If not, see <http://www.gnu.org/licenses/>.
You may contact the author by e-mail (anthony.ricke@med.ge.com) or postal
mail (Anthony D. Ricke, GE Healthcare, RP 2122, 9900 Innovation Drive,
Wauwatosa, WI 53226 USA). For updates to this software, please visit the
Source Forge project site (http://sourceforge.net/projects/musexmlexport/)
- MUSE is a registered trademark of GE Healthcare, Inc.
_______________________________________________________________________________
CONTENTS
A listing of the MUSE XML Export contents is:
musexmlex.py : The Python script used to read the MUSE XML files and export a
'.csv' file, suitable for import into other programs.
README : This file
COPYING : A copy of the GNU General Public License. A copy is also
included as part of the musexmlex.py script.
PREPARATION
The 'musexmlex.py' script is a Python script; hence, the Python engine must be
installed before using the script. This script was verified using version 2.5.2.
See www.python.org for information about installing Python on your target
machine.
After installation, make sure 'python.exe' is in your system path before
continuing.
USE
1. Copy the Python script to a location easily referened by your command-line
window.
2. Run the Python script, at the command-line, to export the ECG rhythm to a
comma-separated value ('.csv') file. The script writes the output in
microvolts.
For example:
python musexmlex.py MUSE_FILE.xml
Exports the ECG rhythm stored in the XML file to a file named
'MUSE_FILE.csv', assuming the following:
a. The Python script 'musexmlex.py' is in the current-working directory.
b. The file 'MUSE_FILE.xml' is in the current-working directory.
c. Python is installed on the machine, and it is in the system path.