赞
踩
编者:李国帅
qq:9611153 微信lgs9611153
时间:2019-7-4
存储心电图数据的格式有很多种,比如HL7,Dicom,EDF,GDF等,其中HL7最是简单,直观,使用Xml的方式保存数据。
以前为了显示HL7数据从官网下载了一个很全的aecg例子,里面包含各个字段的注释,包含几乎所有HL7协议中定义的字段。不过其中注释是英文的,本人通过翻译软件大致把注释翻译了一下,提供给有需要的人。
- <!--我们现在给出另一个注释集的例子, 这次是由人工阅读器生成的 We now give another example of annotation set, this time generated by a human reader -->
- <!--此注释集由1导上的三个RR期间和2导上的三个QT期间组成 This annotation set consists of three RR intervals on lead I and three QT intervals on lead II -->
- <subjectOf>
- <!--注解集-->
- <annotationSet>
- <!--在这种情况下, 注释由医生使用"一"屏测量系统生成 In this case the annotations where generated by a Doctor, using "one" on-screen measurement system -->
- <author>
- <!--布置实体-->
- <assignedEntity>
- <!--布置作者类型-->
- <assignedAuthorType>
- <!--布置人-->
- <assignedPerson>
- <name>Doctor John Brown</name>
- </assignedPerson>
- </assignedAuthorType>
- </assignedEntity>
- </author>
- <component>
- <!--在这种情况下, 我们没有使用比节拍注释更高级别的组件, 而直接使用波形注释 In this case we did not use a BEAT higher-level component and we go directly to the WAVE type annotation -->
- <annotation>
- <!--波形注解编码-->
- <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <!--R波段-->
- <value xsi:type="CE" code="MDC_ECG_WAVC_RWAVE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <component>
- <annotation>
- <code code="MDC_ECG_WAVC_TYPE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <!--由于我们提供的是波峰, 因此我们使用相关的MDC代码 Since we are providing a wave peak, we use the associated MDC code -->
- <value xsi:type="CE" code="MDC_ECG_WAVC_PEAK"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <support typeCode="SPRT">
- <!--支持的波段包含一个潜在顾客组件:=>这是一个基于潜在顾客的注释 the supporting ROI DOES INCLUDE a lead component: => this is thus a lead-based annotation-->
- <supportingROI classCode="ROIBND">
- <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
- <component>
- <!--此波峰是一个单一值, 因此我们使用PQ期间类型 The PEAK is a single value, and thus we thus use a PQ type-->
- <boundary>
- <!--PQ期间长度-->
- <code code="TIME_RELATIVE"
- codeSystem="2.16.840.1.113883.5.4"
- codeSystemName="ActCode" displayName="Relative Time"/>
- <value xsi:type="PQ" value="332" unit="ms"/>
- </boundary>
- </component>
- <component>
- <boundary>
- <!--波形在1导-->
- <code code="MDC_ECG_LEAD_I"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- </boundary>
- </component>
- </supportingROI>
- </support>
- </annotation>
- </component>
- </annotation>
- </component>
- <!--1导上的第二个R波峰 The second R wave peak on lead I -->
- <component>
- <annotation>
- <!--R波-->
- <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="CE" code="MDC_ECG_WAVC_RWAVE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <component>
- <annotation>
- <!--R波峰 -->
- <code code="MDC_ECG_WAVC_TYPE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="CE" code="MDC_ECG_WAVC_PEAK"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <support typeCode="SPRT">
- <supportingROI classCode="ROIBND">
- <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
- <component>
- <boundary>
- <!--PQ期间长度-->
- <code code="TIME_RELATIVE"
- codeSystem="2.16.840.1.113883.5.4"
- codeSystemName="ActCode" displayName="Relative Time"/>
- <value xsi:type="PQ" value="1120" unit="ms"/>
- </boundary>
- </component>
- <component>
- <boundary>
- <!--波形在1导-->
- <code code="MDC_ECG_LEAD_I"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- </boundary>
- </component>
- </supportingROI>
- </support>
- </annotation>
- </component>
- </annotation>
- </component>
- <!--1导上的第3个R波峰 The third R wave peak on lead I -->
- <component>
- <annotation>
- <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="CE" code="MDC_ECG_WAVC_RWAVE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <component>
- <annotation>
- <code code="MDC_ECG_WAVC_TYPE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="CE" code="MDC_ECG_WAVC_PEAK"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <support typeCode="SPRT">
- <supportingROI classCode="ROIBND">
- <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
- <component>
- <boundary>
- <code code="TIME_RELATIVE"
- codeSystem="2.16.840.1.113883.5.4"
- codeSystemName="ActCode" displayName="Relative Time"/>
- <value xsi:type="PQ" value="1930" unit="ms"/>
- </boundary>
- </component>
- <component>
- <boundary>
- <!--波形在1导-->
- <code code="MDC_ECG_LEAD_I"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- </boundary>
- </component>
- </supportingROI>
- </support>
- </annotation>
- </component>
- </annotation>
- </component>
- <!--1导上的第4个R波峰 The fourth R wave peak on lead I -->
- <component>
- <annotation>
- <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="CE" code="MDC_ECG_WAVC_RWAVE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <component>
- <annotation>
- <code code="MDC_ECG_WAVC_TYPE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="CE" code="MDC_ECG_WAVC_PEAK"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <support typeCode="SPRT">
- <supportingROI classCode="ROIBND">
- <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
- <component>
- <boundary>
- <code code="TIME_RELATIVE"
- codeSystem="2.16.840.1.113883.5.4"
- codeSystemName="ActCode" displayName="Relative Time"/>
- <value xsi:type="PQ" value="2776" unit="ms"/>
- </boundary>
- </component>
- <component>
- <boundary>
- <!--波形在1导-->
- <code code="MDC_ECG_LEAD_I"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- </boundary>
- </component>
- </supportingROI>
- </support>
- </annotation>
- </component>
- </annotation>
- </component>
- <!--2导上的第1个QT期间被使用一个单一QRST波代替。 The first QT interval on lead II is placed using a single QRSTWAVE -->
- <component>
- <annotation>
- <!--QRST波-->
- <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="CE" code="MDC_ECG_WAVC_QRSTWAVE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <support typeCode="SPRT">
- <supportingROI classCode="ROIBND">
- <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
- <component>
- <boundary>
- <!--QRST波的持续时间-->
- <code code="TIME_RELATIVE"
- codeSystem="2.16.840.1.113883.5.4"
- codeSystemName="ActCode" displayName="Relative Time"/>
- <value xsi:type="IVL_PQ">
- <low value="1068" unit="ms"/>
- <high value="1482" unit="ms"/>
- </value>
- </boundary>
- </component>
- <component>
- <boundary>
- <!--波形在2导-->
- <code code="MDC_ECG_LEAD_II"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- </boundary>
- </component>
- </supportingROI>
- </support>
- </annotation>
- </component>
- <!--2导上的第2个QT期间 The second QT interval -->
- <component>
- <annotation>
- <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="CE" code="MDC_ECG_WAVC_QRSTWAVE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <support typeCode="SPRT">
- <supportingROI classCode="ROIBND">
- <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
- <component>
- <boundary>
- <!--QRST波的持续时间-->
- <code code="TIME_RELATIVE"
- codeSystem="2.16.840.1.113883.5.4"
- codeSystemName="ActCode" displayName="Relative Time"/>
- <value xsi:type="IVL_PQ">
- <low value="1876" unit="ms"/>
- <high value="2298" unit="ms"/>
- </value>
- </boundary>
- </component>
- <component>
- <boundary>
- <!--波形在2导-->
- <code code="MDC_ECG_LEAD_II"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- </boundary>
- </component>
- </supportingROI>
- </support>
- </annotation>
- </component>
- <!--2导上的第3个QT期间 The third QT interval -->
- <component>
- <annotation>
- <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="CE" code="MDC_ECG_WAVC_QRSTWAVE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <support typeCode="SPRT">
- <supportingROI classCode="ROIBND">
- <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
- <component>
- <boundary>
- <!--QRST波的持续时间-->
- <code code="TIME_RELATIVE"
- codeSystem="2.16.840.1.113883.5.4"
- codeSystemName="ActCode" displayName="Relative Time"/>
- <value xsi:type="IVL_PQ">
- <low value="2722" unit="ms"/>
- <high value="3128" unit="ms"/>
- </value>
- </boundary>
- </component>
- <component>
- <boundary>
- <!--波形在2导-->
- <code code="MDC_ECG_LEAD_II"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- </boundary>
- </component>
- </supportingROI>
- </support>
- </annotation>
- </component>
- </annotationSet>
- </subjectOf>
- <!--派生系列: 代表性 (中位数) 节拍 Derived Series: Representative (median) beat-->
- <!--这种结构与 "主" 系列的结构完全相同 This structure is exactly the same as that of the "main" series -->
- <derivation>
- <!--我们使用派生系列标签 We use a derivedSeries tag -->
- <derivedSeries>
- <id root="38ed54e0-ecf6-4fc6-837f-b2d836980057"/>
- <!--我们使用的代表性节拍波形编码 We use a REPRESENTATIVE_BEAT code -->
- <code code="REPRESENTATIVE_BEAT" codeSystem="2.16.840.1.113883.5.4"
- codeSystemName="ActCode" displayName="Representative Beat Waveforms"/>
- <!--这是用于计算派生系列的时间 (在本例中为原始系列的整整 10秒) This is the time used to compute the derivedSeries (in this case the full 10 seconds of the original series) -->
- <effectiveTime>
- <low value="20021122091000.000" inclusive="true"/>
- <high value="20021122091010.000" inclusive="false"/>
- </effectiveTime>
- <!--这是世卫组织计算的衍生系列 (在这种情况下, 摩托罗拉软件作为记录设备) This is WHO computed the derivedSeries (in this case the Mortara software in the recording device) -->
- <author>
- <!--序列的作者-->
- <seriesAuthor>
- <!--序列制造商-->
- <manufacturedSeriesDevice>
- <id extension="0"/>
- <code code="RESTING_ECG" codeSystem="1.2.3.4.5" codeSystemName="???"/>
- <manufacturerModelName>ELI250</manufacturerModelName>
- <softwareName>5.3</softwareName>
- </manufacturedSeriesDevice>
- <manufacturerOrganization>
- <name>Mortara Instrument, Inc.</name>
- </manufacturerOrganization>
- </seriesAuthor>
- </author>
- <!--序列集数据-->
- <component>
- <!--序列集-->
- <sequenceSet>
- <component>
- <sequence>
- <code code="TIME_RELATIVE" codeSystem="2.16.840.1.113883.5.4"
- codeSystemName="ActCode" displayName="Relative Time"/>
- <value xsi:type="GLIST_PQ">
- <!--序列开始时间-->
- <head value="0.000" unit="s"/>
- <!--序列步进-->
- <increment value="0.002" unit="s"/>
- </value>
- </sequence>
- </component>
- <component>
- <!--电压序列-->
- <sequence>
- <!--1导-->
- <code code="MDC_ECG_LEAD_I" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="SLIST_PQ">
- <!--原点-->
- <origin value="0" unit="uV"/>
- <!--缩放比-->
- <scale value="2.5" unit="uV"/>
- <!--电压值-->
- <digits> 4 4 2 3 4 4 4 4 5 5 5 5 5 6 5 6 2 5 6 6 7 7 7 8 7 6
- 5 7 6 7 8 7 7 6 6 5 4 4 2 5 6 7 5 5 6 6 6 7 6 5 7 6 5 5
- 5 5 4 4 5 5 5 4 5 5 4 6 6 8 8 9 7 7 6 4 2 3 4 5 4 4 7 6
- 6 4 4 6 5 6 8 5 5 7 5 5 6 6 7 7 7 8 8 9 9 11 10 10 9 9
- 10 11 10 7 7 7 7 7 8 8 6 4 3 3 6 6 5 6 6 9 12 12 11 9 8
- 8 6 9 13 13 14 11 11 10 9 12 16 17 15 15 15 12 11 13 17
- 15 17 20 25 29 30 30 30 31 33 36 40 40 37 40 36 35 37 40
- 41 43 43 43 43 40 39 37 37 38 37 38 35 28 19 14 12 10 10
- 8 6 4 4 7 7 5 4 4 4 4 5 5 3 4 4 4 3 2 1 1 2 2 2 1 -1 0 0
- -1 -7 -11 -18 -22 -25 -31 -36 -44 -52 -57 -58 -60 -58
- -50 -42 -29 -14 -1 11 23 37 53 63 76 91 109 129 142 144
- 138 127 114 99 84 72 61 50 41 29 22 21 17 15 14 13 12 6
- 10 10 10 8 8 5 4 5 6 5 6 4 4 5 5 2 2 2 4 4 5 4 3 3 4 4 5
- 4 4 1 2 5 9 12 10 7 7 9 8 7 5 6 4 5 6 4 6 7 10 10 9 8 7
- 8 7 7 7 8 8 9 10 9 8 9 9 9 13 14 15 14 14 14 13 13 12 10
- 11 11 9 9 10 11 14 15 16 12 13 13 13 11 11 11 11 11 10
- 10 12 10 9 9 8 9 8 7 7 7 9 8 8 8 7 7 6 4 2 1 2 2 3 3 3
- -1 -1 2 1 1 -1 -3 -3 -2 -2 -4 -2 -2 -1 -2 -1 2 3 1 1 2 1
- 2 2 2 2 3 3 0 0 0 0 -3 -1 -2 0 2 4 4 4 5 5 3 6 4 3 4 7 5
- 6 6 7 5 5 6 6 7 8 6 8 9 9 10 8 4 2 5 4 5 6 6 9 12 12 11
- 13 12 11 10 9 9 10 10 11 11 12 10 11 8 8 8 8 6 5 5 5 5 6
- 8 8 7 8 9 10 10 10 9 10 11 9 8 6 10 11 12 11 13 11 12 11
- 11 10 10 13 11 12 10 10 9 10 9 9 10 11 11 10 9 10 14 15
- 15 13 12 12 13 14 15 14 14 14 18 17 16 13 12 11 11 11 14
- 16 13 14 12 14 13 14 16 16 14 14 15 16 17 17 17 20 23 24
- 25 25 21 21 21 22 26 26 23 23 20 20 23 22 25 25 27 28 27
- 27 24 21 19 17 20 26 32 36 36 36 31 28 23 </digits>
- </value>
- </sequence>
- </component>
- <component>
- <sequence>
- <!--2导-->
- <code code="MDC_ECG_LEAD_II" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="SLIST_PQ">
- <origin value="0" unit="uV"/>
- <scale value="2.5" unit="uV"/>
- <digits> 52 50 49 49 48 48 47 44 43 41 38 37 36 34 31 29 28
- 28 28 27 27 26 27 26 24 24 24 24 23 24 25 24 24 23 23 21
- 21 21 20 20 20 21 21 20 21 21 21 21 22 21 23 23 22 22 22
- 22 21 22 22 21 22 22 23 23 25 25 25 25 25 26 26 25 25 24
- 24 25 23 22 22 22 22 22 23 25 25 25 26 25 25 25 23 21 21
- 22 22 21 18 17 19 20 18 19 18 19 20 18 19 19 19 20 20 21
- 21 19 19 19 18 19 18 17 17 17 16 16 15 15 17 20 19 18 17
- 17 16 17 18 18 19 19 18 18 18 19 20 21 21 25 27 28 26 28
- 31 34 38 43 47 52 53 54 52 50 47 48 48 49 48 47 46 43 44
- 44 41 41 44 46 46 46 43 41 40 37 34 32 30 29 29 26 23 17
- 11 10 8 4 4 3 2 1 0 -2 -2 -2 -4 -5 -4 -2 1 1 -1 -1 -3 -5
- -6 -5 -3 -3 -3 -2 -2 0 3 5 8 8 9 9 6 -4 -16 -32 -48 -64
- -75 -85 -92 -90 -82 -62 -37 -10 18 42 67 97 124 137 132
- 99 50 -10 -71 -118 -153 -179 -199 -214 -223 -225 -222
- -215 -206 -192 -174 -152 -127 -103 -78 -63 -48 -34 -23
- -16 -8 0 6 10 14 17 17 19 19 19 20 21 20 22 20 21 22 23
- 24 25 26 26 27 28 30 31 31 33 34 34 35 36 34 35 35 35 35
- 37 39 37 40 41 42 44 44 44 43 45 46 45 46 46 47 47 45 46
- 47 47 50 53 54 55 55 56 58 60 58 61 62 65 65 66 69 70 70
- 71 72 75 78 79 83 84 86 89 93 96 97 98 100 103 104 105
- 107 107 109 111 113 116 116 118 121 123 123 123 124 126
- 127 127 126 126 124 125 123 124 124 127 128 126 125 123
- 123 119 114 109 106 101 97 93 90 88 82 80 75 73 70 68 64
- 61 57 55 54 50 49 48 43 42 39 36 34 32 29 30 29 31 30 29
- 29 29 28 27 26 24 24 23 23 24 24 24 25 24 25 24 24 23 22
- 23 24 24 24 26 25 24 22 23 23 22 22 23 23 22 22 23 24 26
- 26 27 26 24 25 24 24 25 25 26 25 26 27 26 26 24 24 25 25
- 26 27 26 26 24 24 25 24 24 23 23 23 24 22 22 23 23 24 23
- 26 27 27 26 25 26 25 22 22 21 22 22 21 20 19 20 20 19 18
- 18 19 18 19 20 18 18 17 17 17 18 19 19 19 21 23 23 22 21
- 19 20 22 22 25 24 25 26 28 28 30 31 31 33 34 35 34 35 36
- 37 37 36 35 35 35 36 35 37 35 34 34 36 38 36 34 34 34 35
- 31 30 27 27 28 30 28 30 31 31 33 33 33 34 33 33 33 34 32
- 30 28 </digits>
- </value>
- </sequence>
- </component>
- <component>
- <sequence>
- <!--V1导-->
- <code code="MDC_ECG_LEAD_V1" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="SLIST_PQ">
- <origin value="0" unit="uV"/>
- <scale value="2.5" unit="uV"/>
- <digits> 18 16 16 16 15 15 16 16 14 14 15 15 14 14 14 13 13
- 11 12 12 12 12 11 12 12 11 10 10 8 9 9 10 10 10 10 10 9
- 8 7 8 7 5 6 7 7 7 8 8 7 8 8 7 8 7 6 6 5 4 5 5 5 4 5 6 6
- 5 5 7 5 5 6 5 6 4 6 5 5 5 5 4 3 4 3 3 2 3 3 2 3 2 1 0 2
- 1 2 0 0 -1 0 -1 0 0 0 -1 0 -1 -2 -2 -3 -3 -3 -3 -3 -3 -2
- -3 -3 -2 -2 -3 -4 -5 -5 -8 -8 -8 -8 -8 -7 -5 -2 -2 -2 -2
- -2 -4 -4 -5 -6 -4 -3 -3 -2 -1 1 1 2 2 4 5 6 4 3 4 4 2 -1
- -4 -8 -10 -13 -16 -19 -22 -24 -27 -29 -32 -31 -32 -33
- -33 -32 -32 -31 -30 -28 -26 -25 -23 -22 -21 -23 -24 -23
- -20 -16 -12 -11 -9 -8 -5 -5 -7 -7 -5 -4 -5 -3 -4 -4 -6
- -6 -6 -5 -3 -2 0 -1 0 0 0 0 -2 0 -1 0 0 0 3 6 8 10 15 19
- 23 24 27 30 29 29 29 27 10 -21 -61 -113 -164 -213 -257
- -308 -365 -423 -472 -517 -541 -565 -561 -549 -523 -485
- -445 -402 -359 -312 -264 -218 -180 -141 -109 -76 -55 -35
- -25 -10 0 11 18 22 21 20 18 17 17 16 18 22 24 26 27 26
- 25 26 28 30 29 29 27 29 28 28 28 30 30 31 29 31 30 29 27
- 27 26 25 26 27 27 28 27 29 29 29 30 31 31 31 31 30 31 33
- 32 32 31 32 32 31 30 31 30 30 31 31 31 31 30 32 32 33 33
- 33 34 35 35 36 37 37 37 37 34 34 37 38 39 37 38 39 39 40
- 42 42 42 42 42 43 42 39 39 39 39 38 39 40 40 41 42 41 41
- 41 39 39 40 40 40 38 38 36 34 34 35 32 30 30 29 28 26 27
- 25 23 20 20 19 20 18 17 14 13 15 13 10 12 12 11 11 11 10
- 11 11 11 12 12 12 12 11 11 10 8 8 9 10 10 10 10 9 10 9 7
- 8 7 8 8 8 9 9 9 11 10 10 9 10 8 10 9 10 9 10 10 10 9 8 8
- 8 7 7 7 9 8 9 9 8 8 7 7 7 7 6 7 6 5 5 5 3 3 4 5 4 4 3 1
- 2 1 1 2 2 2 1 1 1 -1 -2 -2 -2 -4 -4 -4 -4 -3 -2 -3 -2 -2
- -2 -3 -4 -4 -5 -5 -6 -6 -7 -6 -4 -4 -3 -4 -4 -4 -5 -5 -4
- -8 -9 -9 -8 -7 -6 -5 -5 -5 -5 -6 -6 -6 -5 -5 -4 -5 -6 -7
- -7 -6 -5 -8 -7 -6 -8 -9 -9 -10 -11 -12 -13 -13 -12 -13
- -12 -13 -13 -14 -14 -15 -15 -16 -15 -14 -14 -16 -16 -16
- -17 -18 -16 -16 -17 -19 -22 -23 -24 -23 -21 -18 -17 -21
- -21 -21 -21 -20 -16 -16 -17 -19 </digits>
- </value>
- </sequence>
- </component>
- <component>
- <sequence>
- <!--V2导-->
- <code code="MDC_ECG_LEAD_V2" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="SLIST_PQ">
- <origin value="0" unit="uV"/>
- <scale value="2.5" unit="uV"/>
- <digits> 54 53 51 49 48 47 46 44 43 42 42 41 40 39 38 39 38
- 37 37 37 37 36 35 35 37 37 38 35 34 35 36 37 36 36 38 39
- 38 37 36 35 34 32 34 34 35 34 35 35 35 34 33 34 33 35 34
- 34 36 35 34 34 31 31 31 32 32 32 31 29 29 29 28 29 30 30
- 30 28 29 27 26 26 24 24 24 24 25 24 22 20 21 20 21 19 18
- 18 17 18 19 18 17 17 17 15 16 16 16 15 15 15 14 14 13 14
- 14 13 13 13 13 12 11 13 13 12 10 9 8 7 7 7 8 9 9 10 12
- 10 10 11 9 9 10 11 10 9 10 12 12 13 12 13 17 19 17 18 19
- 21 22 20 20 20 20 21 22 24 24 25 24 23 19 13 9 6 7 8 11
- 11 14 16 18 18 17 17 14 11 10 5 5 5 6 7 6 6 8 8 6 4 3 4
- 4 4 4 4 4 2 2 3 2 3 5 4 5 5 4 4 1 1 2 4 3 0 0 -1 -3 -5
- -13 -22 -36 -48 -63 -80 -100 -116 -135 -146 -164 -186
- -221 -255 -293 -327 -367 -412 -470 -531 -602 -661 -688
- -695 -695 -681 -661 -641 -622 -597 -554 -496 -420 -337
- -264 -201 -155 -122 -80 -55 -24 -9 8 25 45 56 61 62 58
- 52 49 50 50 51 55 58 59 59 59 60 61 60 62 65 65 64 63 63
- 65 66 68 68 70 72 72 72 69 70 70 72 72 73 75 77 77 78 80
- 83 83 83 84 85 86 87 87 87 90 92 93 92 94 95 95 96 97 98
- 99 101 101 103 108 106 107 109 111 113 115 118 119 119
- 122 123 125 127 127 129 130 134 138 140 141 144 143 146
- 147 148 147 150 150 151 150 149 149 149 148 149 148 149
- 150 150 151 150 149 148 146 145 144 145 142 141 139 135
- 133 127 122 120 117 113 108 104 100 96 90 86 82 77 72 69
- 65 60 57 54 51 48 45 42 41 39 37 37 36 34 35 34 34 32 31
- 32 31 28 28 28 29 28 28 28 29 29 28 27 28 28 27 28 28 28
- 30 30 32 33 34 34 34 35 34 35 34 34 34 34 34 35 34 37 37
- 38 36 36 34 34 35 35 35 35 36 37 37 36 35 34 33 33 34 36
- 34 33 33 32 31 29 28 28 27 28 26 26 25 24 23 23 24 24 22
- 23 22 22 19 19 17 16 16 17 16 17 16 16 15 14 14 13 13 12
- 11 12 13 11 11 11 11 10 10 10 11 11 9 10 9 9 9 10 10 12
- 12 11 8 9 9 8 10 10 10 9 11 9 8 8 9 8 8 9 10 10 9 10 10
- 9 9 11 10 9 8 8 9 9 9 10 8 11 10 9 9 10 11 11 11 11 11
- 13 14 13 13 13 14 11 7 7 9 8 5 6 5 5 5 8 10 11 12 </digits>
- </value>
- </sequence>
- </component>
- <component>
- <sequence>
- <!--V3导-->
- <code code="MDC_ECG_LEAD_V3" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="SLIST_PQ">
- <origin value="0" unit="uV"/>
- <scale value="2.5" unit="uV"/>
- <digits> 25 25 24 21 22 23 22 22 22 23 24 24 24 24 24 25 25
- 25 24 25 26 25 26 28 27 27 28 27 27 26 27 27 27 27 27 26
- 26 27 26 26 24 24 23 24 24 25 26 26 24 24 23 23 23 23 22
- 24 25 24 23 23 23 23 23 23 23 22 22 22 19 20 22 22 22 21
- 21 21 21 20 19 19 18 18 18 17 16 15 15 14 14 13 13 13 14
- 13 12 12 13 11 10 11 12 11 10 9 10 9 8 7 7 8 9 9 9 10 10
- 11 11 10 10 10 9 10 9 9 9 6 6 6 7 7 9 9 10 10 10 11 8 8
- 9 9 10 9 9 9 12 14 13 14 15 15 15 15 16 18 19 21 22 23
- 25 26 30 31 32 33 33 32 32 27 24 22 23 23 24 26 30 32 35
- 36 32 30 28 25 22 19 19 21 20 18 13 10 9 11 9 7 5 5 6 7
- 7 5 4 2 2 3 4 7 7 6 7 7 6 3 2 2 2 3 3 0 -1 -2 -4 -8 -18
- -34 -58 -86 -114 -145 -177 -210 -240 -261 -284 -306 -329
- -350 -366 -379 -400 -431 -470 -517 -558 -587 -598 -594
- -585 -566 -547 -530 -512 -494 -463 -424 -374 -317 -269
- -217 -184 -158 -128 -99 -75 -57 -39 -19 2 19 29 38 40 40
- 38 40 43 49 55 60 61 63 63 63 66 68 70 70 71 72 73 75 74
- 77 77 80 80 81 83 83 81 81 82 85 88 88 88 90 92 94 96 97
- 98 97 99 100 102 104 105 105 106 108 108 110 111 115 114
- 113 114 116 116 117 118 121 124 124 123 127 128 130 131
- 133 135 136 137 140 141 141 140 140 140 142 145 147 146
- 144 144 146 147 148 147 145 143 143 142 141 139 136 135
- 134 133 130 128 127 126 124 122 118 116 113 111 109 106
- 103 99 95 91 89 84 81 77 71 67 61 58 52 47 43 40 33 30
- 29 27 24 23 20 19 17 16 14 13 11 10 11 12 11 13 13 14 13
- 13 12 13 13 11 11 12 12 12 14 14 15 15 15 17 16 16 17 19
- 20 21 21 23 22 22 24 23 23 23 23 24 25 26 27 26 26 26 27
- 27 29 29 30 30 28 28 28 29 30 30 29 30 29 29 27 26 26 25
- 24 23 23 22 23 21 21 22 19 20 21 20 18 17 17 16 15 16 14
- 14 14 13 12 12 15 13 11 9 10 10 11 10 11 10 9 8 8 8 8 7
- 7 9 8 8 8 8 7 4 6 6 5 5 5 5 5 6 7 8 10 12 12 10 9 9 9 9
- 10 9 7 9 9 7 9 9 11 9 9 10 10 10 10 11 11 9 9 9 11 11 10
- 10 10 12 12 14 13 13 12 11 11 12 13 17 18 16 15 17 18 17
- 18 19 19 19 15 14 14 12 12 13 15 17 21 19 18 21 </digits>
- </value>
- </sequence>
- </component>
- <component>
- <sequence>
- <!--V4导-->
- <code code="MDC_ECG_LEAD_V4" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="SLIST_PQ">
- <origin value="0" unit="uV"/>
- <scale value="2.5" unit="uV"/>
- <digits> -18 -17 -18 -19 -18 -17 -17 -17 -16 -14 -13 -13 -11
- -9 -10 -8 -7 -7 -6 -6 -4 -3 -3 -2 -1 0 1 3 4 3 3 5 6 8 8
- 9 11 12 10 11 9 9 9 9 9 7 7 8 7 8 7 6 6 6 4 5 6 6 4 5 6
- 4 5 4 4 4 4 4 3 2 3 5 4 4 4 6 7 6 5 4 3 3 3 3 3 3 4 2 1
- 3 4 3 4 2 2 4 5 4 3 4 5 4 4 3 3 3 1 0 1 2 3 4 6 6 7 6 5
- 4 5 5 6 5 3 2 0 0 1 1 3 5 6 6 6 7 6 7 6 6 6 8 8 7 6 7 8
- 9 11 12 12 13 12 12 13 16 17 20 21 22 24 26 29 28 30 33
- 34 33 33 33 30 29 28 28 30 34 35 38 42 42 40 39 37 35 31
- 27 26 28 28 25 19 13 10 10 10 7 4 3 4 5 6 5 3 1 1 2 2 4
- 5 4 4 3 2 1 1 1 1 3 3 0 -2 -4 -3 -6 -17 -35 -57 -84 -115
- -149 -185 -220 -254 -282 -301 -313 -320 -315 -304 -281
- -271 -263 -264 -264 -260 -253 -240 -222 -201 -180 -162
- -157 -160 -173 -181 -196 -200 -195 -185 -172 -155 -134
- -118 -96 -83 -70 -57 -40 -26 -12 -5 2 9 16 20 26 31 35
- 40 44 46 49 51 52 54 56 57 57 57 58 59 59 62 61 61 63 65
- 68 70 69 69 68 69 71 71 71 73 74 76 78 79 79 80 79 80 81
- 81 83 85 86 87 88 86 88 89 90 89 88 88 91 91 92 93 93 96
- 93 92 93 95 95 96 95 95 96 95 96 95 96 95 94 93 94 94 94
- 93 91 88 88 89 86 84 83 82 79 77 76 74 70 66 63 61 59 55
- 54 53 49 46 42 38 34 31 29 25 21 17 12 10 4 0 -2 -3 -7
- -11 -15 -17 -19 -23 -26 -27 -33 -33 -34 -34 -38 -38 -39
- -38 -36 -35 -34 -34 -33 -32 -32 -31 -29 -26 -24 -23 -22
- -20 -20 -19 -17 -18 -18 -16 -14 -12 -11 -9 -8 -9 -8 -8
- -6 -6 -5 -2 -2 0 0 2 2 3 4 5 5 6 6 9 6 7 8 9 8 9 8 9 9
- 10 9 9 8 8 7 9 9 10 11 11 10 9 10 9 8 7 7 6 6 7 7 8 6 5
- 4 4 5 4 3 3 3 3 4 4 3 2 1 2 1 0 0 -2 0 -1 -1 0 1 2 2 1 1
- -1 -1 -1 0 -1 0 1 0 -1 1 2 3 3 1 2 3 2 2 1 0 0 2 3 4 6 5
- 3 5 6 6 7 5 4 5 4 6 5 5 6 6 7 7 7 8 8 9 11 12 13 9 12 13
- 13 11 15 16 17 16 17 17 18 17 17 21 21 20 19 20 18 17 15
- 14 15 16 17 18 18 19 20 21 22 23 23 23 25 28 29 24 21 </digits>
- </value>
- </sequence>
- </component>
- <component>
- <sequence>
- <!--V5导-->
- <code code="MDC_ECG_LEAD_V5" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="SLIST_PQ">
- <origin value="0" unit="uV"/>
- <scale value="2.5" unit="uV"/>
- <digits> 2 1 2 4 6 6 4 3 3 4 6 9 9 7 5 5 5 3 3 4 4 4 4 6 6 5
- 5 7 5 5 7 6 6 8 9 8 7 8 6 6 6 6 6 5 4 5 5 5 4 1 3 3 4 3
- 2 2 3 3 3 3 3 4 3 3 3 3 4 4 5 4 4 6 8 7 7 8 9 7 6 7 5 3
- 3 5 4 4 4 6 6 4 6 5 3 1 1 1 2 1 1 2 3 4 3 3 3 3 4 3 2 4
- 6 5 6 6 7 6 6 5 5 6 7 5 5 4 2 2 1 1 2 4 3 5 5 4 2 4 2 2
- 3 5 7 5 3 5 4 5 4 6 9 10 9 9 8 11 13 16 18 19 20 23 24
- 25 26 29 32 34 37 38 37 34 32 32 33 37 40 42 46 46 45 45
- 44 42 39 35 33 35 36 33 27 20 14 11 8 6 3 0 2 4 3 1 1 1
- 1 1 2 1 1 1 2 2 1 1 1 1 2 3 2 0 -2 -3 -2 -4 -8 -17 -28
- -41 -56 -74 -92 -112 -128 -139 -143 -143 -140 -123 -101
- -69 -41 -10 19 48 79 114 148 177 203 223 227 204 163 111
- 61 7 -43 -85 -118 -135 -150 -146 -140 -132 -123 -111 -99
- -83 -67 -56 -45 -34 -23 -13 -4 4 9 11 13 14 15 15 15 18
- 20 21 22 25 25 23 21 21 21 24 25 27 28 27 31 32 29 29 29
- 31 31 33 34 33 33 35 36 36 34 35 36 35 34 35 37 36 37 38
- 39 38 37 38 39 39 40 40 39 39 40 40 42 41 40 41 41 40 41
- 42 42 43 44 44 44 42 41 42 41 42 42 42 44 44 44 44 41 42
- 42 42 43 43 41 42 42 41 38 38 38 38 36 37 38 37 36 36 33
- 33 31 29 27 27 27 24 21 18 16 15 16 15 12 12 11 11 9 7 6
- 4 3 3 2 0 1 -1 -3 -4 -6 -5 -5 -6 -6 -5 -5 -5 -5 -6 -6 -8
- -9 -9 -9 -8 -10 -10 -10 -10 -8 -8 -6 -5 -4 -4 -3 -3 -5
- -2 -2 -2 -2 0 1 1 0 1 0 -1 -1 -1 -1 -1 -1 0 1 0 -1 0 0 1
- 1 0 -1 -2 -5 -4 -2 1 2 2 2 2 1 -1 -1 -2 -2 0 0 2 2 1 1 0
- -1 -2 -3 -4 -3 -6 -5 -4 -4 -4 -2 -1 -1 -1 2 0 0 -1 -3 -3
- -3 -4 -5 -4 -2 -2 -2 0 0 -1 -2 -4 -3 -3 -3 -3 -3 -1 1 1
- -1 -2 -2 -2 -4 -3 -3 -2 -3 -2 -3 -3 -2 -2 -3 -1 0 2 4 4
- 3 4 4 5 4 5 6 5 6 6 8 9 9 10 10 10 9 9 9 10 10 11 13 15
- 17 17 17 16 16 16 15 20 21 21 23 22 19 17 16 14 14 14 12
- 12 15 18 20 20 17 19 19 20 23 26 28 29 27 </digits>
- </value>
- </sequence>
- </component>
- <component>
- <sequence>
- <!--V6导-->
- <code code="MDC_ECG_LEAD_V6" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="SLIST_PQ">
- <origin value="0" unit="uV"/>
- <scale value="2.5" unit="uV"/>
- <digits> 20 20 19 15 13 14 14 13 13 13 12 13 13 12 8 6 7 7 7
- 7 6 5 4 6 6 5 5 4 5 4 3 2 2 4 2 4 4 3 2 2 2 1 0 1 3 2 1
- 0 0 1 0 -2 0 0 -1 1 3 3 1 2 3 3 2 1 2 3 2 -2 1 3 2 2 3 5
- 7 8 4 5 6 6 4 4 4 3 4 5 5 5 3 4 3 1 1 1 1 1 1 1 1 2 3 4
- 4 3 3 4 4 5 4 4 5 7 9 6 6 6 5 4 4 4 4 2 2 2 2 1 -2 -4 0
- 2 2 4 3 4 3 4 5 0 -1 0 3 5 3 0 0 1 4 5 5 5 5 5 4 4 4 6 8
- 11 15 17 19 19 19 21 22 26 27 26 25 26 29 32 34 32 35 37
- 41 42 42 40 39 37 35 32 32 33 35 33 28 21 15 11 10 5 1
- -1 -2 0 1 2 2 0 -2 -1 -1 0 0 0 2 1 1 -3 -2 -2 -2 -1 0 0
- -1 -1 0 1 -2 -6 -11 -13 -17 -24 -31 -38 -44 -48 -48 -49
- -49 -29 -8 25 61 100 138 175 212 252 294 333 368 383 382
- 353 314 264 217 165 110 56 8 -29 -57 -72 -82 -86 -86 -83
- -76 -66 -58 -53 -45 -35 -23 -14 -6 -5 -3 -5 -5 -4 -3 1 2
- 4 5 7 8 10 9 10 10 7 8 9 8 8 8 8 9 8 9 8 9 10 9 10 12 10
- 9 9 10 13 12 9 10 11 12 13 14 11 12 14 13 12 12 13 14 13
- 11 11 14 14 13 15 17 16 13 11 13 14 13 15 17 19 21 21 19
- 18 18 18 19 20 20 21 23 25 26 26 25 26 27 26 28 27 27 28
- 29 29 30 32 34 36 35 37 39 39 39 37 39 40 40 39 39 39 40
- 38 38 39 39 41 43 43 40 41 41 41 39 37 39 38 36 36 34 30
- 27 23 22 22 23 24 22 21 21 19 16 13 12 11 10 9 10 8 6 5
- 3 1 1 0 0 2 4 4 3 4 6 4 2 2 3 2 1 -1 0 3 3 3 3 3 1 -1 -2
- 0 0 2 3 3 2 1 -1 0 0 -2 -4 -4 -2 1 2 4 3 3 3 3 2 0 0 1 1
- 2 3 3 2 1 1 0 -1 -1 -3 -3 -2 -1 -1 -2 -2 0 3 3 2 3 5 5 5
- 3 -2 -3 -4 -1 2 1 3 3 4 5 3 2 3 3 2 3 4 4 4 5 5 5 2 1 1
- 1 0 0 3 3 2 3 4 3 2 0 -1 2 1 1 3 3 1 0 -1 -1 0 2 2 4 4 4
- 4 3 4 3 5 8 6 7 9 10 11 8 11 12 12 13 11 12 15 12 13 16
- 18 17 17 17 14 13 15 14 15 16 16 16 19 20 21 19 13 12 15
- 16 16 20 24 27 30 </digits>
- </value>
- </sequence>
- </component>
- <component>
- <sequence>
- <!--3导-->
- <code code="MDC_ECG_LEAD_III"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="SLIST_PQ">
- <origin value="0" unit="uV"/>
- <scale value="2.5" unit="uV"/>
- <digits> 48 46 47 46 44 44 43 40 38 36 33 32 31 28 26 23 26
- 23 22 21 20 19 20 18 17 18 19 17 17 17 17 17 17 17 17 16
- 17 17 18 15 14 14 16 15 15 15 15 14 16 16 16 17 17 17 17
- 17 17 18 17 16 17 18 18 18 21 19 19 17 17 17 19 18 19 20
- 22 22 19 17 18 18 15 16 17 21 21 19 21 19 17 20 18 14 16
- 17 16 15 11 10 12 12 10 10 9 8 10 8 10 10 9 9 10 14 14
- 12 12 12 10 11 12 13 14 14 10 10 10 9 11 11 7 6 6 8 8 9
- 12 9 6 6 4 7 7 9 11 9 5 8 12 13 11 16 20 21 21 28 30 32
- 28 25 22 20 17 17 15 13 8 7 9 3 8 9 4 1 3 3 3 3 0 1 1 0
- -3 -6 -7 -9 -6 -2 4 3 -1 0 -2 -4 -2 -1 -2 -6 -7 -7 -6 -6
- -8 -9 -9 -7 -2 -3 -5 -5 -6 -7 -7 -6 -5 -5 -5 -3 -1 0 3 6
- 15 19 27 31 31 27 20 12 4 -7 -17 -25 -34 -40 -40 -33 -23
- -9 7 19 30 44 61 61 41 -10 -79 -152 -215 -256 -280 -293
- -298 -298 -295 -286 -272 -256 -235 -214 -195 -169 -142
- -117 -91 -75 -54 -44 -33 -26 -16 -8 1 6 9 11 12 13 15 15
- 15 16 18 20 18 17 18 18 20 22 23 22 23 23 26 27 30 31 29
- 25 23 26 27 28 26 27 28 32 33 33 35 35 38 38 37 34 33 36
- 38 38 38 39 40 40 37 38 38 37 41 45 45 46 46 43 44 45 44
- 47 48 52 52 54 59 59 59 62 63 65 67 65 68 68 74 76 80 83
- 86 87 89 92 93 95 97 95 99 102 104 108 107 110 114 116
- 116 114 116 118 119 120 119 120 120 123 122 122 122 124
- 125 123 126 124 121 118 113 110 109 104 99 95 94 90 84
- 81 77 74 68 65 63 60 55 54 52 48 47 46 40 39 39 36 34 32
- 32 31 31 31 28 25 25 25 23 22 23 18 20 20 19 17 19 18 19
- 17 20 19 18 17 15 15 18 16 15 17 15 16 18 21 18 18 17 17
- 17 13 10 11 13 13 14 16 16 15 16 14 14 14 14 14 15 15 19
- 18 18 16 18 20 20 21 22 20 18 16 17 17 15 14 13 13 14 14
- 11 13 15 17 14 12 14 16 14 15 13 15 14 12 12 8 11 10 11
- 10 10 10 11 10 8 7 8 8 10 10 4 3 2 4 5 6 6 5 4 7 9 9 4 4
- 3 7 10 11 14 13 11 10 15 14 18 17 18 19 18 19 20 21 21
- 21 20 19 18 15 12 12 10 12 14 13 13 14 12 10 11 11 14 15
- 8 8 2 2 1 2 1 3 7 10 14 16 13 8 1 -3 -3 -2 1 2 5 </digits>
- </value>
- </sequence>
- </component>
- <component>
- <sequence>
- <!--AVR导-->
- <code code="MDC_ECG_LEAD_AVR"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="SLIST_PQ">
- <origin value="0" unit="uV"/>
- <scale value="2.5" unit="uV"/>
- <digits> -28 -27 -25 -26 -26 -26 -25 -24 -24 -23 -21 -21 -20
- -20 -18 -17 -15 -16 -17 -16 -17 -16 -17 -17 -15 -15 -14
- -15 -14 -15 -16 -15 -15 -14 -14 -13 -12 -12 -11 -12 -13
- -14 -13 -12 -13 -13 -13 -14 -14 -13 -15 -14 -13 -13 -13
- -13 -12 -13 -13 -13 -13 -13 -14 -14 -14 -15 -15 -16 -16
- -17 -16 -16 -15 -14 -13 -14 -13 -13 -13 -13 -14 -14 -14
- -14 -14 -15 -15 -15 -16 -15 -14 -14 -13 -13 -14 -13 -12
- -12 -13 -14 -13 -14 -13 -15 -15 -14 -14 -14 -14 -15 -15
- -14 -14 -13 -13 -13 -13 -13 -12 -10 -10 -10 -11 -11 -10
- -10 -11 -14 -15 -15 -14 -13 -12 -12 -12 -13 -16 -16 -16
- -14 -14 -14 -14 -16 -18 -21 -21 -21 -20 -20 -21 -23 -27
- -29 -32 -36 -39 -41 -41 -40 -38 -39 -40 -42 -44 -43 -41
- -41 -40 -39 -39 -40 -42 -44 -44 -44 -43 -40 -39 -37 -35
- -35 -33 -33 -32 -27 -21 -15 -11 -10 -9 -6 -5 -3 -3 -4 -3
- -1 -1 -1 0 0 0 -1 -2 -2 -1 -1 0 1 2 2 0 0 0 0 1 0 -1 -2
- 0 1 4 6 9 17 26 38 50 60 66 72 75 70 62 45 25 5 -14 -32
- -52 -75 -93 -106 -111 -104 -89 -66 -36 -10 13 32 50 65
- 75 82 86 87 88 85 76 67 56 44 32 25 21 12 6 3 0 -4 -5 -7
- -9 -11 -11 -12 -11 -11 -12 -13 -11 -12 -11 -12 -13 -14
- -14 -14 -14 -15 -15 -16 -17 -17 -16 -17 -19 -21 -23 -23
- -20 -21 -22 -21 -21 -21 -22 -20 -22 -23 -23 -25 -25 -27
- -26 -27 -27 -26 -27 -26 -27 -27 -26 -27 -28 -28 -29 -30
- -31 -32 -32 -34 -36 -37 -36 -37 -38 -39 -39 -39 -39 -40
- -40 -40 -40 -42 -44 -46 -49 -50 -49 -51 -53 -54 -54 -54
- -55 -57 -57 -57 -58 -59 -59 -60 -61 -62 -62 -63 -64 -65
- -65 -66 -66 -67 -67 -67 -66 -66 -64 -63 -62 -63 -63 -65
- -65 -64 -62 -61 -62 -60 -57 -54 -51 -49 -47 -45 -43 -43
- -40 -39 -36 -36 -36 -35 -32 -31 -29 -28 -28 -26 -25 -25
- -23 -22 -19 -18 -17 -16 -13 -14 -13 -15 -16 -16 -16 -16
- -16 -16 -14 -15 -14 -13 -13 -15 -14 -15 -15 -15 -15 -14
- -15 -14 -14 -15 -15 -16 -16 -17 -17 -16 -13 -12 -14 -13
- -13 -14 -14 -15 -17 -17 -17 -19 -19 -19 -18 -16 -17 -17
- -17 -18 -18 -19 -17 -18 -17 -17 -17 -16 -15 -15 -15 -15
- -16 -16 -17 -16 -15 -16 -16 -17 -16 -16 -16 -17 -16 -15
- -15 -14 -17 -17 -19 -19 -20 -18 -18 -18 -18 -16 -16 -17
- -16 -17 -15 -15 -14 -15 -14 -14 -14 -14 -15 -14 -14 -15
- -16 -16 -16 -15 -14 -15 -16 -16 -17 -17 -18 -18 -20 -19
- -17 -16 -17 -16 -18 -17 -19 -21 -20 -21 -21 -22 -22 -23
- -25 -25 -24 -24 -25 -26 -27 -26 -26 -27 -29 -30 -30 -31
- -28 -27 -27 -29 -32 -31 -28 -28 -27 -27 -27 -26 -26 -26
- -27 -29 -27 -28 -27 -26 -26 -25 -26 -30 -32 -34 -34 -35
- -31 -29 -25 </digits>
- </value>
- </sequence>
- </component>
- <component>
- <sequence>
- <!--AVL导-->
- <code code="MDC_ECG_LEAD_AVL"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="SLIST_PQ">
- <origin value="0" unit="uV"/>
- <scale value="2.5" unit="uV"/>
- <digits> -22 -21 -22 -21 -20 -20 -19 -18 -16 -15 -14 -13 -13
- -11 -10 -8 -12 -9 -8 -7 -6 -6 -6 -5 -5 -6 -7 -5 -5 -5 -4
- -5 -5 -5 -5 -5 -6 -6 -8 -5 -4 -3 -5 -5 -4 -4 -4 -3 -5 -5
- -4 -5 -6 -6 -6 -6 -6 -7 -6 -5 -6 -7 -6 -6 -8 -6 -6 -4 -4
- -4 -6 -5 -6 -8 -10 -9 -7 -6 -7 -7 -4 -5 -5 -8 -8 -6 -8
- -6 -4 -7 -6 -3 -5 -6 -5 -4 -2 -1 -2 -2 -1 0 0 1 0 1 0 0
- 0 1 0 -3 -3 -2 -2 -2 -1 -1 -3 -4 -5 -5 -2 -2 -2 -1 -2 -1
- 2 3 2 0 0 0 -3 0 3 3 5 2 2 0 -1 1 5 4 1 1 2 -2 -4 -4 -2
- -6 -6 -6 -1 2 4 5 6 7 9 11 16 16 14 18 14 13 16 19 19 20
- 20 20 21 19 19 18 20 22 22 23 20 15 7 5 6 5 6 6 4 2 3 6
- 7 6 5 5 6 6 7 6 2 3 4 4 4 4 4 3 3 3 3 2 0 0 -1 -3 -11
- -15 -22 -26 -28 -29 -28 -28 -28 -25 -20 -17 -12 -5 -1 2
- 4 4 2 2 3 4 1 7 25 59 104 147 179 197 203 203 198 191
- 183 173 161 148 132 118 108 93 78 65 52 43 30 27 21 18
- 12 8 2 -1 -2 -2 -3 -3 -5 -5 -5 -5 -8 -9 -8 -6 -7 -6 -8
- -9 -10 -9 -9 -9 -11 -11 -14 -14 -12 -8 -5 -8 -10 -10 -8
- -9 -10 -13 -13 -14 -15 -14 -17 -16 -15 -12 -11 -13 -15
- -15 -15 -16 -16 -16 -14 -15 -14 -13 -16 -18 -18 -18 -18
- -15 -15 -15 -15 -16 -17 -19 -19 -21 -24 -24 -24 -26 -27
- -27 -28 -25 -26 -26 -31 -31 -33 -35 -37 -38 -39 -40 -41
- -42 -43 -41 -44 -46 -47 -50 -49 -51 -53 -54 -54 -52 -54
- -55 -55 -56 -56 -57 -58 -60 -60 -60 -60 -60 -61 -60 -63
- -62 -59 -58 -56 -55 -56 -53 -50 -48 -49 -46 -43 -41 -39
- -37 -33 -31 -31 -29 -26 -26 -25 -23 -22 -22 -18 -18 -19
- -18 -17 -16 -17 -16 -16 -15 -13 -10 -10 -10 -9 -8 -10 -6
- -8 -8 -7 -5 -7 -6 -6 -5 -7 -7 -6 -5 -4 -3 -6 -4 -3 -4 -2
- -4 -7 -9 -6 -7 -6 -5 -5 -2 1 0 -1 0 -1 -2 -3 -3 -3 -2 -2
- -1 -1 -1 -2 -2 -5 -5 -5 -4 -6 -7 -7 -8 -8 -7 -5 -4 -5 -4
- -3 -2 -1 -1 -2 -2 0 -2 -3 -5 -2 0 -1 -2 0 -2 0 -2 -1 -1
- -1 2 0 1 0 0 0 0 -1 0 1 2 1 1 0 0 5 6 6 4 3 3 3 4 5 3 2
- 2 7 6 6 3 1 0 -1 -1 1 3 -1 0 -3 -1 -2 -2 -1 -1 -3 -3 -3
- -2 -1 -1 0 2 5 6 7 6 3 4 4 4 7 8 6 6 3 2 7 7 11 11 13 13
- 13 12 8 5 2 0 3 9 15 19 19 19 15 13 9 </digits>
- </value>
- </sequence>
- </component>
- <component>
- <sequence>
- <!--AVF导-->
- <code code="MDC_ECG_LEAD_AVF"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="SLIST_PQ">
- <origin value="0" unit="uV"/>
- <scale value="2.5" unit="uV"/>
- <digits> 50 48 48 47 46 46 45 42 40 38 35 34 33 31 28 26 27
- 25 25 24 23 22 23 22 20 21 21 20 20 20 21 20 20 20 20 18
- 19 19 19 17 17 17 18 17 18 18 18 17 19 18 19 20 19 19 19
- 19 19 20 19 18 19 20 20 20 23 22 22 21 21 21 22 21 22 22
- 23 23 21 19 20 20 18 19 20 23 23 22 23 22 21 22 20 17 18
- 19 19 18 14 13 15 16 14 14 13 13 15 13 14 14 14 14 15 17
- 17 15 15 15 14 15 15 15 15 15 13 13 12 12 14 15 13 12 11
- 12 12 13 15 13 12 12 11 12 12 14 15 15 13 16 19 20 18 22
- 25 27 29 35 38 42 40 39 37 35 32 32 31 31 28 27 27 23 26
- 26 22 21 23 24 24 24 21 21 20 18 15 13 11 10 11 12 13 10
- 5 5 3 0 1 1 0 -2 -3 -4 -4 -4 -6 -7 -6 -4 0 -1 -3 -3 -4
- -6 -6 -5 -4 -4 -4 -2 -1 0 3 5 11 13 18 20 18 11 2 -10
- -22 -35 -46 -55 -63 -65 -61 -47 -30 -9 12 30 48 70 92 99
- 86 44 -14 -81 -143 -187 -216 -236 -248 -256 -259 -255
- -247 -235 -220 -203 -184 -160 -134 -110 -84 -69 -51 -39
- -28 -21 -12 -4 3 8 11 14 14 16 17 17 17 18 19 21 19 19
- 20 20 22 23 24 24 25 25 28 29 30 32 31 29 29 31 30 31 30
- 31 31 34 36 35 37 38 40 41 40 39 38 40 42 41 42 42 43 43
- 41 42 42 42 45 49 49 50 50 49 51 52 51 54 55 58 58 60 64
- 64 64 66 67 70 72 72 75 76 80 82 86 89 91 92 94 97 98
- 100 102 101 104 106 108 112 111 114 117 119 119 118 120
- 122 123 123 122 123 122 124 122 123 123 125 126 124 125
- 123 122 118 113 109 107 102 98 94 92 89 83 80 76 73 69
- 66 63 60 56 54 53 49 48 47 41 40 39 36 34 32 30 30 30 31
- 29 27 27 27 25 24 24 21 22 21 21 20 21 21 22 20 22 21 21
- 20 18 19 21 20 19 21 20 20 20 22 20 20 19 20 20 17 16 17
- 18 19 20 21 21 19 20 19 19 19 19 20 20 20 23 22 22 20 21
- 22 22 23 24 23 22 20 20 21 19 19 18 18 18 19 16 17 19 20
- 19 17 20 21 20 20 19 20 19 17 17 14 16 16 16 15 14 15 15
- 14 13 12 13 13 14 15 11 10 9 10 11 12 12 12 11 14 16 16
- 13 12 11 13 16 16 19 18 18 18 21 21 24 24 24 26 26 27 27
- 28 28 29 28 27 26 25 23 24 22 24 24 23 23 25 25 23 22 22
- 24 25 19 19 14 14 14 16 14 16 19 20 23 24 23 21 17 15 15
- 16 16 16 16 </digits>
- </value>
- </sequence>
- </component>
- </sequenceSet>
- </component>
- <!--现在, 我们在派生系列上提供了一个注释集 We now provide a single annotation set on the derived series -->
- <!--和原来的系列一样, 我们可以提供更多的套件 As with the original series, we could provide more sets -->
- <!--在本例中, 我们为派生系列的代表性节拍提供了全局注释 In the example we provide the global annotations for the representative beats of the derivedSeries-->
- <subjectOf>
- <!--注解集-->
- <annotationSet>
- <component>
- <!--注解-->
- <annotation>
- <!--P波段-->
- <code code="MDC_ECG_WAVC" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="CE" code="MDC_ECG_WAVC_PWAVE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <support>
- <supportingROI classCode="ROIBND">
- <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
- <component>
- <boundary>
- <!--测量波段发生的时间段-->
- <code code="TIME_RELATIVE"
- codeSystem="2.16.840.1.113883.5.4"
- codeSystemName="ActCode" displayName="Relative Time"/>
- <value xsi:type="IVL_PQ">
- <low value="286" unit="ms"/>
- <high value="388" unit="ms"/>
- </value>
- </boundary>
- </component>
- </supportingROI>
- </support>
- </annotation>
- </component>
- <component>
- <annotation>
- <!--QRS波段-->
- <code code="MDC_ECG_WAVC" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="CE" code="MDC_ECG_WAVC_QRSWAVE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <support>
- <supportingROI classCode="ROIBND">
- <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
- <component>
- <boundary>
- <!--测量波段发生的时间段-->
- <code code="TIME_RELATIVE"
- codeSystem="2.16.840.1.113883.5.4"
- codeSystemName="ActCode" displayName="Relative Time"/>
- <value xsi:type="IVL_PQ">
- <low value="434" unit="ms"/>
- <high value="554" unit="ms"/>
- </value>
- </boundary>
- </component>
- </supportingROI>
- </support>
- </annotation>
- </component>
- <component>
- <annotation>
- <!--T波段-->
- <code code="MDC_ECG_WAVC" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="CE" code="MDC_ECG_WAVC_TWAVE"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <support>
- <supportingROI classCode="ROIBND">
- <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
- <component>
- <boundary>
- <!--测量波段发生的时间-->
- <code code="TIME_RELATIVE"
- codeSystem="2.16.840.1.113883.5.4"
- codeSystemName="ActCode" displayName="Relative Time"/>
- <value xsi:type="IVL_PQ">
- <high value="854" unit="ms"/>
- </value>
- </boundary>
- </component>
- </supportingROI>
- </support>
- </annotation>
- </component>
- <component>
- <annotation>
- <!--P波长度-->
- <code code="MDC_ECG_TIME_PD_P"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="PQ" value="102" unit="ms"/>
- </annotation>
- </component>
- <component>
- <annotation>
- <!--PR波长度-->
- <code code="MDC_ECG_TIME_PD_PR"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="PQ" value="148" unit="ms"/>
- </annotation>
- </component>
- <component>
- <annotation>
- <!--QRS波长度-->
- <code code="MDC_ECG_TIME_PD_QRS"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="PQ" value="120" unit="ms"/>
- </annotation>
- </component>
- <component>
- <annotation>
- <!--QT波长度-->
- <code code="MDC_ECG_TIME_PD_QT"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="PQ" value="420" unit="ms"/>
- </annotation>
- </component>
- <component>
- <annotation>
- <!--QTc波长度-->
- <code code="MDC_ECG_TIME_PD_QTc"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="PQ" value="443" unit="ms"/>
- </annotation>
- </component>
- <component>
- <annotation>
- <!--P_FRONT波长度-->
- <code code="MDC_ECG_ANGLE_P_FRONT"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="PQ" value="44" unit="deg"/>
- </annotation>
- </component>
- <component>
- <annotation>
- <!--QRS_FRONT波长度-->
- <code code="MDC_ECG_ANGLE_QRS_FRONT"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="PQ" value="-61" unit="deg"/>
- </annotation>
- </component>
- <component>
- <annotation>
- <!--T_FRONT波长度-->
- <code code="MDC_ECG_ANGLE_T_FRONT"
- codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
- <value xsi:type="PQ" value="86" unit="deg"/>
- </annotation>
- </component>
- </annotationSet>
- </subjectOf>
- </derivedSeries>
- </derivation>
- </series>
- </component>
- </AnnotatedECG>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。