当前位置:   article > 正文

官方完整HL7 ECG-XML例子及注释翻译(5)_xml hl7

xml hl7

编者:李国帅

qq:9611153 微信lgs9611153

时间:2019-7-4

背景:

存储心电图数据的格式有很多种,比如HL7,Dicom,EDF,GDF等,其中HL7最是简单,直观,使用Xml的方式保存数据。

以前为了显示HL7数据从官网下载了一个很全的aecg例子,里面包含各个字段的注释,包含几乎所有HL7协议中定义的字段。不过其中注释是英文的,本人通过翻译软件大致把注释翻译了一下,提供给有需要的人。

 

段(5):

  1. <!--我们现在给出另一个注释集的例子, 这次是由人工阅读器生成的 We now give another example of annotation set, this time generated by a human reader -->
  2. <!--此注释集由1导上的三个RR期间和2导上的三个QT期间组成 This annotation set consists of three RR intervals on lead I and three QT intervals on lead II -->
  3. <subjectOf>
  4. <!--注解集-->
  5. <annotationSet>
  6. <!--在这种情况下, 注释由医生使用"一"屏测量系统生成 In this case the annotations where generated by a Doctor, using "one" on-screen measurement system -->
  7. <author>
  8. <!--布置实体-->
  9. <assignedEntity>
  10. <!--布置作者类型-->
  11. <assignedAuthorType>
  12. <!--布置人-->
  13. <assignedPerson>
  14. <name>Doctor John Brown</name>
  15. </assignedPerson>
  16. </assignedAuthorType>
  17. </assignedEntity>
  18. </author>
  19. <component>
  20. <!--在这种情况下, 我们没有使用比节拍注释更高级别的组件, 而直接使用波形注释 In this case we did not use a BEAT higher-level component and we go directly to the WAVE type annotation -->
  21. <annotation>
  22. <!--波形注解编码-->
  23. <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  24. <!--R波段-->
  25. <value xsi:type="CE" code="MDC_ECG_WAVC_RWAVE"
  26. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  27. <component>
  28. <annotation>
  29. <code code="MDC_ECG_WAVC_TYPE"
  30. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  31. <!--由于我们提供的是波峰, 因此我们使用相关的MDC代码 Since we are providing a wave peak, we use the associated MDC code -->
  32. <value xsi:type="CE" code="MDC_ECG_WAVC_PEAK"
  33. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  34. <support typeCode="SPRT">
  35. <!--支持的波段包含一个潜在顾客组件:=>这是一个基于潜在顾客的注释 the supporting ROI DOES INCLUDE a lead component: => this is thus a lead-based annotation-->
  36. <supportingROI classCode="ROIBND">
  37. <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
  38. <component>
  39. <!--此波峰是一个单一值, 因此我们使用PQ期间类型 The PEAK is a single value, and thus we thus use a PQ type-->
  40. <boundary>
  41. <!--PQ期间长度-->
  42. <code code="TIME_RELATIVE"
  43. codeSystem="2.16.840.1.113883.5.4"
  44. codeSystemName="ActCode" displayName="Relative Time"/>
  45. <value xsi:type="PQ" value="332" unit="ms"/>
  46. </boundary>
  47. </component>
  48. <component>
  49. <boundary>
  50. <!--波形在1导-->
  51. <code code="MDC_ECG_LEAD_I"
  52. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  53. </boundary>
  54. </component>
  55. </supportingROI>
  56. </support>
  57. </annotation>
  58. </component>
  59. </annotation>
  60. </component>
  61. <!--1导上的第二个R波峰 The second R wave peak on lead I -->
  62. <component>
  63. <annotation>
  64. <!--R波-->
  65. <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  66. <value xsi:type="CE" code="MDC_ECG_WAVC_RWAVE"
  67. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  68. <component>
  69. <annotation>
  70. <!--R波峰 -->
  71. <code code="MDC_ECG_WAVC_TYPE"
  72. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  73. <value xsi:type="CE" code="MDC_ECG_WAVC_PEAK"
  74. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  75. <support typeCode="SPRT">
  76. <supportingROI classCode="ROIBND">
  77. <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
  78. <component>
  79. <boundary>
  80. <!--PQ期间长度-->
  81. <code code="TIME_RELATIVE"
  82. codeSystem="2.16.840.1.113883.5.4"
  83. codeSystemName="ActCode" displayName="Relative Time"/>
  84. <value xsi:type="PQ" value="1120" unit="ms"/>
  85. </boundary>
  86. </component>
  87. <component>
  88. <boundary>
  89. <!--波形在1导-->
  90. <code code="MDC_ECG_LEAD_I"
  91. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  92. </boundary>
  93. </component>
  94. </supportingROI>
  95. </support>
  96. </annotation>
  97. </component>
  98. </annotation>
  99. </component>
  100. <!--1导上的第3个R波峰 The third R wave peak on lead I -->
  101. <component>
  102. <annotation>
  103. <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  104. <value xsi:type="CE" code="MDC_ECG_WAVC_RWAVE"
  105. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  106. <component>
  107. <annotation>
  108. <code code="MDC_ECG_WAVC_TYPE"
  109. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  110. <value xsi:type="CE" code="MDC_ECG_WAVC_PEAK"
  111. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  112. <support typeCode="SPRT">
  113. <supportingROI classCode="ROIBND">
  114. <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
  115. <component>
  116. <boundary>
  117. <code code="TIME_RELATIVE"
  118. codeSystem="2.16.840.1.113883.5.4"
  119. codeSystemName="ActCode" displayName="Relative Time"/>
  120. <value xsi:type="PQ" value="1930" unit="ms"/>
  121. </boundary>
  122. </component>
  123. <component>
  124. <boundary>
  125. <!--波形在1导-->
  126. <code code="MDC_ECG_LEAD_I"
  127. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  128. </boundary>
  129. </component>
  130. </supportingROI>
  131. </support>
  132. </annotation>
  133. </component>
  134. </annotation>
  135. </component>
  136. <!--1导上的第4个R波峰 The fourth R wave peak on lead I -->
  137. <component>
  138. <annotation>
  139. <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  140. <value xsi:type="CE" code="MDC_ECG_WAVC_RWAVE"
  141. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  142. <component>
  143. <annotation>
  144. <code code="MDC_ECG_WAVC_TYPE"
  145. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  146. <value xsi:type="CE" code="MDC_ECG_WAVC_PEAK"
  147. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  148. <support typeCode="SPRT">
  149. <supportingROI classCode="ROIBND">
  150. <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
  151. <component>
  152. <boundary>
  153. <code code="TIME_RELATIVE"
  154. codeSystem="2.16.840.1.113883.5.4"
  155. codeSystemName="ActCode" displayName="Relative Time"/>
  156. <value xsi:type="PQ" value="2776" unit="ms"/>
  157. </boundary>
  158. </component>
  159. <component>
  160. <boundary>
  161. <!--波形在1导-->
  162. <code code="MDC_ECG_LEAD_I"
  163. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  164. </boundary>
  165. </component>
  166. </supportingROI>
  167. </support>
  168. </annotation>
  169. </component>
  170. </annotation>
  171. </component>
  172. <!--2导上的第1个QT期间被使用一个单一QRST波代替。 The first QT interval on lead II is placed using a single QRSTWAVE -->
  173. <component>
  174. <annotation>
  175. <!--QRST波-->
  176. <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  177. <value xsi:type="CE" code="MDC_ECG_WAVC_QRSTWAVE"
  178. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  179. <support typeCode="SPRT">
  180. <supportingROI classCode="ROIBND">
  181. <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
  182. <component>
  183. <boundary>
  184. <!--QRST波的持续时间-->
  185. <code code="TIME_RELATIVE"
  186. codeSystem="2.16.840.1.113883.5.4"
  187. codeSystemName="ActCode" displayName="Relative Time"/>
  188. <value xsi:type="IVL_PQ">
  189. <low value="1068" unit="ms"/>
  190. <high value="1482" unit="ms"/>
  191. </value>
  192. </boundary>
  193. </component>
  194. <component>
  195. <boundary>
  196. <!--波形在2导-->
  197. <code code="MDC_ECG_LEAD_II"
  198. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  199. </boundary>
  200. </component>
  201. </supportingROI>
  202. </support>
  203. </annotation>
  204. </component>
  205. <!--2导上的第2个QT期间 The second QT interval -->
  206. <component>
  207. <annotation>
  208. <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  209. <value xsi:type="CE" code="MDC_ECG_WAVC_QRSTWAVE"
  210. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  211. <support typeCode="SPRT">
  212. <supportingROI classCode="ROIBND">
  213. <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
  214. <component>
  215. <boundary>
  216. <!--QRST波的持续时间-->
  217. <code code="TIME_RELATIVE"
  218. codeSystem="2.16.840.1.113883.5.4"
  219. codeSystemName="ActCode" displayName="Relative Time"/>
  220. <value xsi:type="IVL_PQ">
  221. <low value="1876" unit="ms"/>
  222. <high value="2298" unit="ms"/>
  223. </value>
  224. </boundary>
  225. </component>
  226. <component>
  227. <boundary>
  228. <!--波形在2导-->
  229. <code code="MDC_ECG_LEAD_II"
  230. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  231. </boundary>
  232. </component>
  233. </supportingROI>
  234. </support>
  235. </annotation>
  236. </component>
  237. <!--2导上的第3个QT期间 The third QT interval -->
  238. <component>
  239. <annotation>
  240. <code code="MDC_ECG_WAVC_TYPE" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  241. <value xsi:type="CE" code="MDC_ECG_WAVC_QRSTWAVE"
  242. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  243. <support typeCode="SPRT">
  244. <supportingROI classCode="ROIBND">
  245. <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
  246. <component>
  247. <boundary>
  248. <!--QRST波的持续时间-->
  249. <code code="TIME_RELATIVE"
  250. codeSystem="2.16.840.1.113883.5.4"
  251. codeSystemName="ActCode" displayName="Relative Time"/>
  252. <value xsi:type="IVL_PQ">
  253. <low value="2722" unit="ms"/>
  254. <high value="3128" unit="ms"/>
  255. </value>
  256. </boundary>
  257. </component>
  258. <component>
  259. <boundary>
  260. <!--波形在2导-->
  261. <code code="MDC_ECG_LEAD_II"
  262. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  263. </boundary>
  264. </component>
  265. </supportingROI>
  266. </support>
  267. </annotation>
  268. </component>
  269. </annotationSet>
  270. </subjectOf>
  271. <!--派生系列: 代表性 (中位数) 节拍 Derived Series: Representative (median) beat-->
  272. <!--这种结构与 "主" 系列的结构完全相同 This structure is exactly the same as that of the "main" series -->
  273. <derivation>
  274. <!--我们使用派生系列标签 We use a derivedSeries tag -->
  275. <derivedSeries>
  276. <id root="38ed54e0-ecf6-4fc6-837f-b2d836980057"/>
  277. <!--我们使用的代表性节拍波形编码 We use a REPRESENTATIVE_BEAT code -->
  278. <code code="REPRESENTATIVE_BEAT" codeSystem="2.16.840.1.113883.5.4"
  279. codeSystemName="ActCode" displayName="Representative Beat Waveforms"/>
  280. <!--这是用于计算派生系列的时间 (在本例中为原始系列的整整 10秒) This is the time used to compute the derivedSeries (in this case the full 10 seconds of the original series) -->
  281. <effectiveTime>
  282. <low value="20021122091000.000" inclusive="true"/>
  283. <high value="20021122091010.000" inclusive="false"/>
  284. </effectiveTime>
  285. <!--这是世卫组织计算的衍生系列 (在这种情况下, 摩托罗拉软件作为记录设备) This is WHO computed the derivedSeries (in this case the Mortara software in the recording device) -->
  286. <author>
  287. <!--序列的作者-->
  288. <seriesAuthor>
  289. <!--序列制造商-->
  290. <manufacturedSeriesDevice>
  291. <id extension="0"/>
  292. <code code="RESTING_ECG" codeSystem="1.2.3.4.5" codeSystemName="???"/>
  293. <manufacturerModelName>ELI250</manufacturerModelName>
  294. <softwareName>5.3</softwareName>
  295. </manufacturedSeriesDevice>
  296. <manufacturerOrganization>
  297. <name>Mortara Instrument, Inc.</name>
  298. </manufacturerOrganization>
  299. </seriesAuthor>
  300. </author>
  301. <!--序列集数据-->
  302. <component>
  303. <!--序列集-->
  304. <sequenceSet>
  305. <component>
  306. <sequence>
  307. <code code="TIME_RELATIVE" codeSystem="2.16.840.1.113883.5.4"
  308. codeSystemName="ActCode" displayName="Relative Time"/>
  309. <value xsi:type="GLIST_PQ">
  310. <!--序列开始时间-->
  311. <head value="0.000" unit="s"/>
  312. <!--序列步进-->
  313. <increment value="0.002" unit="s"/>
  314. </value>
  315. </sequence>
  316. </component>
  317. <component>
  318. <!--电压序列-->
  319. <sequence>
  320. <!--1导-->
  321. <code code="MDC_ECG_LEAD_I" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  322. <value xsi:type="SLIST_PQ">
  323. <!--原点-->
  324. <origin value="0" unit="uV"/>
  325. <!--缩放比-->
  326. <scale value="2.5" unit="uV"/>
  327. <!--电压值-->
  328. <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
  329. 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
  330. 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
  331. 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
  332. 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
  333. 8 6 9 13 13 14 11 11 10 9 12 16 17 15 15 15 12 11 13 17
  334. 15 17 20 25 29 30 30 30 31 33 36 40 40 37 40 36 35 37 40
  335. 41 43 43 43 43 40 39 37 37 38 37 38 35 28 19 14 12 10 10
  336. 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
  337. -1 -7 -11 -18 -22 -25 -31 -36 -44 -52 -57 -58 -60 -58
  338. -50 -42 -29 -14 -1 11 23 37 53 63 76 91 109 129 142 144
  339. 138 127 114 99 84 72 61 50 41 29 22 21 17 15 14 13 12 6
  340. 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
  341. 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
  342. 8 7 7 7 8 8 9 10 9 8 9 9 9 13 14 15 14 14 14 13 13 12 10
  343. 11 11 9 9 10 11 14 15 16 12 13 13 13 11 11 11 11 11 10
  344. 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
  345. -1 -1 2 1 1 -1 -3 -3 -2 -2 -4 -2 -2 -1 -2 -1 2 3 1 1 2 1
  346. 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
  347. 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
  348. 13 12 11 10 9 9 10 10 11 11 12 10 11 8 8 8 8 6 5 5 5 5 6
  349. 8 8 7 8 9 10 10 10 9 10 11 9 8 6 10 11 12 11 13 11 12 11
  350. 11 10 10 13 11 12 10 10 9 10 9 9 10 11 11 10 9 10 14 15
  351. 15 13 12 12 13 14 15 14 14 14 18 17 16 13 12 11 11 11 14
  352. 16 13 14 12 14 13 14 16 16 14 14 15 16 17 17 17 20 23 24
  353. 25 25 21 21 21 22 26 26 23 23 20 20 23 22 25 25 27 28 27
  354. 27 24 21 19 17 20 26 32 36 36 36 31 28 23 </digits>
  355. </value>
  356. </sequence>
  357. </component>
  358. <component>
  359. <sequence>
  360. <!--2导-->
  361. <code code="MDC_ECG_LEAD_II" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  362. <value xsi:type="SLIST_PQ">
  363. <origin value="0" unit="uV"/>
  364. <scale value="2.5" unit="uV"/>
  365. <digits> 52 50 49 49 48 48 47 44 43 41 38 37 36 34 31 29 28
  366. 28 28 27 27 26 27 26 24 24 24 24 23 24 25 24 24 23 23 21
  367. 21 21 20 20 20 21 21 20 21 21 21 21 22 21 23 23 22 22 22
  368. 22 21 22 22 21 22 22 23 23 25 25 25 25 25 26 26 25 25 24
  369. 24 25 23 22 22 22 22 22 23 25 25 25 26 25 25 25 23 21 21
  370. 22 22 21 18 17 19 20 18 19 18 19 20 18 19 19 19 20 20 21
  371. 21 19 19 19 18 19 18 17 17 17 16 16 15 15 17 20 19 18 17
  372. 17 16 17 18 18 19 19 18 18 18 19 20 21 21 25 27 28 26 28
  373. 31 34 38 43 47 52 53 54 52 50 47 48 48 49 48 47 46 43 44
  374. 44 41 41 44 46 46 46 43 41 40 37 34 32 30 29 29 26 23 17
  375. 11 10 8 4 4 3 2 1 0 -2 -2 -2 -4 -5 -4 -2 1 1 -1 -1 -3 -5
  376. -6 -5 -3 -3 -3 -2 -2 0 3 5 8 8 9 9 6 -4 -16 -32 -48 -64
  377. -75 -85 -92 -90 -82 -62 -37 -10 18 42 67 97 124 137 132
  378. 99 50 -10 -71 -118 -153 -179 -199 -214 -223 -225 -222
  379. -215 -206 -192 -174 -152 -127 -103 -78 -63 -48 -34 -23
  380. -16 -8 0 6 10 14 17 17 19 19 19 20 21 20 22 20 21 22 23
  381. 24 25 26 26 27 28 30 31 31 33 34 34 35 36 34 35 35 35 35
  382. 37 39 37 40 41 42 44 44 44 43 45 46 45 46 46 47 47 45 46
  383. 47 47 50 53 54 55 55 56 58 60 58 61 62 65 65 66 69 70 70
  384. 71 72 75 78 79 83 84 86 89 93 96 97 98 100 103 104 105
  385. 107 107 109 111 113 116 116 118 121 123 123 123 124 126
  386. 127 127 126 126 124 125 123 124 124 127 128 126 125 123
  387. 123 119 114 109 106 101 97 93 90 88 82 80 75 73 70 68 64
  388. 61 57 55 54 50 49 48 43 42 39 36 34 32 29 30 29 31 30 29
  389. 29 29 28 27 26 24 24 23 23 24 24 24 25 24 25 24 24 23 22
  390. 23 24 24 24 26 25 24 22 23 23 22 22 23 23 22 22 23 24 26
  391. 26 27 26 24 25 24 24 25 25 26 25 26 27 26 26 24 24 25 25
  392. 26 27 26 26 24 24 25 24 24 23 23 23 24 22 22 23 23 24 23
  393. 26 27 27 26 25 26 25 22 22 21 22 22 21 20 19 20 20 19 18
  394. 18 19 18 19 20 18 18 17 17 17 18 19 19 19 21 23 23 22 21
  395. 19 20 22 22 25 24 25 26 28 28 30 31 31 33 34 35 34 35 36
  396. 37 37 36 35 35 35 36 35 37 35 34 34 36 38 36 34 34 34 35
  397. 31 30 27 27 28 30 28 30 31 31 33 33 33 34 33 33 33 34 32
  398. 30 28 </digits>
  399. </value>
  400. </sequence>
  401. </component>
  402. <component>
  403. <sequence>
  404. <!--V1导-->
  405. <code code="MDC_ECG_LEAD_V1" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  406. <value xsi:type="SLIST_PQ">
  407. <origin value="0" unit="uV"/>
  408. <scale value="2.5" unit="uV"/>
  409. <digits> 18 16 16 16 15 15 16 16 14 14 15 15 14 14 14 13 13
  410. 11 12 12 12 12 11 12 12 11 10 10 8 9 9 10 10 10 10 10 9
  411. 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
  412. 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
  413. 1 2 0 0 -1 0 -1 0 0 0 -1 0 -1 -2 -2 -3 -3 -3 -3 -3 -3 -2
  414. -3 -3 -2 -2 -3 -4 -5 -5 -8 -8 -8 -8 -8 -7 -5 -2 -2 -2 -2
  415. -2 -4 -4 -5 -6 -4 -3 -3 -2 -1 1 1 2 2 4 5 6 4 3 4 4 2 -1
  416. -4 -8 -10 -13 -16 -19 -22 -24 -27 -29 -32 -31 -32 -33
  417. -33 -32 -32 -31 -30 -28 -26 -25 -23 -22 -21 -23 -24 -23
  418. -20 -16 -12 -11 -9 -8 -5 -5 -7 -7 -5 -4 -5 -3 -4 -4 -6
  419. -6 -6 -5 -3 -2 0 -1 0 0 0 0 -2 0 -1 0 0 0 3 6 8 10 15 19
  420. 23 24 27 30 29 29 29 27 10 -21 -61 -113 -164 -213 -257
  421. -308 -365 -423 -472 -517 -541 -565 -561 -549 -523 -485
  422. -445 -402 -359 -312 -264 -218 -180 -141 -109 -76 -55 -35
  423. -25 -10 0 11 18 22 21 20 18 17 17 16 18 22 24 26 27 26
  424. 25 26 28 30 29 29 27 29 28 28 28 30 30 31 29 31 30 29 27
  425. 27 26 25 26 27 27 28 27 29 29 29 30 31 31 31 31 30 31 33
  426. 32 32 31 32 32 31 30 31 30 30 31 31 31 31 30 32 32 33 33
  427. 33 34 35 35 36 37 37 37 37 34 34 37 38 39 37 38 39 39 40
  428. 42 42 42 42 42 43 42 39 39 39 39 38 39 40 40 41 42 41 41
  429. 41 39 39 40 40 40 38 38 36 34 34 35 32 30 30 29 28 26 27
  430. 25 23 20 20 19 20 18 17 14 13 15 13 10 12 12 11 11 11 10
  431. 11 11 11 12 12 12 12 11 11 10 8 8 9 10 10 10 10 9 10 9 7
  432. 8 7 8 8 8 9 9 9 11 10 10 9 10 8 10 9 10 9 10 10 10 9 8 8
  433. 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
  434. 2 1 1 2 2 2 1 1 1 -1 -2 -2 -2 -4 -4 -4 -4 -3 -2 -3 -2 -2
  435. -2 -3 -4 -4 -5 -5 -6 -6 -7 -6 -4 -4 -3 -4 -4 -4 -5 -5 -4
  436. -8 -9 -9 -8 -7 -6 -5 -5 -5 -5 -6 -6 -6 -5 -5 -4 -5 -6 -7
  437. -7 -6 -5 -8 -7 -6 -8 -9 -9 -10 -11 -12 -13 -13 -12 -13
  438. -12 -13 -13 -14 -14 -15 -15 -16 -15 -14 -14 -16 -16 -16
  439. -17 -18 -16 -16 -17 -19 -22 -23 -24 -23 -21 -18 -17 -21
  440. -21 -21 -21 -20 -16 -16 -17 -19 </digits>
  441. </value>
  442. </sequence>
  443. </component>
  444. <component>
  445. <sequence>
  446. <!--V2导-->
  447. <code code="MDC_ECG_LEAD_V2" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  448. <value xsi:type="SLIST_PQ">
  449. <origin value="0" unit="uV"/>
  450. <scale value="2.5" unit="uV"/>
  451. <digits> 54 53 51 49 48 47 46 44 43 42 42 41 40 39 38 39 38
  452. 37 37 37 37 36 35 35 37 37 38 35 34 35 36 37 36 36 38 39
  453. 38 37 36 35 34 32 34 34 35 34 35 35 35 34 33 34 33 35 34
  454. 34 36 35 34 34 31 31 31 32 32 32 31 29 29 29 28 29 30 30
  455. 30 28 29 27 26 26 24 24 24 24 25 24 22 20 21 20 21 19 18
  456. 18 17 18 19 18 17 17 17 15 16 16 16 15 15 15 14 14 13 14
  457. 14 13 13 13 13 12 11 13 13 12 10 9 8 7 7 7 8 9 9 10 12
  458. 10 10 11 9 9 10 11 10 9 10 12 12 13 12 13 17 19 17 18 19
  459. 21 22 20 20 20 20 21 22 24 24 25 24 23 19 13 9 6 7 8 11
  460. 11 14 16 18 18 17 17 14 11 10 5 5 5 6 7 6 6 8 8 6 4 3 4
  461. 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
  462. -13 -22 -36 -48 -63 -80 -100 -116 -135 -146 -164 -186
  463. -221 -255 -293 -327 -367 -412 -470 -531 -602 -661 -688
  464. -695 -695 -681 -661 -641 -622 -597 -554 -496 -420 -337
  465. -264 -201 -155 -122 -80 -55 -24 -9 8 25 45 56 61 62 58
  466. 52 49 50 50 51 55 58 59 59 59 60 61 60 62 65 65 64 63 63
  467. 65 66 68 68 70 72 72 72 69 70 70 72 72 73 75 77 77 78 80
  468. 83 83 83 84 85 86 87 87 87 90 92 93 92 94 95 95 96 97 98
  469. 99 101 101 103 108 106 107 109 111 113 115 118 119 119
  470. 122 123 125 127 127 129 130 134 138 140 141 144 143 146
  471. 147 148 147 150 150 151 150 149 149 149 148 149 148 149
  472. 150 150 151 150 149 148 146 145 144 145 142 141 139 135
  473. 133 127 122 120 117 113 108 104 100 96 90 86 82 77 72 69
  474. 65 60 57 54 51 48 45 42 41 39 37 37 36 34 35 34 34 32 31
  475. 32 31 28 28 28 29 28 28 28 29 29 28 27 28 28 27 28 28 28
  476. 30 30 32 33 34 34 34 35 34 35 34 34 34 34 34 35 34 37 37
  477. 38 36 36 34 34 35 35 35 35 36 37 37 36 35 34 33 33 34 36
  478. 34 33 33 32 31 29 28 28 27 28 26 26 25 24 23 23 24 24 22
  479. 23 22 22 19 19 17 16 16 17 16 17 16 16 15 14 14 13 13 12
  480. 11 12 13 11 11 11 11 10 10 10 11 11 9 10 9 9 9 10 10 12
  481. 12 11 8 9 9 8 10 10 10 9 11 9 8 8 9 8 8 9 10 10 9 10 10
  482. 9 9 11 10 9 8 8 9 9 9 10 8 11 10 9 9 10 11 11 11 11 11
  483. 13 14 13 13 13 14 11 7 7 9 8 5 6 5 5 5 8 10 11 12 </digits>
  484. </value>
  485. </sequence>
  486. </component>
  487. <component>
  488. <sequence>
  489. <!--V3导-->
  490. <code code="MDC_ECG_LEAD_V3" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  491. <value xsi:type="SLIST_PQ">
  492. <origin value="0" unit="uV"/>
  493. <scale value="2.5" unit="uV"/>
  494. <digits> 25 25 24 21 22 23 22 22 22 23 24 24 24 24 24 25 25
  495. 25 24 25 26 25 26 28 27 27 28 27 27 26 27 27 27 27 27 26
  496. 26 27 26 26 24 24 23 24 24 25 26 26 24 24 23 23 23 23 22
  497. 24 25 24 23 23 23 23 23 23 23 22 22 22 19 20 22 22 22 21
  498. 21 21 21 20 19 19 18 18 18 17 16 15 15 14 14 13 13 13 14
  499. 13 12 12 13 11 10 11 12 11 10 9 10 9 8 7 7 8 9 9 9 10 10
  500. 11 11 10 10 10 9 10 9 9 9 6 6 6 7 7 9 9 10 10 10 11 8 8
  501. 9 9 10 9 9 9 12 14 13 14 15 15 15 15 16 18 19 21 22 23
  502. 25 26 30 31 32 33 33 32 32 27 24 22 23 23 24 26 30 32 35
  503. 36 32 30 28 25 22 19 19 21 20 18 13 10 9 11 9 7 5 5 6 7
  504. 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
  505. -34 -58 -86 -114 -145 -177 -210 -240 -261 -284 -306 -329
  506. -350 -366 -379 -400 -431 -470 -517 -558 -587 -598 -594
  507. -585 -566 -547 -530 -512 -494 -463 -424 -374 -317 -269
  508. -217 -184 -158 -128 -99 -75 -57 -39 -19 2 19 29 38 40 40
  509. 38 40 43 49 55 60 61 63 63 63 66 68 70 70 71 72 73 75 74
  510. 77 77 80 80 81 83 83 81 81 82 85 88 88 88 90 92 94 96 97
  511. 98 97 99 100 102 104 105 105 106 108 108 110 111 115 114
  512. 113 114 116 116 117 118 121 124 124 123 127 128 130 131
  513. 133 135 136 137 140 141 141 140 140 140 142 145 147 146
  514. 144 144 146 147 148 147 145 143 143 142 141 139 136 135
  515. 134 133 130 128 127 126 124 122 118 116 113 111 109 106
  516. 103 99 95 91 89 84 81 77 71 67 61 58 52 47 43 40 33 30
  517. 29 27 24 23 20 19 17 16 14 13 11 10 11 12 11 13 13 14 13
  518. 13 12 13 13 11 11 12 12 12 14 14 15 15 15 17 16 16 17 19
  519. 20 21 21 23 22 22 24 23 23 23 23 24 25 26 27 26 26 26 27
  520. 27 29 29 30 30 28 28 28 29 30 30 29 30 29 29 27 26 26 25
  521. 24 23 23 22 23 21 21 22 19 20 21 20 18 17 17 16 15 16 14
  522. 14 14 13 12 12 15 13 11 9 10 10 11 10 11 10 9 8 8 8 8 7
  523. 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
  524. 10 9 7 9 9 7 9 9 11 9 9 10 10 10 10 11 11 9 9 9 11 11 10
  525. 10 10 12 12 14 13 13 12 11 11 12 13 17 18 16 15 17 18 17
  526. 18 19 19 19 15 14 14 12 12 13 15 17 21 19 18 21 </digits>
  527. </value>
  528. </sequence>
  529. </component>
  530. <component>
  531. <sequence>
  532. <!--V4导-->
  533. <code code="MDC_ECG_LEAD_V4" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  534. <value xsi:type="SLIST_PQ">
  535. <origin value="0" unit="uV"/>
  536. <scale value="2.5" unit="uV"/>
  537. <digits> -18 -17 -18 -19 -18 -17 -17 -17 -16 -14 -13 -13 -11
  538. -9 -10 -8 -7 -7 -6 -6 -4 -3 -3 -2 -1 0 1 3 4 3 3 5 6 8 8
  539. 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
  540. 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
  541. 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
  542. 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
  543. 9 11 12 12 13 12 12 13 16 17 20 21 22 24 26 29 28 30 33
  544. 34 33 33 33 30 29 28 28 30 34 35 38 42 42 40 39 37 35 31
  545. 27 26 28 28 25 19 13 10 10 10 7 4 3 4 5 6 5 3 1 1 2 2 4
  546. 5 4 4 3 2 1 1 1 1 3 3 0 -2 -4 -3 -6 -17 -35 -57 -84 -115
  547. -149 -185 -220 -254 -282 -301 -313 -320 -315 -304 -281
  548. -271 -263 -264 -264 -260 -253 -240 -222 -201 -180 -162
  549. -157 -160 -173 -181 -196 -200 -195 -185 -172 -155 -134
  550. -118 -96 -83 -70 -57 -40 -26 -12 -5 2 9 16 20 26 31 35
  551. 40 44 46 49 51 52 54 56 57 57 57 58 59 59 62 61 61 63 65
  552. 68 70 69 69 68 69 71 71 71 73 74 76 78 79 79 80 79 80 81
  553. 81 83 85 86 87 88 86 88 89 90 89 88 88 91 91 92 93 93 96
  554. 93 92 93 95 95 96 95 95 96 95 96 95 96 95 94 93 94 94 94
  555. 93 91 88 88 89 86 84 83 82 79 77 76 74 70 66 63 61 59 55
  556. 54 53 49 46 42 38 34 31 29 25 21 17 12 10 4 0 -2 -3 -7
  557. -11 -15 -17 -19 -23 -26 -27 -33 -33 -34 -34 -38 -38 -39
  558. -38 -36 -35 -34 -34 -33 -32 -32 -31 -29 -26 -24 -23 -22
  559. -20 -20 -19 -17 -18 -18 -16 -14 -12 -11 -9 -8 -9 -8 -8
  560. -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
  561. 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
  562. 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
  563. -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
  564. 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
  565. 13 11 15 16 17 16 17 17 18 17 17 21 21 20 19 20 18 17 15
  566. 14 15 16 17 18 18 19 20 21 22 23 23 23 25 28 29 24 21 </digits>
  567. </value>
  568. </sequence>
  569. </component>
  570. <component>
  571. <sequence>
  572. <!--V5导-->
  573. <code code="MDC_ECG_LEAD_V5" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  574. <value xsi:type="SLIST_PQ">
  575. <origin value="0" unit="uV"/>
  576. <scale value="2.5" unit="uV"/>
  577. <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
  578. 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
  579. 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
  580. 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
  581. 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
  582. 3 5 7 5 3 5 4 5 4 6 9 10 9 9 8 11 13 16 18 19 20 23 24
  583. 25 26 29 32 34 37 38 37 34 32 32 33 37 40 42 46 46 45 45
  584. 44 42 39 35 33 35 36 33 27 20 14 11 8 6 3 0 2 4 3 1 1 1
  585. 1 1 2 1 1 1 2 2 1 1 1 1 2 3 2 0 -2 -3 -2 -4 -8 -17 -28
  586. -41 -56 -74 -92 -112 -128 -139 -143 -143 -140 -123 -101
  587. -69 -41 -10 19 48 79 114 148 177 203 223 227 204 163 111
  588. 61 7 -43 -85 -118 -135 -150 -146 -140 -132 -123 -111 -99
  589. -83 -67 -56 -45 -34 -23 -13 -4 4 9 11 13 14 15 15 15 18
  590. 20 21 22 25 25 23 21 21 21 24 25 27 28 27 31 32 29 29 29
  591. 31 31 33 34 33 33 35 36 36 34 35 36 35 34 35 37 36 37 38
  592. 39 38 37 38 39 39 40 40 39 39 40 40 42 41 40 41 41 40 41
  593. 42 42 43 44 44 44 42 41 42 41 42 42 42 44 44 44 44 41 42
  594. 42 42 43 43 41 42 42 41 38 38 38 38 36 37 38 37 36 36 33
  595. 33 31 29 27 27 27 24 21 18 16 15 16 15 12 12 11 11 9 7 6
  596. 4 3 3 2 0 1 -1 -3 -4 -6 -5 -5 -6 -6 -5 -5 -5 -5 -6 -6 -8
  597. -9 -9 -9 -8 -10 -10 -10 -10 -8 -8 -6 -5 -4 -4 -3 -3 -5
  598. -2 -2 -2 -2 0 1 1 0 1 0 -1 -1 -1 -1 -1 -1 0 1 0 -1 0 0 1
  599. 1 0 -1 -2 -5 -4 -2 1 2 2 2 2 1 -1 -1 -2 -2 0 0 2 2 1 1 0
  600. -1 -2 -3 -4 -3 -6 -5 -4 -4 -4 -2 -1 -1 -1 2 0 0 -1 -3 -3
  601. -3 -4 -5 -4 -2 -2 -2 0 0 -1 -2 -4 -3 -3 -3 -3 -3 -1 1 1
  602. -1 -2 -2 -2 -4 -3 -3 -2 -3 -2 -3 -3 -2 -2 -3 -1 0 2 4 4
  603. 3 4 4 5 4 5 6 5 6 6 8 9 9 10 10 10 9 9 9 10 10 11 13 15
  604. 17 17 17 16 16 16 15 20 21 21 23 22 19 17 16 14 14 14 12
  605. 12 15 18 20 20 17 19 19 20 23 26 28 29 27 </digits>
  606. </value>
  607. </sequence>
  608. </component>
  609. <component>
  610. <sequence>
  611. <!--V6导-->
  612. <code code="MDC_ECG_LEAD_V6" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  613. <value xsi:type="SLIST_PQ">
  614. <origin value="0" unit="uV"/>
  615. <scale value="2.5" unit="uV"/>
  616. <digits> 20 20 19 15 13 14 14 13 13 13 12 13 13 12 8 6 7 7 7
  617. 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
  618. 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
  619. 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
  620. 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
  621. 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
  622. 11 15 17 19 19 19 21 22 26 27 26 25 26 29 32 34 32 35 37
  623. 41 42 42 40 39 37 35 32 32 33 35 33 28 21 15 11 10 5 1
  624. -1 -2 0 1 2 2 0 -2 -1 -1 0 0 0 2 1 1 -3 -2 -2 -2 -1 0 0
  625. -1 -1 0 1 -2 -6 -11 -13 -17 -24 -31 -38 -44 -48 -48 -49
  626. -49 -29 -8 25 61 100 138 175 212 252 294 333 368 383 382
  627. 353 314 264 217 165 110 56 8 -29 -57 -72 -82 -86 -86 -83
  628. -76 -66 -58 -53 -45 -35 -23 -14 -6 -5 -3 -5 -5 -4 -3 1 2
  629. 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
  630. 9 9 10 13 12 9 10 11 12 13 14 11 12 14 13 12 12 13 14 13
  631. 11 11 14 14 13 15 17 16 13 11 13 14 13 15 17 19 21 21 19
  632. 18 18 18 19 20 20 21 23 25 26 26 25 26 27 26 28 27 27 28
  633. 29 29 30 32 34 36 35 37 39 39 39 37 39 40 40 39 39 39 40
  634. 38 38 39 39 41 43 43 40 41 41 41 39 37 39 38 36 36 34 30
  635. 27 23 22 22 23 24 22 21 21 19 16 13 12 11 10 9 10 8 6 5
  636. 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
  637. 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
  638. 2 3 3 2 1 1 0 -1 -1 -3 -3 -2 -1 -1 -2 -2 0 3 3 2 3 5 5 5
  639. 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
  640. 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
  641. 4 3 4 3 5 8 6 7 9 10 11 8 11 12 12 13 11 12 15 12 13 16
  642. 18 17 17 17 14 13 15 14 15 16 16 16 19 20 21 19 13 12 15
  643. 16 16 20 24 27 30 </digits>
  644. </value>
  645. </sequence>
  646. </component>
  647. <component>
  648. <sequence>
  649. <!--3导-->
  650. <code code="MDC_ECG_LEAD_III"
  651. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  652. <value xsi:type="SLIST_PQ">
  653. <origin value="0" unit="uV"/>
  654. <scale value="2.5" unit="uV"/>
  655. <digits> 48 46 47 46 44 44 43 40 38 36 33 32 31 28 26 23 26
  656. 23 22 21 20 19 20 18 17 18 19 17 17 17 17 17 17 17 17 16
  657. 17 17 18 15 14 14 16 15 15 15 15 14 16 16 16 17 17 17 17
  658. 17 17 18 17 16 17 18 18 18 21 19 19 17 17 17 19 18 19 20
  659. 22 22 19 17 18 18 15 16 17 21 21 19 21 19 17 20 18 14 16
  660. 17 16 15 11 10 12 12 10 10 9 8 10 8 10 10 9 9 10 14 14
  661. 12 12 12 10 11 12 13 14 14 10 10 10 9 11 11 7 6 6 8 8 9
  662. 12 9 6 6 4 7 7 9 11 9 5 8 12 13 11 16 20 21 21 28 30 32
  663. 28 25 22 20 17 17 15 13 8 7 9 3 8 9 4 1 3 3 3 3 0 1 1 0
  664. -3 -6 -7 -9 -6 -2 4 3 -1 0 -2 -4 -2 -1 -2 -6 -7 -7 -6 -6
  665. -8 -9 -9 -7 -2 -3 -5 -5 -6 -7 -7 -6 -5 -5 -5 -3 -1 0 3 6
  666. 15 19 27 31 31 27 20 12 4 -7 -17 -25 -34 -40 -40 -33 -23
  667. -9 7 19 30 44 61 61 41 -10 -79 -152 -215 -256 -280 -293
  668. -298 -298 -295 -286 -272 -256 -235 -214 -195 -169 -142
  669. -117 -91 -75 -54 -44 -33 -26 -16 -8 1 6 9 11 12 13 15 15
  670. 15 16 18 20 18 17 18 18 20 22 23 22 23 23 26 27 30 31 29
  671. 25 23 26 27 28 26 27 28 32 33 33 35 35 38 38 37 34 33 36
  672. 38 38 38 39 40 40 37 38 38 37 41 45 45 46 46 43 44 45 44
  673. 47 48 52 52 54 59 59 59 62 63 65 67 65 68 68 74 76 80 83
  674. 86 87 89 92 93 95 97 95 99 102 104 108 107 110 114 116
  675. 116 114 116 118 119 120 119 120 120 123 122 122 122 124
  676. 125 123 126 124 121 118 113 110 109 104 99 95 94 90 84
  677. 81 77 74 68 65 63 60 55 54 52 48 47 46 40 39 39 36 34 32
  678. 32 31 31 31 28 25 25 25 23 22 23 18 20 20 19 17 19 18 19
  679. 17 20 19 18 17 15 15 18 16 15 17 15 16 18 21 18 18 17 17
  680. 17 13 10 11 13 13 14 16 16 15 16 14 14 14 14 14 15 15 19
  681. 18 18 16 18 20 20 21 22 20 18 16 17 17 15 14 13 13 14 14
  682. 11 13 15 17 14 12 14 16 14 15 13 15 14 12 12 8 11 10 11
  683. 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
  684. 3 7 10 11 14 13 11 10 15 14 18 17 18 19 18 19 20 21 21
  685. 21 20 19 18 15 12 12 10 12 14 13 13 14 12 10 11 11 14 15
  686. 8 8 2 2 1 2 1 3 7 10 14 16 13 8 1 -3 -3 -2 1 2 5 </digits>
  687. </value>
  688. </sequence>
  689. </component>
  690. <component>
  691. <sequence>
  692. <!--AVR导-->
  693. <code code="MDC_ECG_LEAD_AVR"
  694. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  695. <value xsi:type="SLIST_PQ">
  696. <origin value="0" unit="uV"/>
  697. <scale value="2.5" unit="uV"/>
  698. <digits> -28 -27 -25 -26 -26 -26 -25 -24 -24 -23 -21 -21 -20
  699. -20 -18 -17 -15 -16 -17 -16 -17 -16 -17 -17 -15 -15 -14
  700. -15 -14 -15 -16 -15 -15 -14 -14 -13 -12 -12 -11 -12 -13
  701. -14 -13 -12 -13 -13 -13 -14 -14 -13 -15 -14 -13 -13 -13
  702. -13 -12 -13 -13 -13 -13 -13 -14 -14 -14 -15 -15 -16 -16
  703. -17 -16 -16 -15 -14 -13 -14 -13 -13 -13 -13 -14 -14 -14
  704. -14 -14 -15 -15 -15 -16 -15 -14 -14 -13 -13 -14 -13 -12
  705. -12 -13 -14 -13 -14 -13 -15 -15 -14 -14 -14 -14 -15 -15
  706. -14 -14 -13 -13 -13 -13 -13 -12 -10 -10 -10 -11 -11 -10
  707. -10 -11 -14 -15 -15 -14 -13 -12 -12 -12 -13 -16 -16 -16
  708. -14 -14 -14 -14 -16 -18 -21 -21 -21 -20 -20 -21 -23 -27
  709. -29 -32 -36 -39 -41 -41 -40 -38 -39 -40 -42 -44 -43 -41
  710. -41 -40 -39 -39 -40 -42 -44 -44 -44 -43 -40 -39 -37 -35
  711. -35 -33 -33 -32 -27 -21 -15 -11 -10 -9 -6 -5 -3 -3 -4 -3
  712. -1 -1 -1 0 0 0 -1 -2 -2 -1 -1 0 1 2 2 0 0 0 0 1 0 -1 -2
  713. 0 1 4 6 9 17 26 38 50 60 66 72 75 70 62 45 25 5 -14 -32
  714. -52 -75 -93 -106 -111 -104 -89 -66 -36 -10 13 32 50 65
  715. 75 82 86 87 88 85 76 67 56 44 32 25 21 12 6 3 0 -4 -5 -7
  716. -9 -11 -11 -12 -11 -11 -12 -13 -11 -12 -11 -12 -13 -14
  717. -14 -14 -14 -15 -15 -16 -17 -17 -16 -17 -19 -21 -23 -23
  718. -20 -21 -22 -21 -21 -21 -22 -20 -22 -23 -23 -25 -25 -27
  719. -26 -27 -27 -26 -27 -26 -27 -27 -26 -27 -28 -28 -29 -30
  720. -31 -32 -32 -34 -36 -37 -36 -37 -38 -39 -39 -39 -39 -40
  721. -40 -40 -40 -42 -44 -46 -49 -50 -49 -51 -53 -54 -54 -54
  722. -55 -57 -57 -57 -58 -59 -59 -60 -61 -62 -62 -63 -64 -65
  723. -65 -66 -66 -67 -67 -67 -66 -66 -64 -63 -62 -63 -63 -65
  724. -65 -64 -62 -61 -62 -60 -57 -54 -51 -49 -47 -45 -43 -43
  725. -40 -39 -36 -36 -36 -35 -32 -31 -29 -28 -28 -26 -25 -25
  726. -23 -22 -19 -18 -17 -16 -13 -14 -13 -15 -16 -16 -16 -16
  727. -16 -16 -14 -15 -14 -13 -13 -15 -14 -15 -15 -15 -15 -14
  728. -15 -14 -14 -15 -15 -16 -16 -17 -17 -16 -13 -12 -14 -13
  729. -13 -14 -14 -15 -17 -17 -17 -19 -19 -19 -18 -16 -17 -17
  730. -17 -18 -18 -19 -17 -18 -17 -17 -17 -16 -15 -15 -15 -15
  731. -16 -16 -17 -16 -15 -16 -16 -17 -16 -16 -16 -17 -16 -15
  732. -15 -14 -17 -17 -19 -19 -20 -18 -18 -18 -18 -16 -16 -17
  733. -16 -17 -15 -15 -14 -15 -14 -14 -14 -14 -15 -14 -14 -15
  734. -16 -16 -16 -15 -14 -15 -16 -16 -17 -17 -18 -18 -20 -19
  735. -17 -16 -17 -16 -18 -17 -19 -21 -20 -21 -21 -22 -22 -23
  736. -25 -25 -24 -24 -25 -26 -27 -26 -26 -27 -29 -30 -30 -31
  737. -28 -27 -27 -29 -32 -31 -28 -28 -27 -27 -27 -26 -26 -26
  738. -27 -29 -27 -28 -27 -26 -26 -25 -26 -30 -32 -34 -34 -35
  739. -31 -29 -25 </digits>
  740. </value>
  741. </sequence>
  742. </component>
  743. <component>
  744. <sequence>
  745. <!--AVL导-->
  746. <code code="MDC_ECG_LEAD_AVL"
  747. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  748. <value xsi:type="SLIST_PQ">
  749. <origin value="0" unit="uV"/>
  750. <scale value="2.5" unit="uV"/>
  751. <digits> -22 -21 -22 -21 -20 -20 -19 -18 -16 -15 -14 -13 -13
  752. -11 -10 -8 -12 -9 -8 -7 -6 -6 -6 -5 -5 -6 -7 -5 -5 -5 -4
  753. -5 -5 -5 -5 -5 -6 -6 -8 -5 -4 -3 -5 -5 -4 -4 -4 -3 -5 -5
  754. -4 -5 -6 -6 -6 -6 -6 -7 -6 -5 -6 -7 -6 -6 -8 -6 -6 -4 -4
  755. -4 -6 -5 -6 -8 -10 -9 -7 -6 -7 -7 -4 -5 -5 -8 -8 -6 -8
  756. -6 -4 -7 -6 -3 -5 -6 -5 -4 -2 -1 -2 -2 -1 0 0 1 0 1 0 0
  757. 0 1 0 -3 -3 -2 -2 -2 -1 -1 -3 -4 -5 -5 -2 -2 -2 -1 -2 -1
  758. 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
  759. -6 -6 -6 -1 2 4 5 6 7 9 11 16 16 14 18 14 13 16 19 19 20
  760. 20 20 21 19 19 18 20 22 22 23 20 15 7 5 6 5 6 6 4 2 3 6
  761. 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
  762. -15 -22 -26 -28 -29 -28 -28 -28 -25 -20 -17 -12 -5 -1 2
  763. 4 4 2 2 3 4 1 7 25 59 104 147 179 197 203 203 198 191
  764. 183 173 161 148 132 118 108 93 78 65 52 43 30 27 21 18
  765. 12 8 2 -1 -2 -2 -3 -3 -5 -5 -5 -5 -8 -9 -8 -6 -7 -6 -8
  766. -9 -10 -9 -9 -9 -11 -11 -14 -14 -12 -8 -5 -8 -10 -10 -8
  767. -9 -10 -13 -13 -14 -15 -14 -17 -16 -15 -12 -11 -13 -15
  768. -15 -15 -16 -16 -16 -14 -15 -14 -13 -16 -18 -18 -18 -18
  769. -15 -15 -15 -15 -16 -17 -19 -19 -21 -24 -24 -24 -26 -27
  770. -27 -28 -25 -26 -26 -31 -31 -33 -35 -37 -38 -39 -40 -41
  771. -42 -43 -41 -44 -46 -47 -50 -49 -51 -53 -54 -54 -52 -54
  772. -55 -55 -56 -56 -57 -58 -60 -60 -60 -60 -60 -61 -60 -63
  773. -62 -59 -58 -56 -55 -56 -53 -50 -48 -49 -46 -43 -41 -39
  774. -37 -33 -31 -31 -29 -26 -26 -25 -23 -22 -22 -18 -18 -19
  775. -18 -17 -16 -17 -16 -16 -15 -13 -10 -10 -10 -9 -8 -10 -6
  776. -8 -8 -7 -5 -7 -6 -6 -5 -7 -7 -6 -5 -4 -3 -6 -4 -3 -4 -2
  777. -4 -7 -9 -6 -7 -6 -5 -5 -2 1 0 -1 0 -1 -2 -3 -3 -3 -2 -2
  778. -1 -1 -1 -2 -2 -5 -5 -5 -4 -6 -7 -7 -8 -8 -7 -5 -4 -5 -4
  779. -3 -2 -1 -1 -2 -2 0 -2 -3 -5 -2 0 -1 -2 0 -2 0 -2 -1 -1
  780. -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
  781. 2 7 6 6 3 1 0 -1 -1 1 3 -1 0 -3 -1 -2 -2 -1 -1 -3 -3 -3
  782. -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
  783. 13 12 8 5 2 0 3 9 15 19 19 19 15 13 9 </digits>
  784. </value>
  785. </sequence>
  786. </component>
  787. <component>
  788. <sequence>
  789. <!--AVF导-->
  790. <code code="MDC_ECG_LEAD_AVF"
  791. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  792. <value xsi:type="SLIST_PQ">
  793. <origin value="0" unit="uV"/>
  794. <scale value="2.5" unit="uV"/>
  795. <digits> 50 48 48 47 46 46 45 42 40 38 35 34 33 31 28 26 27
  796. 25 25 24 23 22 23 22 20 21 21 20 20 20 21 20 20 20 20 18
  797. 19 19 19 17 17 17 18 17 18 18 18 17 19 18 19 20 19 19 19
  798. 19 19 20 19 18 19 20 20 20 23 22 22 21 21 21 22 21 22 22
  799. 23 23 21 19 20 20 18 19 20 23 23 22 23 22 21 22 20 17 18
  800. 19 19 18 14 13 15 16 14 14 13 13 15 13 14 14 14 14 15 17
  801. 17 15 15 15 14 15 15 15 15 15 13 13 12 12 14 15 13 12 11
  802. 12 12 13 15 13 12 12 11 12 12 14 15 15 13 16 19 20 18 22
  803. 25 27 29 35 38 42 40 39 37 35 32 32 31 31 28 27 27 23 26
  804. 26 22 21 23 24 24 24 21 21 20 18 15 13 11 10 11 12 13 10
  805. 5 5 3 0 1 1 0 -2 -3 -4 -4 -4 -6 -7 -6 -4 0 -1 -3 -3 -4
  806. -6 -6 -5 -4 -4 -4 -2 -1 0 3 5 11 13 18 20 18 11 2 -10
  807. -22 -35 -46 -55 -63 -65 -61 -47 -30 -9 12 30 48 70 92 99
  808. 86 44 -14 -81 -143 -187 -216 -236 -248 -256 -259 -255
  809. -247 -235 -220 -203 -184 -160 -134 -110 -84 -69 -51 -39
  810. -28 -21 -12 -4 3 8 11 14 14 16 17 17 17 18 19 21 19 19
  811. 20 20 22 23 24 24 25 25 28 29 30 32 31 29 29 31 30 31 30
  812. 31 31 34 36 35 37 38 40 41 40 39 38 40 42 41 42 42 43 43
  813. 41 42 42 42 45 49 49 50 50 49 51 52 51 54 55 58 58 60 64
  814. 64 64 66 67 70 72 72 75 76 80 82 86 89 91 92 94 97 98
  815. 100 102 101 104 106 108 112 111 114 117 119 119 118 120
  816. 122 123 123 122 123 122 124 122 123 123 125 126 124 125
  817. 123 122 118 113 109 107 102 98 94 92 89 83 80 76 73 69
  818. 66 63 60 56 54 53 49 48 47 41 40 39 36 34 32 30 30 30 31
  819. 29 27 27 27 25 24 24 21 22 21 21 20 21 21 22 20 22 21 21
  820. 20 18 19 21 20 19 21 20 20 20 22 20 20 19 20 20 17 16 17
  821. 18 19 20 21 21 19 20 19 19 19 19 20 20 20 23 22 22 20 21
  822. 22 22 23 24 23 22 20 20 21 19 19 18 18 18 19 16 17 19 20
  823. 19 17 20 21 20 20 19 20 19 17 17 14 16 16 16 15 14 15 15
  824. 14 13 12 13 13 14 15 11 10 9 10 11 12 12 12 11 14 16 16
  825. 13 12 11 13 16 16 19 18 18 18 21 21 24 24 24 26 26 27 27
  826. 28 28 29 28 27 26 25 23 24 22 24 24 23 23 25 25 23 22 22
  827. 24 25 19 19 14 14 14 16 14 16 19 20 23 24 23 21 17 15 15
  828. 16 16 16 16 </digits>
  829. </value>
  830. </sequence>
  831. </component>
  832. </sequenceSet>
  833. </component>
  834. <!--现在, 我们在派生系列上提供了一个注释集 We now provide a single annotation set on the derived series -->
  835. <!--和原来的系列一样, 我们可以提供更多的套件 As with the original series, we could provide more sets -->
  836. <!--在本例中, 我们为派生系列的代表性节拍提供了全局注释 In the example we provide the global annotations for the representative beats of the derivedSeries-->
  837. <subjectOf>
  838. <!--注解集-->
  839. <annotationSet>
  840. <component>
  841. <!--注解-->
  842. <annotation>
  843. <!--P波段-->
  844. <code code="MDC_ECG_WAVC" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  845. <value xsi:type="CE" code="MDC_ECG_WAVC_PWAVE"
  846. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  847. <support>
  848. <supportingROI classCode="ROIBND">
  849. <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
  850. <component>
  851. <boundary>
  852. <!--测量波段发生的时间段-->
  853. <code code="TIME_RELATIVE"
  854. codeSystem="2.16.840.1.113883.5.4"
  855. codeSystemName="ActCode" displayName="Relative Time"/>
  856. <value xsi:type="IVL_PQ">
  857. <low value="286" unit="ms"/>
  858. <high value="388" unit="ms"/>
  859. </value>
  860. </boundary>
  861. </component>
  862. </supportingROI>
  863. </support>
  864. </annotation>
  865. </component>
  866. <component>
  867. <annotation>
  868. <!--QRS波段-->
  869. <code code="MDC_ECG_WAVC" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  870. <value xsi:type="CE" code="MDC_ECG_WAVC_QRSWAVE"
  871. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  872. <support>
  873. <supportingROI classCode="ROIBND">
  874. <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
  875. <component>
  876. <boundary>
  877. <!--测量波段发生的时间段-->
  878. <code code="TIME_RELATIVE"
  879. codeSystem="2.16.840.1.113883.5.4"
  880. codeSystemName="ActCode" displayName="Relative Time"/>
  881. <value xsi:type="IVL_PQ">
  882. <low value="434" unit="ms"/>
  883. <high value="554" unit="ms"/>
  884. </value>
  885. </boundary>
  886. </component>
  887. </supportingROI>
  888. </support>
  889. </annotation>
  890. </component>
  891. <component>
  892. <annotation>
  893. <!--T波段-->
  894. <code code="MDC_ECG_WAVC" codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  895. <value xsi:type="CE" code="MDC_ECG_WAVC_TWAVE"
  896. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  897. <support>
  898. <supportingROI classCode="ROIBND">
  899. <code code="ROIPS" codeSystem="2.16.840.1.113883.5.4" codeSystemName="HL7V3"/>
  900. <component>
  901. <boundary>
  902. <!--测量波段发生的时间-->
  903. <code code="TIME_RELATIVE"
  904. codeSystem="2.16.840.1.113883.5.4"
  905. codeSystemName="ActCode" displayName="Relative Time"/>
  906. <value xsi:type="IVL_PQ">
  907. <high value="854" unit="ms"/>
  908. </value>
  909. </boundary>
  910. </component>
  911. </supportingROI>
  912. </support>
  913. </annotation>
  914. </component>
  915. <component>
  916. <annotation>
  917. <!--P波长度-->
  918. <code code="MDC_ECG_TIME_PD_P"
  919. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  920. <value xsi:type="PQ" value="102" unit="ms"/>
  921. </annotation>
  922. </component>
  923. <component>
  924. <annotation>
  925. <!--PR波长度-->
  926. <code code="MDC_ECG_TIME_PD_PR"
  927. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  928. <value xsi:type="PQ" value="148" unit="ms"/>
  929. </annotation>
  930. </component>
  931. <component>
  932. <annotation>
  933. <!--QRS波长度-->
  934. <code code="MDC_ECG_TIME_PD_QRS"
  935. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  936. <value xsi:type="PQ" value="120" unit="ms"/>
  937. </annotation>
  938. </component>
  939. <component>
  940. <annotation>
  941. <!--QT波长度-->
  942. <code code="MDC_ECG_TIME_PD_QT"
  943. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  944. <value xsi:type="PQ" value="420" unit="ms"/>
  945. </annotation>
  946. </component>
  947. <component>
  948. <annotation>
  949. <!--QTc波长度-->
  950. <code code="MDC_ECG_TIME_PD_QTc"
  951. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  952. <value xsi:type="PQ" value="443" unit="ms"/>
  953. </annotation>
  954. </component>
  955. <component>
  956. <annotation>
  957. <!--P_FRONT波长度-->
  958. <code code="MDC_ECG_ANGLE_P_FRONT"
  959. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  960. <value xsi:type="PQ" value="44" unit="deg"/>
  961. </annotation>
  962. </component>
  963. <component>
  964. <annotation>
  965. <!--QRS_FRONT波长度-->
  966. <code code="MDC_ECG_ANGLE_QRS_FRONT"
  967. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  968. <value xsi:type="PQ" value="-61" unit="deg"/>
  969. </annotation>
  970. </component>
  971. <component>
  972. <annotation>
  973. <!--T_FRONT波长度-->
  974. <code code="MDC_ECG_ANGLE_T_FRONT"
  975. codeSystem="2.16.840.1.113883.6.24" codeSystemName="MDC"/>
  976. <value xsi:type="PQ" value="86" unit="deg"/>
  977. </annotation>
  978. </component>
  979. </annotationSet>
  980. </subjectOf>
  981. </derivedSeries>
  982. </derivation>
  983. </series>
  984. </component>
  985. </AnnotatedECG>

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/165500
推荐阅读
相关标签
  

闽ICP备14008679号