@exini/dicom-streams-js 3.0.10 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/RELEASE-NOTES.md +10 -0
- package/coverage/base.css +224 -0
- package/coverage/block-navigation.js +87 -0
- package/coverage/dicom-streams-js/index.html +116 -0
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +146 -0
- package/coverage/prettify.css +1 -0
- package/coverage/prettify.js +2 -0
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +196 -0
- package/dist/LICENSE +201 -0
- package/dist/README.md +157 -0
- package/{lib → dist/lib}/base.d.ts +0 -1
- package/{lib → dist/lib}/base.js +64 -65
- package/dist/lib/base.js.map +1 -0
- package/{lib → dist/lib}/byte-parser.d.ts +0 -1
- package/dist/lib/byte-parser.js.map +1 -0
- package/{lib → dist/lib}/character-sets.d.ts +0 -1
- package/{lib → dist/lib}/character-sets.js.map +1 -1
- package/{lib → dist/lib}/collect-flow.d.ts +0 -1
- package/{lib → dist/lib}/collect-flow.js +2 -3
- package/dist/lib/collect-flow.js.map +1 -0
- package/{lib → dist/lib}/detour.d.ts +0 -1
- package/dist/lib/detour.js.map +1 -0
- package/{lib → dist/lib}/dicom-elements.d.ts +0 -1
- package/dist/lib/dicom-elements.js.map +1 -0
- package/{lib → dist/lib}/dicom-flow.d.ts +0 -1
- package/{lib → dist/lib}/dicom-flow.js +2 -2
- package/dist/lib/dicom-flow.js.map +1 -0
- package/{lib → dist/lib}/dicom-flows.d.ts +0 -1
- package/{lib → dist/lib}/dicom-flows.js +14 -14
- package/dist/lib/dicom-flows.js.map +1 -0
- package/{lib → dist/lib}/dicom-parts.d.ts +0 -1
- package/dist/lib/dicom-parts.js.map +1 -0
- package/{lib → dist/lib}/element-flows.js +1 -2
- package/dist/lib/element-flows.js.map +1 -0
- package/{lib → dist/lib}/element-sink.d.ts +0 -1
- package/{lib → dist/lib}/element-sink.js +1 -2
- package/dist/lib/element-sink.js.map +1 -0
- package/dist/lib/elements-builder.js.map +1 -0
- package/{lib → dist/lib}/elements.d.ts +0 -1
- package/{lib → dist/lib}/elements.js +2 -2
- package/dist/lib/elements.js.map +1 -0
- package/{lib → dist/lib}/flows.d.ts +0 -1
- package/{lib → dist/lib}/flows.js +8 -9
- package/dist/lib/flows.js.map +1 -0
- package/{lib → dist/lib}/lookup.js +1 -1
- package/dist/lib/lookup.js.map +1 -0
- package/{lib → dist/lib}/modify-flow.d.ts +0 -1
- package/{lib → dist/lib}/modify-flow.js +2 -2
- package/dist/lib/modify-flow.js.map +1 -0
- package/{lib → dist/lib}/parse-flow.js +1 -2
- package/dist/lib/parse-flow.js.map +1 -0
- package/{lib → dist/lib}/parser.d.ts +0 -1
- package/{lib → dist/lib}/parser.js +36 -4
- package/dist/lib/parser.js.map +1 -0
- package/{lib → dist/lib}/parsing.d.ts +0 -1
- package/{lib → dist/lib}/parsing.js +9 -9
- package/dist/lib/parsing.js.map +1 -0
- package/{lib → dist/lib}/sinks.d.ts +0 -2
- package/{lib → dist/lib}/sinks.js +3 -4
- package/dist/lib/sinks.js.map +1 -0
- package/{lib → dist/lib}/sources.d.ts +0 -1
- package/{lib → dist/lib}/sources.js +2 -3
- package/dist/lib/sources.js.map +1 -0
- package/dist/lib/tag-path-like.js.map +1 -0
- package/dist/lib/tag-path.js.map +1 -0
- package/{lib → dist/lib}/tag-to-vr.js +1 -1
- package/dist/lib/tag-to-vr.js.map +1 -0
- package/dist/lib/tag-tree.js.map +1 -0
- package/{lib → dist/lib}/tag.js +448 -448
- package/dist/lib/tag.js.map +1 -0
- package/{lib → dist/lib}/uid-to-name.js +1 -1
- package/dist/lib/uid-to-name.js.map +1 -0
- package/{lib → dist/lib}/uid.js +71 -71
- package/dist/lib/uid.js.map +1 -0
- package/{lib → dist/lib}/value.d.ts +0 -1
- package/{lib → dist/lib}/value.js +2 -2
- package/dist/lib/value.js.map +1 -0
- package/{lib → dist/lib}/vr.js +1 -1
- package/dist/lib/vr.js.map +1 -0
- package/{node → dist/node}/index.js +672 -648
- package/dist/node/index.js.map +1 -0
- package/dist/node/index.min.js +1 -0
- package/dist/package.json +92 -0
- package/{web → dist/web}/index.js +685 -661
- package/dist/web/index.js.map +1 -0
- package/dist/web/index.min.js +2 -0
- package/{web → dist/web}/index.min.js.LICENSE.txt +1 -1
- package/example/data-model.png +0 -0
- package/example/detour-example.js +52 -0
- package/example/image/example-eb.dcm +0 -0
- package/example/image/example-ed.dcm +0 -0
- package/example/image/example-el-delimited.dcm +0 -0
- package/example/image/example-el.dcm +0 -0
- package/example/image/example-il.dcm +0 -0
- package/example/parse-log.js +13 -0
- package/example/parse-modify-log.js +43 -0
- package/example/parse-modify-write.js +40 -0
- package/package.json +11 -11
- package/typings/dicom-character-set/index.d.ts +5 -0
- package/typings/multipipe/index.d.ts +4 -0
- package/lib/base.js.map +0 -1
- package/lib/byte-parser.js.map +0 -1
- package/lib/collect-flow.js.map +0 -1
- package/lib/detour.js.map +0 -1
- package/lib/dicom-elements.js.map +0 -1
- package/lib/dicom-flow.js.map +0 -1
- package/lib/dicom-flows.js.map +0 -1
- package/lib/dicom-parts.js.map +0 -1
- package/lib/element-flows.js.map +0 -1
- package/lib/element-sink.js.map +0 -1
- package/lib/elements-builder.js.map +0 -1
- package/lib/elements.js.map +0 -1
- package/lib/flows.js.map +0 -1
- package/lib/lookup.js.map +0 -1
- package/lib/modify-flow.js.map +0 -1
- package/lib/parse-flow.js.map +0 -1
- package/lib/parser.js.map +0 -1
- package/lib/parsing.js.map +0 -1
- package/lib/sinks.js.map +0 -1
- package/lib/sources.js.map +0 -1
- package/lib/tag-path-like.js.map +0 -1
- package/lib/tag-path.js.map +0 -1
- package/lib/tag-to-vr.js.map +0 -1
- package/lib/tag-tree.js.map +0 -1
- package/lib/tag.js.map +0 -1
- package/lib/uid-to-name.js.map +0 -1
- package/lib/uid.js.map +0 -1
- package/lib/value.js.map +0 -1
- package/lib/vr.js.map +0 -1
- package/node/index.js.map +0 -1
- package/node/index.min.js +0 -1
- package/web/index.js.map +0 -1
- package/web/index.min.js +0 -2
- /package/{lib → dist/lib}/byte-parser.js +0 -0
- /package/{lib → dist/lib}/character-sets.js +0 -0
- /package/{lib → dist/lib}/detour.js +0 -0
- /package/{lib → dist/lib}/dicom-elements.js +0 -0
- /package/{lib → dist/lib}/dicom-parts.js +0 -0
- /package/{lib → dist/lib}/element-flows.d.ts +0 -0
- /package/{lib → dist/lib}/elements-builder.d.ts +0 -0
- /package/{lib → dist/lib}/elements-builder.js +0 -0
- /package/{lib → dist/lib}/index.d.ts +0 -0
- /package/{lib → dist/lib}/index.js +0 -0
- /package/{lib → dist/lib}/index.js.map +0 -0
- /package/{lib → dist/lib}/lookup.d.ts +0 -0
- /package/{lib → dist/lib}/parse-flow.d.ts +0 -0
- /package/{lib → dist/lib}/person-name.d.ts +0 -0
- /package/{lib → dist/lib}/person-name.js +0 -0
- /package/{lib → dist/lib}/person-name.js.map +0 -0
- /package/{lib → dist/lib}/tag-path-like.d.ts +0 -0
- /package/{lib → dist/lib}/tag-path-like.js +0 -0
- /package/{lib → dist/lib}/tag-path.d.ts +0 -0
- /package/{lib → dist/lib}/tag-path.js +0 -0
- /package/{lib → dist/lib}/tag-to-vr.d.ts +0 -0
- /package/{lib → dist/lib}/tag-tree.d.ts +0 -0
- /package/{lib → dist/lib}/tag-tree.js +0 -0
- /package/{lib → dist/lib}/tag.d.ts +0 -0
- /package/{lib → dist/lib}/uid-to-name.d.ts +0 -0
- /package/{lib → dist/lib}/uid.d.ts +0 -0
- /package/{lib → dist/lib}/vr.d.ts +0 -0
|
@@ -5645,18 +5645,6 @@ defineProperties.supportsDescriptors = !!supportsDescriptors;
|
|
|
5645
5645
|
module.exports = defineProperties;
|
|
5646
5646
|
|
|
5647
5647
|
|
|
5648
|
-
/***/ }),
|
|
5649
|
-
|
|
5650
|
-
/***/ "./node_modules/dicom-character-set/dist/dicom-character-set.min.js":
|
|
5651
|
-
/*!**************************************************************************!*\
|
|
5652
|
-
!*** ./node_modules/dicom-character-set/dist/dicom-character-set.min.js ***!
|
|
5653
|
-
\**************************************************************************/
|
|
5654
|
-
/***/ (function(module) {
|
|
5655
|
-
|
|
5656
|
-
/*! dicom-character-set - 1.0.4 - 2021-09-23 | (c) 2018 Radialogica, LLC | https://github.com/radialogica/dicom-character-set */
|
|
5657
|
-
!function(e,n){ true?module.exports=n():0}(this,function(){return function(e){var n={};function t(o){if(n[o])return n[o].exports;var r=n[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,t),r.l=!0,r.exports}return t.m=e,t.c=n,t.d=function(e,n,o){t.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:o})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,n){if(1&n&&(e=t(e)),8&n)return e;if(4&n&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(t.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var r in e)t.d(o,r,function(n){return e[n]}.bind(null,r));return o},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},t.p="",t(t.s=0)}([function(e,n,t){"use strict";t.r(n);var o={codeElement:"G0",escapeSequence:[27,40,66],encoding:"windows-1252",isASCII:!0,bytesPerCodePoint:1},r={"ISO_IR 6":{encoding:"utf-8"},"ISO_IR 100":{encoding:"windows-1252"},"ISO_IR 101":{encoding:"iso-8859-2"},"ISO_IR 109":{encoding:"iso-8859-3"},"ISO_IR 110":{encoding:"iso-8859-4"},"ISO_IR 144":{encoding:"iso-8859-5"},"ISO_IR 127":{encoding:"iso-8859-6"},"ISO_IR 126":{encoding:"iso-8859-7"},"ISO_IR 138":{encoding:"iso-8859-8"},"ISO_IR 148":{encoding:"windows-1254"},"ISO_IR 13":{encoding:"shift-jis"},"ISO_IR 166":{encoding:"tis-620"},"ISO 2022 IR 6":{extension:!0,elements:[o]},"ISO 2022 IR 100":{extension:!0,elements:[o,{codeElement:"G1",escapeSequence:[27,45,65],encoding:"windows-1252",bytesPerCodePoint:1}]},"ISO 2022 IR 101":{extension:!0,elements:[o,{codeElement:"G1",escapeSequence:[27,45,66],encoding:"iso-8859-2",bytesPerCodePoint:1}]},"ISO 2022 IR 109":{extension:!0,elements:[o,{codeElement:"G1",escapeSequence:[27,45,67],encoding:"iso-8859-3",bytesPerCodePoint:1}]},"ISO 2022 IR 110":{extension:!0,elements:[o,{codeElement:"G1",escapeSequence:[27,45,68],encoding:"iso-8859-4",bytesPerCodePoint:1}]},"ISO 2022 IR 144":{extension:!0,elements:[o,{codeElement:"G1",escapeSequence:[27,45,76],encoding:"iso-8859-5",bytesPerCodePoint:1}]},"ISO 2022 IR 127":{extension:!0,elements:[o,{codeElement:"G1",escapeSequence:[27,45,71],encoding:"iso-8859-6",bytesPerCodePoint:1}]},"ISO 2022 IR 126":{extension:!0,elements:[o,{codeElement:"G1",escapeSequence:[27,45,70],encoding:"iso-8859-7",bytesPerCodePoint:1}]},"ISO 2022 IR 138":{extension:!0,elements:[o,{codeElement:"G1",escapeSequence:[27,45,72],encoding:"iso-8859-8",bytesPerCodePoint:1}]},"ISO 2022 IR 148":{extension:!0,elements:[o,{codeElement:"G1",escapeSequence:[27,45,77],encoding:"windows-1254",bytesPerCodePoint:1}]},"ISO 2022 IR 13":{extension:!0,elements:[{codeElement:"G0",escapeSequence:[27,40,74],encoding:"shift-jis",bytesPerCodePoint:1},{codeElement:"G1",escapeSequence:[27,41,73],encoding:"shift-jis",bytesPerCodePoint:1}]},"ISO 2022 IR 166":{extension:!0,elements:[o,{codeElement:"G1",escapeSequence:[27,45,84],encoding:"tis-620",bytesPerCodePoint:1}]},"ISO 2022 IR 87":{extension:!0,multiByte:!0,elements:[{codeElement:"G0",escapeSequence:[27,36,66],encoding:"euc-jp",setHighBit:!0,bytesPerCodePoint:2}]},"ISO 2022 IR 159":{extension:!0,multiByte:!0,elements:[{codeElement:"G0",escapeSequence:[27,36,40,68],encoding:"euc-jp",isJISX0212:!0,bytesPerCodePoint:2}]},"ISO 2022 IR 149":{extension:!0,multiByte:!0,elements:[{codeElement:"G1",escapeSequence:[27,36,41,67],encoding:"euc-kr",bytesPerCodePoint:2}]},"ISO 2022 IR 58":{extension:!0,multiByte:!0,elements:[{codeElement:"G1",escapeSequence:[27,36,41,65],encoding:"gb18030",bytesPerCodePoint:2}]},"ISO_IR 192":{encoding:"utf-8",multiByte:!0},GB18030:{encoding:"gb18030",multiByte:!0},GBK:{encoding:"gbk",multiByte:!0}},i=27,c=10,s=12,u=13,d=9,a=92,f=61,l=94;function I(e){return e.replace(/~/g,"‾").replace(/\\/g,"¥")}function m(e,n,t,o,r){var i=h(n,t,o,r);return e+p(n.encoding,i)}function S(e,n,t,o,r){var i=h(n,t,o,r);return(""===e?Promise.resolve(""):e).then(function(e){return y(n.encoding,i).then(function(n){return e+n})})}function g(e,n,t,o,i){!function(e,n){if(n&&!(n instanceof Uint8Array))throw new Error("bytes must be a Uint8Array");if(e&&"string"!=typeof e)throw new Error("specificCharacterSet must be a string")}(t,o);var I=function(e){var n=e?e.split("\\").map(function(e){return e.trim().toUpperCase()}):[""];""===n[0]&&(n[0]=n.length>1?"ISO 2022 IR 6":"ISO_IR 6");if(n.some(function(e){return void 0===r[e]}))throw new Error("Invalid specific character set specified.");return function(e){for(var n=e.length>1,t=[],o=0;o<e.length;o++){var r=e[o];t.includes(r)||t.push(n?r.replace("ISO_IR","ISO 2022 IR"):r)}return t}(n=function(e){var n=r[e[0]];return n.multiByte&&!n.extension?[e[0]]:e.filter(function(e){return!r[e].multiByte||r[e].extension})}(n))}(t);if(1===I.length&&!I[0].startsWith("ISO 2022"))return e(r[I[0]].encoding,o);var m=i||{};return function(e,n,t,o){var r="";if(!n||0===n.length)return r;var i={G0:e[0].elements.find(function(e){return"G0"===e.codeElement}),G1:e[0].elements.find(function(e){return"G1"===e.codeElement})},c=Object.assign({},i),s=0,u=void 0,d=0;for(;d<n.length;){u||(u=P(n[s],c));var a=b(n,s,u,c,i,t);if((d=a.index)>s&&(r=o(r,u,n,s,d)),s=d,u=a.characterSet,a.escapeSequence){var f=v(n,d,e);c[f.codeElement]=f,s+=f.escapeSequence.length}}return r}(I.map(function(e){return r[e]}),o,function(e){var n=(e||"").trim().toUpperCase(),t=[c,s,u,d];["UT","ST","LT"].includes(n)||t.push(a);"PN"===n&&(t.push(f),t.push(l));return t}(m.vr),n)}function p(e,n){var t=new TextDecoder(e).decode(n);return"shift-jis"===e?I(t):t}function y(e,n){return new Promise(function(t){var o=new FileReader;o.onload="shift-jis"===e?function(){return t(I(o.result))}:function(){return t(o.result)};var r=new Blob([n]);o.readAsText(r,e)})}function b(e,n,t,o,r,c){for(var s=n;s<e.length;s+=t.bytesPerCodePoint){if(e[s]===i)return{escapeSequence:!0,index:s};1===t.bytesPerCodePoint&&c.includes(e[s])&&Object.assign(o,r);var u=P(e[s],o);if(t&&u!==t)return{characterSet:u,index:s}}return{index:e.length}}function P(e,n){return e>127&&n.G1?n.G1:n.G0?n.G0:n.G1&&1===n.G1.bytesPerCodePoint?n.G1:r["ISO 2022 IR 6"].elements[0]}function h(e,n,t,o){var r=void 0;return e.isJISX0212?r=function(e,n,t){var o=t-n;if(o%2!=0)throw new Error("JIS X string with a character not having exactly two bytes!");for(var r=new Uint8Array(o+o/2),i=0,c=n;c<t;c+=2)r[i++]=143,r[i++]=128|e[c],r[i++]=128|e[c+1];return r}(n,t,o):((r=new Uint8Array(o-t)).set(new Uint8Array(n.buffer,n.byteOffset+t,o-t)),e.setHighBit&&function(e){for(var n=0;n<e.length;n++)e[n]|=128}(r)),r}function O(e,n,t){for(var o=0;o<e.length;o++){if(t+o>=n.length)return!1;if(n[t+o]!==e[o])return!1}return!0}function v(e,n,t){for(var o=0;o<t.length;o++)for(var r=t[o],i=0;i<r.elements.length;i++){var c=r.elements[i];if(O(c.escapeSequence,e,n))return c}throw new Error("Unknown escape sequence encountered at byte "+n)}function R(e,n,t){return g(p,m,e,n,t)}function x(e,n,t){return g(y,S,e,n,t)}t.d(n,"convertBytes",function(){return R}),t.d(n,"convertBytesPromise",function(){return x}),t.d(n,"characterSets",function(){return r})}])});
|
|
5658
|
-
//# sourceMappingURL=dicom-character-set.min.js.map
|
|
5659
|
-
|
|
5660
5648
|
/***/ }),
|
|
5661
5649
|
|
|
5662
5650
|
/***/ "./node_modules/duplexer2/index.js":
|
|
@@ -19671,8 +19659,70 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
19671
19659
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
19672
19660
|
};
|
|
19673
19661
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
19674
|
-
exports.
|
|
19675
|
-
exports.
|
|
19662
|
+
exports.defaultCharacterSet = exports.systemZone = exports.sequenceDelimitationBE = exports.sequenceDelimitationLE = exports.itemDelimitationBE = exports.itemDelimitationLE = exports.itemBE = exports.itemLE = exports.emptyBuffer = exports.multiValueDelimiter = exports.zero4Bytes = exports.indeterminateLength = void 0;
|
|
19663
|
+
exports.concat = concat;
|
|
19664
|
+
exports.concatv = concatv;
|
|
19665
|
+
exports.flatten = flatten;
|
|
19666
|
+
exports.appendToArray = appendToArray;
|
|
19667
|
+
exports.prependToArray = prependToArray;
|
|
19668
|
+
exports.concatArrays = concatArrays;
|
|
19669
|
+
exports.hexToDec = hexToDec;
|
|
19670
|
+
exports.toUID = toUID;
|
|
19671
|
+
exports.nameBasedUID = nameBasedUID;
|
|
19672
|
+
exports.randomUID = randomUID;
|
|
19673
|
+
exports.toUInt32 = toUInt32;
|
|
19674
|
+
exports.toInt32 = toInt32;
|
|
19675
|
+
exports.shiftLeftUnsigned = shiftLeftUnsigned;
|
|
19676
|
+
exports.groupNumber = groupNumber;
|
|
19677
|
+
exports.elementNumber = elementNumber;
|
|
19678
|
+
exports.bytesToShortBE = bytesToShortBE;
|
|
19679
|
+
exports.bytesToShortLE = bytesToShortLE;
|
|
19680
|
+
exports.bytesToShort = bytesToShort;
|
|
19681
|
+
exports.bytesToUShortBE = bytesToUShortBE;
|
|
19682
|
+
exports.bytesToUShortLE = bytesToUShortLE;
|
|
19683
|
+
exports.bytesToUShort = bytesToUShort;
|
|
19684
|
+
exports.bytesToVR = bytesToVR;
|
|
19685
|
+
exports.bytesToIntBE = bytesToIntBE;
|
|
19686
|
+
exports.bytesToIntLE = bytesToIntLE;
|
|
19687
|
+
exports.bytesToInt = bytesToInt;
|
|
19688
|
+
exports.bytesToUIntBE = bytesToUIntBE;
|
|
19689
|
+
exports.bytesToUIntLE = bytesToUIntLE;
|
|
19690
|
+
exports.bytesToUInt = bytesToUInt;
|
|
19691
|
+
exports.bytesToTagBE = bytesToTagBE;
|
|
19692
|
+
exports.bytesToTagLE = bytesToTagLE;
|
|
19693
|
+
exports.bytesToTag = bytesToTag;
|
|
19694
|
+
exports.bytesToFloatBE = bytesToFloatBE;
|
|
19695
|
+
exports.bytesToFloatLE = bytesToFloatLE;
|
|
19696
|
+
exports.bytesToFloat = bytesToFloat;
|
|
19697
|
+
exports.bytesToDoubleBE = bytesToDoubleBE;
|
|
19698
|
+
exports.bytesToDoubleLE = bytesToDoubleLE;
|
|
19699
|
+
exports.bytesToDouble = bytesToDouble;
|
|
19700
|
+
exports.intToBytesBE = intToBytesBE;
|
|
19701
|
+
exports.intToBytesLE = intToBytesLE;
|
|
19702
|
+
exports.shortToBytesBE = shortToBytesBE;
|
|
19703
|
+
exports.shortToBytesLE = shortToBytesLE;
|
|
19704
|
+
exports.shortToBytes = shortToBytes;
|
|
19705
|
+
exports.intToBytes = intToBytes;
|
|
19706
|
+
exports.tagToBytesBE = tagToBytesBE;
|
|
19707
|
+
exports.tagToBytesLE = tagToBytesLE;
|
|
19708
|
+
exports.tagToBytes = tagToBytes;
|
|
19709
|
+
exports.floatToBytes = floatToBytes;
|
|
19710
|
+
exports.doubleToBytes = doubleToBytes;
|
|
19711
|
+
exports.tagToString = tagToString;
|
|
19712
|
+
exports.trim = trim;
|
|
19713
|
+
exports.padToEvenLength = padToEvenLength;
|
|
19714
|
+
exports.item = item;
|
|
19715
|
+
exports.itemDelimitation = itemDelimitation;
|
|
19716
|
+
exports.sequenceDelimitation = sequenceDelimitation;
|
|
19717
|
+
exports.sequenceDelimitationNonZeroLength = sequenceDelimitationNonZeroLength;
|
|
19718
|
+
exports.isFileMetaInformation = isFileMetaInformation;
|
|
19719
|
+
exports.isGroupLength = isGroupLength;
|
|
19720
|
+
exports.isDeflated = isDeflated;
|
|
19721
|
+
exports.createUID = createUID;
|
|
19722
|
+
exports.createUIDFromRoot = createUIDFromRoot;
|
|
19723
|
+
exports.createNameBasedUID = createNameBasedUID;
|
|
19724
|
+
exports.createNameBasedUIDFromRoot = createNameBasedUIDFromRoot;
|
|
19725
|
+
exports.pipe = pipe;
|
|
19676
19726
|
const js_joda_1 = __webpack_require__(/*! js-joda */ "js-joda");
|
|
19677
19727
|
const multipipe_1 = __importDefault(__webpack_require__(/*! multipipe */ "./node_modules/multipipe/index.js"));
|
|
19678
19728
|
const uuid_1 = __webpack_require__(/*! uuid */ "./node_modules/uuid/dist/commonjs-browser/index.js");
|
|
@@ -19686,33 +19736,27 @@ exports.zero4Bytes = Buffer.from([0, 0, 0, 0]);
|
|
|
19686
19736
|
function concat(a, b) {
|
|
19687
19737
|
return Buffer.concat([a, b], a.length + b.length);
|
|
19688
19738
|
}
|
|
19689
|
-
exports.concat = concat;
|
|
19690
19739
|
function concatv(...buffers) {
|
|
19691
19740
|
return Buffer.concat(buffers);
|
|
19692
19741
|
}
|
|
19693
|
-
exports.concatv = concatv;
|
|
19694
19742
|
function flatten(array) {
|
|
19695
19743
|
return [].concat(...array);
|
|
19696
19744
|
}
|
|
19697
|
-
exports.flatten = flatten;
|
|
19698
19745
|
function appendToArray(object, array) {
|
|
19699
19746
|
const newArray = array.slice();
|
|
19700
19747
|
newArray.push(object);
|
|
19701
19748
|
return newArray;
|
|
19702
19749
|
}
|
|
19703
|
-
exports.appendToArray = appendToArray;
|
|
19704
19750
|
function prependToArray(object, array) {
|
|
19705
19751
|
const newArray = array.slice();
|
|
19706
19752
|
newArray.unshift(object);
|
|
19707
19753
|
return newArray;
|
|
19708
19754
|
}
|
|
19709
|
-
exports.prependToArray = prependToArray;
|
|
19710
19755
|
function concatArrays(array1, array2) {
|
|
19711
19756
|
const newArray = array1.slice();
|
|
19712
19757
|
array2.forEach((i) => newArray.push(i));
|
|
19713
19758
|
return newArray;
|
|
19714
19759
|
}
|
|
19715
|
-
exports.concatArrays = concatArrays;
|
|
19716
19760
|
const uidRoot = '2.25';
|
|
19717
19761
|
const uuidNamespace = 'd181d67b-0a1c-45bf-8616-070f1bb0d0cf';
|
|
19718
19762
|
function hexToDec(s) {
|
|
@@ -19732,167 +19776,127 @@ function hexToDec(s) {
|
|
|
19732
19776
|
}
|
|
19733
19777
|
return digits.reverse().join('');
|
|
19734
19778
|
}
|
|
19735
|
-
exports.hexToDec = hexToDec;
|
|
19736
19779
|
function toUID(root, uuid) {
|
|
19737
19780
|
const hexStr = uuid.replace(/-/g, '');
|
|
19738
19781
|
const docStr = hexToDec(hexStr).replace(/^0+/, '');
|
|
19739
19782
|
return (root + '.' + docStr).substring(0, 64);
|
|
19740
19783
|
}
|
|
19741
|
-
exports.toUID = toUID;
|
|
19742
19784
|
function nameBasedUID(name, root) {
|
|
19743
19785
|
return toUID(root, (0, uuid_1.v5)(name, uuidNamespace));
|
|
19744
19786
|
}
|
|
19745
|
-
exports.nameBasedUID = nameBasedUID;
|
|
19746
19787
|
function randomUID(root) {
|
|
19747
19788
|
return toUID(root, (0, uuid_1.v4)());
|
|
19748
19789
|
}
|
|
19749
|
-
exports.randomUID = randomUID;
|
|
19750
19790
|
exports.multiValueDelimiter = '\\';
|
|
19751
19791
|
exports.emptyBuffer = Buffer.alloc(0);
|
|
19752
19792
|
function toUInt32(num) {
|
|
19753
19793
|
return num >>> 0;
|
|
19754
19794
|
}
|
|
19755
|
-
exports.toUInt32 = toUInt32;
|
|
19756
19795
|
function toInt32(num) {
|
|
19757
19796
|
return num >> 0;
|
|
19758
19797
|
}
|
|
19759
|
-
exports.toInt32 = toInt32;
|
|
19760
19798
|
function shiftLeftUnsigned(num, n) {
|
|
19761
19799
|
return toUInt32(num << n);
|
|
19762
19800
|
}
|
|
19763
|
-
exports.shiftLeftUnsigned = shiftLeftUnsigned;
|
|
19764
19801
|
function groupNumber(tag) {
|
|
19765
19802
|
return tag >>> 16;
|
|
19766
19803
|
}
|
|
19767
|
-
exports.groupNumber = groupNumber;
|
|
19768
19804
|
function elementNumber(tag) {
|
|
19769
19805
|
return tag & 0xffff;
|
|
19770
19806
|
}
|
|
19771
|
-
exports.elementNumber = elementNumber;
|
|
19772
19807
|
function bytesToShortBE(bytes) {
|
|
19773
19808
|
return bytes.readInt16BE(0);
|
|
19774
19809
|
}
|
|
19775
|
-
exports.bytesToShortBE = bytesToShortBE;
|
|
19776
19810
|
function bytesToShortLE(bytes) {
|
|
19777
19811
|
return bytes.readInt16LE(0);
|
|
19778
19812
|
}
|
|
19779
|
-
exports.bytesToShortLE = bytesToShortLE;
|
|
19780
19813
|
function bytesToShort(bytes, bigEndian = false) {
|
|
19781
19814
|
return bigEndian ? bytesToShortBE(bytes) : bytesToShortLE(bytes);
|
|
19782
19815
|
}
|
|
19783
|
-
exports.bytesToShort = bytesToShort;
|
|
19784
19816
|
function bytesToUShortBE(bytes) {
|
|
19785
19817
|
return bytes.readUInt16BE(0);
|
|
19786
19818
|
}
|
|
19787
|
-
exports.bytesToUShortBE = bytesToUShortBE;
|
|
19788
19819
|
function bytesToUShortLE(bytes) {
|
|
19789
19820
|
return bytes.readUInt16LE(0);
|
|
19790
19821
|
}
|
|
19791
|
-
exports.bytesToUShortLE = bytesToUShortLE;
|
|
19792
19822
|
function bytesToUShort(bytes, bigEndian = false) {
|
|
19793
19823
|
return bigEndian ? bytesToUShortBE(bytes) : bytesToUShortLE(bytes);
|
|
19794
19824
|
}
|
|
19795
|
-
exports.bytesToUShort = bytesToUShort;
|
|
19796
19825
|
function bytesToVR(bytes) {
|
|
19797
19826
|
return bytesToUShortBE(bytes);
|
|
19798
19827
|
}
|
|
19799
|
-
exports.bytesToVR = bytesToVR;
|
|
19800
19828
|
function bytesToIntBE(bytes) {
|
|
19801
19829
|
return bytes.readInt32BE(0);
|
|
19802
19830
|
}
|
|
19803
|
-
exports.bytesToIntBE = bytesToIntBE;
|
|
19804
19831
|
function bytesToIntLE(bytes) {
|
|
19805
19832
|
return bytes.readInt32LE(0);
|
|
19806
19833
|
}
|
|
19807
|
-
exports.bytesToIntLE = bytesToIntLE;
|
|
19808
19834
|
function bytesToInt(bytes, bigEndian = false) {
|
|
19809
19835
|
return bigEndian ? bytesToIntBE(bytes) : bytesToIntLE(bytes);
|
|
19810
19836
|
}
|
|
19811
|
-
exports.bytesToInt = bytesToInt;
|
|
19812
19837
|
function bytesToUIntBE(bytes) {
|
|
19813
19838
|
return bytes.readUInt32BE(0);
|
|
19814
19839
|
}
|
|
19815
|
-
exports.bytesToUIntBE = bytesToUIntBE;
|
|
19816
19840
|
function bytesToUIntLE(bytes) {
|
|
19817
19841
|
return bytes.readUInt32LE(0);
|
|
19818
19842
|
}
|
|
19819
|
-
exports.bytesToUIntLE = bytesToUIntLE;
|
|
19820
19843
|
function bytesToUInt(bytes, bigEndian = false) {
|
|
19821
19844
|
return bigEndian ? bytesToUIntBE(bytes) : bytesToUIntLE(bytes);
|
|
19822
19845
|
}
|
|
19823
|
-
exports.bytesToUInt = bytesToUInt;
|
|
19824
19846
|
function bytesToTagBE(bytes) {
|
|
19825
19847
|
return bytesToUIntBE(bytes);
|
|
19826
19848
|
}
|
|
19827
|
-
exports.bytesToTagBE = bytesToTagBE;
|
|
19828
19849
|
function bytesToTagLE(bytes) {
|
|
19829
19850
|
return shiftLeftUnsigned(bytes.readUInt16LE(0), 16) + bytes.readUInt16LE(2);
|
|
19830
19851
|
}
|
|
19831
|
-
exports.bytesToTagLE = bytesToTagLE;
|
|
19832
19852
|
function bytesToTag(bytes, bigEndian = false) {
|
|
19833
19853
|
return bigEndian ? bytesToTagBE(bytes) : bytesToTagLE(bytes);
|
|
19834
19854
|
}
|
|
19835
|
-
exports.bytesToTag = bytesToTag;
|
|
19836
19855
|
function bytesToFloatBE(bytes) {
|
|
19837
19856
|
return bytes.readFloatBE(0);
|
|
19838
19857
|
}
|
|
19839
|
-
exports.bytesToFloatBE = bytesToFloatBE;
|
|
19840
19858
|
function bytesToFloatLE(bytes) {
|
|
19841
19859
|
return bytes.readFloatLE(0);
|
|
19842
19860
|
}
|
|
19843
|
-
exports.bytesToFloatLE = bytesToFloatLE;
|
|
19844
19861
|
function bytesToFloat(bytes, bigEndian = false) {
|
|
19845
19862
|
return bigEndian ? bytesToFloatBE(bytes) : bytesToFloatLE(bytes);
|
|
19846
19863
|
}
|
|
19847
|
-
exports.bytesToFloat = bytesToFloat;
|
|
19848
19864
|
function bytesToDoubleBE(bytes) {
|
|
19849
19865
|
return bytes.readDoubleBE(0);
|
|
19850
19866
|
}
|
|
19851
|
-
exports.bytesToDoubleBE = bytesToDoubleBE;
|
|
19852
19867
|
function bytesToDoubleLE(bytes) {
|
|
19853
19868
|
return bytes.readDoubleLE(0);
|
|
19854
19869
|
}
|
|
19855
|
-
exports.bytesToDoubleLE = bytesToDoubleLE;
|
|
19856
19870
|
function bytesToDouble(bytes, bigEndian = false) {
|
|
19857
19871
|
return bigEndian ? bytesToDoubleBE(bytes) : bytesToDoubleLE(bytes);
|
|
19858
19872
|
}
|
|
19859
|
-
exports.bytesToDouble = bytesToDouble;
|
|
19860
19873
|
function intToBytesBE(i) {
|
|
19861
19874
|
return Buffer.from([i >> 24, i >> 16, i >> 8, i]);
|
|
19862
19875
|
}
|
|
19863
|
-
exports.intToBytesBE = intToBytesBE;
|
|
19864
19876
|
function intToBytesLE(i) {
|
|
19865
19877
|
return Buffer.from([i, i >> 8, i >> 16, i >> 24]);
|
|
19866
19878
|
}
|
|
19867
|
-
exports.intToBytesLE = intToBytesLE;
|
|
19868
19879
|
function shortToBytesBE(i) {
|
|
19869
19880
|
return Buffer.from([i >> 8, i]);
|
|
19870
19881
|
}
|
|
19871
|
-
exports.shortToBytesBE = shortToBytesBE;
|
|
19872
19882
|
function shortToBytesLE(i) {
|
|
19873
19883
|
return Buffer.from([i, i >> 8]);
|
|
19874
19884
|
}
|
|
19875
|
-
exports.shortToBytesLE = shortToBytesLE;
|
|
19876
19885
|
function shortToBytes(i, bigEndian = false) {
|
|
19877
19886
|
return bigEndian ? shortToBytesBE(i) : shortToBytesLE(i);
|
|
19878
19887
|
}
|
|
19879
|
-
exports.shortToBytes = shortToBytes;
|
|
19880
19888
|
function intToBytes(i, bigEndian = false) {
|
|
19881
19889
|
return bigEndian ? intToBytesBE(i) : intToBytesLE(i);
|
|
19882
19890
|
}
|
|
19883
|
-
exports.intToBytes = intToBytes;
|
|
19884
19891
|
function tagToBytesBE(tag) {
|
|
19885
19892
|
return intToBytesBE(tag);
|
|
19886
19893
|
}
|
|
19887
|
-
exports.tagToBytesBE = tagToBytesBE;
|
|
19888
19894
|
function tagToBytesLE(tag) {
|
|
19889
19895
|
return Buffer.from([tag >> 16, tag >> 24, tag, tag >> 8]);
|
|
19890
19896
|
}
|
|
19891
|
-
exports.tagToBytesLE = tagToBytesLE;
|
|
19892
19897
|
function tagToBytes(tag, bigEndian = false) {
|
|
19893
19898
|
return bigEndian ? tagToBytesBE(tag) : tagToBytesLE(tag);
|
|
19894
19899
|
}
|
|
19895
|
-
exports.tagToBytes = tagToBytes;
|
|
19896
19900
|
function floatToBytes(f, bigEndian = false) {
|
|
19897
19901
|
const buf = Buffer.allocUnsafe(4);
|
|
19898
19902
|
if (bigEndian) {
|
|
@@ -19903,7 +19907,6 @@ function floatToBytes(f, bigEndian = false) {
|
|
|
19903
19907
|
}
|
|
19904
19908
|
return buf;
|
|
19905
19909
|
}
|
|
19906
|
-
exports.floatToBytes = floatToBytes;
|
|
19907
19910
|
function doubleToBytes(f, bigEndian = false) {
|
|
19908
19911
|
const buf = Buffer.allocUnsafe(8);
|
|
19909
19912
|
if (bigEndian) {
|
|
@@ -19914,21 +19917,17 @@ function doubleToBytes(f, bigEndian = false) {
|
|
|
19914
19917
|
}
|
|
19915
19918
|
return buf;
|
|
19916
19919
|
}
|
|
19917
|
-
exports.doubleToBytes = doubleToBytes;
|
|
19918
19920
|
function tagToString(tag) {
|
|
19919
19921
|
const hex = ('00000000' + tag.toString(16)).slice(-8);
|
|
19920
19922
|
return '(' + hex.slice(0, 4) + ',' + hex.slice(4, 8) + ')';
|
|
19921
19923
|
}
|
|
19922
|
-
exports.tagToString = tagToString;
|
|
19923
19924
|
function trim(s) {
|
|
19924
19925
|
return s.replace(/^[\x00-\x20]*/g, '').replace(/[\x00-\x20]*$/g, '');
|
|
19925
19926
|
}
|
|
19926
|
-
exports.trim = trim;
|
|
19927
19927
|
function padToEvenLength(bytes, tagOrVR) {
|
|
19928
19928
|
const vr = isNaN(tagOrVR) ? tagOrVR : lookup_1.Lookup.vrOf(tagOrVR);
|
|
19929
19929
|
return (bytes.length & 1) !== 0 ? concat(bytes, Buffer.from([vr.paddingByte])) : bytes;
|
|
19930
19930
|
}
|
|
19931
|
-
exports.padToEvenLength = padToEvenLength;
|
|
19932
19931
|
exports.itemLE = concat(tagToBytesLE(tag_1.Tag.Item), intToBytesLE(exports.indeterminateLength));
|
|
19933
19932
|
exports.itemBE = concat(tagToBytesBE(tag_1.Tag.Item), intToBytesBE(exports.indeterminateLength));
|
|
19934
19933
|
function item(length = exports.indeterminateLength, bigEndian = false) {
|
|
@@ -19938,57 +19937,45 @@ function item(length = exports.indeterminateLength, bigEndian = false) {
|
|
|
19938
19937
|
: exports.itemLE
|
|
19939
19938
|
: concat(tagToBytes(tag_1.Tag.Item, bigEndian), intToBytes(length, bigEndian));
|
|
19940
19939
|
}
|
|
19941
|
-
exports.item = item;
|
|
19942
19940
|
exports.itemDelimitationLE = concat(tagToBytesLE(tag_1.Tag.ItemDelimitationItem), exports.zero4Bytes);
|
|
19943
19941
|
exports.itemDelimitationBE = concat(tagToBytesBE(tag_1.Tag.ItemDelimitationItem), exports.zero4Bytes);
|
|
19944
19942
|
function itemDelimitation(bigEndian = false) {
|
|
19945
19943
|
return bigEndian ? exports.itemDelimitationBE : exports.itemDelimitationLE;
|
|
19946
19944
|
}
|
|
19947
|
-
exports.itemDelimitation = itemDelimitation;
|
|
19948
19945
|
exports.sequenceDelimitationLE = concat(tagToBytesLE(tag_1.Tag.SequenceDelimitationItem), exports.zero4Bytes);
|
|
19949
19946
|
exports.sequenceDelimitationBE = concat(tagToBytesBE(tag_1.Tag.SequenceDelimitationItem), exports.zero4Bytes);
|
|
19950
19947
|
function sequenceDelimitation(bigEndian = false) {
|
|
19951
19948
|
return bigEndian ? exports.sequenceDelimitationBE : exports.sequenceDelimitationLE;
|
|
19952
19949
|
}
|
|
19953
|
-
exports.sequenceDelimitation = sequenceDelimitation;
|
|
19954
19950
|
function sequenceDelimitationNonZeroLength(bigEndian = false) {
|
|
19955
19951
|
return concatv(tagToBytes(tag_1.Tag.SequenceDelimitationItem, bigEndian), intToBytes(0x00000010, bigEndian));
|
|
19956
19952
|
}
|
|
19957
|
-
exports.sequenceDelimitationNonZeroLength = sequenceDelimitationNonZeroLength;
|
|
19958
19953
|
function isFileMetaInformation(tag) {
|
|
19959
19954
|
return (tag & 0xffff0000) === 0x00020000;
|
|
19960
19955
|
}
|
|
19961
|
-
exports.isFileMetaInformation = isFileMetaInformation;
|
|
19962
19956
|
function isGroupLength(tag) {
|
|
19963
19957
|
return elementNumber(tag) === 0;
|
|
19964
19958
|
}
|
|
19965
|
-
exports.isGroupLength = isGroupLength;
|
|
19966
19959
|
function isDeflated(transferSyntaxUid) {
|
|
19967
19960
|
return transferSyntaxUid === uid_1.UID.DeflatedExplicitVRLittleEndian || transferSyntaxUid === uid_1.UID.JPIPReferencedDeflate;
|
|
19968
19961
|
}
|
|
19969
|
-
exports.isDeflated = isDeflated;
|
|
19970
19962
|
exports.systemZone = js_joda_1.ZoneId.SYSTEM;
|
|
19971
19963
|
exports.defaultCharacterSet = CS.defaultCharacterSet;
|
|
19972
19964
|
function createUID() {
|
|
19973
19965
|
return randomUID(uidRoot);
|
|
19974
19966
|
}
|
|
19975
|
-
exports.createUID = createUID;
|
|
19976
19967
|
function createUIDFromRoot(root) {
|
|
19977
19968
|
return randomUID(root);
|
|
19978
19969
|
}
|
|
19979
|
-
exports.createUIDFromRoot = createUIDFromRoot;
|
|
19980
19970
|
function createNameBasedUID(name) {
|
|
19981
19971
|
return nameBasedUID(name, uidRoot);
|
|
19982
19972
|
}
|
|
19983
|
-
exports.createNameBasedUID = createNameBasedUID;
|
|
19984
19973
|
function createNameBasedUIDFromRoot(name, root) {
|
|
19985
19974
|
return nameBasedUID(name, root);
|
|
19986
19975
|
}
|
|
19987
|
-
exports.createNameBasedUIDFromRoot = createNameBasedUIDFromRoot;
|
|
19988
19976
|
function pipe(...streams) {
|
|
19989
19977
|
return (0, multipipe_1.default)(streams);
|
|
19990
19978
|
}
|
|
19991
|
-
exports.pipe = pipe;
|
|
19992
19979
|
|
|
19993
19980
|
|
|
19994
19981
|
/***/ }),
|
|
@@ -20179,7 +20166,7 @@ exports.ByteParser = ByteParser;
|
|
|
20179
20166
|
|
|
20180
20167
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
20181
20168
|
exports.defaultCharacterSet = exports.CharacterSets = void 0;
|
|
20182
|
-
const dicom_character_set_1 = __webpack_require__(/*! dicom-character-set */ "./node_modules/dicom-character-set/dist/dicom-character-set.min.
|
|
20169
|
+
const dicom_character_set_1 = __webpack_require__(/*! dicom-character-set */ "./node_modules/dicom-character-set/dist/dicom-character-set.min.cjs");
|
|
20183
20170
|
const vr_1 = __webpack_require__(/*! ./vr */ "./src/vr.ts");
|
|
20184
20171
|
class CharacterSets {
|
|
20185
20172
|
static isVrAffectedBySpecificCharacterSet(vr) {
|
|
@@ -20230,7 +20217,8 @@ exports.defaultCharacterSet = CharacterSets.defaultOnly();
|
|
|
20230
20217
|
"use strict";
|
|
20231
20218
|
|
|
20232
20219
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
20233
|
-
exports.
|
|
20220
|
+
exports.collectFlow = collectFlow;
|
|
20221
|
+
exports.collectFromTagPathsFlow = collectFromTagPathsFlow;
|
|
20234
20222
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
20235
20223
|
const dicom_flow_1 = __webpack_require__(/*! ./dicom-flow */ "./src/dicom-flow.ts");
|
|
20236
20224
|
const dicom_elements_1 = __webpack_require__(/*! ./dicom-elements */ "./src/dicom-elements.ts");
|
|
@@ -20336,14 +20324,12 @@ function collectFlow(tagCondition, stopCondition, label, maxBufferSize = 1000000
|
|
|
20336
20324
|
}
|
|
20337
20325
|
})());
|
|
20338
20326
|
}
|
|
20339
|
-
exports.collectFlow = collectFlow;
|
|
20340
20327
|
function collectFromTagPathsFlow(allowlist, label, maxBufferSize) {
|
|
20341
20328
|
const maxTag = allowlist.length > 0 ? Math.max(...allowlist.map((t) => t.head().tag())) : 0;
|
|
20342
20329
|
const tagCondition = (currentPath) => allowlist.find((t) => t.hasTrunk(currentPath) || t.isTrunkOf(currentPath)) !== undefined;
|
|
20343
20330
|
const stopCondition = (tagPath) => allowlist.length === 0 || (tagPath.isRoot() && tagPath.tag() > maxTag);
|
|
20344
20331
|
return collectFlow(tagCondition, stopCondition, label, maxBufferSize);
|
|
20345
20332
|
}
|
|
20346
|
-
exports.collectFromTagPathsFlow = collectFromTagPathsFlow;
|
|
20347
20333
|
|
|
20348
20334
|
|
|
20349
20335
|
/***/ }),
|
|
@@ -20825,7 +20811,8 @@ exports.Fragments = Fragments;
|
|
|
20825
20811
|
"use strict";
|
|
20826
20812
|
|
|
20827
20813
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
20828
|
-
exports.GroupLengthWarnings = exports.TagPathTracking = exports.InSequence = exports.GuaranteedDelimitationEvents = exports.ItemDelimitationPartMarker = exports.SequenceDelimitationPartMarker = exports.GuaranteedValueEvent = exports.ValueChunkMarker = exports.InFragments = exports.EndEvent = exports.dicomEndMarker = exports.StartEvent = exports.dicomStartMarker = exports.DeferToPartFlow = exports.IdentityFlow = exports.DicomFlow =
|
|
20814
|
+
exports.GroupLengthWarnings = exports.TagPathTracking = exports.InSequence = exports.GuaranteedDelimitationEvents = exports.ItemDelimitationPartMarker = exports.SequenceDelimitationPartMarker = exports.GuaranteedValueEvent = exports.ValueChunkMarker = exports.InFragments = exports.EndEvent = exports.dicomEndMarker = exports.StartEvent = exports.dicomStartMarker = exports.DeferToPartFlow = exports.IdentityFlow = exports.DicomFlow = void 0;
|
|
20815
|
+
exports.createFlow = createFlow;
|
|
20829
20816
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
20830
20817
|
const flows_1 = __webpack_require__(/*! ./flows */ "./src/flows.ts");
|
|
20831
20818
|
const dicom_parts_1 = __webpack_require__(/*! ./dicom-parts */ "./src/dicom-parts.ts");
|
|
@@ -20834,7 +20821,6 @@ const tag_path_1 = __webpack_require__(/*! ./tag-path */ "./src/tag-path.ts");
|
|
|
20834
20821
|
function createFlow(flow) {
|
|
20835
20822
|
return (0, base_1.pipe)(flow.baseFlow(), (0, flows_1.flatMapFlow)(flow.handlePart.bind(flow)));
|
|
20836
20823
|
}
|
|
20837
|
-
exports.createFlow = createFlow;
|
|
20838
20824
|
class DicomFlow {
|
|
20839
20825
|
baseFlow() {
|
|
20840
20826
|
return (0, flows_1.identityFlow)(true);
|
|
@@ -21244,7 +21230,20 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
21244
21230
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
21245
21231
|
};
|
|
21246
21232
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
21247
|
-
exports.
|
|
21233
|
+
exports.ValidationContext = void 0;
|
|
21234
|
+
exports.toBytesFlow = toBytesFlow;
|
|
21235
|
+
exports.stopTagFlow = stopTagFlow;
|
|
21236
|
+
exports.tagFilter = tagFilter;
|
|
21237
|
+
exports.allowFilter = allowFilter;
|
|
21238
|
+
exports.denyFilter = denyFilter;
|
|
21239
|
+
exports.groupLengthDiscardFilter = groupLengthDiscardFilter;
|
|
21240
|
+
exports.fmiDiscardFilter = fmiDiscardFilter;
|
|
21241
|
+
exports.headerFilter = headerFilter;
|
|
21242
|
+
exports.validateContextFlow = validateContextFlow;
|
|
21243
|
+
exports.fmiGroupLengthFlow = fmiGroupLengthFlow;
|
|
21244
|
+
exports.toIndeterminateLengthSequences = toIndeterminateLengthSequences;
|
|
21245
|
+
exports.toUtf8Flow = toUtf8Flow;
|
|
21246
|
+
exports.deflateDatasetFlow = deflateDatasetFlow;
|
|
21248
21247
|
const stream_1 = __webpack_require__(/*! stream */ "./node_modules/stream-browserify/index.js");
|
|
21249
21248
|
const zlib_1 = __importDefault(__webpack_require__(/*! zlib */ "./node_modules/browserify-zlib/lib/index.js"));
|
|
21250
21249
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
@@ -21269,7 +21268,6 @@ function toBytesFlow() {
|
|
|
21269
21268
|
},
|
|
21270
21269
|
});
|
|
21271
21270
|
}
|
|
21272
|
-
exports.toBytesFlow = toBytesFlow;
|
|
21273
21271
|
function stopTagFlow(tag) {
|
|
21274
21272
|
let endReached = false;
|
|
21275
21273
|
return (0, base_1.pipe)((0, dicom_flow_1.createFlow)(new (class extends (0, dicom_flow_1.InSequence)((0, dicom_flow_1.GuaranteedDelimitationEvents)((0, dicom_flow_1.InFragments)(dicom_flow_1.IdentityFlow))) {
|
|
@@ -21293,7 +21291,6 @@ function stopTagFlow(tag) {
|
|
|
21293
21291
|
},
|
|
21294
21292
|
}));
|
|
21295
21293
|
}
|
|
21296
|
-
exports.stopTagFlow = stopTagFlow;
|
|
21297
21294
|
function tagFilter(keepCondition, defaultCondition = () => true, logGroupLengthWarnings = false) {
|
|
21298
21295
|
return (0, dicom_flow_1.createFlow)(new (class extends (0, dicom_flow_1.TagPathTracking)((0, dicom_flow_1.GuaranteedDelimitationEvents)((0, dicom_flow_1.GuaranteedValueEvent)((0, dicom_flow_1.GroupLengthWarnings)((0, dicom_flow_1.InFragments)(dicom_flow_1.DeferToPartFlow))))) {
|
|
21299
21296
|
constructor() {
|
|
@@ -21307,23 +21304,18 @@ function tagFilter(keepCondition, defaultCondition = () => true, logGroupLengthW
|
|
|
21307
21304
|
}
|
|
21308
21305
|
})());
|
|
21309
21306
|
}
|
|
21310
|
-
exports.tagFilter = tagFilter;
|
|
21311
21307
|
function allowFilter(allowlist, defaultCondition, logGroupLengthWarnings) {
|
|
21312
21308
|
return tagFilter((currentPath) => allowlist.some((t) => t.hasTrunk(currentPath) || t.isTrunkOf(currentPath)), defaultCondition, logGroupLengthWarnings);
|
|
21313
21309
|
}
|
|
21314
|
-
exports.allowFilter = allowFilter;
|
|
21315
21310
|
function denyFilter(denylist, defaultCondition, logGroupLengthWarnings) {
|
|
21316
21311
|
return tagFilter((currentPath) => !denylist.some((t) => t.isTrunkOf(currentPath)), defaultCondition, logGroupLengthWarnings);
|
|
21317
21312
|
}
|
|
21318
|
-
exports.denyFilter = denyFilter;
|
|
21319
21313
|
function groupLengthDiscardFilter() {
|
|
21320
21314
|
return tagFilter((tagPath) => !(0, base_1.isGroupLength)(tagPath.tag()) || (0, base_1.isFileMetaInformation)(tagPath.tag()));
|
|
21321
21315
|
}
|
|
21322
|
-
exports.groupLengthDiscardFilter = groupLengthDiscardFilter;
|
|
21323
21316
|
function fmiDiscardFilter() {
|
|
21324
21317
|
return tagFilter((tagPath) => !(0, base_1.isFileMetaInformation)(tagPath.tag()), () => false);
|
|
21325
21318
|
}
|
|
21326
|
-
exports.fmiDiscardFilter = fmiDiscardFilter;
|
|
21327
21319
|
function headerFilter(keepCondition, logGroupLengthWarnings = false) {
|
|
21328
21320
|
return (0, dicom_flow_1.createFlow)(new (class extends (0, dicom_flow_1.GroupLengthWarnings)((0, dicom_flow_1.InFragments)(dicom_flow_1.DeferToPartFlow)) {
|
|
21329
21321
|
constructor() {
|
|
@@ -21344,7 +21336,6 @@ function headerFilter(keepCondition, logGroupLengthWarnings = false) {
|
|
|
21344
21336
|
}
|
|
21345
21337
|
})());
|
|
21346
21338
|
}
|
|
21347
|
-
exports.headerFilter = headerFilter;
|
|
21348
21339
|
class ValidationContext {
|
|
21349
21340
|
constructor(sopClassUID, transferSyntaxUID) {
|
|
21350
21341
|
this.sopClassUID = sopClassUID;
|
|
@@ -21386,7 +21377,6 @@ function validateContextFlow(contexts) {
|
|
|
21386
21377
|
}
|
|
21387
21378
|
})()));
|
|
21388
21379
|
}
|
|
21389
|
-
exports.validateContextFlow = validateContextFlow;
|
|
21390
21380
|
function fmiGroupLengthFlow() {
|
|
21391
21381
|
return (0, base_1.pipe)((0, collect_flow_1.collectFlow)((tagPath) => tagPath.isRoot() && (0, base_1.isFileMetaInformation)(tagPath.tag()), (tagPath) => !(0, base_1.isFileMetaInformation)(tagPath.tag()), 'fmigrouplength'), tagFilter((tagPath) => !(0, base_1.isFileMetaInformation)(tagPath.tag()), () => true, false), (0, dicom_flow_1.createFlow)(new (class extends (0, dicom_flow_1.EndEvent)(dicom_flow_1.DeferToPartFlow) {
|
|
21392
21382
|
constructor() {
|
|
@@ -21423,7 +21413,6 @@ function fmiGroupLengthFlow() {
|
|
|
21423
21413
|
}
|
|
21424
21414
|
})()));
|
|
21425
21415
|
}
|
|
21426
|
-
exports.fmiGroupLengthFlow = fmiGroupLengthFlow;
|
|
21427
21416
|
function toIndeterminateLengthSequences() {
|
|
21428
21417
|
return (0, dicom_flow_1.createFlow)(new (class extends (0, dicom_flow_1.GuaranteedDelimitationEvents)((0, dicom_flow_1.InFragments)(dicom_flow_1.IdentityFlow)) {
|
|
21429
21418
|
constructor() {
|
|
@@ -21462,7 +21451,6 @@ function toIndeterminateLengthSequences() {
|
|
|
21462
21451
|
}
|
|
21463
21452
|
})());
|
|
21464
21453
|
}
|
|
21465
|
-
exports.toIndeterminateLengthSequences = toIndeterminateLengthSequences;
|
|
21466
21454
|
function toUtf8Flow() {
|
|
21467
21455
|
return (0, base_1.pipe)((0, collect_flow_1.collectFromTagPathsFlow)([tag_tree_1.TagTree.fromTag(tag_1.Tag.SpecificCharacterSet)], 'toutf8'), (0, modify_flow_1.modifyFlow)([], [new modify_flow_1.TagInsertion(tag_path_1.TagPath.fromTag(tag_1.Tag.SpecificCharacterSet), () => Buffer.from('ISO_IR 192'))]), (0, dicom_flow_1.createFlow)(new (class extends (0, dicom_flow_1.GroupLengthWarnings)((0, dicom_flow_1.InFragments)(dicom_flow_1.IdentityFlow)) {
|
|
21468
21456
|
constructor() {
|
|
@@ -21513,7 +21501,6 @@ function toUtf8Flow() {
|
|
|
21513
21501
|
}
|
|
21514
21502
|
})()));
|
|
21515
21503
|
}
|
|
21516
|
-
exports.toUtf8Flow = toUtf8Flow;
|
|
21517
21504
|
class DeflateDatasetFlow extends detour_1.Detour {
|
|
21518
21505
|
constructor() {
|
|
21519
21506
|
super({ objectMode: true });
|
|
@@ -21555,7 +21542,6 @@ class DeflateDatasetFlow extends detour_1.Detour {
|
|
|
21555
21542
|
function deflateDatasetFlow() {
|
|
21556
21543
|
return new DeflateDatasetFlow();
|
|
21557
21544
|
}
|
|
21558
|
-
exports.deflateDatasetFlow = deflateDatasetFlow;
|
|
21559
21545
|
|
|
21560
21546
|
|
|
21561
21547
|
/***/ }),
|
|
@@ -21778,7 +21764,7 @@ exports.ElementsPart = ElementsPart;
|
|
|
21778
21764
|
"use strict";
|
|
21779
21765
|
|
|
21780
21766
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
21781
|
-
exports.elementFlow =
|
|
21767
|
+
exports.elementFlow = elementFlow;
|
|
21782
21768
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
21783
21769
|
const dicom_flow_1 = __webpack_require__(/*! ./dicom-flow */ "./src/dicom-flow.ts");
|
|
21784
21770
|
const dicom_elements_1 = __webpack_require__(/*! ./dicom-elements */ "./src/dicom-elements.ts");
|
|
@@ -21846,7 +21832,6 @@ function elementFlow() {
|
|
|
21846
21832
|
}
|
|
21847
21833
|
})());
|
|
21848
21834
|
}
|
|
21849
|
-
exports.elementFlow = elementFlow;
|
|
21850
21835
|
|
|
21851
21836
|
|
|
21852
21837
|
/***/ }),
|
|
@@ -21860,7 +21845,7 @@ exports.elementFlow = elementFlow;
|
|
|
21860
21845
|
"use strict";
|
|
21861
21846
|
|
|
21862
21847
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
21863
|
-
exports.elementSink =
|
|
21848
|
+
exports.elementSink = elementSink;
|
|
21864
21849
|
const stream_1 = __webpack_require__(/*! stream */ "./node_modules/stream-browserify/index.js");
|
|
21865
21850
|
const elements_builder_1 = __webpack_require__(/*! ./elements-builder */ "./src/elements-builder.ts");
|
|
21866
21851
|
function elementSink(callback) {
|
|
@@ -21882,7 +21867,6 @@ function elementSink(callback) {
|
|
|
21882
21867
|
});
|
|
21883
21868
|
return sink;
|
|
21884
21869
|
}
|
|
21885
|
-
exports.elementSink = elementSink;
|
|
21886
21870
|
|
|
21887
21871
|
|
|
21888
21872
|
/***/ }),
|
|
@@ -22111,7 +22095,8 @@ exports.ElementsBuilder = ElementsBuilder;
|
|
|
22111
22095
|
"use strict";
|
|
22112
22096
|
|
|
22113
22097
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
22114
|
-
exports.Elements =
|
|
22098
|
+
exports.Elements = void 0;
|
|
22099
|
+
exports.parseZoneOffset = parseZoneOffset;
|
|
22115
22100
|
const js_joda_1 = __webpack_require__(/*! js-joda */ "js-joda");
|
|
22116
22101
|
const dicom_elements_1 = __webpack_require__(/*! ./dicom-elements */ "./src/dicom-elements.ts");
|
|
22117
22102
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
@@ -22132,7 +22117,6 @@ function parseZoneOffset(s) {
|
|
|
22132
22117
|
return undefined;
|
|
22133
22118
|
}
|
|
22134
22119
|
}
|
|
22135
|
-
exports.parseZoneOffset = parseZoneOffset;
|
|
22136
22120
|
class Elements {
|
|
22137
22121
|
static empty(characterSets = base_1.defaultCharacterSet, zoneOffset = base_1.systemZone) {
|
|
22138
22122
|
return new Elements(characterSets, zoneOffset, []);
|
|
@@ -22745,7 +22729,14 @@ exports.Elements = Elements;
|
|
|
22745
22729
|
"use strict";
|
|
22746
22730
|
|
|
22747
22731
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
22748
|
-
exports.
|
|
22732
|
+
exports.identityFlow = identityFlow;
|
|
22733
|
+
exports.printFlow = printFlow;
|
|
22734
|
+
exports.prependFlow = prependFlow;
|
|
22735
|
+
exports.appendFlow = appendFlow;
|
|
22736
|
+
exports.objectToStringFlow = objectToStringFlow;
|
|
22737
|
+
exports.mapFlow = mapFlow;
|
|
22738
|
+
exports.filterFlow = filterFlow;
|
|
22739
|
+
exports.flatMapFlow = flatMapFlow;
|
|
22749
22740
|
const stream_1 = __webpack_require__(/*! stream */ "./node_modules/stream-browserify/index.js");
|
|
22750
22741
|
function identityFlow(objectMode = false) {
|
|
22751
22742
|
return new stream_1.Transform({
|
|
@@ -22756,7 +22747,6 @@ function identityFlow(objectMode = false) {
|
|
|
22756
22747
|
},
|
|
22757
22748
|
});
|
|
22758
22749
|
}
|
|
22759
|
-
exports.identityFlow = identityFlow;
|
|
22760
22750
|
function printFlow(objectMode = false) {
|
|
22761
22751
|
return new stream_1.Transform({
|
|
22762
22752
|
objectMode,
|
|
@@ -22767,7 +22757,6 @@ function printFlow(objectMode = false) {
|
|
|
22767
22757
|
},
|
|
22768
22758
|
});
|
|
22769
22759
|
}
|
|
22770
|
-
exports.printFlow = printFlow;
|
|
22771
22760
|
function prependFlow(prependChunk, objectMode = false) {
|
|
22772
22761
|
let hasEmitted = false;
|
|
22773
22762
|
return new stream_1.Transform({
|
|
@@ -22782,7 +22771,6 @@ function prependFlow(prependChunk, objectMode = false) {
|
|
|
22782
22771
|
},
|
|
22783
22772
|
});
|
|
22784
22773
|
}
|
|
22785
|
-
exports.prependFlow = prependFlow;
|
|
22786
22774
|
function appendFlow(appendChunk, objectMode = false) {
|
|
22787
22775
|
return new stream_1.Transform({
|
|
22788
22776
|
objectMode,
|
|
@@ -22795,7 +22783,6 @@ function appendFlow(appendChunk, objectMode = false) {
|
|
|
22795
22783
|
},
|
|
22796
22784
|
});
|
|
22797
22785
|
}
|
|
22798
|
-
exports.appendFlow = appendFlow;
|
|
22799
22786
|
function objectToStringFlow(toStringFunction) {
|
|
22800
22787
|
return new stream_1.Transform({
|
|
22801
22788
|
writableObjectMode: true,
|
|
@@ -22805,7 +22792,6 @@ function objectToStringFlow(toStringFunction) {
|
|
|
22805
22792
|
},
|
|
22806
22793
|
});
|
|
22807
22794
|
}
|
|
22808
|
-
exports.objectToStringFlow = objectToStringFlow;
|
|
22809
22795
|
function mapFlow(f) {
|
|
22810
22796
|
return new stream_1.Transform({
|
|
22811
22797
|
objectMode: true,
|
|
@@ -22820,7 +22806,6 @@ function mapFlow(f) {
|
|
|
22820
22806
|
},
|
|
22821
22807
|
});
|
|
22822
22808
|
}
|
|
22823
|
-
exports.mapFlow = mapFlow;
|
|
22824
22809
|
function filterFlow(f) {
|
|
22825
22810
|
return new stream_1.Transform({
|
|
22826
22811
|
objectMode: true,
|
|
@@ -22837,7 +22822,6 @@ function filterFlow(f) {
|
|
|
22837
22822
|
},
|
|
22838
22823
|
});
|
|
22839
22824
|
}
|
|
22840
|
-
exports.filterFlow = filterFlow;
|
|
22841
22825
|
function flatMapFlow(toChunks) {
|
|
22842
22826
|
return new stream_1.Transform({
|
|
22843
22827
|
objectMode: true,
|
|
@@ -22854,7 +22838,6 @@ function flatMapFlow(toChunks) {
|
|
|
22854
22838
|
},
|
|
22855
22839
|
});
|
|
22856
22840
|
}
|
|
22857
|
-
exports.flatMapFlow = flatMapFlow;
|
|
22858
22841
|
|
|
22859
22842
|
|
|
22860
22843
|
/***/ }),
|
|
@@ -22960,8 +22943,8 @@ class Lookup {
|
|
|
22960
22943
|
return uid_to_name_1.UIDToName.nameOf(uid);
|
|
22961
22944
|
}
|
|
22962
22945
|
}
|
|
22963
|
-
Lookup.keywords = Object.keys(tag_1.Tag);
|
|
22964
22946
|
exports.Lookup = Lookup;
|
|
22947
|
+
Lookup.keywords = Object.keys(tag_1.Tag);
|
|
22965
22948
|
|
|
22966
22949
|
|
|
22967
22950
|
/***/ }),
|
|
@@ -22975,7 +22958,8 @@ exports.Lookup = Lookup;
|
|
|
22975
22958
|
"use strict";
|
|
22976
22959
|
|
|
22977
22960
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
22978
|
-
exports.
|
|
22961
|
+
exports.TagModificationsPart = exports.TagInsertion = exports.TagModification = void 0;
|
|
22962
|
+
exports.modifyFlow = modifyFlow;
|
|
22979
22963
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
22980
22964
|
const dicom_flow_1 = __webpack_require__(/*! ./dicom-flow */ "./src/dicom-flow.ts");
|
|
22981
22965
|
const lookup_1 = __webpack_require__(/*! ./lookup */ "./src/lookup.ts");
|
|
@@ -23143,7 +23127,6 @@ function modifyFlow(modifications = [], insertions = [], logGroupLengthWarnings
|
|
|
23143
23127
|
}
|
|
23144
23128
|
})());
|
|
23145
23129
|
}
|
|
23146
|
-
exports.modifyFlow = modifyFlow;
|
|
23147
23130
|
|
|
23148
23131
|
|
|
23149
23132
|
/***/ }),
|
|
@@ -23160,7 +23143,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
23160
23143
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
23161
23144
|
};
|
|
23162
23145
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
23163
|
-
exports.parseFlow =
|
|
23146
|
+
exports.parseFlow = parseFlow;
|
|
23164
23147
|
const zlib_1 = __importDefault(__webpack_require__(/*! zlib */ "./node_modules/browserify-zlib/lib/index.js"));
|
|
23165
23148
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
23166
23149
|
const byte_parser_1 = __webpack_require__(/*! ./byte-parser */ "./src/byte-parser.ts");
|
|
@@ -23502,7 +23485,6 @@ class ParseFlow extends detour_1.Detour {
|
|
|
23502
23485
|
function parseFlow(chunkSize, inflate, bufferBytes) {
|
|
23503
23486
|
return new ParseFlow(chunkSize, inflate, bufferBytes);
|
|
23504
23487
|
}
|
|
23505
|
-
exports.parseFlow = parseFlow;
|
|
23506
23488
|
|
|
23507
23489
|
|
|
23508
23490
|
/***/ }),
|
|
@@ -23653,11 +23635,39 @@ class InFmiAttribute extends DicomParseStep {
|
|
|
23653
23635
|
}
|
|
23654
23636
|
})();
|
|
23655
23637
|
}
|
|
23656
|
-
|
|
23638
|
+
return new InDeflated(new AttributeState(true, bigEndian, explicitVR, inflater), this.stop);
|
|
23657
23639
|
}
|
|
23658
23640
|
return new InAttribute(new AttributeState(true, bigEndian, explicitVR, inflater), this.stop);
|
|
23659
23641
|
}
|
|
23660
23642
|
}
|
|
23643
|
+
/**
|
|
23644
|
+
* Some implementations of zlib, like the one used in browserify-zlib, can only inflate the complete array of deflated bytes. Therefore
|
|
23645
|
+
* the parse method of this class will accumulate bytes and attempt inflate on parser.result() or when marked as done.
|
|
23646
|
+
*/
|
|
23647
|
+
class InDeflated extends DicomParseStep {
|
|
23648
|
+
constructor(state, stop) {
|
|
23649
|
+
state.inflater;
|
|
23650
|
+
super(state, stop);
|
|
23651
|
+
this.bufferedData = base_1.emptyBuffer;
|
|
23652
|
+
}
|
|
23653
|
+
inflate() {
|
|
23654
|
+
return this.state.inflater.inflate(this.bufferedData);
|
|
23655
|
+
}
|
|
23656
|
+
bufferSize() {
|
|
23657
|
+
return this.bufferedData.length;
|
|
23658
|
+
}
|
|
23659
|
+
parse(reader) {
|
|
23660
|
+
const done = !reader.hasRemaining();
|
|
23661
|
+
this.bufferedData = (0, base_1.concat)(this.bufferedData, reader.take(reader.remainingSize()));
|
|
23662
|
+
if (done) {
|
|
23663
|
+
reader.setInput(this.state.inflater.inflate(this.bufferedData));
|
|
23664
|
+
return new byte_parser_1.ParseResult(undefined, new InAttribute(this.state, this.stop));
|
|
23665
|
+
}
|
|
23666
|
+
else {
|
|
23667
|
+
return new byte_parser_1.ParseResult(undefined, this);
|
|
23668
|
+
}
|
|
23669
|
+
}
|
|
23670
|
+
}
|
|
23661
23671
|
class InAttribute extends DicomParseStep {
|
|
23662
23672
|
constructor(state, stop) {
|
|
23663
23673
|
super(state, stop);
|
|
@@ -23750,9 +23760,6 @@ class Parser {
|
|
|
23750
23760
|
*/
|
|
23751
23761
|
parse(chunk) {
|
|
23752
23762
|
const step = this.byteParser.current instanceof DicomParseStep ? this.byteParser.current : undefined;
|
|
23753
|
-
if (step && step.state && step.state.inflater) {
|
|
23754
|
-
chunk = step.state.inflater.inflate(chunk);
|
|
23755
|
-
}
|
|
23756
23763
|
this.byteParser.parse(chunk);
|
|
23757
23764
|
}
|
|
23758
23765
|
/**
|
|
@@ -23765,6 +23772,13 @@ class Parser {
|
|
|
23765
23772
|
* Get the current elements as represented by the builder
|
|
23766
23773
|
*/
|
|
23767
23774
|
result() {
|
|
23775
|
+
if (this.byteParser.current instanceof InDeflated) {
|
|
23776
|
+
const inDeflatedStep = this.byteParser.current;
|
|
23777
|
+
this.byteParser.startWith(new InAttribute(inDeflatedStep.state, inDeflatedStep.stop));
|
|
23778
|
+
const buff = inDeflatedStep.inflate();
|
|
23779
|
+
this.byteParser.parse(buff);
|
|
23780
|
+
this.byteParser.isCompleted = true;
|
|
23781
|
+
}
|
|
23768
23782
|
return this.builder.build();
|
|
23769
23783
|
}
|
|
23770
23784
|
/**
|
|
@@ -23800,7 +23814,15 @@ exports.Parser = Parser;
|
|
|
23800
23814
|
"use strict";
|
|
23801
23815
|
|
|
23802
23816
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
23803
|
-
exports.
|
|
23817
|
+
exports.AttributeInfo = exports.TagVr = exports.HeaderInfo = exports.dicomPreambleLength = void 0;
|
|
23818
|
+
exports.isDICM = isDICM;
|
|
23819
|
+
exports.tryReadHeader = tryReadHeader;
|
|
23820
|
+
exports.headerInfo = headerInfo;
|
|
23821
|
+
exports.isPreamble = isPreamble;
|
|
23822
|
+
exports.isSpecial = isSpecial;
|
|
23823
|
+
exports.readTagVr = readTagVr;
|
|
23824
|
+
exports.readHeader = readHeader;
|
|
23825
|
+
exports.warnIfOdd = warnIfOdd;
|
|
23804
23826
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
23805
23827
|
const lookup_1 = __webpack_require__(/*! ./lookup */ "./src/lookup.ts");
|
|
23806
23828
|
const vr_1 = __webpack_require__(/*! ./vr */ "./src/vr.ts");
|
|
@@ -23808,7 +23830,6 @@ exports.dicomPreambleLength = 132;
|
|
|
23808
23830
|
function isDICM(bytes) {
|
|
23809
23831
|
return bytes[0] === 68 && bytes[1] === 73 && bytes[2] === 67 && bytes[3] === 77;
|
|
23810
23832
|
}
|
|
23811
|
-
exports.isDICM = isDICM;
|
|
23812
23833
|
class HeaderInfo {
|
|
23813
23834
|
constructor(bigEndian, explicitVR, hasFmi) {
|
|
23814
23835
|
this.bigEndian = bigEndian;
|
|
@@ -23821,7 +23842,6 @@ function tryReadHeader(data) {
|
|
|
23821
23842
|
const info = headerInfo(data, false);
|
|
23822
23843
|
return info === undefined ? headerInfo(data, true) : info;
|
|
23823
23844
|
}
|
|
23824
|
-
exports.tryReadHeader = tryReadHeader;
|
|
23825
23845
|
function headerInfo(data, assumeBigEndian) {
|
|
23826
23846
|
const tag = (0, base_1.bytesToTag)(data, assumeBigEndian);
|
|
23827
23847
|
const vr = lookup_1.Lookup.vrOf(tag);
|
|
@@ -23849,11 +23869,9 @@ function headerInfo(data, assumeBigEndian) {
|
|
|
23849
23869
|
}
|
|
23850
23870
|
return undefined;
|
|
23851
23871
|
}
|
|
23852
|
-
exports.headerInfo = headerInfo;
|
|
23853
23872
|
function isPreamble(data) {
|
|
23854
23873
|
return data.length >= exports.dicomPreambleLength && isDICM(data.slice(exports.dicomPreambleLength - 4, exports.dicomPreambleLength));
|
|
23855
23874
|
}
|
|
23856
|
-
exports.isPreamble = isPreamble;
|
|
23857
23875
|
class TagVr {
|
|
23858
23876
|
constructor(tag, vr) {
|
|
23859
23877
|
this.tag = tag;
|
|
@@ -23864,7 +23882,6 @@ exports.TagVr = TagVr;
|
|
|
23864
23882
|
function isSpecial(tag) {
|
|
23865
23883
|
return tag === 0xfffee000 || tag === 0xfffee00d || tag === 0xfffee0dd;
|
|
23866
23884
|
}
|
|
23867
|
-
exports.isSpecial = isSpecial;
|
|
23868
23885
|
function readTagVr(data, bigEndian, explicitVr) {
|
|
23869
23886
|
const tag = (0, base_1.bytesToTag)(data, bigEndian);
|
|
23870
23887
|
if (isSpecial(tag)) {
|
|
@@ -23875,7 +23892,6 @@ function readTagVr(data, bigEndian, explicitVr) {
|
|
|
23875
23892
|
}
|
|
23876
23893
|
return new TagVr(tag, lookup_1.Lookup.vrOf(tag));
|
|
23877
23894
|
}
|
|
23878
|
-
exports.readTagVr = readTagVr;
|
|
23879
23895
|
class AttributeInfo {
|
|
23880
23896
|
constructor(tag, vr, headerLength, valueLength) {
|
|
23881
23897
|
this.tag = tag;
|
|
@@ -23898,13 +23914,11 @@ function readHeader(reader, state) {
|
|
|
23898
23914
|
}
|
|
23899
23915
|
return new AttributeInfo(tagVr.tag, tagVr.vr, 8, (0, base_1.bytesToUInt)(tagVrBytes.slice(4), state.bigEndian));
|
|
23900
23916
|
}
|
|
23901
|
-
exports.readHeader = readHeader;
|
|
23902
23917
|
function warnIfOdd(tag, vr, valueLength) {
|
|
23903
23918
|
if (valueLength % 2 > 0 && valueLength != base_1.indeterminateLength && vr != null && vr != vr_1.VR.SQ) {
|
|
23904
23919
|
console.warn(`Element ${(0, base_1.tagToString)(tag)} has odd length`);
|
|
23905
23920
|
}
|
|
23906
23921
|
}
|
|
23907
|
-
exports.warnIfOdd = warnIfOdd;
|
|
23908
23922
|
|
|
23909
23923
|
|
|
23910
23924
|
/***/ }),
|
|
@@ -23971,7 +23985,9 @@ exports.PersonName = PersonName;
|
|
|
23971
23985
|
"use strict";
|
|
23972
23986
|
|
|
23973
23987
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
23974
|
-
exports.
|
|
23988
|
+
exports.byteSink = byteSink;
|
|
23989
|
+
exports.ignoreSink = ignoreSink;
|
|
23990
|
+
exports.arraySink = arraySink;
|
|
23975
23991
|
const stream_1 = __webpack_require__(/*! stream */ "./node_modules/stream-browserify/index.js");
|
|
23976
23992
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
23977
23993
|
function byteSink(callback) {
|
|
@@ -23987,7 +24003,6 @@ function byteSink(callback) {
|
|
|
23987
24003
|
});
|
|
23988
24004
|
return sink;
|
|
23989
24005
|
}
|
|
23990
|
-
exports.byteSink = byteSink;
|
|
23991
24006
|
function ignoreSink(objectMode = false) {
|
|
23992
24007
|
return new stream_1.Writable({
|
|
23993
24008
|
objectMode,
|
|
@@ -23996,7 +24011,6 @@ function ignoreSink(objectMode = false) {
|
|
|
23996
24011
|
},
|
|
23997
24012
|
});
|
|
23998
24013
|
}
|
|
23999
|
-
exports.ignoreSink = ignoreSink;
|
|
24000
24014
|
function arraySink(arrayCallback) {
|
|
24001
24015
|
const array = [];
|
|
24002
24016
|
const sink = new stream_1.Writable({
|
|
@@ -24009,7 +24023,6 @@ function arraySink(arrayCallback) {
|
|
|
24009
24023
|
sink.once('finish', () => arrayCallback(array));
|
|
24010
24024
|
return sink;
|
|
24011
24025
|
}
|
|
24012
|
-
exports.arraySink = arraySink;
|
|
24013
24026
|
|
|
24014
24027
|
|
|
24015
24028
|
/***/ }),
|
|
@@ -24023,7 +24036,8 @@ exports.arraySink = arraySink;
|
|
|
24023
24036
|
"use strict";
|
|
24024
24037
|
|
|
24025
24038
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
24026
|
-
exports.
|
|
24039
|
+
exports.singleSource = singleSource;
|
|
24040
|
+
exports.arraySource = arraySource;
|
|
24027
24041
|
const stream_1 = __webpack_require__(/*! stream */ "./node_modules/stream-browserify/index.js");
|
|
24028
24042
|
function singleSource(element, objectMode = false) {
|
|
24029
24043
|
return new stream_1.Readable({
|
|
@@ -24034,7 +24048,6 @@ function singleSource(element, objectMode = false) {
|
|
|
24034
24048
|
},
|
|
24035
24049
|
});
|
|
24036
24050
|
}
|
|
24037
|
-
exports.singleSource = singleSource;
|
|
24038
24051
|
function arraySource(array, objectMode = false) {
|
|
24039
24052
|
let pos = 0;
|
|
24040
24053
|
return new stream_1.Readable({
|
|
@@ -24054,7 +24067,6 @@ function arraySource(array, objectMode = false) {
|
|
|
24054
24067
|
},
|
|
24055
24068
|
});
|
|
24056
24069
|
}
|
|
24057
|
-
exports.arraySource = arraySource;
|
|
24058
24070
|
|
|
24059
24071
|
|
|
24060
24072
|
/***/ }),
|
|
@@ -24448,6 +24460,7 @@ class TagToVR {
|
|
|
24448
24460
|
return key in TagToVR.dict ? TagToVR.dict[key] : vr_1.VR.UN;
|
|
24449
24461
|
}
|
|
24450
24462
|
}
|
|
24463
|
+
exports.TagToVR = TagToVR;
|
|
24451
24464
|
TagToVR.dict = {
|
|
24452
24465
|
'0': vr_1.VR.UL,
|
|
24453
24466
|
'2': vr_1.VR.UI,
|
|
@@ -28749,7 +28762,6 @@ TagToVR.dict = {
|
|
|
28749
28762
|
fffafffa: vr_1.VR.SQ,
|
|
28750
28763
|
fffcfffc: vr_1.VR.OB,
|
|
28751
28764
|
};
|
|
28752
|
-
exports.TagToVR = TagToVR;
|
|
28753
28765
|
|
|
28754
28766
|
|
|
28755
28767
|
/***/ }),
|
|
@@ -29205,18 +29217,18 @@ exports.Tag = {
|
|
|
29205
29217
|
DirectoryRecordType: 0x00041430,
|
|
29206
29218
|
PrivateRecordUID: 0x00041432,
|
|
29207
29219
|
ReferencedFileID: 0x00041500,
|
|
29208
|
-
MRDRDirectoryRecordOffset: 0x00041504,
|
|
29220
|
+
MRDRDirectoryRecordOffset: 0x00041504, // retired
|
|
29209
29221
|
ReferencedSOPClassUIDInFile: 0x00041510,
|
|
29210
29222
|
ReferencedSOPInstanceUIDInFile: 0x00041511,
|
|
29211
29223
|
ReferencedTransferSyntaxUIDInFile: 0x00041512,
|
|
29212
29224
|
ReferencedRelatedGeneralSOPClassUIDInFile: 0x0004151a,
|
|
29213
|
-
NumberOfReferences: 0x00041600,
|
|
29225
|
+
NumberOfReferences: 0x00041600, // retired
|
|
29214
29226
|
// data elements
|
|
29215
|
-
LengthToEnd: 0x00080001,
|
|
29227
|
+
LengthToEnd: 0x00080001, // retired
|
|
29216
29228
|
SpecificCharacterSet: 0x00080005,
|
|
29217
29229
|
LanguageCodeSequence: 0x00080006,
|
|
29218
29230
|
ImageType: 0x00080008,
|
|
29219
|
-
RecognitionCode: 0x00080010,
|
|
29231
|
+
RecognitionCode: 0x00080010, // retired
|
|
29220
29232
|
InstanceCreationDate: 0x00080012,
|
|
29221
29233
|
InstanceCreationTime: 0x00080013,
|
|
29222
29234
|
InstanceCreatorUID: 0x00080014,
|
|
@@ -29229,18 +29241,18 @@ exports.Tag = {
|
|
|
29229
29241
|
SeriesDate: 0x00080021,
|
|
29230
29242
|
AcquisitionDate: 0x00080022,
|
|
29231
29243
|
ContentDate: 0x00080023,
|
|
29232
|
-
OverlayDate: 0x00080024,
|
|
29233
|
-
CurveDate: 0x00080025,
|
|
29244
|
+
OverlayDate: 0x00080024, // retired
|
|
29245
|
+
CurveDate: 0x00080025, // retired
|
|
29234
29246
|
AcquisitionDateTime: 0x0008002a,
|
|
29235
29247
|
StudyTime: 0x00080030,
|
|
29236
29248
|
SeriesTime: 0x00080031,
|
|
29237
29249
|
AcquisitionTime: 0x00080032,
|
|
29238
29250
|
ContentTime: 0x00080033,
|
|
29239
|
-
OverlayTime: 0x00080034,
|
|
29240
|
-
CurveTime: 0x00080035,
|
|
29241
|
-
DataSetType: 0x00080040,
|
|
29242
|
-
DataSetSubtype: 0x00080041,
|
|
29243
|
-
NuclearMedicineSeriesType: 0x00080042,
|
|
29251
|
+
OverlayTime: 0x00080034, // retired
|
|
29252
|
+
CurveTime: 0x00080035, // retired
|
|
29253
|
+
DataSetType: 0x00080040, // retired
|
|
29254
|
+
DataSetSubtype: 0x00080041, // retired
|
|
29255
|
+
NuclearMedicineSeriesType: 0x00080042, // retired
|
|
29244
29256
|
AccessionNumber: 0x00080050,
|
|
29245
29257
|
IssuerOfAccessionNumberSequence: 0x00080051,
|
|
29246
29258
|
QueryRetrieveLevel: 0x00080052,
|
|
@@ -29315,7 +29327,7 @@ exports.Tag = {
|
|
|
29315
29327
|
PrivateDataElementDescription: 0x0008030e,
|
|
29316
29328
|
PrivateDataElementEncoding: 0x0008030f,
|
|
29317
29329
|
PrivateDataElementDefinitionSequence: 0x00080310,
|
|
29318
|
-
NetworkID: 0x00081000,
|
|
29330
|
+
NetworkID: 0x00081000, // retired
|
|
29319
29331
|
StationName: 0x00081010,
|
|
29320
29332
|
StudyDescription: 0x00081030,
|
|
29321
29333
|
ProcedureCodeSequence: 0x00081032,
|
|
@@ -29333,17 +29345,17 @@ exports.Tag = {
|
|
|
29333
29345
|
AdmittingDiagnosesDescription: 0x00081080,
|
|
29334
29346
|
AdmittingDiagnosesCodeSequence: 0x00081084,
|
|
29335
29347
|
ManufacturerModelName: 0x00081090,
|
|
29336
|
-
ReferencedResultsSequence: 0x00081100,
|
|
29348
|
+
ReferencedResultsSequence: 0x00081100, // retired
|
|
29337
29349
|
ReferencedStudySequence: 0x00081110,
|
|
29338
29350
|
ReferencedPerformedProcedureStepSequence: 0x00081111,
|
|
29339
29351
|
ReferencedSeriesSequence: 0x00081115,
|
|
29340
29352
|
ReferencedPatientSequence: 0x00081120,
|
|
29341
29353
|
ReferencedVisitSequence: 0x00081125,
|
|
29342
|
-
ReferencedOverlaySequence: 0x00081130,
|
|
29354
|
+
ReferencedOverlaySequence: 0x00081130, // retired
|
|
29343
29355
|
ReferencedStereometricInstanceSequence: 0x00081134,
|
|
29344
29356
|
ReferencedWaveformSequence: 0x0008113a,
|
|
29345
29357
|
ReferencedImageSequence: 0x00081140,
|
|
29346
|
-
ReferencedCurveSequence: 0x00081145,
|
|
29358
|
+
ReferencedCurveSequence: 0x00081145, // retired
|
|
29347
29359
|
ReferencedInstanceSequence: 0x0008114a,
|
|
29348
29360
|
ReferencedRealWorldValueMappingInstanceSequence: 0x0008114b,
|
|
29349
29361
|
ReferencedSOPClassUID: 0x00081150,
|
|
@@ -29365,7 +29377,7 @@ exports.Tag = {
|
|
|
29365
29377
|
OtherFailuresSequence: 0x0008119a,
|
|
29366
29378
|
StudiesContainingOtherReferencedInstancesSequence: 0x00081200,
|
|
29367
29379
|
RelatedSeriesSequence: 0x00081250,
|
|
29368
|
-
LossyImageCompressionRetired: 0x00082110,
|
|
29380
|
+
LossyImageCompressionRetired: 0x00082110, // retired
|
|
29369
29381
|
DerivationDescription: 0x00082111,
|
|
29370
29382
|
SourceImageSequence: 0x00082112,
|
|
29371
29383
|
StageName: 0x00082120,
|
|
@@ -29383,32 +29395,32 @@ exports.Tag = {
|
|
|
29383
29395
|
StartTrim: 0x00082142,
|
|
29384
29396
|
StopTrim: 0x00082143,
|
|
29385
29397
|
RecommendedDisplayFrameRate: 0x00082144,
|
|
29386
|
-
TransducerPosition: 0x00082200,
|
|
29387
|
-
TransducerOrientation: 0x00082204,
|
|
29388
|
-
AnatomicStructure: 0x00082208,
|
|
29398
|
+
TransducerPosition: 0x00082200, // retired
|
|
29399
|
+
TransducerOrientation: 0x00082204, // retired
|
|
29400
|
+
AnatomicStructure: 0x00082208, // retired
|
|
29389
29401
|
AnatomicRegionSequence: 0x00082218,
|
|
29390
29402
|
AnatomicRegionModifierSequence: 0x00082220,
|
|
29391
29403
|
PrimaryAnatomicStructureSequence: 0x00082228,
|
|
29392
|
-
AnatomicStructureSpaceOrRegionSequence: 0x00082229,
|
|
29404
|
+
AnatomicStructureSpaceOrRegionSequence: 0x00082229, // retired
|
|
29393
29405
|
PrimaryAnatomicStructureModifierSequence: 0x00082230,
|
|
29394
|
-
TransducerPositionSequence: 0x00082240,
|
|
29395
|
-
TransducerPositionModifierSequence: 0x00082242,
|
|
29396
|
-
TransducerOrientationSequence: 0x00082244,
|
|
29397
|
-
TransducerOrientationModifierSequence: 0x00082246,
|
|
29398
|
-
AnatomicStructureSpaceOrRegionCodeSequenceTrial: 0x00082251,
|
|
29399
|
-
AnatomicPortalOfEntranceCodeSequenceTrial: 0x00082253,
|
|
29400
|
-
AnatomicApproachDirectionCodeSequenceTrial: 0x00082255,
|
|
29401
|
-
AnatomicPerspectiveDescriptionTrial: 0x00082256,
|
|
29402
|
-
AnatomicPerspectiveCodeSequenceTrial: 0x00082257,
|
|
29403
|
-
AnatomicLocationOfExaminingInstrumentDescriptionTrial: 0x00082258,
|
|
29404
|
-
AnatomicLocationOfExaminingInstrumentCodeSequenceTrial: 0x00082259,
|
|
29405
|
-
AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial: 0x0008225a,
|
|
29406
|
-
OnAxisBackgroundAnatomicStructureCodeSequenceTrial: 0x0008225c,
|
|
29406
|
+
TransducerPositionSequence: 0x00082240, // retired
|
|
29407
|
+
TransducerPositionModifierSequence: 0x00082242, // retired
|
|
29408
|
+
TransducerOrientationSequence: 0x00082244, // retired
|
|
29409
|
+
TransducerOrientationModifierSequence: 0x00082246, // retired
|
|
29410
|
+
AnatomicStructureSpaceOrRegionCodeSequenceTrial: 0x00082251, // retired
|
|
29411
|
+
AnatomicPortalOfEntranceCodeSequenceTrial: 0x00082253, // retired
|
|
29412
|
+
AnatomicApproachDirectionCodeSequenceTrial: 0x00082255, // retired
|
|
29413
|
+
AnatomicPerspectiveDescriptionTrial: 0x00082256, // retired
|
|
29414
|
+
AnatomicPerspectiveCodeSequenceTrial: 0x00082257, // retired
|
|
29415
|
+
AnatomicLocationOfExaminingInstrumentDescriptionTrial: 0x00082258, // retired
|
|
29416
|
+
AnatomicLocationOfExaminingInstrumentCodeSequenceTrial: 0x00082259, // retired
|
|
29417
|
+
AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial: 0x0008225a, // retired
|
|
29418
|
+
OnAxisBackgroundAnatomicStructureCodeSequenceTrial: 0x0008225c, // retired
|
|
29407
29419
|
AlternateRepresentationSequence: 0x00083001,
|
|
29408
29420
|
IrradiationEventUID: 0x00083010,
|
|
29409
29421
|
SourceIrradiationEventSequence: 0x00083011,
|
|
29410
29422
|
RadiopharmaceuticalAdministrationEventUID: 0x00083012,
|
|
29411
|
-
IdentifyingComments: 0x00084000,
|
|
29423
|
+
IdentifyingComments: 0x00084000, // retired
|
|
29412
29424
|
FrameType: 0x00089007,
|
|
29413
29425
|
ReferencedImageEvidenceSequence: 0x00089092,
|
|
29414
29426
|
ReferencedRawDataSequence: 0x00089121,
|
|
@@ -29457,7 +29469,7 @@ exports.Tag = {
|
|
|
29457
29469
|
GeneticModificationsDescription: 0x00100222,
|
|
29458
29470
|
GeneticModificationsNomenclature: 0x00100223,
|
|
29459
29471
|
GeneticModificationsCodeSequence: 0x00100229,
|
|
29460
|
-
OtherPatientIDs: 0x00101000,
|
|
29472
|
+
OtherPatientIDs: 0x00101000, // retired
|
|
29461
29473
|
OtherPatientNames: 0x00101001,
|
|
29462
29474
|
OtherPatientIDsSequence: 0x00101002,
|
|
29463
29475
|
PatientBirthName: 0x00101005,
|
|
@@ -29469,11 +29481,11 @@ exports.Tag = {
|
|
|
29469
29481
|
MeasuredLateralDimension: 0x00101024,
|
|
29470
29482
|
PatientWeight: 0x00101030,
|
|
29471
29483
|
PatientAddress: 0x00101040,
|
|
29472
|
-
InsurancePlanIdentification: 0x00101050,
|
|
29484
|
+
InsurancePlanIdentification: 0x00101050, // retired
|
|
29473
29485
|
PatientMotherBirthName: 0x00101060,
|
|
29474
29486
|
MilitaryRank: 0x00101080,
|
|
29475
29487
|
BranchOfService: 0x00101081,
|
|
29476
|
-
MedicalRecordLocator: 0x00101090,
|
|
29488
|
+
MedicalRecordLocator: 0x00101090, // retired
|
|
29477
29489
|
ReferencedPatientPhotoSequence: 0x00101100,
|
|
29478
29490
|
MedicalAlerts: 0x00102000,
|
|
29479
29491
|
Allergies: 0x00102110,
|
|
@@ -29526,8 +29538,8 @@ exports.Tag = {
|
|
|
29526
29538
|
ConsentForDistributionFlag: 0x00120085,
|
|
29527
29539
|
EthicsCommitteeApprovalEffectivenessStartDate: 0x00120086,
|
|
29528
29540
|
EthicsCommitteeApprovalEffectivenessEndDate: 0x00120087,
|
|
29529
|
-
CADFileFormat: 0x00140023,
|
|
29530
|
-
ComponentReferenceSystem: 0x00140024,
|
|
29541
|
+
CADFileFormat: 0x00140023, // retired
|
|
29542
|
+
ComponentReferenceSystem: 0x00140024, // retired
|
|
29531
29543
|
ComponentManufacturingProcedure: 0x00140025,
|
|
29532
29544
|
ComponentManufacturer: 0x00140028,
|
|
29533
29545
|
MaterialThickness: 0x00140030,
|
|
@@ -29535,7 +29547,7 @@ exports.Tag = {
|
|
|
29535
29547
|
MaterialIsolationDiameter: 0x00140034,
|
|
29536
29548
|
MaterialGrade: 0x00140042,
|
|
29537
29549
|
MaterialPropertiesDescription: 0x00140044,
|
|
29538
|
-
MaterialPropertiesFileFormatRetired: 0x00140045,
|
|
29550
|
+
MaterialPropertiesFileFormatRetired: 0x00140045, // retired
|
|
29539
29551
|
MaterialNotes: 0x00140046,
|
|
29540
29552
|
ComponentShape: 0x00140050,
|
|
29541
29553
|
CurvatureType: 0x00140052,
|
|
@@ -29734,16 +29746,16 @@ exports.Tag = {
|
|
|
29734
29746
|
InterventionDrugDose: 0x00180028,
|
|
29735
29747
|
InterventionDrugCodeSequence: 0x00180029,
|
|
29736
29748
|
AdditionalDrugSequence: 0x0018002a,
|
|
29737
|
-
Radionuclide: 0x00180030,
|
|
29749
|
+
Radionuclide: 0x00180030, // retired
|
|
29738
29750
|
Radiopharmaceutical: 0x00180031,
|
|
29739
|
-
EnergyWindowCenterline: 0x00180032,
|
|
29740
|
-
EnergyWindowTotalWidth: 0x00180033,
|
|
29751
|
+
EnergyWindowCenterline: 0x00180032, // retired
|
|
29752
|
+
EnergyWindowTotalWidth: 0x00180033, // retired
|
|
29741
29753
|
InterventionDrugName: 0x00180034,
|
|
29742
29754
|
InterventionDrugStartTime: 0x00180035,
|
|
29743
29755
|
InterventionSequence: 0x00180036,
|
|
29744
|
-
TherapyType: 0x00180037,
|
|
29756
|
+
TherapyType: 0x00180037, // retired
|
|
29745
29757
|
InterventionStatus: 0x00180038,
|
|
29746
|
-
TherapyDescription: 0x00180039,
|
|
29758
|
+
TherapyDescription: 0x00180039, // retired
|
|
29747
29759
|
InterventionDescription: 0x0018003a,
|
|
29748
29760
|
CineRate: 0x00180040,
|
|
29749
29761
|
InitialCineRunState: 0x00180042,
|
|
@@ -29781,15 +29793,15 @@ exports.Tag = {
|
|
|
29781
29793
|
UniqueDeviceIdentifier: 0x00181009,
|
|
29782
29794
|
UDISequence: 0x0018100a,
|
|
29783
29795
|
SecondaryCaptureDeviceID: 0x00181010,
|
|
29784
|
-
HardcopyCreationDeviceID: 0x00181011,
|
|
29796
|
+
HardcopyCreationDeviceID: 0x00181011, // retired
|
|
29785
29797
|
DateOfSecondaryCapture: 0x00181012,
|
|
29786
29798
|
TimeOfSecondaryCapture: 0x00181014,
|
|
29787
29799
|
SecondaryCaptureDeviceManufacturer: 0x00181016,
|
|
29788
|
-
HardcopyDeviceManufacturer: 0x00181017,
|
|
29800
|
+
HardcopyDeviceManufacturer: 0x00181017, // retired
|
|
29789
29801
|
SecondaryCaptureDeviceManufacturerModelName: 0x00181018,
|
|
29790
29802
|
SecondaryCaptureDeviceSoftwareVersions: 0x00181019,
|
|
29791
|
-
HardcopyDeviceSoftwareVersion: 0x0018101a,
|
|
29792
|
-
HardcopyDeviceManufacturerModelName: 0x0018101b,
|
|
29803
|
+
HardcopyDeviceSoftwareVersion: 0x0018101a, // retired
|
|
29804
|
+
HardcopyDeviceManufacturerModelName: 0x0018101b, // retired
|
|
29793
29805
|
SoftwareVersions: 0x00181020,
|
|
29794
29806
|
VideoImageFormatAcquired: 0x00181022,
|
|
29795
29807
|
DigitalImageFormatAcquired: 0x00181023,
|
|
@@ -29853,12 +29865,12 @@ exports.Tag = {
|
|
|
29853
29865
|
TableAngle: 0x00181138,
|
|
29854
29866
|
TableType: 0x0018113a,
|
|
29855
29867
|
RotationDirection: 0x00181140,
|
|
29856
|
-
AngularPosition: 0x00181141,
|
|
29868
|
+
AngularPosition: 0x00181141, // retired
|
|
29857
29869
|
RadialPosition: 0x00181142,
|
|
29858
29870
|
ScanArc: 0x00181143,
|
|
29859
29871
|
AngularStep: 0x00181144,
|
|
29860
29872
|
CenterOfRotationOffset: 0x00181145,
|
|
29861
|
-
RotationOffset: 0x00181146,
|
|
29873
|
+
RotationOffset: 0x00181146, // retired
|
|
29862
29874
|
FieldOfViewShape: 0x00181147,
|
|
29863
29875
|
FieldOfViewDimensions: 0x00181149,
|
|
29864
29876
|
ExposureTime: 0x00181150,
|
|
@@ -29892,7 +29904,7 @@ exports.Tag = {
|
|
|
29892
29904
|
TimeOfLastCalibration: 0x00181201,
|
|
29893
29905
|
DateTimeOfLastCalibration: 0x00181202,
|
|
29894
29906
|
ConvolutionKernel: 0x00181210,
|
|
29895
|
-
UpperLowerPixelValues: 0x00181240,
|
|
29907
|
+
UpperLowerPixelValues: 0x00181240, // retired
|
|
29896
29908
|
ActualFrameDuration: 0x00181242,
|
|
29897
29909
|
CountRate: 0x00181243,
|
|
29898
29910
|
PreferredPlaybackSequencing: 0x00181244,
|
|
@@ -29980,26 +29992,26 @@ exports.Tag = {
|
|
|
29980
29992
|
IVUSPullbackStartFrameNumber: 0x00183103,
|
|
29981
29993
|
IVUSPullbackStopFrameNumber: 0x00183104,
|
|
29982
29994
|
LesionNumber: 0x00183105,
|
|
29983
|
-
AcquisitionComments: 0x00184000,
|
|
29995
|
+
AcquisitionComments: 0x00184000, // retired
|
|
29984
29996
|
OutputPower: 0x00185000,
|
|
29985
29997
|
TransducerData: 0x00185010,
|
|
29986
29998
|
FocusDepth: 0x00185012,
|
|
29987
29999
|
ProcessingFunction: 0x00185020,
|
|
29988
|
-
PostprocessingFunction: 0x00185021,
|
|
30000
|
+
PostprocessingFunction: 0x00185021, // retired
|
|
29989
30001
|
MechanicalIndex: 0x00185022,
|
|
29990
30002
|
BoneThermalIndex: 0x00185024,
|
|
29991
30003
|
CranialThermalIndex: 0x00185026,
|
|
29992
30004
|
SoftTissueThermalIndex: 0x00185027,
|
|
29993
30005
|
SoftTissueFocusThermalIndex: 0x00185028,
|
|
29994
30006
|
SoftTissueSurfaceThermalIndex: 0x00185029,
|
|
29995
|
-
DynamicRange: 0x00185030,
|
|
29996
|
-
TotalGain: 0x00185040,
|
|
30007
|
+
DynamicRange: 0x00185030, // retired
|
|
30008
|
+
TotalGain: 0x00185040, // retired
|
|
29997
30009
|
DepthOfScanField: 0x00185050,
|
|
29998
30010
|
PatientPosition: 0x00185100,
|
|
29999
30011
|
ViewPosition: 0x00185101,
|
|
30000
30012
|
ProjectionEponymousNameCodeSequence: 0x00185104,
|
|
30001
|
-
ImageTransformationMatrix: 0x00185210,
|
|
30002
|
-
ImageTranslationVector: 0x00185212,
|
|
30013
|
+
ImageTransformationMatrix: 0x00185210, // retired
|
|
30014
|
+
ImageTranslationVector: 0x00185212, // retired
|
|
30003
30015
|
Sensitivity: 0x00186000,
|
|
30004
30016
|
SequenceOfUltrasoundRegions: 0x00186011,
|
|
30005
30017
|
RegionSpatialFormat: 0x00186012,
|
|
@@ -30022,17 +30034,17 @@ exports.Tag = {
|
|
|
30022
30034
|
PulseRepetitionFrequency: 0x00186032,
|
|
30023
30035
|
DopplerCorrectionAngle: 0x00186034,
|
|
30024
30036
|
SteeringAngle: 0x00186036,
|
|
30025
|
-
DopplerSampleVolumeXPositionRetired: 0x00186038,
|
|
30037
|
+
DopplerSampleVolumeXPositionRetired: 0x00186038, // retired
|
|
30026
30038
|
DopplerSampleVolumeXPosition: 0x00186039,
|
|
30027
|
-
DopplerSampleVolumeYPositionRetired: 0x0018603a,
|
|
30039
|
+
DopplerSampleVolumeYPositionRetired: 0x0018603a, // retired
|
|
30028
30040
|
DopplerSampleVolumeYPosition: 0x0018603b,
|
|
30029
|
-
TMLinePositionX0Retired: 0x0018603c,
|
|
30041
|
+
TMLinePositionX0Retired: 0x0018603c, // retired
|
|
30030
30042
|
TMLinePositionX0: 0x0018603d,
|
|
30031
|
-
TMLinePositionY0Retired: 0x0018603e,
|
|
30043
|
+
TMLinePositionY0Retired: 0x0018603e, // retired
|
|
30032
30044
|
TMLinePositionY0: 0x0018603f,
|
|
30033
|
-
TMLinePositionX1Retired: 0x00186040,
|
|
30045
|
+
TMLinePositionX1Retired: 0x00186040, // retired
|
|
30034
30046
|
TMLinePositionX1: 0x00186041,
|
|
30035
|
-
TMLinePositionY1Retired: 0x00186042,
|
|
30047
|
+
TMLinePositionY1Retired: 0x00186042, // retired
|
|
30036
30048
|
TMLinePositionY1: 0x00186043,
|
|
30037
30049
|
PixelComponentOrganization: 0x00186044,
|
|
30038
30050
|
PixelComponentMask: 0x00186046,
|
|
@@ -30169,7 +30181,7 @@ exports.Tag = {
|
|
|
30169
30181
|
NumberOfKSpaceTrajectories: 0x00189093,
|
|
30170
30182
|
CoverageOfKSpace: 0x00189094,
|
|
30171
30183
|
SpectroscopyAcquisitionPhaseRows: 0x00189095,
|
|
30172
|
-
ParallelReductionFactorInPlaneRetired: 0x00189096,
|
|
30184
|
+
ParallelReductionFactorInPlaneRetired: 0x00189096, // retired
|
|
30173
30185
|
TransmitterFrequency: 0x00189098,
|
|
30174
30186
|
ResonantNucleus: 0x00189100,
|
|
30175
30187
|
FrequencyCorrection: 0x00189101,
|
|
@@ -30192,7 +30204,7 @@ exports.Tag = {
|
|
|
30192
30204
|
MRMetaboliteMapSequence: 0x00189152,
|
|
30193
30205
|
ParallelReductionFactorOutOfPlane: 0x00189155,
|
|
30194
30206
|
SpectroscopyAcquisitionOutOfPlanePhaseSteps: 0x00189159,
|
|
30195
|
-
BulkMotionStatus: 0x00189166,
|
|
30207
|
+
BulkMotionStatus: 0x00189166, // retired
|
|
30196
30208
|
ParallelReductionFactorSecondInPlane: 0x00189168,
|
|
30197
30209
|
CardiacBeatRejectionTechnique: 0x00189169,
|
|
30198
30210
|
RespiratoryMotionCompensationTechnique: 0x00189170,
|
|
@@ -30212,8 +30224,8 @@ exports.Tag = {
|
|
|
30212
30224
|
TaggingDelay: 0x00189184,
|
|
30213
30225
|
RespiratoryMotionCompensationTechniqueDescription: 0x00189185,
|
|
30214
30226
|
RespiratorySignalSourceID: 0x00189186,
|
|
30215
|
-
ChemicalShiftMinimumIntegrationLimitInHz: 0x00189195,
|
|
30216
|
-
ChemicalShiftMaximumIntegrationLimitInHz: 0x00189196,
|
|
30227
|
+
ChemicalShiftMinimumIntegrationLimitInHz: 0x00189195, // retired
|
|
30228
|
+
ChemicalShiftMaximumIntegrationLimitInHz: 0x00189196, // retired
|
|
30217
30229
|
MRVelocityEncodingSequence: 0x00189197,
|
|
30218
30230
|
FirstOrderPhaseCorrection: 0x00189198,
|
|
30219
30231
|
WaterReferencedPhaseCorrection: 0x00189199,
|
|
@@ -30529,59 +30541,59 @@ exports.Tag = {
|
|
|
30529
30541
|
SeriesNumber: 0x00200011,
|
|
30530
30542
|
AcquisitionNumber: 0x00200012,
|
|
30531
30543
|
InstanceNumber: 0x00200013,
|
|
30532
|
-
IsotopeNumber: 0x00200014,
|
|
30533
|
-
PhaseNumber: 0x00200015,
|
|
30534
|
-
IntervalNumber: 0x00200016,
|
|
30535
|
-
TimeSlotNumber: 0x00200017,
|
|
30536
|
-
AngleNumber: 0x00200018,
|
|
30544
|
+
IsotopeNumber: 0x00200014, // retired
|
|
30545
|
+
PhaseNumber: 0x00200015, // retired
|
|
30546
|
+
IntervalNumber: 0x00200016, // retired
|
|
30547
|
+
TimeSlotNumber: 0x00200017, // retired
|
|
30548
|
+
AngleNumber: 0x00200018, // retired
|
|
30537
30549
|
ItemNumber: 0x00200019,
|
|
30538
30550
|
PatientOrientation: 0x00200020,
|
|
30539
|
-
OverlayNumber: 0x00200022,
|
|
30540
|
-
CurveNumber: 0x00200024,
|
|
30541
|
-
LUTNumber: 0x00200026,
|
|
30542
|
-
ImagePosition: 0x00200030,
|
|
30551
|
+
OverlayNumber: 0x00200022, // retired
|
|
30552
|
+
CurveNumber: 0x00200024, // retired
|
|
30553
|
+
LUTNumber: 0x00200026, // retired
|
|
30554
|
+
ImagePosition: 0x00200030, // retired
|
|
30543
30555
|
ImagePositionPatient: 0x00200032,
|
|
30544
|
-
ImageOrientation: 0x00200035,
|
|
30556
|
+
ImageOrientation: 0x00200035, // retired
|
|
30545
30557
|
ImageOrientationPatient: 0x00200037,
|
|
30546
|
-
Location: 0x00200050,
|
|
30558
|
+
Location: 0x00200050, // retired
|
|
30547
30559
|
FrameOfReferenceUID: 0x00200052,
|
|
30548
30560
|
Laterality: 0x00200060,
|
|
30549
30561
|
ImageLaterality: 0x00200062,
|
|
30550
|
-
ImageGeometryType: 0x00200070,
|
|
30551
|
-
MaskingImage: 0x00200080,
|
|
30552
|
-
ReportNumber: 0x002000aa,
|
|
30562
|
+
ImageGeometryType: 0x00200070, // retired
|
|
30563
|
+
MaskingImage: 0x00200080, // retired
|
|
30564
|
+
ReportNumber: 0x002000aa, // retired
|
|
30553
30565
|
TemporalPositionIdentifier: 0x00200100,
|
|
30554
30566
|
NumberOfTemporalPositions: 0x00200105,
|
|
30555
30567
|
TemporalResolution: 0x00200110,
|
|
30556
30568
|
SynchronizationFrameOfReferenceUID: 0x00200200,
|
|
30557
30569
|
SOPInstanceUIDOfConcatenationSource: 0x00200242,
|
|
30558
|
-
SeriesInStudy: 0x00201000,
|
|
30559
|
-
AcquisitionsInSeries: 0x00201001,
|
|
30570
|
+
SeriesInStudy: 0x00201000, // retired
|
|
30571
|
+
AcquisitionsInSeries: 0x00201001, // retired
|
|
30560
30572
|
ImagesInAcquisition: 0x00201002,
|
|
30561
|
-
ImagesInSeries: 0x00201003,
|
|
30562
|
-
AcquisitionsInStudy: 0x00201004,
|
|
30563
|
-
ImagesInStudy: 0x00201005,
|
|
30564
|
-
Reference: 0x00201020,
|
|
30573
|
+
ImagesInSeries: 0x00201003, // retired
|
|
30574
|
+
AcquisitionsInStudy: 0x00201004, // retired
|
|
30575
|
+
ImagesInStudy: 0x00201005, // retired
|
|
30576
|
+
Reference: 0x00201020, // retired
|
|
30565
30577
|
TargetPositionReferenceIndicator: 0x0020103f,
|
|
30566
30578
|
PositionReferenceIndicator: 0x00201040,
|
|
30567
30579
|
SliceLocation: 0x00201041,
|
|
30568
|
-
OtherStudyNumbers: 0x00201070,
|
|
30580
|
+
OtherStudyNumbers: 0x00201070, // retired
|
|
30569
30581
|
NumberOfPatientRelatedStudies: 0x00201200,
|
|
30570
30582
|
NumberOfPatientRelatedSeries: 0x00201202,
|
|
30571
30583
|
NumberOfPatientRelatedInstances: 0x00201204,
|
|
30572
30584
|
NumberOfStudyRelatedSeries: 0x00201206,
|
|
30573
30585
|
NumberOfStudyRelatedInstances: 0x00201208,
|
|
30574
30586
|
NumberOfSeriesRelatedInstances: 0x00201209,
|
|
30575
|
-
SourceImageIDs: 0x00203100,
|
|
30576
|
-
ModifyingDeviceID: 0x00203401,
|
|
30577
|
-
ModifiedImageID: 0x00203402,
|
|
30578
|
-
ModifiedImageDate: 0x00203403,
|
|
30579
|
-
ModifyingDeviceManufacturer: 0x00203404,
|
|
30580
|
-
ModifiedImageTime: 0x00203405,
|
|
30581
|
-
ModifiedImageDescription: 0x00203406,
|
|
30587
|
+
SourceImageIDs: 0x00203100, // retired
|
|
30588
|
+
ModifyingDeviceID: 0x00203401, // retired
|
|
30589
|
+
ModifiedImageID: 0x00203402, // retired
|
|
30590
|
+
ModifiedImageDate: 0x00203403, // retired
|
|
30591
|
+
ModifyingDeviceManufacturer: 0x00203404, // retired
|
|
30592
|
+
ModifiedImageTime: 0x00203405, // retired
|
|
30593
|
+
ModifiedImageDescription: 0x00203406, // retired
|
|
30582
30594
|
ImageComments: 0x00204000,
|
|
30583
|
-
OriginalImageIdentification: 0x00205000,
|
|
30584
|
-
OriginalImageIdentificationNomenclature: 0x00205002,
|
|
30595
|
+
OriginalImageIdentification: 0x00205000, // retired
|
|
30596
|
+
OriginalImageIdentificationNomenclature: 0x00205002, // retired
|
|
30585
30597
|
StackID: 0x00209056,
|
|
30586
30598
|
InStackPositionNumber: 0x00209057,
|
|
30587
30599
|
FrameAnatomySequence: 0x00209071,
|
|
@@ -30720,7 +30732,7 @@ exports.Tag = {
|
|
|
30720
30732
|
IOLPowerSequence: 0x00221090,
|
|
30721
30733
|
LensConstantSequence: 0x00221092,
|
|
30722
30734
|
IOLManufacturer: 0x00221093,
|
|
30723
|
-
LensConstantDescription: 0x00221094,
|
|
30735
|
+
LensConstantDescription: 0x00221094, // retired
|
|
30724
30736
|
ImplantName: 0x00221095,
|
|
30725
30737
|
KeratometryMeasurementTypeCodeSequence: 0x00221096,
|
|
30726
30738
|
ImplantPartNumber: 0x00221097,
|
|
@@ -30740,7 +30752,7 @@ exports.Tag = {
|
|
|
30740
30752
|
SourceOfRefractiveMeasurementsCodeSequence: 0x00221135,
|
|
30741
30753
|
OphthalmicAxialLengthMeasurementModified: 0x00221140,
|
|
30742
30754
|
OphthalmicAxialLengthDataSourceCodeSequence: 0x00221150,
|
|
30743
|
-
OphthalmicAxialLengthAcquisitionMethodCodeSequence: 0x00221153,
|
|
30755
|
+
OphthalmicAxialLengthAcquisitionMethodCodeSequence: 0x00221153, // retired
|
|
30744
30756
|
SignalToNoiseRatio: 0x00221155,
|
|
30745
30757
|
OphthalmicAxialLengthDataSourceDescription: 0x00221159,
|
|
30746
30758
|
OphthalmicAxialLengthMeasurementsTotalLengthSequence: 0x00221210,
|
|
@@ -30754,8 +30766,8 @@ exports.Tag = {
|
|
|
30754
30766
|
SelectedSegmentalOphthalmicAxialLengthSequence: 0x00221257,
|
|
30755
30767
|
SelectedTotalOphthalmicAxialLengthSequence: 0x00221260,
|
|
30756
30768
|
OphthalmicAxialLengthQualityMetricSequence: 0x00221262,
|
|
30757
|
-
OphthalmicAxialLengthQualityMetricTypeCodeSequence: 0x00221265,
|
|
30758
|
-
OphthalmicAxialLengthQualityMetricTypeDescription: 0x00221273,
|
|
30769
|
+
OphthalmicAxialLengthQualityMetricTypeCodeSequence: 0x00221265, // retired
|
|
30770
|
+
OphthalmicAxialLengthQualityMetricTypeDescription: 0x00221273, // retired
|
|
30759
30771
|
IntraocularLensCalculationsRightEyeSequence: 0x00221300,
|
|
30760
30772
|
IntraocularLensCalculationsLeftEyeSequence: 0x00221310,
|
|
30761
30773
|
ReferencedOphthalmicAxialLengthMeasurementQCImageSequence: 0x00221330,
|
|
@@ -30912,88 +30924,88 @@ exports.Tag = {
|
|
|
30912
30924
|
SamplesPerPixel: 0x00280002,
|
|
30913
30925
|
SamplesPerPixelUsed: 0x00280003,
|
|
30914
30926
|
PhotometricInterpretation: 0x00280004,
|
|
30915
|
-
ImageDimensions: 0x00280005,
|
|
30927
|
+
ImageDimensions: 0x00280005, // retired
|
|
30916
30928
|
PlanarConfiguration: 0x00280006,
|
|
30917
30929
|
NumberOfFrames: 0x00280008,
|
|
30918
30930
|
FrameIncrementPointer: 0x00280009,
|
|
30919
30931
|
FrameDimensionPointer: 0x0028000a,
|
|
30920
30932
|
Rows: 0x00280010,
|
|
30921
30933
|
Columns: 0x00280011,
|
|
30922
|
-
Planes: 0x00280012,
|
|
30934
|
+
Planes: 0x00280012, // retired
|
|
30923
30935
|
UltrasoundColorDataPresent: 0x00280014,
|
|
30924
30936
|
PixelSpacing: 0x00280030,
|
|
30925
30937
|
ZoomFactor: 0x00280031,
|
|
30926
30938
|
ZoomCenter: 0x00280032,
|
|
30927
30939
|
PixelAspectRatio: 0x00280034,
|
|
30928
|
-
ImageFormat: 0x00280040,
|
|
30929
|
-
ManipulatedImage: 0x00280050,
|
|
30940
|
+
ImageFormat: 0x00280040, // retired
|
|
30941
|
+
ManipulatedImage: 0x00280050, // retired
|
|
30930
30942
|
CorrectedImage: 0x00280051,
|
|
30931
|
-
CompressionRecognitionCode: 0x0028005f,
|
|
30932
|
-
CompressionCode: 0x00280060,
|
|
30933
|
-
CompressionOriginator: 0x00280061,
|
|
30934
|
-
CompressionLabel: 0x00280062,
|
|
30935
|
-
CompressionDescription: 0x00280063,
|
|
30936
|
-
CompressionSequence: 0x00280065,
|
|
30937
|
-
CompressionStepPointers: 0x00280066,
|
|
30938
|
-
RepeatInterval: 0x00280068,
|
|
30939
|
-
BitsGrouped: 0x00280069,
|
|
30940
|
-
PerimeterTable: 0x00280070,
|
|
30941
|
-
PerimeterValue: 0x00280071,
|
|
30942
|
-
PredictorRows: 0x00280080,
|
|
30943
|
-
PredictorColumns: 0x00280081,
|
|
30944
|
-
PredictorConstants: 0x00280082,
|
|
30945
|
-
BlockedPixels: 0x00280090,
|
|
30946
|
-
BlockRows: 0x00280091,
|
|
30947
|
-
BlockColumns: 0x00280092,
|
|
30948
|
-
RowOverlap: 0x00280093,
|
|
30949
|
-
ColumnOverlap: 0x00280094,
|
|
30943
|
+
CompressionRecognitionCode: 0x0028005f, // retired
|
|
30944
|
+
CompressionCode: 0x00280060, // retired
|
|
30945
|
+
CompressionOriginator: 0x00280061, // retired
|
|
30946
|
+
CompressionLabel: 0x00280062, // retired
|
|
30947
|
+
CompressionDescription: 0x00280063, // retired
|
|
30948
|
+
CompressionSequence: 0x00280065, // retired
|
|
30949
|
+
CompressionStepPointers: 0x00280066, // retired
|
|
30950
|
+
RepeatInterval: 0x00280068, // retired
|
|
30951
|
+
BitsGrouped: 0x00280069, // retired
|
|
30952
|
+
PerimeterTable: 0x00280070, // retired
|
|
30953
|
+
PerimeterValue: 0x00280071, // retired
|
|
30954
|
+
PredictorRows: 0x00280080, // retired
|
|
30955
|
+
PredictorColumns: 0x00280081, // retired
|
|
30956
|
+
PredictorConstants: 0x00280082, // retired
|
|
30957
|
+
BlockedPixels: 0x00280090, // retired
|
|
30958
|
+
BlockRows: 0x00280091, // retired
|
|
30959
|
+
BlockColumns: 0x00280092, // retired
|
|
30960
|
+
RowOverlap: 0x00280093, // retired
|
|
30961
|
+
ColumnOverlap: 0x00280094, // retired
|
|
30950
30962
|
BitsAllocated: 0x00280100,
|
|
30951
30963
|
BitsStored: 0x00280101,
|
|
30952
30964
|
HighBit: 0x00280102,
|
|
30953
30965
|
PixelRepresentation: 0x00280103,
|
|
30954
|
-
SmallestValidPixelValue: 0x00280104,
|
|
30955
|
-
LargestValidPixelValue: 0x00280105,
|
|
30966
|
+
SmallestValidPixelValue: 0x00280104, // retired
|
|
30967
|
+
LargestValidPixelValue: 0x00280105, // retired
|
|
30956
30968
|
SmallestImagePixelValue: 0x00280106,
|
|
30957
30969
|
LargestImagePixelValue: 0x00280107,
|
|
30958
30970
|
SmallestPixelValueInSeries: 0x00280108,
|
|
30959
30971
|
LargestPixelValueInSeries: 0x00280109,
|
|
30960
|
-
SmallestImagePixelValueInPlane: 0x00280110,
|
|
30961
|
-
LargestImagePixelValueInPlane: 0x00280111,
|
|
30972
|
+
SmallestImagePixelValueInPlane: 0x00280110, // retired
|
|
30973
|
+
LargestImagePixelValueInPlane: 0x00280111, // retired
|
|
30962
30974
|
PixelPaddingValue: 0x00280120,
|
|
30963
30975
|
PixelPaddingRangeLimit: 0x00280121,
|
|
30964
30976
|
FloatPixelPaddingValue: 0x00280122,
|
|
30965
30977
|
DoubleFloatPixelPaddingValue: 0x00280123,
|
|
30966
30978
|
FloatPixelPaddingRangeLimit: 0x00280124,
|
|
30967
30979
|
DoubleFloatPixelPaddingRangeLimit: 0x00280125,
|
|
30968
|
-
ImageLocation: 0x00280200,
|
|
30980
|
+
ImageLocation: 0x00280200, // retired
|
|
30969
30981
|
QualityControlImage: 0x00280300,
|
|
30970
30982
|
BurnedInAnnotation: 0x00280301,
|
|
30971
30983
|
RecognizableVisualFeatures: 0x00280302,
|
|
30972
30984
|
LongitudinalTemporalInformationModified: 0x00280303,
|
|
30973
30985
|
ReferencedColorPaletteInstanceUID: 0x00280304,
|
|
30974
|
-
TransformLabel: 0x00280400,
|
|
30975
|
-
TransformVersionNumber: 0x00280401,
|
|
30976
|
-
NumberOfTransformSteps: 0x00280402,
|
|
30977
|
-
SequenceOfCompressedData: 0x00280403,
|
|
30978
|
-
DetailsOfCoefficients: 0x00280404,
|
|
30979
|
-
RowsForNthOrderCoefficients: 0x00280400,
|
|
30980
|
-
ColumnsForNthOrderCoefficients: 0x00280401,
|
|
30981
|
-
CoefficientCoding: 0x00280402,
|
|
30982
|
-
CoefficientCodingPointers: 0x00280403,
|
|
30983
|
-
DCTLabel: 0x00280700,
|
|
30984
|
-
DataBlockDescription: 0x00280701,
|
|
30985
|
-
DataBlock: 0x00280702,
|
|
30986
|
-
NormalizationFactorFormat: 0x00280710,
|
|
30987
|
-
ZonalMapNumberFormat: 0x00280720,
|
|
30988
|
-
ZonalMapLocation: 0x00280721,
|
|
30989
|
-
ZonalMapFormat: 0x00280722,
|
|
30990
|
-
AdaptiveMapFormat: 0x00280730,
|
|
30991
|
-
CodeNumberFormat: 0x00280740,
|
|
30992
|
-
CodeLabel: 0x00280800,
|
|
30993
|
-
NumberOfTables: 0x00280802,
|
|
30994
|
-
CodeTableLocation: 0x00280803,
|
|
30995
|
-
BitsForCodeWord: 0x00280804,
|
|
30996
|
-
ImageDataLocation: 0x00280808,
|
|
30986
|
+
TransformLabel: 0x00280400, // retired
|
|
30987
|
+
TransformVersionNumber: 0x00280401, // retired
|
|
30988
|
+
NumberOfTransformSteps: 0x00280402, // retired
|
|
30989
|
+
SequenceOfCompressedData: 0x00280403, // retired
|
|
30990
|
+
DetailsOfCoefficients: 0x00280404, // retired
|
|
30991
|
+
RowsForNthOrderCoefficients: 0x00280400, // retired
|
|
30992
|
+
ColumnsForNthOrderCoefficients: 0x00280401, // retired
|
|
30993
|
+
CoefficientCoding: 0x00280402, // retired
|
|
30994
|
+
CoefficientCodingPointers: 0x00280403, // retired
|
|
30995
|
+
DCTLabel: 0x00280700, // retired
|
|
30996
|
+
DataBlockDescription: 0x00280701, // retired
|
|
30997
|
+
DataBlock: 0x00280702, // retired
|
|
30998
|
+
NormalizationFactorFormat: 0x00280710, // retired
|
|
30999
|
+
ZonalMapNumberFormat: 0x00280720, // retired
|
|
31000
|
+
ZonalMapLocation: 0x00280721, // retired
|
|
31001
|
+
ZonalMapFormat: 0x00280722, // retired
|
|
31002
|
+
AdaptiveMapFormat: 0x00280730, // retired
|
|
31003
|
+
CodeNumberFormat: 0x00280740, // retired
|
|
31004
|
+
CodeLabel: 0x00280800, // retired
|
|
31005
|
+
NumberOfTables: 0x00280802, // retired
|
|
31006
|
+
CodeTableLocation: 0x00280803, // retired
|
|
31007
|
+
BitsForCodeWord: 0x00280804, // retired
|
|
31008
|
+
ImageDataLocation: 0x00280808, // retired
|
|
30997
31009
|
PixelSpacingCalibrationType: 0x00280a02,
|
|
30998
31010
|
PixelSpacingCalibrationDescription: 0x00280a04,
|
|
30999
31011
|
PixelIntensityRelationship: 0x00281040,
|
|
@@ -31005,26 +31017,26 @@ exports.Tag = {
|
|
|
31005
31017
|
RescaleType: 0x00281054,
|
|
31006
31018
|
WindowCenterWidthExplanation: 0x00281055,
|
|
31007
31019
|
VOILUTFunction: 0x00281056,
|
|
31008
|
-
GrayScale: 0x00281080,
|
|
31020
|
+
GrayScale: 0x00281080, // retired
|
|
31009
31021
|
RecommendedViewingMode: 0x00281090,
|
|
31010
|
-
GrayLookupTableDescriptor: 0x00281100,
|
|
31022
|
+
GrayLookupTableDescriptor: 0x00281100, // retired
|
|
31011
31023
|
RedPaletteColorLookupTableDescriptor: 0x00281101,
|
|
31012
31024
|
GreenPaletteColorLookupTableDescriptor: 0x00281102,
|
|
31013
31025
|
BluePaletteColorLookupTableDescriptor: 0x00281103,
|
|
31014
31026
|
AlphaPaletteColorLookupTableDescriptor: 0x00281104,
|
|
31015
|
-
LargeRedPaletteColorLookupTableDescriptor: 0x00281111,
|
|
31016
|
-
LargeGreenPaletteColorLookupTableDescriptor: 0x00281112,
|
|
31017
|
-
LargeBluePaletteColorLookupTableDescriptor: 0x00281113,
|
|
31027
|
+
LargeRedPaletteColorLookupTableDescriptor: 0x00281111, // retired
|
|
31028
|
+
LargeGreenPaletteColorLookupTableDescriptor: 0x00281112, // retired
|
|
31029
|
+
LargeBluePaletteColorLookupTableDescriptor: 0x00281113, // retired
|
|
31018
31030
|
PaletteColorLookupTableUID: 0x00281199,
|
|
31019
|
-
GrayLookupTableData: 0x00281200,
|
|
31031
|
+
GrayLookupTableData: 0x00281200, // retired
|
|
31020
31032
|
RedPaletteColorLookupTableData: 0x00281201,
|
|
31021
31033
|
GreenPaletteColorLookupTableData: 0x00281202,
|
|
31022
31034
|
BluePaletteColorLookupTableData: 0x00281203,
|
|
31023
31035
|
AlphaPaletteColorLookupTableData: 0x00281204,
|
|
31024
|
-
LargeRedPaletteColorLookupTableData: 0x00281211,
|
|
31025
|
-
LargeGreenPaletteColorLookupTableData: 0x00281212,
|
|
31026
|
-
LargeBluePaletteColorLookupTableData: 0x00281213,
|
|
31027
|
-
LargePaletteColorLookupTableUID: 0x00281214,
|
|
31036
|
+
LargeRedPaletteColorLookupTableData: 0x00281211, // retired
|
|
31037
|
+
LargeGreenPaletteColorLookupTableData: 0x00281212, // retired
|
|
31038
|
+
LargeBluePaletteColorLookupTableData: 0x00281213, // retired
|
|
31039
|
+
LargePaletteColorLookupTableUID: 0x00281214, // retired
|
|
31028
31040
|
SegmentedRedPaletteColorLookupTableData: 0x00281221,
|
|
31029
31041
|
SegmentedGreenPaletteColorLookupTableData: 0x00281222,
|
|
31030
31042
|
SegmentedBluePaletteColorLookupTableData: 0x00281223,
|
|
@@ -31063,13 +31075,13 @@ exports.Tag = {
|
|
|
31063
31075
|
LUTData: 0x00283006,
|
|
31064
31076
|
VOILUTSequence: 0x00283010,
|
|
31065
31077
|
SoftcopyVOILUTSequence: 0x00283110,
|
|
31066
|
-
ImagePresentationComments: 0x00284000,
|
|
31067
|
-
BiPlaneAcquisitionSequence: 0x00285000,
|
|
31078
|
+
ImagePresentationComments: 0x00284000, // retired
|
|
31079
|
+
BiPlaneAcquisitionSequence: 0x00285000, // retired
|
|
31068
31080
|
RepresentativeFrameNumber: 0x00286010,
|
|
31069
31081
|
FrameNumbersOfInterest: 0x00286020,
|
|
31070
31082
|
FrameOfInterestDescription: 0x00286022,
|
|
31071
31083
|
FrameOfInterestType: 0x00286023,
|
|
31072
|
-
MaskPointers: 0x00286030,
|
|
31084
|
+
MaskPointers: 0x00286030, // retired
|
|
31073
31085
|
RWavePointer: 0x00286040,
|
|
31074
31086
|
MaskSubtractionSequence: 0x00286100,
|
|
31075
31087
|
MaskOperation: 0x00286101,
|
|
@@ -31130,7 +31142,7 @@ exports.Tag = {
|
|
|
31130
31142
|
DataPointRows: 0x00289001,
|
|
31131
31143
|
DataPointColumns: 0x00289002,
|
|
31132
31144
|
SignalDomainColumns: 0x00289003,
|
|
31133
|
-
LargestMonochromePixelValue: 0x00289099,
|
|
31145
|
+
LargestMonochromePixelValue: 0x00289099, // retired
|
|
31134
31146
|
DataRepresentation: 0x00289108,
|
|
31135
31147
|
PixelMeasuresSequence: 0x00289110,
|
|
31136
31148
|
FrameVOILUTSequence: 0x00289132,
|
|
@@ -31155,53 +31167,53 @@ exports.Tag = {
|
|
|
31155
31167
|
LUTFrameRange: 0x00289507,
|
|
31156
31168
|
ImageToEquipmentMappingMatrix: 0x00289520,
|
|
31157
31169
|
EquipmentCoordinateSystemIdentification: 0x00289537,
|
|
31158
|
-
StudyStatusID: 0x0032000a,
|
|
31159
|
-
StudyPriorityID: 0x0032000c,
|
|
31160
|
-
StudyIDIssuer: 0x00320012,
|
|
31161
|
-
StudyVerifiedDate: 0x00320032,
|
|
31162
|
-
StudyVerifiedTime: 0x00320033,
|
|
31163
|
-
StudyReadDate: 0x00320034,
|
|
31164
|
-
StudyReadTime: 0x00320035,
|
|
31165
|
-
ScheduledStudyStartDate: 0x00321000,
|
|
31166
|
-
ScheduledStudyStartTime: 0x00321001,
|
|
31167
|
-
ScheduledStudyStopDate: 0x00321010,
|
|
31168
|
-
ScheduledStudyStopTime: 0x00321011,
|
|
31169
|
-
ScheduledStudyLocation: 0x00321020,
|
|
31170
|
-
ScheduledStudyLocationAETitle: 0x00321021,
|
|
31171
|
-
ReasonForStudy: 0x00321030,
|
|
31170
|
+
StudyStatusID: 0x0032000a, // retired
|
|
31171
|
+
StudyPriorityID: 0x0032000c, // retired
|
|
31172
|
+
StudyIDIssuer: 0x00320012, // retired
|
|
31173
|
+
StudyVerifiedDate: 0x00320032, // retired
|
|
31174
|
+
StudyVerifiedTime: 0x00320033, // retired
|
|
31175
|
+
StudyReadDate: 0x00320034, // retired
|
|
31176
|
+
StudyReadTime: 0x00320035, // retired
|
|
31177
|
+
ScheduledStudyStartDate: 0x00321000, // retired
|
|
31178
|
+
ScheduledStudyStartTime: 0x00321001, // retired
|
|
31179
|
+
ScheduledStudyStopDate: 0x00321010, // retired
|
|
31180
|
+
ScheduledStudyStopTime: 0x00321011, // retired
|
|
31181
|
+
ScheduledStudyLocation: 0x00321020, // retired
|
|
31182
|
+
ScheduledStudyLocationAETitle: 0x00321021, // retired
|
|
31183
|
+
ReasonForStudy: 0x00321030, // retired
|
|
31172
31184
|
RequestingPhysicianIdentificationSequence: 0x00321031,
|
|
31173
31185
|
RequestingPhysician: 0x00321032,
|
|
31174
31186
|
RequestingService: 0x00321033,
|
|
31175
31187
|
RequestingServiceCodeSequence: 0x00321034,
|
|
31176
|
-
StudyArrivalDate: 0x00321040,
|
|
31177
|
-
StudyArrivalTime: 0x00321041,
|
|
31178
|
-
StudyCompletionDate: 0x00321050,
|
|
31179
|
-
StudyCompletionTime: 0x00321051,
|
|
31180
|
-
StudyComponentStatusID: 0x00321055,
|
|
31188
|
+
StudyArrivalDate: 0x00321040, // retired
|
|
31189
|
+
StudyArrivalTime: 0x00321041, // retired
|
|
31190
|
+
StudyCompletionDate: 0x00321050, // retired
|
|
31191
|
+
StudyCompletionTime: 0x00321051, // retired
|
|
31192
|
+
StudyComponentStatusID: 0x00321055, // retired
|
|
31181
31193
|
RequestedProcedureDescription: 0x00321060,
|
|
31182
31194
|
RequestedProcedureCodeSequence: 0x00321064,
|
|
31183
31195
|
RequestedContrastAgent: 0x00321070,
|
|
31184
|
-
StudyComments: 0x00324000,
|
|
31196
|
+
StudyComments: 0x00324000, // retired
|
|
31185
31197
|
ReferencedPatientAliasSequence: 0x00380004,
|
|
31186
31198
|
VisitStatusID: 0x00380008,
|
|
31187
31199
|
AdmissionID: 0x00380010,
|
|
31188
|
-
IssuerOfAdmissionID: 0x00380011,
|
|
31200
|
+
IssuerOfAdmissionID: 0x00380011, // retired
|
|
31189
31201
|
IssuerOfAdmissionIDSequence: 0x00380014,
|
|
31190
31202
|
RouteOfAdmissions: 0x00380016,
|
|
31191
|
-
ScheduledAdmissionDate: 0x0038001a,
|
|
31192
|
-
ScheduledAdmissionTime: 0x0038001b,
|
|
31193
|
-
ScheduledDischargeDate: 0x0038001c,
|
|
31194
|
-
ScheduledDischargeTime: 0x0038001d,
|
|
31195
|
-
ScheduledPatientInstitutionResidence: 0x0038001e,
|
|
31203
|
+
ScheduledAdmissionDate: 0x0038001a, // retired
|
|
31204
|
+
ScheduledAdmissionTime: 0x0038001b, // retired
|
|
31205
|
+
ScheduledDischargeDate: 0x0038001c, // retired
|
|
31206
|
+
ScheduledDischargeTime: 0x0038001d, // retired
|
|
31207
|
+
ScheduledPatientInstitutionResidence: 0x0038001e, // retired
|
|
31196
31208
|
AdmittingDate: 0x00380020,
|
|
31197
31209
|
AdmittingTime: 0x00380021,
|
|
31198
|
-
DischargeDate: 0x00380030,
|
|
31199
|
-
DischargeTime: 0x00380032,
|
|
31200
|
-
DischargeDiagnosisDescription: 0x00380040,
|
|
31201
|
-
DischargeDiagnosisCodeSequence: 0x00380044,
|
|
31210
|
+
DischargeDate: 0x00380030, // retired
|
|
31211
|
+
DischargeTime: 0x00380032, // retired
|
|
31212
|
+
DischargeDiagnosisDescription: 0x00380040, // retired
|
|
31213
|
+
DischargeDiagnosisCodeSequence: 0x00380044, // retired
|
|
31202
31214
|
SpecialNeeds: 0x00380050,
|
|
31203
31215
|
ServiceEpisodeID: 0x00380060,
|
|
31204
|
-
IssuerOfServiceEpisodeID: 0x00380061,
|
|
31216
|
+
IssuerOfServiceEpisodeID: 0x00380061, // retired
|
|
31205
31217
|
ServiceEpisodeDescription: 0x00380062,
|
|
31206
31218
|
IssuerOfServiceEpisodeIDSequence: 0x00380064,
|
|
31207
31219
|
PertinentDocumentsSequence: 0x00380100,
|
|
@@ -31297,13 +31309,13 @@ exports.Tag = {
|
|
|
31297
31309
|
Quantity: 0x00400294,
|
|
31298
31310
|
MeasuringUnitsSequence: 0x00400295,
|
|
31299
31311
|
BillingItemSequence: 0x00400296,
|
|
31300
|
-
TotalTimeOfFluoroscopy: 0x00400300,
|
|
31301
|
-
TotalNumberOfExposures: 0x00400301,
|
|
31312
|
+
TotalTimeOfFluoroscopy: 0x00400300, // retired
|
|
31313
|
+
TotalNumberOfExposures: 0x00400301, // retired
|
|
31302
31314
|
EntranceDose: 0x00400302,
|
|
31303
31315
|
ExposedArea: 0x00400303,
|
|
31304
31316
|
DistanceSourceToEntrance: 0x00400306,
|
|
31305
|
-
DistanceSourceToSupport: 0x00400307,
|
|
31306
|
-
ExposureDoseSequence: 0x0040030e,
|
|
31317
|
+
DistanceSourceToSupport: 0x00400307, // retired
|
|
31318
|
+
ExposureDoseSequence: 0x0040030e, // retired
|
|
31307
31319
|
CommentsOnRadiationDose: 0x00400310,
|
|
31308
31320
|
XRayOutput: 0x00400312,
|
|
31309
31321
|
HalfValueLayer: 0x00400314,
|
|
@@ -31312,23 +31324,23 @@ exports.Tag = {
|
|
|
31312
31324
|
BillingProcedureStepSequence: 0x00400320,
|
|
31313
31325
|
FilmConsumptionSequence: 0x00400321,
|
|
31314
31326
|
BillingSuppliesAndDevicesSequence: 0x00400324,
|
|
31315
|
-
ReferencedProcedureStepSequence: 0x00400330,
|
|
31327
|
+
ReferencedProcedureStepSequence: 0x00400330, // retired
|
|
31316
31328
|
PerformedSeriesSequence: 0x00400340,
|
|
31317
31329
|
CommentsOnTheScheduledProcedureStep: 0x00400400,
|
|
31318
31330
|
ProtocolContextSequence: 0x00400440,
|
|
31319
31331
|
ContentItemModifierSequence: 0x00400441,
|
|
31320
31332
|
ScheduledSpecimenSequence: 0x00400500,
|
|
31321
|
-
SpecimenAccessionNumber: 0x0040050a,
|
|
31333
|
+
SpecimenAccessionNumber: 0x0040050a, // retired
|
|
31322
31334
|
ContainerIdentifier: 0x00400512,
|
|
31323
31335
|
IssuerOfTheContainerIdentifierSequence: 0x00400513,
|
|
31324
31336
|
AlternateContainerIdentifierSequence: 0x00400515,
|
|
31325
31337
|
ContainerTypeCodeSequence: 0x00400518,
|
|
31326
31338
|
ContainerDescription: 0x0040051a,
|
|
31327
31339
|
ContainerComponentSequence: 0x00400520,
|
|
31328
|
-
SpecimenSequence: 0x00400550,
|
|
31340
|
+
SpecimenSequence: 0x00400550, // retired
|
|
31329
31341
|
SpecimenIdentifier: 0x00400551,
|
|
31330
|
-
SpecimenDescriptionSequenceTrial: 0x00400552,
|
|
31331
|
-
SpecimenDescriptionTrial: 0x00400553,
|
|
31342
|
+
SpecimenDescriptionSequenceTrial: 0x00400552, // retired
|
|
31343
|
+
SpecimenDescriptionTrial: 0x00400553, // retired
|
|
31332
31344
|
SpecimenUID: 0x00400554,
|
|
31333
31345
|
AcquisitionContextSequence: 0x00400555,
|
|
31334
31346
|
AcquisitionContextDescription: 0x00400556,
|
|
@@ -31340,39 +31352,39 @@ exports.Tag = {
|
|
|
31340
31352
|
SpecimenPreparationSequence: 0x00400610,
|
|
31341
31353
|
SpecimenPreparationStepContentItemSequence: 0x00400612,
|
|
31342
31354
|
SpecimenLocalizationContentItemSequence: 0x00400620,
|
|
31343
|
-
SlideIdentifier: 0x004006fa,
|
|
31355
|
+
SlideIdentifier: 0x004006fa, // retired
|
|
31344
31356
|
ImageCenterPointCoordinatesSequence: 0x0040071a,
|
|
31345
31357
|
XOffsetInSlideCoordinateSystem: 0x0040072a,
|
|
31346
31358
|
YOffsetInSlideCoordinateSystem: 0x0040073a,
|
|
31347
31359
|
ZOffsetInSlideCoordinateSystem: 0x0040074a,
|
|
31348
|
-
PixelSpacingSequence: 0x004008d8,
|
|
31349
|
-
CoordinateSystemAxisCodeSequence: 0x004008da,
|
|
31360
|
+
PixelSpacingSequence: 0x004008d8, // retired
|
|
31361
|
+
CoordinateSystemAxisCodeSequence: 0x004008da, // retired
|
|
31350
31362
|
MeasurementUnitsCodeSequence: 0x004008ea,
|
|
31351
|
-
VitalStainCodeSequenceTrial: 0x004009f8,
|
|
31363
|
+
VitalStainCodeSequenceTrial: 0x004009f8, // retired
|
|
31352
31364
|
RequestedProcedureID: 0x00401001,
|
|
31353
31365
|
ReasonForTheRequestedProcedure: 0x00401002,
|
|
31354
31366
|
RequestedProcedurePriority: 0x00401003,
|
|
31355
31367
|
PatientTransportArrangements: 0x00401004,
|
|
31356
31368
|
RequestedProcedureLocation: 0x00401005,
|
|
31357
|
-
PlacerOrderNumberProcedure: 0x00401006,
|
|
31358
|
-
FillerOrderNumberProcedure: 0x00401007,
|
|
31369
|
+
PlacerOrderNumberProcedure: 0x00401006, // retired
|
|
31370
|
+
FillerOrderNumberProcedure: 0x00401007, // retired
|
|
31359
31371
|
ConfidentialityCode: 0x00401008,
|
|
31360
31372
|
ReportingPriority: 0x00401009,
|
|
31361
31373
|
ReasonForRequestedProcedureCodeSequence: 0x0040100a,
|
|
31362
31374
|
NamesOfIntendedRecipientsOfResults: 0x00401010,
|
|
31363
31375
|
IntendedRecipientsOfResultsIdentificationSequence: 0x00401011,
|
|
31364
31376
|
ReasonForPerformedProcedureCodeSequence: 0x00401012,
|
|
31365
|
-
RequestedProcedureDescriptionTrial: 0x00401060,
|
|
31377
|
+
RequestedProcedureDescriptionTrial: 0x00401060, // retired
|
|
31366
31378
|
PersonIdentificationCodeSequence: 0x00401101,
|
|
31367
31379
|
PersonAddress: 0x00401102,
|
|
31368
31380
|
PersonTelephoneNumbers: 0x00401103,
|
|
31369
31381
|
PersonTelecomInformation: 0x00401104,
|
|
31370
31382
|
RequestedProcedureComments: 0x00401400,
|
|
31371
|
-
ReasonForTheImagingServiceRequest: 0x00402001,
|
|
31383
|
+
ReasonForTheImagingServiceRequest: 0x00402001, // retired
|
|
31372
31384
|
IssueDateOfImagingServiceRequest: 0x00402004,
|
|
31373
31385
|
IssueTimeOfImagingServiceRequest: 0x00402005,
|
|
31374
|
-
PlacerOrderNumberImagingServiceRequestRetired: 0x00402006,
|
|
31375
|
-
FillerOrderNumberImagingServiceRequestRetired: 0x00402007,
|
|
31386
|
+
PlacerOrderNumberImagingServiceRequestRetired: 0x00402006, // retired
|
|
31387
|
+
FillerOrderNumberImagingServiceRequestRetired: 0x00402007, // retired
|
|
31376
31388
|
OrderEnteredBy: 0x00402008,
|
|
31377
31389
|
OrderEntererLocation: 0x00402009,
|
|
31378
31390
|
OrderCallbackPhoneNumber: 0x00402010,
|
|
@@ -31381,32 +31393,32 @@ exports.Tag = {
|
|
|
31381
31393
|
FillerOrderNumberImagingServiceRequest: 0x00402017,
|
|
31382
31394
|
ImagingServiceRequestComments: 0x00402400,
|
|
31383
31395
|
ConfidentialityConstraintOnPatientDataDescription: 0x00403001,
|
|
31384
|
-
GeneralPurposeScheduledProcedureStepStatus: 0x00404001,
|
|
31385
|
-
GeneralPurposePerformedProcedureStepStatus: 0x00404002,
|
|
31386
|
-
GeneralPurposeScheduledProcedureStepPriority: 0x00404003,
|
|
31387
|
-
ScheduledProcessingApplicationsCodeSequence: 0x00404004,
|
|
31396
|
+
GeneralPurposeScheduledProcedureStepStatus: 0x00404001, // retired
|
|
31397
|
+
GeneralPurposePerformedProcedureStepStatus: 0x00404002, // retired
|
|
31398
|
+
GeneralPurposeScheduledProcedureStepPriority: 0x00404003, // retired
|
|
31399
|
+
ScheduledProcessingApplicationsCodeSequence: 0x00404004, // retired
|
|
31388
31400
|
ScheduledProcedureStepStartDateTime: 0x00404005,
|
|
31389
|
-
MultipleCopiesFlag: 0x00404006,
|
|
31390
|
-
PerformedProcessingApplicationsCodeSequence: 0x00404007,
|
|
31401
|
+
MultipleCopiesFlag: 0x00404006, // retired
|
|
31402
|
+
PerformedProcessingApplicationsCodeSequence: 0x00404007, // retired
|
|
31391
31403
|
HumanPerformerCodeSequence: 0x00404009,
|
|
31392
31404
|
ScheduledProcedureStepModificationDateTime: 0x00404010,
|
|
31393
31405
|
ExpectedCompletionDateTime: 0x00404011,
|
|
31394
|
-
ResultingGeneralPurposePerformedProcedureStepsSequence: 0x00404015,
|
|
31395
|
-
ReferencedGeneralPurposeScheduledProcedureStepSequence: 0x00404016,
|
|
31406
|
+
ResultingGeneralPurposePerformedProcedureStepsSequence: 0x00404015, // retired
|
|
31407
|
+
ReferencedGeneralPurposeScheduledProcedureStepSequence: 0x00404016, // retired
|
|
31396
31408
|
ScheduledWorkitemCodeSequence: 0x00404018,
|
|
31397
31409
|
PerformedWorkitemCodeSequence: 0x00404019,
|
|
31398
|
-
InputAvailabilityFlag: 0x00404020,
|
|
31410
|
+
InputAvailabilityFlag: 0x00404020, // retired
|
|
31399
31411
|
InputInformationSequence: 0x00404021,
|
|
31400
|
-
RelevantInformationSequence: 0x00404022,
|
|
31401
|
-
ReferencedGeneralPurposeScheduledProcedureStepTransactionUID: 0x00404023,
|
|
31412
|
+
RelevantInformationSequence: 0x00404022, // retired
|
|
31413
|
+
ReferencedGeneralPurposeScheduledProcedureStepTransactionUID: 0x00404023, // retired
|
|
31402
31414
|
ScheduledStationNameCodeSequence: 0x00404025,
|
|
31403
31415
|
ScheduledStationClassCodeSequence: 0x00404026,
|
|
31404
31416
|
ScheduledStationGeographicLocationCodeSequence: 0x00404027,
|
|
31405
31417
|
PerformedStationNameCodeSequence: 0x00404028,
|
|
31406
31418
|
PerformedStationClassCodeSequence: 0x00404029,
|
|
31407
31419
|
PerformedStationGeographicLocationCodeSequence: 0x00404030,
|
|
31408
|
-
RequestedSubsequentWorkitemCodeSequence: 0x00404031,
|
|
31409
|
-
NonDICOMOutputCodeSequence: 0x00404032,
|
|
31420
|
+
RequestedSubsequentWorkitemCodeSequence: 0x00404031, // retired
|
|
31421
|
+
NonDICOMOutputCodeSequence: 0x00404032, // retired
|
|
31410
31422
|
OutputInformationSequence: 0x00404033,
|
|
31411
31423
|
ScheduledHumanPerformersSequence: 0x00404034,
|
|
31412
31424
|
ActualHumanPerformersSequence: 0x00404035,
|
|
@@ -31437,51 +31449,51 @@ exports.Tag = {
|
|
|
31437
31449
|
QuantityDefinitionSequence: 0x00409220,
|
|
31438
31450
|
RealWorldValueIntercept: 0x00409224,
|
|
31439
31451
|
RealWorldValueSlope: 0x00409225,
|
|
31440
|
-
FindingsFlagTrial: 0x0040a007,
|
|
31452
|
+
FindingsFlagTrial: 0x0040a007, // retired
|
|
31441
31453
|
RelationshipType: 0x0040a010,
|
|
31442
|
-
FindingsSequenceTrial: 0x0040a020,
|
|
31443
|
-
FindingsGroupUIDTrial: 0x0040a021,
|
|
31444
|
-
ReferencedFindingsGroupUIDTrial: 0x0040a022,
|
|
31445
|
-
FindingsGroupRecordingDateTrial: 0x0040a023,
|
|
31446
|
-
FindingsGroupRecordingTimeTrial: 0x0040a024,
|
|
31447
|
-
FindingsSourceCategoryCodeSequenceTrial: 0x0040a026,
|
|
31454
|
+
FindingsSequenceTrial: 0x0040a020, // retired
|
|
31455
|
+
FindingsGroupUIDTrial: 0x0040a021, // retired
|
|
31456
|
+
ReferencedFindingsGroupUIDTrial: 0x0040a022, // retired
|
|
31457
|
+
FindingsGroupRecordingDateTrial: 0x0040a023, // retired
|
|
31458
|
+
FindingsGroupRecordingTimeTrial: 0x0040a024, // retired
|
|
31459
|
+
FindingsSourceCategoryCodeSequenceTrial: 0x0040a026, // retired
|
|
31448
31460
|
VerifyingOrganization: 0x0040a027,
|
|
31449
|
-
DocumentingOrganizationIdentifierCodeSequenceTrial: 0x0040a028,
|
|
31461
|
+
DocumentingOrganizationIdentifierCodeSequenceTrial: 0x0040a028, // retired
|
|
31450
31462
|
VerificationDateTime: 0x0040a030,
|
|
31451
31463
|
ObservationDateTime: 0x0040a032,
|
|
31452
31464
|
ValueType: 0x0040a040,
|
|
31453
31465
|
ConceptNameCodeSequence: 0x0040a043,
|
|
31454
|
-
MeasurementPrecisionDescriptionTrial: 0x0040a047,
|
|
31466
|
+
MeasurementPrecisionDescriptionTrial: 0x0040a047, // retired
|
|
31455
31467
|
ContinuityOfContent: 0x0040a050,
|
|
31456
|
-
UrgencyOrPriorityAlertsTrial: 0x0040a057,
|
|
31457
|
-
SequencingIndicatorTrial: 0x0040a060,
|
|
31458
|
-
DocumentIdentifierCodeSequenceTrial: 0x0040a066,
|
|
31459
|
-
DocumentAuthorTrial: 0x0040a067,
|
|
31460
|
-
DocumentAuthorIdentifierCodeSequenceTrial: 0x0040a068,
|
|
31461
|
-
IdentifierCodeSequenceTrial: 0x0040a070,
|
|
31468
|
+
UrgencyOrPriorityAlertsTrial: 0x0040a057, // retired
|
|
31469
|
+
SequencingIndicatorTrial: 0x0040a060, // retired
|
|
31470
|
+
DocumentIdentifierCodeSequenceTrial: 0x0040a066, // retired
|
|
31471
|
+
DocumentAuthorTrial: 0x0040a067, // retired
|
|
31472
|
+
DocumentAuthorIdentifierCodeSequenceTrial: 0x0040a068, // retired
|
|
31473
|
+
IdentifierCodeSequenceTrial: 0x0040a070, // retired
|
|
31462
31474
|
VerifyingObserverSequence: 0x0040a073,
|
|
31463
|
-
ObjectBinaryIdentifierTrial: 0x0040a074,
|
|
31475
|
+
ObjectBinaryIdentifierTrial: 0x0040a074, // retired
|
|
31464
31476
|
VerifyingObserverName: 0x0040a075,
|
|
31465
|
-
DocumentingObserverIdentifierCodeSequenceTrial: 0x0040a076,
|
|
31477
|
+
DocumentingObserverIdentifierCodeSequenceTrial: 0x0040a076, // retired
|
|
31466
31478
|
AuthorObserverSequence: 0x0040a078,
|
|
31467
31479
|
ParticipantSequence: 0x0040a07a,
|
|
31468
31480
|
CustodialOrganizationSequence: 0x0040a07c,
|
|
31469
31481
|
ParticipationType: 0x0040a080,
|
|
31470
31482
|
ParticipationDateTime: 0x0040a082,
|
|
31471
31483
|
ObserverType: 0x0040a084,
|
|
31472
|
-
ProcedureIdentifierCodeSequenceTrial: 0x0040a085,
|
|
31484
|
+
ProcedureIdentifierCodeSequenceTrial: 0x0040a085, // retired
|
|
31473
31485
|
VerifyingObserverIdentificationCodeSequence: 0x0040a088,
|
|
31474
|
-
ObjectDirectoryBinaryIdentifierTrial: 0x0040a089,
|
|
31475
|
-
EquivalentCDADocumentSequence: 0x0040a090,
|
|
31486
|
+
ObjectDirectoryBinaryIdentifierTrial: 0x0040a089, // retired
|
|
31487
|
+
EquivalentCDADocumentSequence: 0x0040a090, // retired
|
|
31476
31488
|
ReferencedWaveformChannels: 0x0040a0b0,
|
|
31477
|
-
DateOfDocumentOrVerbalTransactionTrial: 0x0040a110,
|
|
31478
|
-
TimeOfDocumentCreationOrVerbalTransactionTrial: 0x0040a112,
|
|
31489
|
+
DateOfDocumentOrVerbalTransactionTrial: 0x0040a110, // retired
|
|
31490
|
+
TimeOfDocumentCreationOrVerbalTransactionTrial: 0x0040a112, // retired
|
|
31479
31491
|
DateTime: 0x0040a120,
|
|
31480
31492
|
Date: 0x0040a121,
|
|
31481
31493
|
Time: 0x0040a122,
|
|
31482
31494
|
PersonName: 0x0040a123,
|
|
31483
31495
|
UID: 0x0040a124,
|
|
31484
|
-
ReportStatusIDTrial: 0x0040a125,
|
|
31496
|
+
ReportStatusIDTrial: 0x0040a125, // retired
|
|
31485
31497
|
TemporalRangeType: 0x0040a130,
|
|
31486
31498
|
ReferencedSamplePositions: 0x0040a132,
|
|
31487
31499
|
ReferencedFrameNumbers: 0x0040a136,
|
|
@@ -31491,45 +31503,45 @@ exports.Tag = {
|
|
|
31491
31503
|
FloatingPointValue: 0x0040a161,
|
|
31492
31504
|
RationalNumeratorValue: 0x0040a162,
|
|
31493
31505
|
RationalDenominatorValue: 0x0040a163,
|
|
31494
|
-
ObservationCategoryCodeSequenceTrial: 0x0040a167,
|
|
31506
|
+
ObservationCategoryCodeSequenceTrial: 0x0040a167, // retired
|
|
31495
31507
|
ConceptCodeSequence: 0x0040a168,
|
|
31496
|
-
BibliographicCitationTrial: 0x0040a16a,
|
|
31508
|
+
BibliographicCitationTrial: 0x0040a16a, // retired
|
|
31497
31509
|
PurposeOfReferenceCodeSequence: 0x0040a170,
|
|
31498
31510
|
ObservationUID: 0x0040a171,
|
|
31499
|
-
ReferencedObservationUIDTrial: 0x0040a172,
|
|
31500
|
-
ReferencedObservationClassTrial: 0x0040a173,
|
|
31501
|
-
ReferencedObjectObservationClassTrial: 0x0040a174,
|
|
31511
|
+
ReferencedObservationUIDTrial: 0x0040a172, // retired
|
|
31512
|
+
ReferencedObservationClassTrial: 0x0040a173, // retired
|
|
31513
|
+
ReferencedObjectObservationClassTrial: 0x0040a174, // retired
|
|
31502
31514
|
AnnotationGroupNumber: 0x0040a180,
|
|
31503
|
-
ObservationDateTrial: 0x0040a192,
|
|
31504
|
-
ObservationTimeTrial: 0x0040a193,
|
|
31505
|
-
MeasurementAutomationTrial: 0x0040a194,
|
|
31515
|
+
ObservationDateTrial: 0x0040a192, // retired
|
|
31516
|
+
ObservationTimeTrial: 0x0040a193, // retired
|
|
31517
|
+
MeasurementAutomationTrial: 0x0040a194, // retired
|
|
31506
31518
|
ModifierCodeSequence: 0x0040a195,
|
|
31507
|
-
IdentificationDescriptionTrial: 0x0040a224,
|
|
31508
|
-
CoordinatesSetGeometricTypeTrial: 0x0040a290,
|
|
31509
|
-
AlgorithmCodeSequenceTrial: 0x0040a296,
|
|
31510
|
-
AlgorithmDescriptionTrial: 0x0040a297,
|
|
31511
|
-
PixelCoordinatesSetTrial: 0x0040a29a,
|
|
31519
|
+
IdentificationDescriptionTrial: 0x0040a224, // retired
|
|
31520
|
+
CoordinatesSetGeometricTypeTrial: 0x0040a290, // retired
|
|
31521
|
+
AlgorithmCodeSequenceTrial: 0x0040a296, // retired
|
|
31522
|
+
AlgorithmDescriptionTrial: 0x0040a297, // retired
|
|
31523
|
+
PixelCoordinatesSetTrial: 0x0040a29a, // retired
|
|
31512
31524
|
MeasuredValueSequence: 0x0040a300,
|
|
31513
31525
|
NumericValueQualifierCodeSequence: 0x0040a301,
|
|
31514
|
-
CurrentObserverTrial: 0x0040a307,
|
|
31526
|
+
CurrentObserverTrial: 0x0040a307, // retired
|
|
31515
31527
|
NumericValue: 0x0040a30a,
|
|
31516
|
-
ReferencedAccessionSequenceTrial: 0x0040a313,
|
|
31517
|
-
ReportStatusCommentTrial: 0x0040a33a,
|
|
31518
|
-
ProcedureContextSequenceTrial: 0x0040a340,
|
|
31519
|
-
VerbalSourceTrial: 0x0040a352,
|
|
31520
|
-
AddressTrial: 0x0040a353,
|
|
31521
|
-
TelephoneNumberTrial: 0x0040a354,
|
|
31522
|
-
VerbalSourceIdentifierCodeSequenceTrial: 0x0040a358,
|
|
31528
|
+
ReferencedAccessionSequenceTrial: 0x0040a313, // retired
|
|
31529
|
+
ReportStatusCommentTrial: 0x0040a33a, // retired
|
|
31530
|
+
ProcedureContextSequenceTrial: 0x0040a340, // retired
|
|
31531
|
+
VerbalSourceTrial: 0x0040a352, // retired
|
|
31532
|
+
AddressTrial: 0x0040a353, // retired
|
|
31533
|
+
TelephoneNumberTrial: 0x0040a354, // retired
|
|
31534
|
+
VerbalSourceIdentifierCodeSequenceTrial: 0x0040a358, // retired
|
|
31523
31535
|
PredecessorDocumentsSequence: 0x0040a360,
|
|
31524
31536
|
ReferencedRequestSequence: 0x0040a370,
|
|
31525
31537
|
PerformedProcedureCodeSequence: 0x0040a372,
|
|
31526
31538
|
CurrentRequestedProcedureEvidenceSequence: 0x0040a375,
|
|
31527
|
-
ReportDetailSequenceTrial: 0x0040a380,
|
|
31539
|
+
ReportDetailSequenceTrial: 0x0040a380, // retired
|
|
31528
31540
|
PertinentOtherEvidenceSequence: 0x0040a385,
|
|
31529
31541
|
HL7StructuredDocumentReferenceSequence: 0x0040a390,
|
|
31530
|
-
ObservationSubjectUIDTrial: 0x0040a402,
|
|
31531
|
-
ObservationSubjectClassTrial: 0x0040a403,
|
|
31532
|
-
ObservationSubjectTypeCodeSequenceTrial: 0x0040a404,
|
|
31542
|
+
ObservationSubjectUIDTrial: 0x0040a402, // retired
|
|
31543
|
+
ObservationSubjectClassTrial: 0x0040a403, // retired
|
|
31544
|
+
ObservationSubjectTypeCodeSequenceTrial: 0x0040a404, // retired
|
|
31533
31545
|
CompletionFlag: 0x0040a491,
|
|
31534
31546
|
CompletionFlagDescription: 0x0040a492,
|
|
31535
31547
|
VerificationFlag: 0x0040a493,
|
|
@@ -31537,21 +31549,21 @@ exports.Tag = {
|
|
|
31537
31549
|
PreliminaryFlag: 0x0040a496,
|
|
31538
31550
|
ContentTemplateSequence: 0x0040a504,
|
|
31539
31551
|
IdenticalDocumentsSequence: 0x0040a525,
|
|
31540
|
-
ObservationSubjectContextFlagTrial: 0x0040a600,
|
|
31541
|
-
ObserverContextFlagTrial: 0x0040a601,
|
|
31542
|
-
ProcedureContextFlagTrial: 0x0040a603,
|
|
31552
|
+
ObservationSubjectContextFlagTrial: 0x0040a600, // retired
|
|
31553
|
+
ObserverContextFlagTrial: 0x0040a601, // retired
|
|
31554
|
+
ProcedureContextFlagTrial: 0x0040a603, // retired
|
|
31543
31555
|
ContentSequence: 0x0040a730,
|
|
31544
|
-
RelationshipSequenceTrial: 0x0040a731,
|
|
31545
|
-
RelationshipTypeCodeSequenceTrial: 0x0040a732,
|
|
31546
|
-
LanguageCodeSequenceTrial: 0x0040a744,
|
|
31547
|
-
UniformResourceLocatorTrial: 0x0040a992,
|
|
31556
|
+
RelationshipSequenceTrial: 0x0040a731, // retired
|
|
31557
|
+
RelationshipTypeCodeSequenceTrial: 0x0040a732, // retired
|
|
31558
|
+
LanguageCodeSequenceTrial: 0x0040a744, // retired
|
|
31559
|
+
UniformResourceLocatorTrial: 0x0040a992, // retired
|
|
31548
31560
|
WaveformAnnotationSequence: 0x0040b020,
|
|
31549
31561
|
TemplateIdentifier: 0x0040db00,
|
|
31550
|
-
TemplateVersion: 0x0040db06,
|
|
31551
|
-
TemplateLocalVersion: 0x0040db07,
|
|
31552
|
-
TemplateExtensionFlag: 0x0040db0b,
|
|
31553
|
-
TemplateExtensionOrganizationUID: 0x0040db0c,
|
|
31554
|
-
TemplateExtensionCreatorUID: 0x0040db0d,
|
|
31562
|
+
TemplateVersion: 0x0040db06, // retired
|
|
31563
|
+
TemplateLocalVersion: 0x0040db07, // retired
|
|
31564
|
+
TemplateExtensionFlag: 0x0040db0b, // retired
|
|
31565
|
+
TemplateExtensionOrganizationUID: 0x0040db0c, // retired
|
|
31566
|
+
TemplateExtensionCreatorUID: 0x0040db0d, // retired
|
|
31555
31567
|
ReferencedContentItemIdentifier: 0x0040db73,
|
|
31556
31568
|
HL7InstanceIdentifier: 0x0040e001,
|
|
31557
31569
|
HL7DocumentEffectiveTime: 0x0040e004,
|
|
@@ -31828,8 +31840,8 @@ exports.Tag = {
|
|
|
31828
31840
|
ScatterFractionFactor: 0x00541323,
|
|
31829
31841
|
DeadTimeFactor: 0x00541324,
|
|
31830
31842
|
ImageIndex: 0x00541330,
|
|
31831
|
-
CountsIncluded: 0x00541400,
|
|
31832
|
-
DeadTimeCorrectionFlag: 0x00541401,
|
|
31843
|
+
CountsIncluded: 0x00541400, // retired
|
|
31844
|
+
DeadTimeCorrectionFlag: 0x00541401, // retired
|
|
31833
31845
|
HistogramSequence: 0x00603000,
|
|
31834
31846
|
HistogramNumberOfBins: 0x00603002,
|
|
31835
31847
|
HistogramFirstBinValue: 0x00603004,
|
|
@@ -31891,13 +31903,13 @@ exports.Tag = {
|
|
|
31891
31903
|
VectorDimensionality: 0x0066001f,
|
|
31892
31904
|
VectorAccuracy: 0x00660020,
|
|
31893
31905
|
VectorCoordinateData: 0x00660021,
|
|
31894
|
-
TrianglePointIndexList: 0x00660023,
|
|
31895
|
-
EdgePointIndexList: 0x00660024,
|
|
31896
|
-
VertexPointIndexList: 0x00660025,
|
|
31906
|
+
TrianglePointIndexList: 0x00660023, // retired
|
|
31907
|
+
EdgePointIndexList: 0x00660024, // retired
|
|
31908
|
+
VertexPointIndexList: 0x00660025, // retired
|
|
31897
31909
|
TriangleStripSequence: 0x00660026,
|
|
31898
31910
|
TriangleFanSequence: 0x00660027,
|
|
31899
31911
|
LineSequence: 0x00660028,
|
|
31900
|
-
PrimitivePointIndexList: 0x00660029,
|
|
31912
|
+
PrimitivePointIndexList: 0x00660029, // retired
|
|
31901
31913
|
SurfaceCount: 0x0066002a,
|
|
31902
31914
|
ReferencedSurfaceSequence: 0x0066002b,
|
|
31903
31915
|
ReferencedSurfaceNumber: 0x0066002c,
|
|
@@ -32020,18 +32032,18 @@ exports.Tag = {
|
|
|
32020
32032
|
GraphicData: 0x00700022,
|
|
32021
32033
|
GraphicType: 0x00700023,
|
|
32022
32034
|
GraphicFilled: 0x00700024,
|
|
32023
|
-
ImageRotationRetired: 0x00700040,
|
|
32035
|
+
ImageRotationRetired: 0x00700040, // retired
|
|
32024
32036
|
ImageHorizontalFlip: 0x00700041,
|
|
32025
32037
|
ImageRotation: 0x00700042,
|
|
32026
|
-
DisplayedAreaTopLeftHandCornerTrial: 0x00700050,
|
|
32027
|
-
DisplayedAreaBottomRightHandCornerTrial: 0x00700051,
|
|
32038
|
+
DisplayedAreaTopLeftHandCornerTrial: 0x00700050, // retired
|
|
32039
|
+
DisplayedAreaBottomRightHandCornerTrial: 0x00700051, // retired
|
|
32028
32040
|
DisplayedAreaTopLeftHandCorner: 0x00700052,
|
|
32029
32041
|
DisplayedAreaBottomRightHandCorner: 0x00700053,
|
|
32030
32042
|
DisplayedAreaSelectionSequence: 0x0070005a,
|
|
32031
32043
|
GraphicLayerSequence: 0x00700060,
|
|
32032
32044
|
GraphicLayerOrder: 0x00700062,
|
|
32033
32045
|
GraphicLayerRecommendedDisplayGrayscaleValue: 0x00700066,
|
|
32034
|
-
GraphicLayerRecommendedDisplayRGBValue: 0x00700067,
|
|
32046
|
+
GraphicLayerRecommendedDisplayRGBValue: 0x00700067, // retired
|
|
32035
32047
|
GraphicLayerDescription: 0x00700068,
|
|
32036
32048
|
ContentLabel: 0x00700080,
|
|
32037
32049
|
ContentDescription: 0x00700081,
|
|
@@ -32120,7 +32132,7 @@ exports.Tag = {
|
|
|
32120
32132
|
InputSequencePositionIndex: 0x00701203,
|
|
32121
32133
|
Crop: 0x00701204,
|
|
32122
32134
|
CroppingSpecificationIndex: 0x00701205,
|
|
32123
|
-
CompositingMethod: 0x00701206,
|
|
32135
|
+
CompositingMethod: 0x00701206, // retired
|
|
32124
32136
|
VolumetricPresentationInputNumber: 0x00701207,
|
|
32125
32137
|
ImageVolumeGeometry: 0x00701208,
|
|
32126
32138
|
VolumetricPresentationInputSetUID: 0x00701209,
|
|
@@ -32323,7 +32335,7 @@ exports.Tag = {
|
|
|
32323
32335
|
ProcedureStepDiscontinuationReasonCodeSequence: 0x0074100e,
|
|
32324
32336
|
BeamTaskSequence: 0x00741020,
|
|
32325
32337
|
BeamTaskType: 0x00741022,
|
|
32326
|
-
BeamOrderIndexTrial: 0x00741024,
|
|
32338
|
+
BeamOrderIndexTrial: 0x00741024, // retired
|
|
32327
32339
|
AutosequenceFlag: 0x00741025,
|
|
32328
32340
|
TableTopVerticalAdjustedPosition: 0x00741026,
|
|
32329
32341
|
TableTopLongitudinalAdjustedPosition: 0x00741027,
|
|
@@ -32336,8 +32348,8 @@ exports.Tag = {
|
|
|
32336
32348
|
VerificationImageTiming: 0x00741032,
|
|
32337
32349
|
DoubleExposureFlag: 0x00741034,
|
|
32338
32350
|
DoubleExposureOrdering: 0x00741036,
|
|
32339
|
-
DoubleExposureMetersetTrial: 0x00741038,
|
|
32340
|
-
DoubleExposureFieldDeltaTrial: 0x0074103a,
|
|
32351
|
+
DoubleExposureMetersetTrial: 0x00741038, // retired
|
|
32352
|
+
DoubleExposureFieldDeltaTrial: 0x0074103a, // retired
|
|
32341
32353
|
RelatedReferenceRTImageSequence: 0x00741040,
|
|
32342
32354
|
GeneralMachineVerificationSequence: 0x00741042,
|
|
32343
32355
|
ConventionalMachineVerificationSequence: 0x00741044,
|
|
@@ -32357,8 +32369,8 @@ exports.Tag = {
|
|
|
32357
32369
|
ScheduledProcessingParametersSequence: 0x00741210,
|
|
32358
32370
|
PerformedProcessingParametersSequence: 0x00741212,
|
|
32359
32371
|
UnifiedProcedureStepPerformedProcedureSequence: 0x00741216,
|
|
32360
|
-
RelatedProcedureStepSequence: 0x00741220,
|
|
32361
|
-
ProcedureStepRelationshipType: 0x00741222,
|
|
32372
|
+
RelatedProcedureStepSequence: 0x00741220, // retired
|
|
32373
|
+
ProcedureStepRelationshipType: 0x00741222, // retired
|
|
32362
32374
|
ReplacedProcedureStepSequence: 0x00741224,
|
|
32363
32375
|
DeletionLock: 0x00741230,
|
|
32364
32376
|
ReceivingAE: 0x00741234,
|
|
@@ -32465,10 +32477,10 @@ exports.Tag = {
|
|
|
32465
32477
|
StorageMediaFileSetID: 0x00880130,
|
|
32466
32478
|
StorageMediaFileSetUID: 0x00880140,
|
|
32467
32479
|
IconImageSequence: 0x00880200,
|
|
32468
|
-
TopicTitle: 0x00880904,
|
|
32469
|
-
TopicSubject: 0x00880906,
|
|
32470
|
-
TopicAuthor: 0x00880910,
|
|
32471
|
-
TopicKeywords: 0x00880912,
|
|
32480
|
+
TopicTitle: 0x00880904, // retired
|
|
32481
|
+
TopicSubject: 0x00880906, // retired
|
|
32482
|
+
TopicAuthor: 0x00880910, // retired
|
|
32483
|
+
TopicKeywords: 0x00880912, // retired
|
|
32472
32484
|
SOPInstanceStatus: 0x01000410,
|
|
32473
32485
|
SOPAuthorizationDateTime: 0x01000420,
|
|
32474
32486
|
SOPAuthorizationComment: 0x01000424,
|
|
@@ -32497,13 +32509,13 @@ exports.Tag = {
|
|
|
32497
32509
|
ModifyingSystem: 0x04000563,
|
|
32498
32510
|
SourceOfPreviousValues: 0x04000564,
|
|
32499
32511
|
ReasonForTheAttributeModification: 0x04000565,
|
|
32500
|
-
EscapeTriplet: 0x10000000,
|
|
32501
|
-
RunLengthTriplet: 0x10000001,
|
|
32502
|
-
HuffmanTableSize: 0x10000002,
|
|
32503
|
-
HuffmanTableTriplet: 0x10000003,
|
|
32504
|
-
ShiftTableSize: 0x10000004,
|
|
32505
|
-
ShiftTableTriplet: 0x10000005,
|
|
32506
|
-
ZonalMap: 0x10100000,
|
|
32512
|
+
EscapeTriplet: 0x10000000, // retired
|
|
32513
|
+
RunLengthTriplet: 0x10000001, // retired
|
|
32514
|
+
HuffmanTableSize: 0x10000002, // retired
|
|
32515
|
+
HuffmanTableTriplet: 0x10000003, // retired
|
|
32516
|
+
ShiftTableSize: 0x10000004, // retired
|
|
32517
|
+
ShiftTableTriplet: 0x10000005, // retired
|
|
32518
|
+
ZonalMap: 0x10100000, // retired
|
|
32507
32519
|
NumberOfCopies: 0x20000010,
|
|
32508
32520
|
PrinterConfigurationSequence: 0x2000001e,
|
|
32509
32521
|
PrintPriority: 0x20000020,
|
|
@@ -32512,19 +32524,19 @@ exports.Tag = {
|
|
|
32512
32524
|
FilmSessionLabel: 0x20000050,
|
|
32513
32525
|
MemoryAllocation: 0x20000060,
|
|
32514
32526
|
MaximumMemoryAllocation: 0x20000061,
|
|
32515
|
-
ColorImagePrintingFlag: 0x20000062,
|
|
32516
|
-
CollationFlag: 0x20000063,
|
|
32517
|
-
AnnotationFlag: 0x20000065,
|
|
32518
|
-
ImageOverlayFlag: 0x20000067,
|
|
32519
|
-
PresentationLUTFlag: 0x20000069,
|
|
32520
|
-
ImageBoxPresentationLUTFlag: 0x2000006a,
|
|
32527
|
+
ColorImagePrintingFlag: 0x20000062, // retired
|
|
32528
|
+
CollationFlag: 0x20000063, // retired
|
|
32529
|
+
AnnotationFlag: 0x20000065, // retired
|
|
32530
|
+
ImageOverlayFlag: 0x20000067, // retired
|
|
32531
|
+
PresentationLUTFlag: 0x20000069, // retired
|
|
32532
|
+
ImageBoxPresentationLUTFlag: 0x2000006a, // retired
|
|
32521
32533
|
MemoryBitDepth: 0x200000a0,
|
|
32522
32534
|
PrintingBitDepth: 0x200000a1,
|
|
32523
32535
|
MediaInstalledSequence: 0x200000a2,
|
|
32524
32536
|
OtherMediaAvailableSequence: 0x200000a4,
|
|
32525
32537
|
SupportedImageDisplayFormatsSequence: 0x200000a8,
|
|
32526
32538
|
ReferencedFilmBoxSequence: 0x20000500,
|
|
32527
|
-
ReferencedStoredPrintSequence: 0x20000510,
|
|
32539
|
+
ReferencedStoredPrintSequence: 0x20000510, // retired
|
|
32528
32540
|
ImageDisplayFormat: 0x20100010,
|
|
32529
32541
|
AnnotationDisplayFormatID: 0x20100030,
|
|
32530
32542
|
FilmOrientation: 0x20100040,
|
|
@@ -32560,26 +32572,26 @@ exports.Tag = {
|
|
|
32560
32572
|
DecimateCropResult: 0x202000a2,
|
|
32561
32573
|
BasicGrayscaleImageSequence: 0x20200110,
|
|
32562
32574
|
BasicColorImageSequence: 0x20200111,
|
|
32563
|
-
ReferencedImageOverlayBoxSequence: 0x20200130,
|
|
32564
|
-
ReferencedVOILUTBoxSequence: 0x20200140,
|
|
32575
|
+
ReferencedImageOverlayBoxSequence: 0x20200130, // retired
|
|
32576
|
+
ReferencedVOILUTBoxSequence: 0x20200140, // retired
|
|
32565
32577
|
AnnotationPosition: 0x20300010,
|
|
32566
32578
|
TextString: 0x20300020,
|
|
32567
|
-
ReferencedOverlayPlaneSequence: 0x20400010,
|
|
32568
|
-
ReferencedOverlayPlaneGroups: 0x20400011,
|
|
32569
|
-
OverlayPixelDataSequence: 0x20400020,
|
|
32570
|
-
OverlayMagnificationType: 0x20400060,
|
|
32571
|
-
OverlaySmoothingType: 0x20400070,
|
|
32572
|
-
OverlayOrImageMagnification: 0x20400072,
|
|
32573
|
-
MagnifyToNumberOfColumns: 0x20400074,
|
|
32574
|
-
OverlayForegroundDensity: 0x20400080,
|
|
32575
|
-
OverlayBackgroundDensity: 0x20400082,
|
|
32576
|
-
OverlayMode: 0x20400090,
|
|
32577
|
-
ThresholdDensity: 0x20400100,
|
|
32578
|
-
ReferencedImageBoxSequenceRetired: 0x20400500,
|
|
32579
|
+
ReferencedOverlayPlaneSequence: 0x20400010, // retired
|
|
32580
|
+
ReferencedOverlayPlaneGroups: 0x20400011, // retired
|
|
32581
|
+
OverlayPixelDataSequence: 0x20400020, // retired
|
|
32582
|
+
OverlayMagnificationType: 0x20400060, // retired
|
|
32583
|
+
OverlaySmoothingType: 0x20400070, // retired
|
|
32584
|
+
OverlayOrImageMagnification: 0x20400072, // retired
|
|
32585
|
+
MagnifyToNumberOfColumns: 0x20400074, // retired
|
|
32586
|
+
OverlayForegroundDensity: 0x20400080, // retired
|
|
32587
|
+
OverlayBackgroundDensity: 0x20400082, // retired
|
|
32588
|
+
OverlayMode: 0x20400090, // retired
|
|
32589
|
+
ThresholdDensity: 0x20400100, // retired
|
|
32590
|
+
ReferencedImageBoxSequenceRetired: 0x20400500, // retired
|
|
32579
32591
|
PresentationLUTSequence: 0x20500010,
|
|
32580
32592
|
PresentationLUTShape: 0x20500020,
|
|
32581
32593
|
ReferencedPresentationLUTSequence: 0x20500500,
|
|
32582
|
-
PrintJobID: 0x21000010,
|
|
32594
|
+
PrintJobID: 0x21000010, // retired
|
|
32583
32595
|
ExecutionStatus: 0x21000020,
|
|
32584
32596
|
ExecutionStatusInfo: 0x21000030,
|
|
32585
32597
|
CreationDate: 0x21000040,
|
|
@@ -32588,23 +32600,23 @@ exports.Tag = {
|
|
|
32588
32600
|
DestinationAE: 0x21000140,
|
|
32589
32601
|
OwnerID: 0x21000160,
|
|
32590
32602
|
NumberOfFilms: 0x21000170,
|
|
32591
|
-
ReferencedPrintJobSequencePullStoredPrint: 0x21000500,
|
|
32603
|
+
ReferencedPrintJobSequencePullStoredPrint: 0x21000500, // retired
|
|
32592
32604
|
PrinterStatus: 0x21100010,
|
|
32593
32605
|
PrinterStatusInfo: 0x21100020,
|
|
32594
32606
|
PrinterName: 0x21100030,
|
|
32595
|
-
PrintQueueID: 0x21100099,
|
|
32596
|
-
QueueStatus: 0x21200010,
|
|
32597
|
-
PrintJobDescriptionSequence: 0x21200050,
|
|
32598
|
-
ReferencedPrintJobSequence: 0x21200070,
|
|
32599
|
-
PrintManagementCapabilitiesSequence: 0x21300010,
|
|
32600
|
-
PrinterCharacteristicsSequence: 0x21300015,
|
|
32601
|
-
FilmBoxContentSequence: 0x21300030,
|
|
32602
|
-
ImageBoxContentSequence: 0x21300040,
|
|
32603
|
-
AnnotationContentSequence: 0x21300050,
|
|
32604
|
-
ImageOverlayBoxContentSequence: 0x21300060,
|
|
32605
|
-
PresentationLUTContentSequence: 0x21300080,
|
|
32606
|
-
ProposedStudySequence: 0x213000a0,
|
|
32607
|
-
OriginalImageSequence: 0x213000c0,
|
|
32607
|
+
PrintQueueID: 0x21100099, // retired
|
|
32608
|
+
QueueStatus: 0x21200010, // retired
|
|
32609
|
+
PrintJobDescriptionSequence: 0x21200050, // retired
|
|
32610
|
+
ReferencedPrintJobSequence: 0x21200070, // retired
|
|
32611
|
+
PrintManagementCapabilitiesSequence: 0x21300010, // retired
|
|
32612
|
+
PrinterCharacteristicsSequence: 0x21300015, // retired
|
|
32613
|
+
FilmBoxContentSequence: 0x21300030, // retired
|
|
32614
|
+
ImageBoxContentSequence: 0x21300040, // retired
|
|
32615
|
+
AnnotationContentSequence: 0x21300050, // retired
|
|
32616
|
+
ImageOverlayBoxContentSequence: 0x21300060, // retired
|
|
32617
|
+
PresentationLUTContentSequence: 0x21300080, // retired
|
|
32618
|
+
ProposedStudySequence: 0x213000a0, // retired
|
|
32619
|
+
OriginalImageSequence: 0x213000c0, // retired
|
|
32608
32620
|
LabelUsingInformationExtractedFromInstances: 0x22000001,
|
|
32609
32621
|
LabelText: 0x22000002,
|
|
32610
32622
|
LabelStyleSelection: 0x22000003,
|
|
@@ -32715,10 +32727,10 @@ exports.Tag = {
|
|
|
32715
32727
|
ROIElementalCompositionSequence: 0x300600b6,
|
|
32716
32728
|
ROIElementalCompositionAtomicNumber: 0x300600b7,
|
|
32717
32729
|
ROIElementalCompositionAtomicMassFraction: 0x300600b8,
|
|
32718
|
-
AdditionalRTROIIdentificationCodeSequence: 0x300600b9,
|
|
32719
|
-
FrameOfReferenceRelationshipSequence: 0x300600c0,
|
|
32720
|
-
RelatedFrameOfReferenceUID: 0x300600c2,
|
|
32721
|
-
FrameOfReferenceTransformationType: 0x300600c4,
|
|
32730
|
+
AdditionalRTROIIdentificationCodeSequence: 0x300600b9, // retired
|
|
32731
|
+
FrameOfReferenceRelationshipSequence: 0x300600c0, // retired
|
|
32732
|
+
RelatedFrameOfReferenceUID: 0x300600c2, // retired
|
|
32733
|
+
FrameOfReferenceTransformationType: 0x300600c4, // retired
|
|
32722
32734
|
FrameOfReferenceTransformationMatrix: 0x300600c6,
|
|
32723
32735
|
FrameOfReferenceTransformationComment: 0x300600c8,
|
|
32724
32736
|
MeasuredDoseReferenceSequence: 0x30080010,
|
|
@@ -32879,9 +32891,9 @@ exports.Tag = {
|
|
|
32879
32891
|
BeamDosePointSSD: 0x300a008a,
|
|
32880
32892
|
BeamDoseMeaning: 0x300a008b,
|
|
32881
32893
|
BeamDoseVerificationControlPointSequence: 0x300a008c,
|
|
32882
|
-
AverageBeamDosePointDepth: 0x300a008d,
|
|
32883
|
-
AverageBeamDosePointEquivalentDepth: 0x300a008e,
|
|
32884
|
-
AverageBeamDosePointSSD: 0x300a008f,
|
|
32894
|
+
AverageBeamDosePointDepth: 0x300a008d, // retired
|
|
32895
|
+
AverageBeamDosePointEquivalentDepth: 0x300a008e, // retired
|
|
32896
|
+
AverageBeamDosePointSSD: 0x300a008f, // retired
|
|
32885
32897
|
BeamDoseType: 0x300a0090,
|
|
32886
32898
|
AlternateBeamDose: 0x300a0091,
|
|
32887
32899
|
AlternateBeamDoseType: 0x300a0092,
|
|
@@ -33253,36 +33265,36 @@ exports.Tag = {
|
|
|
33253
33265
|
ReviewDate: 0x300e0004,
|
|
33254
33266
|
ReviewTime: 0x300e0005,
|
|
33255
33267
|
ReviewerName: 0x300e0008,
|
|
33256
|
-
Arbitrary: 0x40000010,
|
|
33257
|
-
TextComments: 0x40004000,
|
|
33258
|
-
ResultsID: 0x40080040,
|
|
33259
|
-
ResultsIDIssuer: 0x40080042,
|
|
33260
|
-
ReferencedInterpretationSequence: 0x40080050,
|
|
33261
|
-
ReportProductionStatusTrial: 0x400800ff,
|
|
33262
|
-
InterpretationRecordedDate: 0x40080100,
|
|
33263
|
-
InterpretationRecordedTime: 0x40080101,
|
|
33264
|
-
InterpretationRecorder: 0x40080102,
|
|
33265
|
-
ReferenceToRecordedSound: 0x40080103,
|
|
33266
|
-
InterpretationTranscriptionDate: 0x40080108,
|
|
33267
|
-
InterpretationTranscriptionTime: 0x40080109,
|
|
33268
|
-
InterpretationTranscriber: 0x4008010a,
|
|
33269
|
-
InterpretationText: 0x4008010b,
|
|
33270
|
-
InterpretationAuthor: 0x4008010c,
|
|
33271
|
-
InterpretationApproverSequence: 0x40080111,
|
|
33272
|
-
InterpretationApprovalDate: 0x40080112,
|
|
33273
|
-
InterpretationApprovalTime: 0x40080113,
|
|
33274
|
-
PhysicianApprovingInterpretation: 0x40080114,
|
|
33275
|
-
InterpretationDiagnosisDescription: 0x40080115,
|
|
33276
|
-
InterpretationDiagnosisCodeSequence: 0x40080117,
|
|
33277
|
-
ResultsDistributionListSequence: 0x40080118,
|
|
33278
|
-
DistributionName: 0x40080119,
|
|
33279
|
-
DistributionAddress: 0x4008011a,
|
|
33280
|
-
InterpretationID: 0x40080200,
|
|
33281
|
-
InterpretationIDIssuer: 0x40080202,
|
|
33282
|
-
InterpretationTypeID: 0x40080210,
|
|
33283
|
-
InterpretationStatusID: 0x40080212,
|
|
33284
|
-
Impressions: 0x40080300,
|
|
33285
|
-
ResultsComments: 0x40084000,
|
|
33268
|
+
Arbitrary: 0x40000010, // retired
|
|
33269
|
+
TextComments: 0x40004000, // retired
|
|
33270
|
+
ResultsID: 0x40080040, // retired
|
|
33271
|
+
ResultsIDIssuer: 0x40080042, // retired
|
|
33272
|
+
ReferencedInterpretationSequence: 0x40080050, // retired
|
|
33273
|
+
ReportProductionStatusTrial: 0x400800ff, // retired
|
|
33274
|
+
InterpretationRecordedDate: 0x40080100, // retired
|
|
33275
|
+
InterpretationRecordedTime: 0x40080101, // retired
|
|
33276
|
+
InterpretationRecorder: 0x40080102, // retired
|
|
33277
|
+
ReferenceToRecordedSound: 0x40080103, // retired
|
|
33278
|
+
InterpretationTranscriptionDate: 0x40080108, // retired
|
|
33279
|
+
InterpretationTranscriptionTime: 0x40080109, // retired
|
|
33280
|
+
InterpretationTranscriber: 0x4008010a, // retired
|
|
33281
|
+
InterpretationText: 0x4008010b, // retired
|
|
33282
|
+
InterpretationAuthor: 0x4008010c, // retired
|
|
33283
|
+
InterpretationApproverSequence: 0x40080111, // retired
|
|
33284
|
+
InterpretationApprovalDate: 0x40080112, // retired
|
|
33285
|
+
InterpretationApprovalTime: 0x40080113, // retired
|
|
33286
|
+
PhysicianApprovingInterpretation: 0x40080114, // retired
|
|
33287
|
+
InterpretationDiagnosisDescription: 0x40080115, // retired
|
|
33288
|
+
InterpretationDiagnosisCodeSequence: 0x40080117, // retired
|
|
33289
|
+
ResultsDistributionListSequence: 0x40080118, // retired
|
|
33290
|
+
DistributionName: 0x40080119, // retired
|
|
33291
|
+
DistributionAddress: 0x4008011a, // retired
|
|
33292
|
+
InterpretationID: 0x40080200, // retired
|
|
33293
|
+
InterpretationIDIssuer: 0x40080202, // retired
|
|
33294
|
+
InterpretationTypeID: 0x40080210, // retired
|
|
33295
|
+
InterpretationStatusID: 0x40080212, // retired
|
|
33296
|
+
Impressions: 0x40080300, // retired
|
|
33297
|
+
ResultsComments: 0x40084000, // retired
|
|
33286
33298
|
LowEnergyDetectors: 0x40100001,
|
|
33287
33299
|
HighEnergyDetectors: 0x40100002,
|
|
33288
33300
|
DetectorGeometrySequence: 0x40100004,
|
|
@@ -33370,32 +33382,32 @@ exports.Tag = {
|
|
|
33370
33382
|
SecondaryInspectionMethodSequence: 0x4010107d,
|
|
33371
33383
|
PRCSToRCSOrientation: 0x4010107e,
|
|
33372
33384
|
MACParametersSequence: 0x4ffe0001,
|
|
33373
|
-
CurveDimensions: 0x50000005,
|
|
33374
|
-
NumberOfPoints: 0x50000010,
|
|
33375
|
-
TypeOfData: 0x50000020,
|
|
33376
|
-
CurveDescription: 0x50000022,
|
|
33377
|
-
AxisUnits: 0x50000030,
|
|
33378
|
-
AxisLabels: 0x50000040,
|
|
33379
|
-
DataValueRepresentation: 0x50000103,
|
|
33380
|
-
MinimumCoordinateValue: 0x50000104,
|
|
33381
|
-
MaximumCoordinateValue: 0x50000105,
|
|
33382
|
-
CurveRange: 0x50000106,
|
|
33383
|
-
CurveDataDescriptor: 0x50000110,
|
|
33384
|
-
CoordinateStartValue: 0x50000112,
|
|
33385
|
-
CoordinateStepValue: 0x50000114,
|
|
33386
|
-
CurveActivationLayer: 0x50001001,
|
|
33387
|
-
AudioType: 0x50002000,
|
|
33388
|
-
AudioSampleFormat: 0x50002002,
|
|
33389
|
-
NumberOfChannels: 0x50002004,
|
|
33390
|
-
NumberOfSamples: 0x50002006,
|
|
33391
|
-
SampleRate: 0x50002008,
|
|
33392
|
-
TotalTime: 0x5000200a,
|
|
33393
|
-
AudioSampleData: 0x5000200c,
|
|
33394
|
-
AudioComments: 0x5000200e,
|
|
33395
|
-
CurveLabel: 0x50002500,
|
|
33396
|
-
CurveReferencedOverlaySequence: 0x50002600,
|
|
33397
|
-
CurveReferencedOverlayGroup: 0x50002610,
|
|
33398
|
-
CurveData: 0x50003000,
|
|
33385
|
+
CurveDimensions: 0x50000005, // retired
|
|
33386
|
+
NumberOfPoints: 0x50000010, // retired
|
|
33387
|
+
TypeOfData: 0x50000020, // retired
|
|
33388
|
+
CurveDescription: 0x50000022, // retired
|
|
33389
|
+
AxisUnits: 0x50000030, // retired
|
|
33390
|
+
AxisLabels: 0x50000040, // retired
|
|
33391
|
+
DataValueRepresentation: 0x50000103, // retired
|
|
33392
|
+
MinimumCoordinateValue: 0x50000104, // retired
|
|
33393
|
+
MaximumCoordinateValue: 0x50000105, // retired
|
|
33394
|
+
CurveRange: 0x50000106, // retired
|
|
33395
|
+
CurveDataDescriptor: 0x50000110, // retired
|
|
33396
|
+
CoordinateStartValue: 0x50000112, // retired
|
|
33397
|
+
CoordinateStepValue: 0x50000114, // retired
|
|
33398
|
+
CurveActivationLayer: 0x50001001, // retired
|
|
33399
|
+
AudioType: 0x50002000, // retired
|
|
33400
|
+
AudioSampleFormat: 0x50002002, // retired
|
|
33401
|
+
NumberOfChannels: 0x50002004, // retired
|
|
33402
|
+
NumberOfSamples: 0x50002006, // retired
|
|
33403
|
+
SampleRate: 0x50002008, // retired
|
|
33404
|
+
TotalTime: 0x5000200a, // retired
|
|
33405
|
+
AudioSampleData: 0x5000200c, // retired
|
|
33406
|
+
AudioComments: 0x5000200e, // retired
|
|
33407
|
+
CurveLabel: 0x50002500, // retired
|
|
33408
|
+
CurveReferencedOverlaySequence: 0x50002600, // retired
|
|
33409
|
+
CurveReferencedOverlayGroup: 0x50002610, // retired
|
|
33410
|
+
CurveData: 0x50003000, // retired
|
|
33399
33411
|
SharedFunctionalGroupsSequence: 0x52009229,
|
|
33400
33412
|
PerFrameFunctionalGroupsSequence: 0x52009230,
|
|
33401
33413
|
WaveformSequence: 0x54000100,
|
|
@@ -33409,55 +33421,55 @@ exports.Tag = {
|
|
|
33409
33421
|
SpectroscopyData: 0x56000020,
|
|
33410
33422
|
OverlayRows: 0x60000010,
|
|
33411
33423
|
OverlayColumns: 0x60000011,
|
|
33412
|
-
OverlayPlanes: 0x60000012,
|
|
33424
|
+
OverlayPlanes: 0x60000012, // retired
|
|
33413
33425
|
NumberOfFramesInOverlay: 0x60000015,
|
|
33414
33426
|
OverlayDescription: 0x60000022,
|
|
33415
33427
|
OverlayType: 0x60000040,
|
|
33416
33428
|
OverlaySubtype: 0x60000045,
|
|
33417
33429
|
OverlayOrigin: 0x60000050,
|
|
33418
33430
|
ImageFrameOrigin: 0x60000051,
|
|
33419
|
-
OverlayPlaneOrigin: 0x60000052,
|
|
33420
|
-
OverlayCompressionCode: 0x60000060,
|
|
33421
|
-
OverlayCompressionOriginator: 0x60000061,
|
|
33422
|
-
OverlayCompressionLabel: 0x60000062,
|
|
33423
|
-
OverlayCompressionDescription: 0x60000063,
|
|
33424
|
-
OverlayCompressionStepPointers: 0x60000066,
|
|
33425
|
-
OverlayRepeatInterval: 0x60000068,
|
|
33426
|
-
OverlayBitsGrouped: 0x60000069,
|
|
33431
|
+
OverlayPlaneOrigin: 0x60000052, // retired
|
|
33432
|
+
OverlayCompressionCode: 0x60000060, // retired
|
|
33433
|
+
OverlayCompressionOriginator: 0x60000061, // retired
|
|
33434
|
+
OverlayCompressionLabel: 0x60000062, // retired
|
|
33435
|
+
OverlayCompressionDescription: 0x60000063, // retired
|
|
33436
|
+
OverlayCompressionStepPointers: 0x60000066, // retired
|
|
33437
|
+
OverlayRepeatInterval: 0x60000068, // retired
|
|
33438
|
+
OverlayBitsGrouped: 0x60000069, // retired
|
|
33427
33439
|
OverlayBitsAllocated: 0x60000100,
|
|
33428
33440
|
OverlayBitPosition: 0x60000102,
|
|
33429
|
-
OverlayFormat: 0x60000110,
|
|
33430
|
-
OverlayLocation: 0x60000200,
|
|
33431
|
-
OverlayCodeLabel: 0x60000800,
|
|
33432
|
-
OverlayNumberOfTables: 0x60000802,
|
|
33433
|
-
OverlayCodeTableLocation: 0x60000803,
|
|
33434
|
-
OverlayBitsForCodeWord: 0x60000804,
|
|
33441
|
+
OverlayFormat: 0x60000110, // retired
|
|
33442
|
+
OverlayLocation: 0x60000200, // retired
|
|
33443
|
+
OverlayCodeLabel: 0x60000800, // retired
|
|
33444
|
+
OverlayNumberOfTables: 0x60000802, // retired
|
|
33445
|
+
OverlayCodeTableLocation: 0x60000803, // retired
|
|
33446
|
+
OverlayBitsForCodeWord: 0x60000804, // retired
|
|
33435
33447
|
OverlayActivationLayer: 0x60001001,
|
|
33436
|
-
OverlayDescriptorGray: 0x60001100,
|
|
33437
|
-
OverlayDescriptorRed: 0x60001101,
|
|
33438
|
-
OverlayDescriptorGreen: 0x60001102,
|
|
33439
|
-
OverlayDescriptorBlue: 0x60001103,
|
|
33440
|
-
OverlaysGray: 0x60001200,
|
|
33441
|
-
OverlaysRed: 0x60001201,
|
|
33442
|
-
OverlaysGreen: 0x60001202,
|
|
33443
|
-
OverlaysBlue: 0x60001203,
|
|
33448
|
+
OverlayDescriptorGray: 0x60001100, // retired
|
|
33449
|
+
OverlayDescriptorRed: 0x60001101, // retired
|
|
33450
|
+
OverlayDescriptorGreen: 0x60001102, // retired
|
|
33451
|
+
OverlayDescriptorBlue: 0x60001103, // retired
|
|
33452
|
+
OverlaysGray: 0x60001200, // retired
|
|
33453
|
+
OverlaysRed: 0x60001201, // retired
|
|
33454
|
+
OverlaysGreen: 0x60001202, // retired
|
|
33455
|
+
OverlaysBlue: 0x60001203, // retired
|
|
33444
33456
|
ROIArea: 0x60001301,
|
|
33445
33457
|
ROIMean: 0x60001302,
|
|
33446
33458
|
ROIStandardDeviation: 0x60001303,
|
|
33447
33459
|
OverlayLabel: 0x60001500,
|
|
33448
33460
|
OverlayData: 0x60003000,
|
|
33449
|
-
OverlayComments: 0x60004000,
|
|
33461
|
+
OverlayComments: 0x60004000, // retired
|
|
33450
33462
|
FloatPixelData: 0x7fe00008,
|
|
33451
33463
|
DoubleFloatPixelData: 0x7fe00009,
|
|
33452
33464
|
PixelData: 0x7fe00010,
|
|
33453
|
-
CoefficientsSDVN: 0x7fe00020,
|
|
33454
|
-
CoefficientsSDHN: 0x7fe00030,
|
|
33455
|
-
CoefficientsSDDN: 0x7fe00040,
|
|
33456
|
-
VariablePixelData: 0x7f000010,
|
|
33457
|
-
VariableNextDataGroup: 0x7f000011,
|
|
33458
|
-
VariableCoefficientsSDVN: 0x7f000020,
|
|
33459
|
-
VariableCoefficientsSDHN: 0x7f000030,
|
|
33460
|
-
VariableCoefficientsSDDN: 0x7f000040,
|
|
33465
|
+
CoefficientsSDVN: 0x7fe00020, // retired
|
|
33466
|
+
CoefficientsSDHN: 0x7fe00030, // retired
|
|
33467
|
+
CoefficientsSDDN: 0x7fe00040, // retired
|
|
33468
|
+
VariablePixelData: 0x7f000010, // retired
|
|
33469
|
+
VariableNextDataGroup: 0x7f000011, // retired
|
|
33470
|
+
VariableCoefficientsSDVN: 0x7f000020, // retired
|
|
33471
|
+
VariableCoefficientsSDHN: 0x7f000030, // retired
|
|
33472
|
+
VariableCoefficientsSDDN: 0x7f000040, // retired
|
|
33461
33473
|
DigitalSignaturesSequence: 0xfffafffa,
|
|
33462
33474
|
DataSetTrailingPadding: 0xfffcfffc,
|
|
33463
33475
|
Item: 0xfffee000,
|
|
@@ -33487,6 +33499,7 @@ class UIDToName {
|
|
|
33487
33499
|
return UIDToName.dict[uid];
|
|
33488
33500
|
}
|
|
33489
33501
|
}
|
|
33502
|
+
exports.UIDToName = UIDToName;
|
|
33490
33503
|
UIDToName.dict = {
|
|
33491
33504
|
'1.2.840.10008.1.1': 'Verification SOP Class',
|
|
33492
33505
|
'1.2.840.10008.1.2': 'Implicit VR Little Endian',
|
|
@@ -33898,7 +33911,6 @@ UIDToName.dict = {
|
|
|
33898
33911
|
'1.2.840.10008.15.0.4.8': 'dicomTransferCapability',
|
|
33899
33912
|
'1.2.840.10008.15.1.1': 'Universal Coordinated Time',
|
|
33900
33913
|
};
|
|
33901
|
-
exports.UIDToName = UIDToName;
|
|
33902
33914
|
|
|
33903
33915
|
|
|
33904
33916
|
/***/ }),
|
|
@@ -33918,24 +33930,24 @@ exports.UID = {
|
|
|
33918
33930
|
ImplicitVRLittleEndian: '1.2.840.10008.1.2',
|
|
33919
33931
|
ExplicitVRLittleEndian: '1.2.840.10008.1.2.1',
|
|
33920
33932
|
DeflatedExplicitVRLittleEndian: '1.2.840.10008.1.2.1.99',
|
|
33921
|
-
ExplicitVRBigEndianRetired: '1.2.840.10008.1.2.2',
|
|
33933
|
+
ExplicitVRBigEndianRetired: '1.2.840.10008.1.2.2', // retired
|
|
33922
33934
|
JPEGBaselineProcess1: '1.2.840.10008.1.2.4.50',
|
|
33923
33935
|
JPEGExtendedProcess24: '1.2.840.10008.1.2.4.51',
|
|
33924
|
-
JPEGExtendedProcess35Retired: '1.2.840.10008.1.2.4.52',
|
|
33925
|
-
JPEGSpectralSelectionNonHierarchicalProcess68Retired: '1.2.840.10008.1.2.4.53',
|
|
33926
|
-
JPEGSpectralSelectionNonHierarchicalProcess79Retired: '1.2.840.10008.1.2.4.54',
|
|
33927
|
-
JPEGFullProgressionNonHierarchicalProcess1012Retired: '1.2.840.10008.1.2.4.55',
|
|
33928
|
-
JPEGFullProgressionNonHierarchicalProcess1113Retired: '1.2.840.10008.1.2.4.56',
|
|
33936
|
+
JPEGExtendedProcess35Retired: '1.2.840.10008.1.2.4.52', // retired
|
|
33937
|
+
JPEGSpectralSelectionNonHierarchicalProcess68Retired: '1.2.840.10008.1.2.4.53', // retired
|
|
33938
|
+
JPEGSpectralSelectionNonHierarchicalProcess79Retired: '1.2.840.10008.1.2.4.54', // retired
|
|
33939
|
+
JPEGFullProgressionNonHierarchicalProcess1012Retired: '1.2.840.10008.1.2.4.55', // retired
|
|
33940
|
+
JPEGFullProgressionNonHierarchicalProcess1113Retired: '1.2.840.10008.1.2.4.56', // retired
|
|
33929
33941
|
JPEGLosslessNonHierarchicalProcess14: '1.2.840.10008.1.2.4.57',
|
|
33930
|
-
JPEGLosslessNonHierarchicalProcess15Retired: '1.2.840.10008.1.2.4.58',
|
|
33931
|
-
JPEGExtendedHierarchicalProcess1618Retired: '1.2.840.10008.1.2.4.59',
|
|
33932
|
-
JPEGExtendedHierarchicalProcess1719Retired: '1.2.840.10008.1.2.4.60',
|
|
33933
|
-
JPEGSpectralSelectionHierarchicalProcess2022Retired: '1.2.840.10008.1.2.4.61',
|
|
33934
|
-
JPEGSpectralSelectionHierarchicalProcess2123Retired: '1.2.840.10008.1.2.4.62',
|
|
33935
|
-
JPEGFullProgressionHierarchicalProcess2426Retired: '1.2.840.10008.1.2.4.63',
|
|
33936
|
-
JPEGFullProgressionHierarchicalProcess2527Retired: '1.2.840.10008.1.2.4.64',
|
|
33937
|
-
JPEGLosslessHierarchicalProcess28Retired: '1.2.840.10008.1.2.4.65',
|
|
33938
|
-
JPEGLosslessHierarchicalProcess29Retired: '1.2.840.10008.1.2.4.66',
|
|
33942
|
+
JPEGLosslessNonHierarchicalProcess15Retired: '1.2.840.10008.1.2.4.58', // retired
|
|
33943
|
+
JPEGExtendedHierarchicalProcess1618Retired: '1.2.840.10008.1.2.4.59', // retired
|
|
33944
|
+
JPEGExtendedHierarchicalProcess1719Retired: '1.2.840.10008.1.2.4.60', // retired
|
|
33945
|
+
JPEGSpectralSelectionHierarchicalProcess2022Retired: '1.2.840.10008.1.2.4.61', // retired
|
|
33946
|
+
JPEGSpectralSelectionHierarchicalProcess2123Retired: '1.2.840.10008.1.2.4.62', // retired
|
|
33947
|
+
JPEGFullProgressionHierarchicalProcess2426Retired: '1.2.840.10008.1.2.4.63', // retired
|
|
33948
|
+
JPEGFullProgressionHierarchicalProcess2527Retired: '1.2.840.10008.1.2.4.64', // retired
|
|
33949
|
+
JPEGLosslessHierarchicalProcess28Retired: '1.2.840.10008.1.2.4.65', // retired
|
|
33950
|
+
JPEGLosslessHierarchicalProcess29Retired: '1.2.840.10008.1.2.4.66', // retired
|
|
33939
33951
|
JPEGLosslessNonHierarchicalFirstOrderPredictionProcess14SelectionValue1: '1.2.840.10008.1.2.4.70',
|
|
33940
33952
|
JPEGLSLosslessImageCompression: '1.2.840.10008.1.2.4.80',
|
|
33941
33953
|
JPEGLSLossyNearLosslessImageCompression: '1.2.840.10008.1.2.4.81',
|
|
@@ -33986,12 +33998,12 @@ exports.UID = {
|
|
|
33986
33998
|
SummerColorPaletteSOPInstance: '1.2.840.10008.1.5.6',
|
|
33987
33999
|
FallColorPaletteSOPInstance: '1.2.840.10008.1.5.7',
|
|
33988
34000
|
WinterColorPaletteSOPInstance: '1.2.840.10008.1.5.8',
|
|
33989
|
-
BasicStudyContentNotificationSOPClassRetired: '1.2.840.10008.1.9',
|
|
33990
|
-
Papyrus3ImplicitVRLittleEndianRetired: '1.2.840.10008.1.20',
|
|
34001
|
+
BasicStudyContentNotificationSOPClassRetired: '1.2.840.10008.1.9', // retired
|
|
34002
|
+
Papyrus3ImplicitVRLittleEndianRetired: '1.2.840.10008.1.20', // retired
|
|
33991
34003
|
StorageCommitmentPushModelSOPClass: '1.2.840.10008.1.20.1',
|
|
33992
34004
|
StorageCommitmentPushModelSOPInstance: '1.2.840.10008.1.20.1.1',
|
|
33993
|
-
StorageCommitmentPullModelSOPClassRetired: '1.2.840.10008.1.20.2',
|
|
33994
|
-
StorageCommitmentPullModelSOPInstanceRetired: '1.2.840.10008.1.20.2.1',
|
|
34005
|
+
StorageCommitmentPullModelSOPClassRetired: '1.2.840.10008.1.20.2', // retired
|
|
34006
|
+
StorageCommitmentPullModelSOPInstanceRetired: '1.2.840.10008.1.20.2.1', // retired
|
|
33995
34007
|
ProceduralEventLoggingSOPClass: '1.2.840.10008.1.40',
|
|
33996
34008
|
ProceduralEventLoggingSOPInstance: '1.2.840.10008.1.40.1',
|
|
33997
34009
|
SubstanceAdministrationLoggingSOPClass: '1.2.840.10008.1.42',
|
|
@@ -34004,26 +34016,26 @@ exports.UID = {
|
|
|
34004
34016
|
MouseGenomeInitiativeMGI: '1.2.840.10008.2.16.8',
|
|
34005
34017
|
PubChemCompoundCID: '1.2.840.10008.2.16.9',
|
|
34006
34018
|
DICOMApplicationContextName: '1.2.840.10008.3.1.1.1',
|
|
34007
|
-
DetachedPatientManagementSOPClassRetired: '1.2.840.10008.3.1.2.1.1',
|
|
34008
|
-
DetachedPatientManagementMetaSOPClassRetired: '1.2.840.10008.3.1.2.1.4',
|
|
34009
|
-
DetachedVisitManagementSOPClassRetired: '1.2.840.10008.3.1.2.2.1',
|
|
34010
|
-
DetachedStudyManagementSOPClassRetired: '1.2.840.10008.3.1.2.3.1',
|
|
34011
|
-
StudyComponentManagementSOPClassRetired: '1.2.840.10008.3.1.2.3.2',
|
|
34019
|
+
DetachedPatientManagementSOPClassRetired: '1.2.840.10008.3.1.2.1.1', // retired
|
|
34020
|
+
DetachedPatientManagementMetaSOPClassRetired: '1.2.840.10008.3.1.2.1.4', // retired
|
|
34021
|
+
DetachedVisitManagementSOPClassRetired: '1.2.840.10008.3.1.2.2.1', // retired
|
|
34022
|
+
DetachedStudyManagementSOPClassRetired: '1.2.840.10008.3.1.2.3.1', // retired
|
|
34023
|
+
StudyComponentManagementSOPClassRetired: '1.2.840.10008.3.1.2.3.2', // retired
|
|
34012
34024
|
ModalityPerformedProcedureStepSOPClass: '1.2.840.10008.3.1.2.3.3',
|
|
34013
34025
|
ModalityPerformedProcedureStepRetrieveSOPClass: '1.2.840.10008.3.1.2.3.4',
|
|
34014
34026
|
ModalityPerformedProcedureStepNotificationSOPClass: '1.2.840.10008.3.1.2.3.5',
|
|
34015
|
-
DetachedResultsManagementSOPClassRetired: '1.2.840.10008.3.1.2.5.1',
|
|
34016
|
-
DetachedResultsManagementMetaSOPClassRetired: '1.2.840.10008.3.1.2.5.4',
|
|
34017
|
-
DetachedStudyManagementMetaSOPClassRetired: '1.2.840.10008.3.1.2.5.5',
|
|
34018
|
-
DetachedInterpretationManagementSOPClassRetired: '1.2.840.10008.3.1.2.6.1',
|
|
34027
|
+
DetachedResultsManagementSOPClassRetired: '1.2.840.10008.3.1.2.5.1', // retired
|
|
34028
|
+
DetachedResultsManagementMetaSOPClassRetired: '1.2.840.10008.3.1.2.5.4', // retired
|
|
34029
|
+
DetachedStudyManagementMetaSOPClassRetired: '1.2.840.10008.3.1.2.5.5', // retired
|
|
34030
|
+
DetachedInterpretationManagementSOPClassRetired: '1.2.840.10008.3.1.2.6.1', // retired
|
|
34019
34031
|
StorageServiceClass: '1.2.840.10008.4.2',
|
|
34020
34032
|
BasicFilmSessionSOPClass: '1.2.840.10008.5.1.1.1',
|
|
34021
34033
|
BasicFilmBoxSOPClass: '1.2.840.10008.5.1.1.2',
|
|
34022
34034
|
BasicGrayscaleImageBoxSOPClass: '1.2.840.10008.5.1.1.4',
|
|
34023
34035
|
BasicColorImageBoxSOPClass: '1.2.840.10008.5.1.1.4.1',
|
|
34024
|
-
ReferencedImageBoxSOPClassRetired: '1.2.840.10008.5.1.1.4.2',
|
|
34036
|
+
ReferencedImageBoxSOPClassRetired: '1.2.840.10008.5.1.1.4.2', // retired
|
|
34025
34037
|
BasicGrayscalePrintManagementMetaSOPClass: '1.2.840.10008.5.1.1.9',
|
|
34026
|
-
ReferencedGrayscalePrintManagementMetaSOPClassRetired: '1.2.840.10008.5.1.1.9.1',
|
|
34038
|
+
ReferencedGrayscalePrintManagementMetaSOPClassRetired: '1.2.840.10008.5.1.1.9.1', // retired
|
|
34027
34039
|
PrintJobSOPClass: '1.2.840.10008.5.1.1.14',
|
|
34028
34040
|
BasicAnnotationBoxSOPClass: '1.2.840.10008.5.1.1.15',
|
|
34029
34041
|
PrinterSOPClass: '1.2.840.10008.5.1.1.16',
|
|
@@ -34031,18 +34043,18 @@ exports.UID = {
|
|
|
34031
34043
|
PrinterSOPInstance: '1.2.840.10008.5.1.1.17',
|
|
34032
34044
|
PrinterConfigurationRetrievalSOPInstance: '1.2.840.10008.5.1.1.17.376',
|
|
34033
34045
|
BasicColorPrintManagementMetaSOPClass: '1.2.840.10008.5.1.1.18',
|
|
34034
|
-
ReferencedColorPrintManagementMetaSOPClassRetired: '1.2.840.10008.5.1.1.18.1',
|
|
34046
|
+
ReferencedColorPrintManagementMetaSOPClassRetired: '1.2.840.10008.5.1.1.18.1', // retired
|
|
34035
34047
|
VOILUTBoxSOPClass: '1.2.840.10008.5.1.1.22',
|
|
34036
34048
|
PresentationLUTSOPClass: '1.2.840.10008.5.1.1.23',
|
|
34037
|
-
ImageOverlayBoxSOPClassRetired: '1.2.840.10008.5.1.1.24',
|
|
34038
|
-
BasicPrintImageOverlayBoxSOPClassRetired: '1.2.840.10008.5.1.1.24.1',
|
|
34039
|
-
PrintQueueSOPInstanceRetired: '1.2.840.10008.5.1.1.25',
|
|
34040
|
-
PrintQueueManagementSOPClassRetired: '1.2.840.10008.5.1.1.26',
|
|
34041
|
-
StoredPrintStorageSOPClassRetired: '1.2.840.10008.5.1.1.27',
|
|
34042
|
-
HardcopyGrayscaleImageStorageSOPClassRetired: '1.2.840.10008.5.1.1.29',
|
|
34043
|
-
HardcopyColorImageStorageSOPClassRetired: '1.2.840.10008.5.1.1.30',
|
|
34044
|
-
PullPrintRequestSOPClassRetired: '1.2.840.10008.5.1.1.31',
|
|
34045
|
-
PullStoredPrintManagementMetaSOPClassRetired: '1.2.840.10008.5.1.1.32',
|
|
34049
|
+
ImageOverlayBoxSOPClassRetired: '1.2.840.10008.5.1.1.24', // retired
|
|
34050
|
+
BasicPrintImageOverlayBoxSOPClassRetired: '1.2.840.10008.5.1.1.24.1', // retired
|
|
34051
|
+
PrintQueueSOPInstanceRetired: '1.2.840.10008.5.1.1.25', // retired
|
|
34052
|
+
PrintQueueManagementSOPClassRetired: '1.2.840.10008.5.1.1.26', // retired
|
|
34053
|
+
StoredPrintStorageSOPClassRetired: '1.2.840.10008.5.1.1.27', // retired
|
|
34054
|
+
HardcopyGrayscaleImageStorageSOPClassRetired: '1.2.840.10008.5.1.1.29', // retired
|
|
34055
|
+
HardcopyColorImageStorageSOPClassRetired: '1.2.840.10008.5.1.1.30', // retired
|
|
34056
|
+
PullPrintRequestSOPClassRetired: '1.2.840.10008.5.1.1.31', // retired
|
|
34057
|
+
PullStoredPrintManagementMetaSOPClassRetired: '1.2.840.10008.5.1.1.32', // retired
|
|
34046
34058
|
MediaCreationManagementSOPClassUID: '1.2.840.10008.5.1.1.33',
|
|
34047
34059
|
DisplaySystemSOPClass: '1.2.840.10008.5.1.1.40',
|
|
34048
34060
|
DisplaySystemSOPInstance: '1.2.840.10008.5.1.1.40.1',
|
|
@@ -34056,15 +34068,15 @@ exports.UID = {
|
|
|
34056
34068
|
CTImageStorage: '1.2.840.10008.5.1.4.1.1.2',
|
|
34057
34069
|
EnhancedCTImageStorage: '1.2.840.10008.5.1.4.1.1.2.1',
|
|
34058
34070
|
LegacyConvertedEnhancedCTImageStorage: '1.2.840.10008.5.1.4.1.1.2.2',
|
|
34059
|
-
UltrasoundMultiframeImageStorageRetired: '1.2.840.10008.5.1.4.1.1.3',
|
|
34071
|
+
UltrasoundMultiframeImageStorageRetired: '1.2.840.10008.5.1.4.1.1.3', // retired
|
|
34060
34072
|
UltrasoundMultiframeImageStorage: '1.2.840.10008.5.1.4.1.1.3.1',
|
|
34061
34073
|
MRImageStorage: '1.2.840.10008.5.1.4.1.1.4',
|
|
34062
34074
|
EnhancedMRImageStorage: '1.2.840.10008.5.1.4.1.1.4.1',
|
|
34063
34075
|
MRSpectroscopyStorage: '1.2.840.10008.5.1.4.1.1.4.2',
|
|
34064
34076
|
EnhancedMRColorImageStorage: '1.2.840.10008.5.1.4.1.1.4.3',
|
|
34065
34077
|
LegacyConvertedEnhancedMRImageStorage: '1.2.840.10008.5.1.4.1.1.4.4',
|
|
34066
|
-
NuclearMedicineImageStorageRetired: '1.2.840.10008.5.1.4.1.1.5',
|
|
34067
|
-
UltrasoundImageStorageRetired: '1.2.840.10008.5.1.4.1.1.6',
|
|
34078
|
+
NuclearMedicineImageStorageRetired: '1.2.840.10008.5.1.4.1.1.5', // retired
|
|
34079
|
+
UltrasoundImageStorageRetired: '1.2.840.10008.5.1.4.1.1.6', // retired
|
|
34068
34080
|
UltrasoundImageStorage: '1.2.840.10008.5.1.4.1.1.6.1',
|
|
34069
34081
|
EnhancedUSVolumeStorage: '1.2.840.10008.5.1.4.1.1.6.2',
|
|
34070
34082
|
SecondaryCaptureImageStorage: '1.2.840.10008.5.1.4.1.1.7',
|
|
@@ -34072,9 +34084,9 @@ exports.UID = {
|
|
|
34072
34084
|
MultiframeGrayscaleByteSecondaryCaptureImageStorage: '1.2.840.10008.5.1.4.1.1.7.2',
|
|
34073
34085
|
MultiframeGrayscaleWordSecondaryCaptureImageStorage: '1.2.840.10008.5.1.4.1.1.7.3',
|
|
34074
34086
|
MultiframeTrueColorSecondaryCaptureImageStorage: '1.2.840.10008.5.1.4.1.1.7.4',
|
|
34075
|
-
StandaloneOverlayStorageRetired: '1.2.840.10008.5.1.4.1.1.8',
|
|
34076
|
-
StandaloneCurveStorageRetired: '1.2.840.10008.5.1.4.1.1.9',
|
|
34077
|
-
WaveformStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.9.1',
|
|
34087
|
+
StandaloneOverlayStorageRetired: '1.2.840.10008.5.1.4.1.1.8', // retired
|
|
34088
|
+
StandaloneCurveStorageRetired: '1.2.840.10008.5.1.4.1.1.9', // retired
|
|
34089
|
+
WaveformStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.9.1', // retired
|
|
34078
34090
|
TwelveleadECGWaveformStorage: '1.2.840.10008.5.1.4.1.1.9.1.1',
|
|
34079
34091
|
GeneralECGWaveformStorage: '1.2.840.10008.5.1.4.1.1.9.1.2',
|
|
34080
34092
|
AmbulatoryECGWaveformStorage: '1.2.840.10008.5.1.4.1.1.9.1.3',
|
|
@@ -34084,8 +34096,8 @@ exports.UID = {
|
|
|
34084
34096
|
GeneralAudioWaveformStorage: '1.2.840.10008.5.1.4.1.1.9.4.2',
|
|
34085
34097
|
ArterialPulseWaveformStorage: '1.2.840.10008.5.1.4.1.1.9.5.1',
|
|
34086
34098
|
RespiratoryWaveformStorage: '1.2.840.10008.5.1.4.1.1.9.6.1',
|
|
34087
|
-
StandaloneModalityLUTStorageRetired: '1.2.840.10008.5.1.4.1.1.10',
|
|
34088
|
-
StandaloneVOILUTStorageRetired: '1.2.840.10008.5.1.4.1.1.11',
|
|
34099
|
+
StandaloneModalityLUTStorageRetired: '1.2.840.10008.5.1.4.1.1.10', // retired
|
|
34100
|
+
StandaloneVOILUTStorageRetired: '1.2.840.10008.5.1.4.1.1.11', // retired
|
|
34089
34101
|
GrayscaleSoftcopyPresentationStateStorage: '1.2.840.10008.5.1.4.1.1.11.1',
|
|
34090
34102
|
ColorSoftcopyPresentationStateStorage: '1.2.840.10008.5.1.4.1.1.11.2',
|
|
34091
34103
|
PseudoColorSoftcopyPresentationStateStorage: '1.2.840.10008.5.1.4.1.1.11.3',
|
|
@@ -34101,7 +34113,7 @@ exports.UID = {
|
|
|
34101
34113
|
EnhancedXAImageStorage: '1.2.840.10008.5.1.4.1.1.12.1.1',
|
|
34102
34114
|
XRayRadiofluoroscopicImageStorage: '1.2.840.10008.5.1.4.1.1.12.2',
|
|
34103
34115
|
EnhancedXRFImageStorage: '1.2.840.10008.5.1.4.1.1.12.2.1',
|
|
34104
|
-
XRayAngiographicBiPlaneImageStorageRetired: '1.2.840.10008.5.1.4.1.1.12.3',
|
|
34116
|
+
XRayAngiographicBiPlaneImageStorageRetired: '1.2.840.10008.5.1.4.1.1.12.3', // retired
|
|
34105
34117
|
XRay3DAngiographicImageStorage: '1.2.840.10008.5.1.4.1.1.13.1.1',
|
|
34106
34118
|
XRay3DCraniofacialImageStorage: '1.2.840.10008.5.1.4.1.1.13.1.2',
|
|
34107
34119
|
BreastTomosynthesisImageStorage: '1.2.840.10008.5.1.4.1.1.13.1.3',
|
|
@@ -34121,8 +34133,8 @@ exports.UID = {
|
|
|
34121
34133
|
RealWorldValueMappingStorage: '1.2.840.10008.5.1.4.1.1.67',
|
|
34122
34134
|
SurfaceScanMeshStorage: '1.2.840.10008.5.1.4.1.1.68.1',
|
|
34123
34135
|
SurfaceScanPointCloudStorage: '1.2.840.10008.5.1.4.1.1.68.2',
|
|
34124
|
-
VLImageStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.77.1',
|
|
34125
|
-
VLMultiframeImageStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.77.2',
|
|
34136
|
+
VLImageStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.77.1', // retired
|
|
34137
|
+
VLMultiframeImageStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.77.2', // retired
|
|
34126
34138
|
VLEndoscopicImageStorage: '1.2.840.10008.5.1.4.1.1.77.1.1',
|
|
34127
34139
|
VideoEndoscopicImageStorage: '1.2.840.10008.5.1.4.1.1.77.1.1.1',
|
|
34128
34140
|
VLMicroscopicImageStorage: '1.2.840.10008.5.1.4.1.1.77.1.2',
|
|
@@ -34151,10 +34163,10 @@ exports.UID = {
|
|
|
34151
34163
|
OphthalmicVisualFieldStaticPerimetryMeasurementsStorage: '1.2.840.10008.5.1.4.1.1.80.1',
|
|
34152
34164
|
OphthalmicThicknessMapStorage: '1.2.840.10008.5.1.4.1.1.81.1',
|
|
34153
34165
|
CornealTopographyMapStorage: '1.2.840.10008.5.1.4.1.1.82.1',
|
|
34154
|
-
TextSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.1',
|
|
34155
|
-
AudioSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.2',
|
|
34156
|
-
DetailSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.3',
|
|
34157
|
-
ComprehensiveSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.4',
|
|
34166
|
+
TextSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.1', // retired
|
|
34167
|
+
AudioSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.2', // retired
|
|
34168
|
+
DetailSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.3', // retired
|
|
34169
|
+
ComprehensiveSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.4', // retired
|
|
34158
34170
|
BasicTextSRStorage: '1.2.840.10008.5.1.4.1.1.88.11',
|
|
34159
34171
|
EnhancedSRStorage: '1.2.840.10008.5.1.4.1.1.88.22',
|
|
34160
34172
|
ComprehensiveSRStorage: '1.2.840.10008.5.1.4.1.1.88.33',
|
|
@@ -34176,7 +34188,7 @@ exports.UID = {
|
|
|
34176
34188
|
EncapsulatedCDAStorage: '1.2.840.10008.5.1.4.1.1.104.2',
|
|
34177
34189
|
PositronEmissionTomographyImageStorage: '1.2.840.10008.5.1.4.1.1.128',
|
|
34178
34190
|
LegacyConvertedEnhancedPETImageStorage: '1.2.840.10008.5.1.4.1.1.128.1',
|
|
34179
|
-
StandalonePETCurveStorageRetired: '1.2.840.10008.5.1.4.1.1.129',
|
|
34191
|
+
StandalonePETCurveStorageRetired: '1.2.840.10008.5.1.4.1.1.129', // retired
|
|
34180
34192
|
EnhancedPETImageStorage: '1.2.840.10008.5.1.4.1.1.130',
|
|
34181
34193
|
BasicStructuredDisplayStorage: '1.2.840.10008.5.1.4.1.1.131',
|
|
34182
34194
|
CTDefinedProcedureProtocolStorage: '1.2.840.10008.5.1.4.1.1.200.1',
|
|
@@ -34209,9 +34221,9 @@ exports.UID = {
|
|
|
34209
34221
|
StudyRootQueryRetrieveInformationModelFIND: '1.2.840.10008.5.1.4.1.2.2.1',
|
|
34210
34222
|
StudyRootQueryRetrieveInformationModelMOVE: '1.2.840.10008.5.1.4.1.2.2.2',
|
|
34211
34223
|
StudyRootQueryRetrieveInformationModelGET: '1.2.840.10008.5.1.4.1.2.2.3',
|
|
34212
|
-
PatientStudyOnlyQueryRetrieveInformationModelFINDRetired: '1.2.840.10008.5.1.4.1.2.3.1',
|
|
34213
|
-
PatientStudyOnlyQueryRetrieveInformationModelMOVERetired: '1.2.840.10008.5.1.4.1.2.3.2',
|
|
34214
|
-
PatientStudyOnlyQueryRetrieveInformationModelGETRetired: '1.2.840.10008.5.1.4.1.2.3.3',
|
|
34224
|
+
PatientStudyOnlyQueryRetrieveInformationModelFINDRetired: '1.2.840.10008.5.1.4.1.2.3.1', // retired
|
|
34225
|
+
PatientStudyOnlyQueryRetrieveInformationModelMOVERetired: '1.2.840.10008.5.1.4.1.2.3.2', // retired
|
|
34226
|
+
PatientStudyOnlyQueryRetrieveInformationModelGETRetired: '1.2.840.10008.5.1.4.1.2.3.3', // retired
|
|
34215
34227
|
CompositeInstanceRootRetrieveMOVE: '1.2.840.10008.5.1.4.1.2.4.2',
|
|
34216
34228
|
CompositeInstanceRootRetrieveGET: '1.2.840.10008.5.1.4.1.2.4.3',
|
|
34217
34229
|
CompositeInstanceRetrieveWithoutBulkDataGET: '1.2.840.10008.5.1.4.1.2.5.3',
|
|
@@ -34219,19 +34231,19 @@ exports.UID = {
|
|
|
34219
34231
|
DefinedProcedureProtocolInformationModelMOVE: '1.2.840.10008.5.1.4.20.2',
|
|
34220
34232
|
DefinedProcedureProtocolInformationModelGET: '1.2.840.10008.5.1.4.20.3',
|
|
34221
34233
|
ModalityWorklistInformationModelFIND: '1.2.840.10008.5.1.4.31',
|
|
34222
|
-
GeneralPurposeWorklistManagementMetaSOPClassRetired: '1.2.840.10008.5.1.4.32',
|
|
34223
|
-
GeneralPurposeWorklistInformationModelFINDRetired: '1.2.840.10008.5.1.4.32.1',
|
|
34224
|
-
GeneralPurposeScheduledProcedureStepSOPClassRetired: '1.2.840.10008.5.1.4.32.2',
|
|
34225
|
-
GeneralPurposePerformedProcedureStepSOPClassRetired: '1.2.840.10008.5.1.4.32.3',
|
|
34234
|
+
GeneralPurposeWorklistManagementMetaSOPClassRetired: '1.2.840.10008.5.1.4.32', // retired
|
|
34235
|
+
GeneralPurposeWorklistInformationModelFINDRetired: '1.2.840.10008.5.1.4.32.1', // retired
|
|
34236
|
+
GeneralPurposeScheduledProcedureStepSOPClassRetired: '1.2.840.10008.5.1.4.32.2', // retired
|
|
34237
|
+
GeneralPurposePerformedProcedureStepSOPClassRetired: '1.2.840.10008.5.1.4.32.3', // retired
|
|
34226
34238
|
InstanceAvailabilityNotificationSOPClass: '1.2.840.10008.5.1.4.33',
|
|
34227
|
-
RTBeamsDeliveryInstructionStorageTrialRetired: '1.2.840.10008.5.1.4.34.1',
|
|
34228
|
-
RTConventionalMachineVerificationTrialRetired: '1.2.840.10008.5.1.4.34.2',
|
|
34229
|
-
RTIonMachineVerificationTrialRetired: '1.2.840.10008.5.1.4.34.3',
|
|
34230
|
-
UnifiedWorklistandProcedureStepServiceClassTrialRetired: '1.2.840.10008.5.1.4.34.4',
|
|
34231
|
-
UnifiedProcedureStepPushSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.1',
|
|
34232
|
-
UnifiedProcedureStepWatchSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.2',
|
|
34233
|
-
UnifiedProcedureStepPullSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.3',
|
|
34234
|
-
UnifiedProcedureStepEventSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.4',
|
|
34239
|
+
RTBeamsDeliveryInstructionStorageTrialRetired: '1.2.840.10008.5.1.4.34.1', // retired
|
|
34240
|
+
RTConventionalMachineVerificationTrialRetired: '1.2.840.10008.5.1.4.34.2', // retired
|
|
34241
|
+
RTIonMachineVerificationTrialRetired: '1.2.840.10008.5.1.4.34.3', // retired
|
|
34242
|
+
UnifiedWorklistandProcedureStepServiceClassTrialRetired: '1.2.840.10008.5.1.4.34.4', // retired
|
|
34243
|
+
UnifiedProcedureStepPushSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.1', // retired
|
|
34244
|
+
UnifiedProcedureStepWatchSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.2', // retired
|
|
34245
|
+
UnifiedProcedureStepPullSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.3', // retired
|
|
34246
|
+
UnifiedProcedureStepEventSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.4', // retired
|
|
34235
34247
|
UPSGlobalSubscriptionSOPInstance: '1.2.840.10008.5.1.4.34.5',
|
|
34236
34248
|
UPSFilteredGlobalSubscriptionSOPInstance: '1.2.840.10008.5.1.4.34.5.1',
|
|
34237
34249
|
UnifiedWorklistandProcedureStepServiceClass: '1.2.840.10008.5.1.4.34.6',
|
|
@@ -34325,7 +34337,8 @@ exports.UID = {
|
|
|
34325
34337
|
"use strict";
|
|
34326
34338
|
|
|
34327
34339
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34328
|
-
exports.
|
|
34340
|
+
exports.Value = void 0;
|
|
34341
|
+
exports.parsePersonName = parsePersonName;
|
|
34329
34342
|
const js_joda_1 = __webpack_require__(/*! js-joda */ "js-joda");
|
|
34330
34343
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
34331
34344
|
const character_sets_1 = __webpack_require__(/*! ./character-sets */ "./src/character-sets.ts");
|
|
@@ -34879,7 +34892,6 @@ function parsePersonName(s) {
|
|
|
34879
34892
|
const comps = transpose(matrix).map((c) => new person_name_1.ComponentGroup(c[0], c[1], c[2]));
|
|
34880
34893
|
return new person_name_1.PersonName(comps[0], comps[1], comps[2], comps[3], comps[4]);
|
|
34881
34894
|
}
|
|
34882
|
-
exports.parsePersonName = parsePersonName;
|
|
34883
34895
|
function parseURL(s) {
|
|
34884
34896
|
try {
|
|
34885
34897
|
return new URL(s);
|
|
@@ -34913,6 +34925,7 @@ class VR {
|
|
|
34913
34925
|
this.paddingByte = paddingByte;
|
|
34914
34926
|
}
|
|
34915
34927
|
}
|
|
34928
|
+
exports.VR = VR;
|
|
34916
34929
|
VR.AE = new VR('AE', 0x4145, 8, 0x20);
|
|
34917
34930
|
VR.AS = new VR('AS', 0x4153, 8, 0x20);
|
|
34918
34931
|
VR.AT = new VR('AT', 0x4154, 8, 0);
|
|
@@ -34987,7 +35000,6 @@ VR.map = VR.values.reduce((m, vr) => {
|
|
|
34987
35000
|
m.set(vr.code, vr);
|
|
34988
35001
|
return m;
|
|
34989
35002
|
}, new Map());
|
|
34990
|
-
exports.VR = VR;
|
|
34991
35003
|
|
|
34992
35004
|
|
|
34993
35005
|
/***/ }),
|
|
@@ -37348,6 +37360,18 @@ module.exports = function availableTypedArrays() {
|
|
|
37348
37360
|
};
|
|
37349
37361
|
|
|
37350
37362
|
|
|
37363
|
+
/***/ }),
|
|
37364
|
+
|
|
37365
|
+
/***/ "./node_modules/dicom-character-set/dist/dicom-character-set.min.cjs":
|
|
37366
|
+
/*!***************************************************************************!*\
|
|
37367
|
+
!*** ./node_modules/dicom-character-set/dist/dicom-character-set.min.cjs ***!
|
|
37368
|
+
\***************************************************************************/
|
|
37369
|
+
/***/ (function(module) {
|
|
37370
|
+
|
|
37371
|
+
/*! dicom-character-set - 1.0.5 - 2024-01-10 | (c) 2018 Radialogica, LLC | https://github.com/radialogica/dicom-character-set */
|
|
37372
|
+
!function(e,n){ true?module.exports=n():0}("undefined"!=typeof self?self:this,(()=>(()=>{"use strict";var e={d:(n,t)=>{for(var o in t)e.o(t,o)&&!e.o(n,o)&&Object.defineProperty(n,o,{enumerable:!0,get:t[o]})},o:(e,n)=>Object.prototype.hasOwnProperty.call(e,n),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},n={};e.r(n),e.d(n,{characterSets:()=>o,convertBytes:()=>R,convertBytesPromise:()=>w});const t={codeElement:"G0",escapeSequence:[27,40,66],encoding:"windows-1252",isASCII:!0,bytesPerCodePoint:1},o={"ISO_IR 6":{encoding:"utf-8"},"ISO_IR 100":{encoding:"windows-1252"},"ISO_IR 101":{encoding:"iso-8859-2"},"ISO_IR 109":{encoding:"iso-8859-3"},"ISO_IR 110":{encoding:"iso-8859-4"},"ISO_IR 144":{encoding:"iso-8859-5"},"ISO_IR 127":{encoding:"iso-8859-6"},"ISO_IR 126":{encoding:"iso-8859-7"},"ISO_IR 138":{encoding:"iso-8859-8"},"ISO_IR 148":{encoding:"windows-1254"},"ISO_IR 13":{encoding:"shift-jis"},"ISO_IR 166":{encoding:"tis-620"},"ISO 2022 IR 6":{extension:!0,elements:[t]},"ISO 2022 IR 100":{extension:!0,elements:[t,{codeElement:"G1",escapeSequence:[27,45,65],encoding:"windows-1252",bytesPerCodePoint:1}]},"ISO 2022 IR 101":{extension:!0,elements:[t,{codeElement:"G1",escapeSequence:[27,45,66],encoding:"iso-8859-2",bytesPerCodePoint:1}]},"ISO 2022 IR 109":{extension:!0,elements:[t,{codeElement:"G1",escapeSequence:[27,45,67],encoding:"iso-8859-3",bytesPerCodePoint:1}]},"ISO 2022 IR 110":{extension:!0,elements:[t,{codeElement:"G1",escapeSequence:[27,45,68],encoding:"iso-8859-4",bytesPerCodePoint:1}]},"ISO 2022 IR 144":{extension:!0,elements:[t,{codeElement:"G1",escapeSequence:[27,45,76],encoding:"iso-8859-5",bytesPerCodePoint:1}]},"ISO 2022 IR 127":{extension:!0,elements:[t,{codeElement:"G1",escapeSequence:[27,45,71],encoding:"iso-8859-6",bytesPerCodePoint:1}]},"ISO 2022 IR 126":{extension:!0,elements:[t,{codeElement:"G1",escapeSequence:[27,45,70],encoding:"iso-8859-7",bytesPerCodePoint:1}]},"ISO 2022 IR 138":{extension:!0,elements:[t,{codeElement:"G1",escapeSequence:[27,45,72],encoding:"iso-8859-8",bytesPerCodePoint:1}]},"ISO 2022 IR 148":{extension:!0,elements:[t,{codeElement:"G1",escapeSequence:[27,45,77],encoding:"windows-1254",bytesPerCodePoint:1}]},"ISO 2022 IR 13":{extension:!0,elements:[{codeElement:"G0",escapeSequence:[27,40,74],encoding:"shift-jis",bytesPerCodePoint:1},{codeElement:"G1",escapeSequence:[27,41,73],encoding:"shift-jis",bytesPerCodePoint:1}]},"ISO 2022 IR 166":{extension:!0,elements:[t,{codeElement:"G1",escapeSequence:[27,45,84],encoding:"tis-620",bytesPerCodePoint:1}]},"ISO 2022 IR 87":{extension:!0,multiByte:!0,elements:[{codeElement:"G0",escapeSequence:[27,36,66],encoding:"euc-jp",setHighBit:!0,bytesPerCodePoint:2}]},"ISO 2022 IR 159":{extension:!0,multiByte:!0,elements:[{codeElement:"G0",escapeSequence:[27,36,40,68],encoding:"euc-jp",isJISX0212:!0,bytesPerCodePoint:2}]},"ISO 2022 IR 149":{extension:!0,multiByte:!0,elements:[{codeElement:"G1",escapeSequence:[27,36,41,67],encoding:"euc-kr",bytesPerCodePoint:2}]},"ISO 2022 IR 58":{extension:!0,multiByte:!0,elements:[{codeElement:"G1",escapeSequence:[27,36,41,65],encoding:"gb18030",bytesPerCodePoint:2}]},"ISO_IR 192":{encoding:"utf-8",multiByte:!0},GB18030:{encoding:"gb18030",multiByte:!0},GBK:{encoding:"gbk",multiByte:!0}},i=27,s=10,c=12,r=13,d=9,u=92,l=61,f=94;function I(e,n){const t=n.replace(/~/g,"‾");return e.includes(u)?t:t.replace(/\\/g,"¥")}function a(e,n,t,o,i,s){const c=h(n,o,i,s);return e+g(n.encoding,t,c)}function S(e,n,t,o,i,s){const c=h(n,o,i,s);return(""===e?Promise.resolve(""):e).then((e=>p(n.encoding,t,c).then((n=>e+n))))}function m(e,n,t,i,I){!function(e,n){if(n&&!(n instanceof Uint8Array))throw new Error("bytes must be a Uint8Array");if(e&&"string"!=typeof e)throw new Error("specificCharacterSet must be a string")}(t,i);const a=function(e){let n=e?e.split("\\").map((e=>e.trim().toUpperCase())):[""];""===n[0]&&(n[0]=n.length>1?"ISO 2022 IR 6":"ISO_IR 6");if(n.some((e=>void 0===o[e])))throw new Error("Invalid specific character set specified.");return n=function(e){const n=o[e[0]];if(n.multiByte&&!n.extension)return[e[0]];return e.filter((e=>!o[e].multiByte||o[e].extension))}(n),function(e){const n=e.length>1,t=[];for(let o=0;o<e.length;o++){const i=e[o];t.includes(i)||t.push(n?i.replace("ISO_IR","ISO 2022 IR"):i)}return t}(n)}(t),S=function(e){const n=(e||"").trim().toUpperCase(),t=[s,c,r,d];["UT","ST","LT"].includes(n)||t.push(u);"PN"===n&&(t.push(l),t.push(f));return t}((I||{}).vr);return 1!==a.length||a[0].startsWith("ISO 2022")?function(e,n,t,o){let i="";if(!n||0===n.length)return i;const s={G0:e[0].elements.find((e=>"G0"===e.codeElement)),G1:e[0].elements.find((e=>"G1"===e.codeElement))},c=Object.assign({},s);let r,d=0,u=0;for(;u<n.length;){r||(r=P(n[d],c));const l=y(n,d,r,c,s,t);if(u=l.index,u>d&&(i=o(i,r,t,n,d,u)),d=u,r=l.characterSet,l.escapeSequence){const t=O(n,u,e);c[t.codeElement]=t,d+=t.escapeSequence.length}}return i}(a.map((e=>o[e])),i,S,n):e(o[a[0]].encoding,S,i)}function g(e,n,t){const o=new TextDecoder(e).decode(t);return"shift-jis"===e?I(n,o):o}function p(e,n,t){return new Promise((o=>{const i=new FileReader;i.onload="shift-jis"===e?()=>o(I(n,i.result)):()=>o(i.result);const s=new Blob([t]);i.readAsText(s,e)}))}function y(e,n,t,o,s,c){for(let r=n;r<e.length;r+=t.bytesPerCodePoint){if(e[r]===i)return{escapeSequence:!0,index:r};1===t.bytesPerCodePoint&&c.includes(e[r])&&Object.assign(o,s);const n=P(e[r],o);if(t&&n!==t)return{characterSet:n,index:r}}return{index:e.length}}function P(e,n){return e>127&&n.G1?n.G1:n.G0?n.G0:n.G1&&1===n.G1.bytesPerCodePoint?n.G1:o["ISO 2022 IR 6"].elements[0]}function h(e,n,t,o){let i;return e.isJISX0212?i=function(e,n,t){const o=t-n;if(o%2!=0)throw new Error("JIS X string with a character not having exactly two bytes!");const i=new Uint8Array(o+o/2);let s=0;for(let o=n;o<t;o+=2)i[s++]=143,i[s++]=128|e[o],i[s++]=128|e[o+1];return i}(n,t,o):(i=new Uint8Array(o-t),i.set(new Uint8Array(n.buffer,n.byteOffset+t,o-t)),e.setHighBit&&function(e){for(let n=0;n<e.length;n++)e[n]|=128}(i)),i}function b(e,n,t){for(let o=0;o<e.length;o++){if(t+o>=n.length)return!1;if(n[t+o]!==e[o])return!1}return!0}function O(e,n,t){for(let o=0;o<t.length;o++){const i=t[o];for(let t=0;t<i.elements.length;t++){const o=i.elements[t];if(b(o.escapeSequence,e,n))return o}}throw new Error(`Unknown escape sequence encountered at byte ${n}`)}function R(e,n,t){return m(g,a,e,n,t)}function w(e,n,t){return m(p,S,e,n,t)}return n})()));
|
|
37373
|
+
//# sourceMappingURL=dicom-character-set.min.js.map
|
|
37374
|
+
|
|
37351
37375
|
/***/ })
|
|
37352
37376
|
|
|
37353
37377
|
/******/ });
|