@exini/dicom-streams-js 3.0.9 → 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 +5 -6
- 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 +5 -9
- package/{lib → dist/lib}/dicom-flow.js +20 -21
- 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 +693 -670
- 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 +706 -683
- 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
|
@@ -36,8 +36,70 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
36
36
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
37
37
|
};
|
|
38
38
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
39
|
-
exports.
|
|
40
|
-
exports.
|
|
39
|
+
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;
|
|
40
|
+
exports.concat = concat;
|
|
41
|
+
exports.concatv = concatv;
|
|
42
|
+
exports.flatten = flatten;
|
|
43
|
+
exports.appendToArray = appendToArray;
|
|
44
|
+
exports.prependToArray = prependToArray;
|
|
45
|
+
exports.concatArrays = concatArrays;
|
|
46
|
+
exports.hexToDec = hexToDec;
|
|
47
|
+
exports.toUID = toUID;
|
|
48
|
+
exports.nameBasedUID = nameBasedUID;
|
|
49
|
+
exports.randomUID = randomUID;
|
|
50
|
+
exports.toUInt32 = toUInt32;
|
|
51
|
+
exports.toInt32 = toInt32;
|
|
52
|
+
exports.shiftLeftUnsigned = shiftLeftUnsigned;
|
|
53
|
+
exports.groupNumber = groupNumber;
|
|
54
|
+
exports.elementNumber = elementNumber;
|
|
55
|
+
exports.bytesToShortBE = bytesToShortBE;
|
|
56
|
+
exports.bytesToShortLE = bytesToShortLE;
|
|
57
|
+
exports.bytesToShort = bytesToShort;
|
|
58
|
+
exports.bytesToUShortBE = bytesToUShortBE;
|
|
59
|
+
exports.bytesToUShortLE = bytesToUShortLE;
|
|
60
|
+
exports.bytesToUShort = bytesToUShort;
|
|
61
|
+
exports.bytesToVR = bytesToVR;
|
|
62
|
+
exports.bytesToIntBE = bytesToIntBE;
|
|
63
|
+
exports.bytesToIntLE = bytesToIntLE;
|
|
64
|
+
exports.bytesToInt = bytesToInt;
|
|
65
|
+
exports.bytesToUIntBE = bytesToUIntBE;
|
|
66
|
+
exports.bytesToUIntLE = bytesToUIntLE;
|
|
67
|
+
exports.bytesToUInt = bytesToUInt;
|
|
68
|
+
exports.bytesToTagBE = bytesToTagBE;
|
|
69
|
+
exports.bytesToTagLE = bytesToTagLE;
|
|
70
|
+
exports.bytesToTag = bytesToTag;
|
|
71
|
+
exports.bytesToFloatBE = bytesToFloatBE;
|
|
72
|
+
exports.bytesToFloatLE = bytesToFloatLE;
|
|
73
|
+
exports.bytesToFloat = bytesToFloat;
|
|
74
|
+
exports.bytesToDoubleBE = bytesToDoubleBE;
|
|
75
|
+
exports.bytesToDoubleLE = bytesToDoubleLE;
|
|
76
|
+
exports.bytesToDouble = bytesToDouble;
|
|
77
|
+
exports.intToBytesBE = intToBytesBE;
|
|
78
|
+
exports.intToBytesLE = intToBytesLE;
|
|
79
|
+
exports.shortToBytesBE = shortToBytesBE;
|
|
80
|
+
exports.shortToBytesLE = shortToBytesLE;
|
|
81
|
+
exports.shortToBytes = shortToBytes;
|
|
82
|
+
exports.intToBytes = intToBytes;
|
|
83
|
+
exports.tagToBytesBE = tagToBytesBE;
|
|
84
|
+
exports.tagToBytesLE = tagToBytesLE;
|
|
85
|
+
exports.tagToBytes = tagToBytes;
|
|
86
|
+
exports.floatToBytes = floatToBytes;
|
|
87
|
+
exports.doubleToBytes = doubleToBytes;
|
|
88
|
+
exports.tagToString = tagToString;
|
|
89
|
+
exports.trim = trim;
|
|
90
|
+
exports.padToEvenLength = padToEvenLength;
|
|
91
|
+
exports.item = item;
|
|
92
|
+
exports.itemDelimitation = itemDelimitation;
|
|
93
|
+
exports.sequenceDelimitation = sequenceDelimitation;
|
|
94
|
+
exports.sequenceDelimitationNonZeroLength = sequenceDelimitationNonZeroLength;
|
|
95
|
+
exports.isFileMetaInformation = isFileMetaInformation;
|
|
96
|
+
exports.isGroupLength = isGroupLength;
|
|
97
|
+
exports.isDeflated = isDeflated;
|
|
98
|
+
exports.createUID = createUID;
|
|
99
|
+
exports.createUIDFromRoot = createUIDFromRoot;
|
|
100
|
+
exports.createNameBasedUID = createNameBasedUID;
|
|
101
|
+
exports.createNameBasedUIDFromRoot = createNameBasedUIDFromRoot;
|
|
102
|
+
exports.pipe = pipe;
|
|
41
103
|
const js_joda_1 = __webpack_require__(/*! js-joda */ "js-joda");
|
|
42
104
|
const multipipe_1 = __importDefault(__webpack_require__(/*! multipipe */ "multipipe"));
|
|
43
105
|
const uuid_1 = __webpack_require__(/*! uuid */ "uuid");
|
|
@@ -51,33 +113,27 @@ exports.zero4Bytes = Buffer.from([0, 0, 0, 0]);
|
|
|
51
113
|
function concat(a, b) {
|
|
52
114
|
return Buffer.concat([a, b], a.length + b.length);
|
|
53
115
|
}
|
|
54
|
-
exports.concat = concat;
|
|
55
116
|
function concatv(...buffers) {
|
|
56
117
|
return Buffer.concat(buffers);
|
|
57
118
|
}
|
|
58
|
-
exports.concatv = concatv;
|
|
59
119
|
function flatten(array) {
|
|
60
120
|
return [].concat(...array);
|
|
61
121
|
}
|
|
62
|
-
exports.flatten = flatten;
|
|
63
122
|
function appendToArray(object, array) {
|
|
64
123
|
const newArray = array.slice();
|
|
65
124
|
newArray.push(object);
|
|
66
125
|
return newArray;
|
|
67
126
|
}
|
|
68
|
-
exports.appendToArray = appendToArray;
|
|
69
127
|
function prependToArray(object, array) {
|
|
70
128
|
const newArray = array.slice();
|
|
71
129
|
newArray.unshift(object);
|
|
72
130
|
return newArray;
|
|
73
131
|
}
|
|
74
|
-
exports.prependToArray = prependToArray;
|
|
75
132
|
function concatArrays(array1, array2) {
|
|
76
133
|
const newArray = array1.slice();
|
|
77
134
|
array2.forEach((i) => newArray.push(i));
|
|
78
135
|
return newArray;
|
|
79
136
|
}
|
|
80
|
-
exports.concatArrays = concatArrays;
|
|
81
137
|
const uidRoot = '2.25';
|
|
82
138
|
const uuidNamespace = 'd181d67b-0a1c-45bf-8616-070f1bb0d0cf';
|
|
83
139
|
function hexToDec(s) {
|
|
@@ -97,167 +153,127 @@ function hexToDec(s) {
|
|
|
97
153
|
}
|
|
98
154
|
return digits.reverse().join('');
|
|
99
155
|
}
|
|
100
|
-
exports.hexToDec = hexToDec;
|
|
101
156
|
function toUID(root, uuid) {
|
|
102
157
|
const hexStr = uuid.replace(/-/g, '');
|
|
103
158
|
const docStr = hexToDec(hexStr).replace(/^0+/, '');
|
|
104
159
|
return (root + '.' + docStr).substring(0, 64);
|
|
105
160
|
}
|
|
106
|
-
exports.toUID = toUID;
|
|
107
161
|
function nameBasedUID(name, root) {
|
|
108
162
|
return toUID(root, (0, uuid_1.v5)(name, uuidNamespace));
|
|
109
163
|
}
|
|
110
|
-
exports.nameBasedUID = nameBasedUID;
|
|
111
164
|
function randomUID(root) {
|
|
112
165
|
return toUID(root, (0, uuid_1.v4)());
|
|
113
166
|
}
|
|
114
|
-
exports.randomUID = randomUID;
|
|
115
167
|
exports.multiValueDelimiter = '\\';
|
|
116
168
|
exports.emptyBuffer = Buffer.alloc(0);
|
|
117
169
|
function toUInt32(num) {
|
|
118
170
|
return num >>> 0;
|
|
119
171
|
}
|
|
120
|
-
exports.toUInt32 = toUInt32;
|
|
121
172
|
function toInt32(num) {
|
|
122
173
|
return num >> 0;
|
|
123
174
|
}
|
|
124
|
-
exports.toInt32 = toInt32;
|
|
125
175
|
function shiftLeftUnsigned(num, n) {
|
|
126
176
|
return toUInt32(num << n);
|
|
127
177
|
}
|
|
128
|
-
exports.shiftLeftUnsigned = shiftLeftUnsigned;
|
|
129
178
|
function groupNumber(tag) {
|
|
130
179
|
return tag >>> 16;
|
|
131
180
|
}
|
|
132
|
-
exports.groupNumber = groupNumber;
|
|
133
181
|
function elementNumber(tag) {
|
|
134
182
|
return tag & 0xffff;
|
|
135
183
|
}
|
|
136
|
-
exports.elementNumber = elementNumber;
|
|
137
184
|
function bytesToShortBE(bytes) {
|
|
138
185
|
return bytes.readInt16BE(0);
|
|
139
186
|
}
|
|
140
|
-
exports.bytesToShortBE = bytesToShortBE;
|
|
141
187
|
function bytesToShortLE(bytes) {
|
|
142
188
|
return bytes.readInt16LE(0);
|
|
143
189
|
}
|
|
144
|
-
exports.bytesToShortLE = bytesToShortLE;
|
|
145
190
|
function bytesToShort(bytes, bigEndian = false) {
|
|
146
191
|
return bigEndian ? bytesToShortBE(bytes) : bytesToShortLE(bytes);
|
|
147
192
|
}
|
|
148
|
-
exports.bytesToShort = bytesToShort;
|
|
149
193
|
function bytesToUShortBE(bytes) {
|
|
150
194
|
return bytes.readUInt16BE(0);
|
|
151
195
|
}
|
|
152
|
-
exports.bytesToUShortBE = bytesToUShortBE;
|
|
153
196
|
function bytesToUShortLE(bytes) {
|
|
154
197
|
return bytes.readUInt16LE(0);
|
|
155
198
|
}
|
|
156
|
-
exports.bytesToUShortLE = bytesToUShortLE;
|
|
157
199
|
function bytesToUShort(bytes, bigEndian = false) {
|
|
158
200
|
return bigEndian ? bytesToUShortBE(bytes) : bytesToUShortLE(bytes);
|
|
159
201
|
}
|
|
160
|
-
exports.bytesToUShort = bytesToUShort;
|
|
161
202
|
function bytesToVR(bytes) {
|
|
162
203
|
return bytesToUShortBE(bytes);
|
|
163
204
|
}
|
|
164
|
-
exports.bytesToVR = bytesToVR;
|
|
165
205
|
function bytesToIntBE(bytes) {
|
|
166
206
|
return bytes.readInt32BE(0);
|
|
167
207
|
}
|
|
168
|
-
exports.bytesToIntBE = bytesToIntBE;
|
|
169
208
|
function bytesToIntLE(bytes) {
|
|
170
209
|
return bytes.readInt32LE(0);
|
|
171
210
|
}
|
|
172
|
-
exports.bytesToIntLE = bytesToIntLE;
|
|
173
211
|
function bytesToInt(bytes, bigEndian = false) {
|
|
174
212
|
return bigEndian ? bytesToIntBE(bytes) : bytesToIntLE(bytes);
|
|
175
213
|
}
|
|
176
|
-
exports.bytesToInt = bytesToInt;
|
|
177
214
|
function bytesToUIntBE(bytes) {
|
|
178
215
|
return bytes.readUInt32BE(0);
|
|
179
216
|
}
|
|
180
|
-
exports.bytesToUIntBE = bytesToUIntBE;
|
|
181
217
|
function bytesToUIntLE(bytes) {
|
|
182
218
|
return bytes.readUInt32LE(0);
|
|
183
219
|
}
|
|
184
|
-
exports.bytesToUIntLE = bytesToUIntLE;
|
|
185
220
|
function bytesToUInt(bytes, bigEndian = false) {
|
|
186
221
|
return bigEndian ? bytesToUIntBE(bytes) : bytesToUIntLE(bytes);
|
|
187
222
|
}
|
|
188
|
-
exports.bytesToUInt = bytesToUInt;
|
|
189
223
|
function bytesToTagBE(bytes) {
|
|
190
224
|
return bytesToUIntBE(bytes);
|
|
191
225
|
}
|
|
192
|
-
exports.bytesToTagBE = bytesToTagBE;
|
|
193
226
|
function bytesToTagLE(bytes) {
|
|
194
227
|
return shiftLeftUnsigned(bytes.readUInt16LE(0), 16) + bytes.readUInt16LE(2);
|
|
195
228
|
}
|
|
196
|
-
exports.bytesToTagLE = bytesToTagLE;
|
|
197
229
|
function bytesToTag(bytes, bigEndian = false) {
|
|
198
230
|
return bigEndian ? bytesToTagBE(bytes) : bytesToTagLE(bytes);
|
|
199
231
|
}
|
|
200
|
-
exports.bytesToTag = bytesToTag;
|
|
201
232
|
function bytesToFloatBE(bytes) {
|
|
202
233
|
return bytes.readFloatBE(0);
|
|
203
234
|
}
|
|
204
|
-
exports.bytesToFloatBE = bytesToFloatBE;
|
|
205
235
|
function bytesToFloatLE(bytes) {
|
|
206
236
|
return bytes.readFloatLE(0);
|
|
207
237
|
}
|
|
208
|
-
exports.bytesToFloatLE = bytesToFloatLE;
|
|
209
238
|
function bytesToFloat(bytes, bigEndian = false) {
|
|
210
239
|
return bigEndian ? bytesToFloatBE(bytes) : bytesToFloatLE(bytes);
|
|
211
240
|
}
|
|
212
|
-
exports.bytesToFloat = bytesToFloat;
|
|
213
241
|
function bytesToDoubleBE(bytes) {
|
|
214
242
|
return bytes.readDoubleBE(0);
|
|
215
243
|
}
|
|
216
|
-
exports.bytesToDoubleBE = bytesToDoubleBE;
|
|
217
244
|
function bytesToDoubleLE(bytes) {
|
|
218
245
|
return bytes.readDoubleLE(0);
|
|
219
246
|
}
|
|
220
|
-
exports.bytesToDoubleLE = bytesToDoubleLE;
|
|
221
247
|
function bytesToDouble(bytes, bigEndian = false) {
|
|
222
248
|
return bigEndian ? bytesToDoubleBE(bytes) : bytesToDoubleLE(bytes);
|
|
223
249
|
}
|
|
224
|
-
exports.bytesToDouble = bytesToDouble;
|
|
225
250
|
function intToBytesBE(i) {
|
|
226
251
|
return Buffer.from([i >> 24, i >> 16, i >> 8, i]);
|
|
227
252
|
}
|
|
228
|
-
exports.intToBytesBE = intToBytesBE;
|
|
229
253
|
function intToBytesLE(i) {
|
|
230
254
|
return Buffer.from([i, i >> 8, i >> 16, i >> 24]);
|
|
231
255
|
}
|
|
232
|
-
exports.intToBytesLE = intToBytesLE;
|
|
233
256
|
function shortToBytesBE(i) {
|
|
234
257
|
return Buffer.from([i >> 8, i]);
|
|
235
258
|
}
|
|
236
|
-
exports.shortToBytesBE = shortToBytesBE;
|
|
237
259
|
function shortToBytesLE(i) {
|
|
238
260
|
return Buffer.from([i, i >> 8]);
|
|
239
261
|
}
|
|
240
|
-
exports.shortToBytesLE = shortToBytesLE;
|
|
241
262
|
function shortToBytes(i, bigEndian = false) {
|
|
242
263
|
return bigEndian ? shortToBytesBE(i) : shortToBytesLE(i);
|
|
243
264
|
}
|
|
244
|
-
exports.shortToBytes = shortToBytes;
|
|
245
265
|
function intToBytes(i, bigEndian = false) {
|
|
246
266
|
return bigEndian ? intToBytesBE(i) : intToBytesLE(i);
|
|
247
267
|
}
|
|
248
|
-
exports.intToBytes = intToBytes;
|
|
249
268
|
function tagToBytesBE(tag) {
|
|
250
269
|
return intToBytesBE(tag);
|
|
251
270
|
}
|
|
252
|
-
exports.tagToBytesBE = tagToBytesBE;
|
|
253
271
|
function tagToBytesLE(tag) {
|
|
254
272
|
return Buffer.from([tag >> 16, tag >> 24, tag, tag >> 8]);
|
|
255
273
|
}
|
|
256
|
-
exports.tagToBytesLE = tagToBytesLE;
|
|
257
274
|
function tagToBytes(tag, bigEndian = false) {
|
|
258
275
|
return bigEndian ? tagToBytesBE(tag) : tagToBytesLE(tag);
|
|
259
276
|
}
|
|
260
|
-
exports.tagToBytes = tagToBytes;
|
|
261
277
|
function floatToBytes(f, bigEndian = false) {
|
|
262
278
|
const buf = Buffer.allocUnsafe(4);
|
|
263
279
|
if (bigEndian) {
|
|
@@ -268,7 +284,6 @@ function floatToBytes(f, bigEndian = false) {
|
|
|
268
284
|
}
|
|
269
285
|
return buf;
|
|
270
286
|
}
|
|
271
|
-
exports.floatToBytes = floatToBytes;
|
|
272
287
|
function doubleToBytes(f, bigEndian = false) {
|
|
273
288
|
const buf = Buffer.allocUnsafe(8);
|
|
274
289
|
if (bigEndian) {
|
|
@@ -279,21 +294,17 @@ function doubleToBytes(f, bigEndian = false) {
|
|
|
279
294
|
}
|
|
280
295
|
return buf;
|
|
281
296
|
}
|
|
282
|
-
exports.doubleToBytes = doubleToBytes;
|
|
283
297
|
function tagToString(tag) {
|
|
284
298
|
const hex = ('00000000' + tag.toString(16)).slice(-8);
|
|
285
299
|
return '(' + hex.slice(0, 4) + ',' + hex.slice(4, 8) + ')';
|
|
286
300
|
}
|
|
287
|
-
exports.tagToString = tagToString;
|
|
288
301
|
function trim(s) {
|
|
289
302
|
return s.replace(/^[\x00-\x20]*/g, '').replace(/[\x00-\x20]*$/g, '');
|
|
290
303
|
}
|
|
291
|
-
exports.trim = trim;
|
|
292
304
|
function padToEvenLength(bytes, tagOrVR) {
|
|
293
305
|
const vr = isNaN(tagOrVR) ? tagOrVR : lookup_1.Lookup.vrOf(tagOrVR);
|
|
294
306
|
return (bytes.length & 1) !== 0 ? concat(bytes, Buffer.from([vr.paddingByte])) : bytes;
|
|
295
307
|
}
|
|
296
|
-
exports.padToEvenLength = padToEvenLength;
|
|
297
308
|
exports.itemLE = concat(tagToBytesLE(tag_1.Tag.Item), intToBytesLE(exports.indeterminateLength));
|
|
298
309
|
exports.itemBE = concat(tagToBytesBE(tag_1.Tag.Item), intToBytesBE(exports.indeterminateLength));
|
|
299
310
|
function item(length = exports.indeterminateLength, bigEndian = false) {
|
|
@@ -303,57 +314,45 @@ function item(length = exports.indeterminateLength, bigEndian = false) {
|
|
|
303
314
|
: exports.itemLE
|
|
304
315
|
: concat(tagToBytes(tag_1.Tag.Item, bigEndian), intToBytes(length, bigEndian));
|
|
305
316
|
}
|
|
306
|
-
exports.item = item;
|
|
307
317
|
exports.itemDelimitationLE = concat(tagToBytesLE(tag_1.Tag.ItemDelimitationItem), exports.zero4Bytes);
|
|
308
318
|
exports.itemDelimitationBE = concat(tagToBytesBE(tag_1.Tag.ItemDelimitationItem), exports.zero4Bytes);
|
|
309
319
|
function itemDelimitation(bigEndian = false) {
|
|
310
320
|
return bigEndian ? exports.itemDelimitationBE : exports.itemDelimitationLE;
|
|
311
321
|
}
|
|
312
|
-
exports.itemDelimitation = itemDelimitation;
|
|
313
322
|
exports.sequenceDelimitationLE = concat(tagToBytesLE(tag_1.Tag.SequenceDelimitationItem), exports.zero4Bytes);
|
|
314
323
|
exports.sequenceDelimitationBE = concat(tagToBytesBE(tag_1.Tag.SequenceDelimitationItem), exports.zero4Bytes);
|
|
315
324
|
function sequenceDelimitation(bigEndian = false) {
|
|
316
325
|
return bigEndian ? exports.sequenceDelimitationBE : exports.sequenceDelimitationLE;
|
|
317
326
|
}
|
|
318
|
-
exports.sequenceDelimitation = sequenceDelimitation;
|
|
319
327
|
function sequenceDelimitationNonZeroLength(bigEndian = false) {
|
|
320
328
|
return concatv(tagToBytes(tag_1.Tag.SequenceDelimitationItem, bigEndian), intToBytes(0x00000010, bigEndian));
|
|
321
329
|
}
|
|
322
|
-
exports.sequenceDelimitationNonZeroLength = sequenceDelimitationNonZeroLength;
|
|
323
330
|
function isFileMetaInformation(tag) {
|
|
324
331
|
return (tag & 0xffff0000) === 0x00020000;
|
|
325
332
|
}
|
|
326
|
-
exports.isFileMetaInformation = isFileMetaInformation;
|
|
327
333
|
function isGroupLength(tag) {
|
|
328
334
|
return elementNumber(tag) === 0;
|
|
329
335
|
}
|
|
330
|
-
exports.isGroupLength = isGroupLength;
|
|
331
336
|
function isDeflated(transferSyntaxUid) {
|
|
332
337
|
return transferSyntaxUid === uid_1.UID.DeflatedExplicitVRLittleEndian || transferSyntaxUid === uid_1.UID.JPIPReferencedDeflate;
|
|
333
338
|
}
|
|
334
|
-
exports.isDeflated = isDeflated;
|
|
335
339
|
exports.systemZone = js_joda_1.ZoneId.SYSTEM;
|
|
336
340
|
exports.defaultCharacterSet = CS.defaultCharacterSet;
|
|
337
341
|
function createUID() {
|
|
338
342
|
return randomUID(uidRoot);
|
|
339
343
|
}
|
|
340
|
-
exports.createUID = createUID;
|
|
341
344
|
function createUIDFromRoot(root) {
|
|
342
345
|
return randomUID(root);
|
|
343
346
|
}
|
|
344
|
-
exports.createUIDFromRoot = createUIDFromRoot;
|
|
345
347
|
function createNameBasedUID(name) {
|
|
346
348
|
return nameBasedUID(name, uidRoot);
|
|
347
349
|
}
|
|
348
|
-
exports.createNameBasedUID = createNameBasedUID;
|
|
349
350
|
function createNameBasedUIDFromRoot(name, root) {
|
|
350
351
|
return nameBasedUID(name, root);
|
|
351
352
|
}
|
|
352
|
-
exports.createNameBasedUIDFromRoot = createNameBasedUIDFromRoot;
|
|
353
353
|
function pipe(...streams) {
|
|
354
354
|
return (0, multipipe_1.default)(streams);
|
|
355
355
|
}
|
|
356
|
-
exports.pipe = pipe;
|
|
357
356
|
|
|
358
357
|
|
|
359
358
|
/***/ }),
|
|
@@ -592,7 +591,8 @@ exports.defaultCharacterSet = CharacterSets.defaultOnly();
|
|
|
592
591
|
|
|
593
592
|
|
|
594
593
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
595
|
-
exports.
|
|
594
|
+
exports.collectFlow = collectFlow;
|
|
595
|
+
exports.collectFromTagPathsFlow = collectFromTagPathsFlow;
|
|
596
596
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
597
597
|
const dicom_flow_1 = __webpack_require__(/*! ./dicom-flow */ "./src/dicom-flow.ts");
|
|
598
598
|
const dicom_elements_1 = __webpack_require__(/*! ./dicom-elements */ "./src/dicom-elements.ts");
|
|
@@ -634,8 +634,8 @@ function collectFlow(tagCondition, stopCondition, label, maxBufferSize = 1000000
|
|
|
634
634
|
if (maxBufferSize > 0 && this.currentBufferSize > maxBufferSize) {
|
|
635
635
|
throw Error('Error collecting elements: max buffer size exceeded');
|
|
636
636
|
}
|
|
637
|
-
if (part
|
|
638
|
-
part
|
|
637
|
+
if (!(part instanceof dicom_flow_1.ValueChunkMarker) &&
|
|
638
|
+
!(part instanceof dicom_flow_1.SequenceDelimitationPartMarker) &&
|
|
639
639
|
!(part instanceof dicom_flow_1.ItemDelimitationPartMarker)) {
|
|
640
640
|
this.buffer.push(part);
|
|
641
641
|
this.currentBufferSize += part.bytes.length;
|
|
@@ -686,7 +686,7 @@ function collectFlow(tagCondition, stopCondition, label, maxBufferSize = 1000000
|
|
|
686
686
|
this.maybeAdd(new dicom_elements_1.ItemDelimitationElement(part.bigEndian));
|
|
687
687
|
return [];
|
|
688
688
|
}
|
|
689
|
-
if (part
|
|
689
|
+
if (part instanceof dicom_flow_1.SequenceDelimitationPartMarker) {
|
|
690
690
|
return [];
|
|
691
691
|
}
|
|
692
692
|
if (part instanceof dicom_parts_1.SequenceDelimitationPart) {
|
|
@@ -698,14 +698,12 @@ function collectFlow(tagCondition, stopCondition, label, maxBufferSize = 1000000
|
|
|
698
698
|
}
|
|
699
699
|
})());
|
|
700
700
|
}
|
|
701
|
-
exports.collectFlow = collectFlow;
|
|
702
701
|
function collectFromTagPathsFlow(allowlist, label, maxBufferSize) {
|
|
703
702
|
const maxTag = allowlist.length > 0 ? Math.max(...allowlist.map((t) => t.head().tag())) : 0;
|
|
704
703
|
const tagCondition = (currentPath) => allowlist.find((t) => t.hasTrunk(currentPath) || t.isTrunkOf(currentPath)) !== undefined;
|
|
705
704
|
const stopCondition = (tagPath) => allowlist.length === 0 || (tagPath.isRoot() && tagPath.tag() > maxTag);
|
|
706
705
|
return collectFlow(tagCondition, stopCondition, label, maxBufferSize);
|
|
707
706
|
}
|
|
708
|
-
exports.collectFromTagPathsFlow = collectFromTagPathsFlow;
|
|
709
707
|
|
|
710
708
|
|
|
711
709
|
/***/ }),
|
|
@@ -1184,7 +1182,8 @@ exports.Fragments = Fragments;
|
|
|
1184
1182
|
|
|
1185
1183
|
|
|
1186
1184
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
1187
|
-
exports.GroupLengthWarnings = exports.TagPathTracking = exports.InSequence = exports.GuaranteedDelimitationEvents = exports.
|
|
1185
|
+
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;
|
|
1186
|
+
exports.createFlow = createFlow;
|
|
1188
1187
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
1189
1188
|
const flows_1 = __webpack_require__(/*! ./flows */ "./src/flows.ts");
|
|
1190
1189
|
const dicom_parts_1 = __webpack_require__(/*! ./dicom-parts */ "./src/dicom-parts.ts");
|
|
@@ -1193,7 +1192,6 @@ const tag_path_1 = __webpack_require__(/*! ./tag-path */ "./src/tag-path.ts");
|
|
|
1193
1192
|
function createFlow(flow) {
|
|
1194
1193
|
return (0, base_1.pipe)(flow.baseFlow(), (0, flows_1.flatMapFlow)(flow.handlePart.bind(flow)));
|
|
1195
1194
|
}
|
|
1196
|
-
exports.createFlow = createFlow;
|
|
1197
1195
|
class DicomFlow {
|
|
1198
1196
|
baseFlow() {
|
|
1199
1197
|
return (0, flows_1.identityFlow)(true);
|
|
@@ -1360,49 +1358,48 @@ const InFragments = (Super) => class extends Super {
|
|
|
1360
1358
|
};
|
|
1361
1359
|
exports.InFragments = InFragments;
|
|
1362
1360
|
class ValueChunkMarker extends dicom_parts_1.ValueChunk {
|
|
1363
|
-
constructor() {
|
|
1364
|
-
super(
|
|
1361
|
+
constructor(bigEndian) {
|
|
1362
|
+
super(bigEndian, base_1.emptyBuffer, true);
|
|
1365
1363
|
}
|
|
1366
1364
|
toString() {
|
|
1367
|
-
return
|
|
1365
|
+
return `Value Chunk Marker [bigEndian=${this.bigEndian}]`;
|
|
1368
1366
|
}
|
|
1369
1367
|
}
|
|
1370
|
-
exports.
|
|
1368
|
+
exports.ValueChunkMarker = ValueChunkMarker;
|
|
1371
1369
|
const GuaranteedValueEvent = (Super) => class extends Super {
|
|
1372
1370
|
onHeader(part) {
|
|
1373
1371
|
return part.length === 0
|
|
1374
|
-
? super.onHeader(part).concat(this.onValueChunk(
|
|
1372
|
+
? super.onHeader(part).concat(this.onValueChunk(new ValueChunkMarker(part.bigEndian)))
|
|
1375
1373
|
: super.onHeader(part);
|
|
1376
1374
|
}
|
|
1377
1375
|
onItem(part) {
|
|
1378
1376
|
return this.inFragments && part.length === 0
|
|
1379
|
-
? super.onItem(part).concat(this.onValueChunk(
|
|
1377
|
+
? super.onItem(part).concat(this.onValueChunk(new ValueChunkMarker(part.bigEndian)))
|
|
1380
1378
|
: super.onItem(part);
|
|
1381
1379
|
}
|
|
1382
1380
|
onValueChunk(part) {
|
|
1383
|
-
return super.onValueChunk(part).filter((c) => c
|
|
1381
|
+
return super.onValueChunk(part).filter((c) => !(c instanceof ValueChunkMarker));
|
|
1384
1382
|
}
|
|
1385
1383
|
};
|
|
1386
1384
|
exports.GuaranteedValueEvent = GuaranteedValueEvent;
|
|
1387
1385
|
class SequenceDelimitationPartMarker extends dicom_parts_1.SequenceDelimitationPart {
|
|
1388
|
-
constructor() {
|
|
1389
|
-
super(
|
|
1386
|
+
constructor(bigEndian) {
|
|
1387
|
+
super(bigEndian, base_1.emptyBuffer);
|
|
1390
1388
|
}
|
|
1391
1389
|
toString() {
|
|
1392
|
-
return
|
|
1390
|
+
return `SequenceDelimitationMarker [bigEndian=${this.bigEndian}]`;
|
|
1393
1391
|
}
|
|
1394
1392
|
}
|
|
1395
|
-
exports.
|
|
1393
|
+
exports.SequenceDelimitationPartMarker = SequenceDelimitationPartMarker;
|
|
1396
1394
|
class ItemDelimitationPartMarker extends dicom_parts_1.ItemDelimitationPart {
|
|
1397
|
-
constructor() {
|
|
1398
|
-
super(
|
|
1395
|
+
constructor(bigEndian) {
|
|
1396
|
+
super(bigEndian, base_1.emptyBuffer);
|
|
1399
1397
|
}
|
|
1400
1398
|
toString() {
|
|
1401
|
-
return
|
|
1399
|
+
return `ItemDelimitationMarker [bigEndian=${this.bigEndian}]`;
|
|
1402
1400
|
}
|
|
1403
1401
|
}
|
|
1404
1402
|
exports.ItemDelimitationPartMarker = ItemDelimitationPartMarker;
|
|
1405
|
-
exports.itemDelimitationPartMarker = new ItemDelimitationPartMarker();
|
|
1406
1403
|
/**
|
|
1407
1404
|
* Depends on InFragments
|
|
1408
1405
|
*/
|
|
@@ -1424,10 +1421,10 @@ const GuaranteedDelimitationEvents = (Super) => class extends Super {
|
|
|
1424
1421
|
return super.onItem(part).concat(this.maybeDelimit());
|
|
1425
1422
|
}
|
|
1426
1423
|
onSequenceDelimitation(part) {
|
|
1427
|
-
if (this.partStack.length > 0 && part
|
|
1424
|
+
if (this.partStack.length > 0 && !(part instanceof SequenceDelimitationPartMarker) && !this.inFragments) {
|
|
1428
1425
|
this.partStack.shift();
|
|
1429
1426
|
}
|
|
1430
|
-
return this.subtractAndEmit(part, (p) => super.onSequenceDelimitation(p).filter((d) => d
|
|
1427
|
+
return this.subtractAndEmit(part, (p) => super.onSequenceDelimitation(p).filter((d) => !(d instanceof SequenceDelimitationPartMarker)));
|
|
1431
1428
|
}
|
|
1432
1429
|
onItemDelimitation(part) {
|
|
1433
1430
|
if (this.partStack.length > 0 && !(part instanceof ItemDelimitationPartMarker)) {
|
|
@@ -1461,8 +1458,8 @@ const GuaranteedDelimitationEvents = (Super) => class extends Super {
|
|
|
1461
1458
|
const inactive = this.partStack.slice(0, splitIndex);
|
|
1462
1459
|
this.partStack = this.partStack.slice(splitIndex);
|
|
1463
1460
|
const out = inactive.map((i) => i.part instanceof dicom_parts_1.ItemPart
|
|
1464
|
-
? this.onItemDelimitation(
|
|
1465
|
-
: this.onSequenceDelimitation(
|
|
1461
|
+
? this.onItemDelimitation(new ItemDelimitationPartMarker(i.part.bigEndian))
|
|
1462
|
+
: this.onSequenceDelimitation(new SequenceDelimitationPartMarker(i.part.bigEndian)));
|
|
1466
1463
|
return [].concat(...out);
|
|
1467
1464
|
}
|
|
1468
1465
|
subtractAndEmit(part, handle) {
|
|
@@ -1603,7 +1600,20 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
1603
1600
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
1604
1601
|
};
|
|
1605
1602
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
1606
|
-
exports.
|
|
1603
|
+
exports.ValidationContext = void 0;
|
|
1604
|
+
exports.toBytesFlow = toBytesFlow;
|
|
1605
|
+
exports.stopTagFlow = stopTagFlow;
|
|
1606
|
+
exports.tagFilter = tagFilter;
|
|
1607
|
+
exports.allowFilter = allowFilter;
|
|
1608
|
+
exports.denyFilter = denyFilter;
|
|
1609
|
+
exports.groupLengthDiscardFilter = groupLengthDiscardFilter;
|
|
1610
|
+
exports.fmiDiscardFilter = fmiDiscardFilter;
|
|
1611
|
+
exports.headerFilter = headerFilter;
|
|
1612
|
+
exports.validateContextFlow = validateContextFlow;
|
|
1613
|
+
exports.fmiGroupLengthFlow = fmiGroupLengthFlow;
|
|
1614
|
+
exports.toIndeterminateLengthSequences = toIndeterminateLengthSequences;
|
|
1615
|
+
exports.toUtf8Flow = toUtf8Flow;
|
|
1616
|
+
exports.deflateDatasetFlow = deflateDatasetFlow;
|
|
1607
1617
|
const stream_1 = __webpack_require__(/*! stream */ "stream");
|
|
1608
1618
|
const zlib_1 = __importDefault(__webpack_require__(/*! zlib */ "zlib"));
|
|
1609
1619
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
@@ -1628,7 +1638,6 @@ function toBytesFlow() {
|
|
|
1628
1638
|
},
|
|
1629
1639
|
});
|
|
1630
1640
|
}
|
|
1631
|
-
exports.toBytesFlow = toBytesFlow;
|
|
1632
1641
|
function stopTagFlow(tag) {
|
|
1633
1642
|
let endReached = false;
|
|
1634
1643
|
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))) {
|
|
@@ -1652,7 +1661,6 @@ function stopTagFlow(tag) {
|
|
|
1652
1661
|
},
|
|
1653
1662
|
}));
|
|
1654
1663
|
}
|
|
1655
|
-
exports.stopTagFlow = stopTagFlow;
|
|
1656
1664
|
function tagFilter(keepCondition, defaultCondition = () => true, logGroupLengthWarnings = false) {
|
|
1657
1665
|
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))))) {
|
|
1658
1666
|
constructor() {
|
|
@@ -1666,23 +1674,18 @@ function tagFilter(keepCondition, defaultCondition = () => true, logGroupLengthW
|
|
|
1666
1674
|
}
|
|
1667
1675
|
})());
|
|
1668
1676
|
}
|
|
1669
|
-
exports.tagFilter = tagFilter;
|
|
1670
1677
|
function allowFilter(allowlist, defaultCondition, logGroupLengthWarnings) {
|
|
1671
1678
|
return tagFilter((currentPath) => allowlist.some((t) => t.hasTrunk(currentPath) || t.isTrunkOf(currentPath)), defaultCondition, logGroupLengthWarnings);
|
|
1672
1679
|
}
|
|
1673
|
-
exports.allowFilter = allowFilter;
|
|
1674
1680
|
function denyFilter(denylist, defaultCondition, logGroupLengthWarnings) {
|
|
1675
1681
|
return tagFilter((currentPath) => !denylist.some((t) => t.isTrunkOf(currentPath)), defaultCondition, logGroupLengthWarnings);
|
|
1676
1682
|
}
|
|
1677
|
-
exports.denyFilter = denyFilter;
|
|
1678
1683
|
function groupLengthDiscardFilter() {
|
|
1679
1684
|
return tagFilter((tagPath) => !(0, base_1.isGroupLength)(tagPath.tag()) || (0, base_1.isFileMetaInformation)(tagPath.tag()));
|
|
1680
1685
|
}
|
|
1681
|
-
exports.groupLengthDiscardFilter = groupLengthDiscardFilter;
|
|
1682
1686
|
function fmiDiscardFilter() {
|
|
1683
1687
|
return tagFilter((tagPath) => !(0, base_1.isFileMetaInformation)(tagPath.tag()), () => false);
|
|
1684
1688
|
}
|
|
1685
|
-
exports.fmiDiscardFilter = fmiDiscardFilter;
|
|
1686
1689
|
function headerFilter(keepCondition, logGroupLengthWarnings = false) {
|
|
1687
1690
|
return (0, dicom_flow_1.createFlow)(new (class extends (0, dicom_flow_1.GroupLengthWarnings)((0, dicom_flow_1.InFragments)(dicom_flow_1.DeferToPartFlow)) {
|
|
1688
1691
|
constructor() {
|
|
@@ -1703,7 +1706,6 @@ function headerFilter(keepCondition, logGroupLengthWarnings = false) {
|
|
|
1703
1706
|
}
|
|
1704
1707
|
})());
|
|
1705
1708
|
}
|
|
1706
|
-
exports.headerFilter = headerFilter;
|
|
1707
1709
|
class ValidationContext {
|
|
1708
1710
|
constructor(sopClassUID, transferSyntaxUID) {
|
|
1709
1711
|
this.sopClassUID = sopClassUID;
|
|
@@ -1745,7 +1747,6 @@ function validateContextFlow(contexts) {
|
|
|
1745
1747
|
}
|
|
1746
1748
|
})()));
|
|
1747
1749
|
}
|
|
1748
|
-
exports.validateContextFlow = validateContextFlow;
|
|
1749
1750
|
function fmiGroupLengthFlow() {
|
|
1750
1751
|
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) {
|
|
1751
1752
|
constructor() {
|
|
@@ -1782,7 +1783,6 @@ function fmiGroupLengthFlow() {
|
|
|
1782
1783
|
}
|
|
1783
1784
|
})()));
|
|
1784
1785
|
}
|
|
1785
|
-
exports.fmiGroupLengthFlow = fmiGroupLengthFlow;
|
|
1786
1786
|
function toIndeterminateLengthSequences() {
|
|
1787
1787
|
return (0, dicom_flow_1.createFlow)(new (class extends (0, dicom_flow_1.GuaranteedDelimitationEvents)((0, dicom_flow_1.InFragments)(dicom_flow_1.IdentityFlow)) {
|
|
1788
1788
|
constructor() {
|
|
@@ -1821,7 +1821,6 @@ function toIndeterminateLengthSequences() {
|
|
|
1821
1821
|
}
|
|
1822
1822
|
})());
|
|
1823
1823
|
}
|
|
1824
|
-
exports.toIndeterminateLengthSequences = toIndeterminateLengthSequences;
|
|
1825
1824
|
function toUtf8Flow() {
|
|
1826
1825
|
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)) {
|
|
1827
1826
|
constructor() {
|
|
@@ -1872,7 +1871,6 @@ function toUtf8Flow() {
|
|
|
1872
1871
|
}
|
|
1873
1872
|
})()));
|
|
1874
1873
|
}
|
|
1875
|
-
exports.toUtf8Flow = toUtf8Flow;
|
|
1876
1874
|
class DeflateDatasetFlow extends detour_1.Detour {
|
|
1877
1875
|
constructor() {
|
|
1878
1876
|
super({ objectMode: true });
|
|
@@ -1914,7 +1912,6 @@ class DeflateDatasetFlow extends detour_1.Detour {
|
|
|
1914
1912
|
function deflateDatasetFlow() {
|
|
1915
1913
|
return new DeflateDatasetFlow();
|
|
1916
1914
|
}
|
|
1917
|
-
exports.deflateDatasetFlow = deflateDatasetFlow;
|
|
1918
1915
|
|
|
1919
1916
|
|
|
1920
1917
|
/***/ }),
|
|
@@ -2135,7 +2132,7 @@ exports.ElementsPart = ElementsPart;
|
|
|
2135
2132
|
|
|
2136
2133
|
|
|
2137
2134
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
2138
|
-
exports.elementFlow =
|
|
2135
|
+
exports.elementFlow = elementFlow;
|
|
2139
2136
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
2140
2137
|
const dicom_flow_1 = __webpack_require__(/*! ./dicom-flow */ "./src/dicom-flow.ts");
|
|
2141
2138
|
const dicom_elements_1 = __webpack_require__(/*! ./dicom-elements */ "./src/dicom-elements.ts");
|
|
@@ -2203,7 +2200,6 @@ function elementFlow() {
|
|
|
2203
2200
|
}
|
|
2204
2201
|
})());
|
|
2205
2202
|
}
|
|
2206
|
-
exports.elementFlow = elementFlow;
|
|
2207
2203
|
|
|
2208
2204
|
|
|
2209
2205
|
/***/ }),
|
|
@@ -2216,7 +2212,7 @@ exports.elementFlow = elementFlow;
|
|
|
2216
2212
|
|
|
2217
2213
|
|
|
2218
2214
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
2219
|
-
exports.elementSink =
|
|
2215
|
+
exports.elementSink = elementSink;
|
|
2220
2216
|
const stream_1 = __webpack_require__(/*! stream */ "stream");
|
|
2221
2217
|
const elements_builder_1 = __webpack_require__(/*! ./elements-builder */ "./src/elements-builder.ts");
|
|
2222
2218
|
function elementSink(callback) {
|
|
@@ -2238,7 +2234,6 @@ function elementSink(callback) {
|
|
|
2238
2234
|
});
|
|
2239
2235
|
return sink;
|
|
2240
2236
|
}
|
|
2241
|
-
exports.elementSink = elementSink;
|
|
2242
2237
|
|
|
2243
2238
|
|
|
2244
2239
|
/***/ }),
|
|
@@ -2465,7 +2460,8 @@ exports.ElementsBuilder = ElementsBuilder;
|
|
|
2465
2460
|
|
|
2466
2461
|
|
|
2467
2462
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
2468
|
-
exports.Elements =
|
|
2463
|
+
exports.Elements = void 0;
|
|
2464
|
+
exports.parseZoneOffset = parseZoneOffset;
|
|
2469
2465
|
const js_joda_1 = __webpack_require__(/*! js-joda */ "js-joda");
|
|
2470
2466
|
const dicom_elements_1 = __webpack_require__(/*! ./dicom-elements */ "./src/dicom-elements.ts");
|
|
2471
2467
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
@@ -2486,7 +2482,6 @@ function parseZoneOffset(s) {
|
|
|
2486
2482
|
return undefined;
|
|
2487
2483
|
}
|
|
2488
2484
|
}
|
|
2489
|
-
exports.parseZoneOffset = parseZoneOffset;
|
|
2490
2485
|
class Elements {
|
|
2491
2486
|
static empty(characterSets = base_1.defaultCharacterSet, zoneOffset = base_1.systemZone) {
|
|
2492
2487
|
return new Elements(characterSets, zoneOffset, []);
|
|
@@ -3098,7 +3093,14 @@ exports.Elements = Elements;
|
|
|
3098
3093
|
|
|
3099
3094
|
|
|
3100
3095
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3101
|
-
exports.
|
|
3096
|
+
exports.identityFlow = identityFlow;
|
|
3097
|
+
exports.printFlow = printFlow;
|
|
3098
|
+
exports.prependFlow = prependFlow;
|
|
3099
|
+
exports.appendFlow = appendFlow;
|
|
3100
|
+
exports.objectToStringFlow = objectToStringFlow;
|
|
3101
|
+
exports.mapFlow = mapFlow;
|
|
3102
|
+
exports.filterFlow = filterFlow;
|
|
3103
|
+
exports.flatMapFlow = flatMapFlow;
|
|
3102
3104
|
const stream_1 = __webpack_require__(/*! stream */ "stream");
|
|
3103
3105
|
function identityFlow(objectMode = false) {
|
|
3104
3106
|
return new stream_1.Transform({
|
|
@@ -3109,7 +3111,6 @@ function identityFlow(objectMode = false) {
|
|
|
3109
3111
|
},
|
|
3110
3112
|
});
|
|
3111
3113
|
}
|
|
3112
|
-
exports.identityFlow = identityFlow;
|
|
3113
3114
|
function printFlow(objectMode = false) {
|
|
3114
3115
|
return new stream_1.Transform({
|
|
3115
3116
|
objectMode,
|
|
@@ -3120,7 +3121,6 @@ function printFlow(objectMode = false) {
|
|
|
3120
3121
|
},
|
|
3121
3122
|
});
|
|
3122
3123
|
}
|
|
3123
|
-
exports.printFlow = printFlow;
|
|
3124
3124
|
function prependFlow(prependChunk, objectMode = false) {
|
|
3125
3125
|
let hasEmitted = false;
|
|
3126
3126
|
return new stream_1.Transform({
|
|
@@ -3135,7 +3135,6 @@ function prependFlow(prependChunk, objectMode = false) {
|
|
|
3135
3135
|
},
|
|
3136
3136
|
});
|
|
3137
3137
|
}
|
|
3138
|
-
exports.prependFlow = prependFlow;
|
|
3139
3138
|
function appendFlow(appendChunk, objectMode = false) {
|
|
3140
3139
|
return new stream_1.Transform({
|
|
3141
3140
|
objectMode,
|
|
@@ -3148,7 +3147,6 @@ function appendFlow(appendChunk, objectMode = false) {
|
|
|
3148
3147
|
},
|
|
3149
3148
|
});
|
|
3150
3149
|
}
|
|
3151
|
-
exports.appendFlow = appendFlow;
|
|
3152
3150
|
function objectToStringFlow(toStringFunction) {
|
|
3153
3151
|
return new stream_1.Transform({
|
|
3154
3152
|
writableObjectMode: true,
|
|
@@ -3158,7 +3156,6 @@ function objectToStringFlow(toStringFunction) {
|
|
|
3158
3156
|
},
|
|
3159
3157
|
});
|
|
3160
3158
|
}
|
|
3161
|
-
exports.objectToStringFlow = objectToStringFlow;
|
|
3162
3159
|
function mapFlow(f) {
|
|
3163
3160
|
return new stream_1.Transform({
|
|
3164
3161
|
objectMode: true,
|
|
@@ -3173,7 +3170,6 @@ function mapFlow(f) {
|
|
|
3173
3170
|
},
|
|
3174
3171
|
});
|
|
3175
3172
|
}
|
|
3176
|
-
exports.mapFlow = mapFlow;
|
|
3177
3173
|
function filterFlow(f) {
|
|
3178
3174
|
return new stream_1.Transform({
|
|
3179
3175
|
objectMode: true,
|
|
@@ -3190,7 +3186,6 @@ function filterFlow(f) {
|
|
|
3190
3186
|
},
|
|
3191
3187
|
});
|
|
3192
3188
|
}
|
|
3193
|
-
exports.filterFlow = filterFlow;
|
|
3194
3189
|
function flatMapFlow(toChunks) {
|
|
3195
3190
|
return new stream_1.Transform({
|
|
3196
3191
|
objectMode: true,
|
|
@@ -3207,7 +3202,6 @@ function flatMapFlow(toChunks) {
|
|
|
3207
3202
|
},
|
|
3208
3203
|
});
|
|
3209
3204
|
}
|
|
3210
|
-
exports.flatMapFlow = flatMapFlow;
|
|
3211
3205
|
|
|
3212
3206
|
|
|
3213
3207
|
/***/ }),
|
|
@@ -3311,8 +3305,8 @@ class Lookup {
|
|
|
3311
3305
|
return uid_to_name_1.UIDToName.nameOf(uid);
|
|
3312
3306
|
}
|
|
3313
3307
|
}
|
|
3314
|
-
Lookup.keywords = Object.keys(tag_1.Tag);
|
|
3315
3308
|
exports.Lookup = Lookup;
|
|
3309
|
+
Lookup.keywords = Object.keys(tag_1.Tag);
|
|
3316
3310
|
|
|
3317
3311
|
|
|
3318
3312
|
/***/ }),
|
|
@@ -3325,7 +3319,8 @@ exports.Lookup = Lookup;
|
|
|
3325
3319
|
|
|
3326
3320
|
|
|
3327
3321
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3328
|
-
exports.
|
|
3322
|
+
exports.TagModificationsPart = exports.TagInsertion = exports.TagModification = void 0;
|
|
3323
|
+
exports.modifyFlow = modifyFlow;
|
|
3329
3324
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
3330
3325
|
const dicom_flow_1 = __webpack_require__(/*! ./dicom-flow */ "./src/dicom-flow.ts");
|
|
3331
3326
|
const lookup_1 = __webpack_require__(/*! ./lookup */ "./src/lookup.ts");
|
|
@@ -3493,7 +3488,6 @@ function modifyFlow(modifications = [], insertions = [], logGroupLengthWarnings
|
|
|
3493
3488
|
}
|
|
3494
3489
|
})());
|
|
3495
3490
|
}
|
|
3496
|
-
exports.modifyFlow = modifyFlow;
|
|
3497
3491
|
|
|
3498
3492
|
|
|
3499
3493
|
/***/ }),
|
|
@@ -3509,7 +3503,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3509
3503
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
3510
3504
|
};
|
|
3511
3505
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
3512
|
-
exports.parseFlow =
|
|
3506
|
+
exports.parseFlow = parseFlow;
|
|
3513
3507
|
const zlib_1 = __importDefault(__webpack_require__(/*! zlib */ "zlib"));
|
|
3514
3508
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
3515
3509
|
const byte_parser_1 = __webpack_require__(/*! ./byte-parser */ "./src/byte-parser.ts");
|
|
@@ -3851,7 +3845,6 @@ class ParseFlow extends detour_1.Detour {
|
|
|
3851
3845
|
function parseFlow(chunkSize, inflate, bufferBytes) {
|
|
3852
3846
|
return new ParseFlow(chunkSize, inflate, bufferBytes);
|
|
3853
3847
|
}
|
|
3854
|
-
exports.parseFlow = parseFlow;
|
|
3855
3848
|
|
|
3856
3849
|
|
|
3857
3850
|
/***/ }),
|
|
@@ -4001,11 +3994,39 @@ class InFmiAttribute extends DicomParseStep {
|
|
|
4001
3994
|
}
|
|
4002
3995
|
})();
|
|
4003
3996
|
}
|
|
4004
|
-
|
|
3997
|
+
return new InDeflated(new AttributeState(true, bigEndian, explicitVR, inflater), this.stop);
|
|
4005
3998
|
}
|
|
4006
3999
|
return new InAttribute(new AttributeState(true, bigEndian, explicitVR, inflater), this.stop);
|
|
4007
4000
|
}
|
|
4008
4001
|
}
|
|
4002
|
+
/**
|
|
4003
|
+
* Some implementations of zlib, like the one used in browserify-zlib, can only inflate the complete array of deflated bytes. Therefore
|
|
4004
|
+
* the parse method of this class will accumulate bytes and attempt inflate on parser.result() or when marked as done.
|
|
4005
|
+
*/
|
|
4006
|
+
class InDeflated extends DicomParseStep {
|
|
4007
|
+
constructor(state, stop) {
|
|
4008
|
+
state.inflater;
|
|
4009
|
+
super(state, stop);
|
|
4010
|
+
this.bufferedData = base_1.emptyBuffer;
|
|
4011
|
+
}
|
|
4012
|
+
inflate() {
|
|
4013
|
+
return this.state.inflater.inflate(this.bufferedData);
|
|
4014
|
+
}
|
|
4015
|
+
bufferSize() {
|
|
4016
|
+
return this.bufferedData.length;
|
|
4017
|
+
}
|
|
4018
|
+
parse(reader) {
|
|
4019
|
+
const done = !reader.hasRemaining();
|
|
4020
|
+
this.bufferedData = (0, base_1.concat)(this.bufferedData, reader.take(reader.remainingSize()));
|
|
4021
|
+
if (done) {
|
|
4022
|
+
reader.setInput(this.state.inflater.inflate(this.bufferedData));
|
|
4023
|
+
return new byte_parser_1.ParseResult(undefined, new InAttribute(this.state, this.stop));
|
|
4024
|
+
}
|
|
4025
|
+
else {
|
|
4026
|
+
return new byte_parser_1.ParseResult(undefined, this);
|
|
4027
|
+
}
|
|
4028
|
+
}
|
|
4029
|
+
}
|
|
4009
4030
|
class InAttribute extends DicomParseStep {
|
|
4010
4031
|
constructor(state, stop) {
|
|
4011
4032
|
super(state, stop);
|
|
@@ -4098,9 +4119,6 @@ class Parser {
|
|
|
4098
4119
|
*/
|
|
4099
4120
|
parse(chunk) {
|
|
4100
4121
|
const step = this.byteParser.current instanceof DicomParseStep ? this.byteParser.current : undefined;
|
|
4101
|
-
if (step && step.state && step.state.inflater) {
|
|
4102
|
-
chunk = step.state.inflater.inflate(chunk);
|
|
4103
|
-
}
|
|
4104
4122
|
this.byteParser.parse(chunk);
|
|
4105
4123
|
}
|
|
4106
4124
|
/**
|
|
@@ -4113,6 +4131,13 @@ class Parser {
|
|
|
4113
4131
|
* Get the current elements as represented by the builder
|
|
4114
4132
|
*/
|
|
4115
4133
|
result() {
|
|
4134
|
+
if (this.byteParser.current instanceof InDeflated) {
|
|
4135
|
+
const inDeflatedStep = this.byteParser.current;
|
|
4136
|
+
this.byteParser.startWith(new InAttribute(inDeflatedStep.state, inDeflatedStep.stop));
|
|
4137
|
+
const buff = inDeflatedStep.inflate();
|
|
4138
|
+
this.byteParser.parse(buff);
|
|
4139
|
+
this.byteParser.isCompleted = true;
|
|
4140
|
+
}
|
|
4116
4141
|
return this.builder.build();
|
|
4117
4142
|
}
|
|
4118
4143
|
/**
|
|
@@ -4147,7 +4172,15 @@ exports.Parser = Parser;
|
|
|
4147
4172
|
|
|
4148
4173
|
|
|
4149
4174
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
4150
|
-
exports.
|
|
4175
|
+
exports.AttributeInfo = exports.TagVr = exports.HeaderInfo = exports.dicomPreambleLength = void 0;
|
|
4176
|
+
exports.isDICM = isDICM;
|
|
4177
|
+
exports.tryReadHeader = tryReadHeader;
|
|
4178
|
+
exports.headerInfo = headerInfo;
|
|
4179
|
+
exports.isPreamble = isPreamble;
|
|
4180
|
+
exports.isSpecial = isSpecial;
|
|
4181
|
+
exports.readTagVr = readTagVr;
|
|
4182
|
+
exports.readHeader = readHeader;
|
|
4183
|
+
exports.warnIfOdd = warnIfOdd;
|
|
4151
4184
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
4152
4185
|
const lookup_1 = __webpack_require__(/*! ./lookup */ "./src/lookup.ts");
|
|
4153
4186
|
const vr_1 = __webpack_require__(/*! ./vr */ "./src/vr.ts");
|
|
@@ -4155,7 +4188,6 @@ exports.dicomPreambleLength = 132;
|
|
|
4155
4188
|
function isDICM(bytes) {
|
|
4156
4189
|
return bytes[0] === 68 && bytes[1] === 73 && bytes[2] === 67 && bytes[3] === 77;
|
|
4157
4190
|
}
|
|
4158
|
-
exports.isDICM = isDICM;
|
|
4159
4191
|
class HeaderInfo {
|
|
4160
4192
|
constructor(bigEndian, explicitVR, hasFmi) {
|
|
4161
4193
|
this.bigEndian = bigEndian;
|
|
@@ -4168,7 +4200,6 @@ function tryReadHeader(data) {
|
|
|
4168
4200
|
const info = headerInfo(data, false);
|
|
4169
4201
|
return info === undefined ? headerInfo(data, true) : info;
|
|
4170
4202
|
}
|
|
4171
|
-
exports.tryReadHeader = tryReadHeader;
|
|
4172
4203
|
function headerInfo(data, assumeBigEndian) {
|
|
4173
4204
|
const tag = (0, base_1.bytesToTag)(data, assumeBigEndian);
|
|
4174
4205
|
const vr = lookup_1.Lookup.vrOf(tag);
|
|
@@ -4196,11 +4227,9 @@ function headerInfo(data, assumeBigEndian) {
|
|
|
4196
4227
|
}
|
|
4197
4228
|
return undefined;
|
|
4198
4229
|
}
|
|
4199
|
-
exports.headerInfo = headerInfo;
|
|
4200
4230
|
function isPreamble(data) {
|
|
4201
4231
|
return data.length >= exports.dicomPreambleLength && isDICM(data.slice(exports.dicomPreambleLength - 4, exports.dicomPreambleLength));
|
|
4202
4232
|
}
|
|
4203
|
-
exports.isPreamble = isPreamble;
|
|
4204
4233
|
class TagVr {
|
|
4205
4234
|
constructor(tag, vr) {
|
|
4206
4235
|
this.tag = tag;
|
|
@@ -4211,7 +4240,6 @@ exports.TagVr = TagVr;
|
|
|
4211
4240
|
function isSpecial(tag) {
|
|
4212
4241
|
return tag === 0xfffee000 || tag === 0xfffee00d || tag === 0xfffee0dd;
|
|
4213
4242
|
}
|
|
4214
|
-
exports.isSpecial = isSpecial;
|
|
4215
4243
|
function readTagVr(data, bigEndian, explicitVr) {
|
|
4216
4244
|
const tag = (0, base_1.bytesToTag)(data, bigEndian);
|
|
4217
4245
|
if (isSpecial(tag)) {
|
|
@@ -4222,7 +4250,6 @@ function readTagVr(data, bigEndian, explicitVr) {
|
|
|
4222
4250
|
}
|
|
4223
4251
|
return new TagVr(tag, lookup_1.Lookup.vrOf(tag));
|
|
4224
4252
|
}
|
|
4225
|
-
exports.readTagVr = readTagVr;
|
|
4226
4253
|
class AttributeInfo {
|
|
4227
4254
|
constructor(tag, vr, headerLength, valueLength) {
|
|
4228
4255
|
this.tag = tag;
|
|
@@ -4245,13 +4272,11 @@ function readHeader(reader, state) {
|
|
|
4245
4272
|
}
|
|
4246
4273
|
return new AttributeInfo(tagVr.tag, tagVr.vr, 8, (0, base_1.bytesToUInt)(tagVrBytes.slice(4), state.bigEndian));
|
|
4247
4274
|
}
|
|
4248
|
-
exports.readHeader = readHeader;
|
|
4249
4275
|
function warnIfOdd(tag, vr, valueLength) {
|
|
4250
4276
|
if (valueLength % 2 > 0 && valueLength != base_1.indeterminateLength && vr != null && vr != vr_1.VR.SQ) {
|
|
4251
4277
|
console.warn(`Element ${(0, base_1.tagToString)(tag)} has odd length`);
|
|
4252
4278
|
}
|
|
4253
4279
|
}
|
|
4254
|
-
exports.warnIfOdd = warnIfOdd;
|
|
4255
4280
|
|
|
4256
4281
|
|
|
4257
4282
|
/***/ }),
|
|
@@ -4316,7 +4341,9 @@ exports.PersonName = PersonName;
|
|
|
4316
4341
|
|
|
4317
4342
|
|
|
4318
4343
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
4319
|
-
exports.
|
|
4344
|
+
exports.byteSink = byteSink;
|
|
4345
|
+
exports.ignoreSink = ignoreSink;
|
|
4346
|
+
exports.arraySink = arraySink;
|
|
4320
4347
|
const stream_1 = __webpack_require__(/*! stream */ "stream");
|
|
4321
4348
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
4322
4349
|
function byteSink(callback) {
|
|
@@ -4332,7 +4359,6 @@ function byteSink(callback) {
|
|
|
4332
4359
|
});
|
|
4333
4360
|
return sink;
|
|
4334
4361
|
}
|
|
4335
|
-
exports.byteSink = byteSink;
|
|
4336
4362
|
function ignoreSink(objectMode = false) {
|
|
4337
4363
|
return new stream_1.Writable({
|
|
4338
4364
|
objectMode,
|
|
@@ -4341,7 +4367,6 @@ function ignoreSink(objectMode = false) {
|
|
|
4341
4367
|
},
|
|
4342
4368
|
});
|
|
4343
4369
|
}
|
|
4344
|
-
exports.ignoreSink = ignoreSink;
|
|
4345
4370
|
function arraySink(arrayCallback) {
|
|
4346
4371
|
const array = [];
|
|
4347
4372
|
const sink = new stream_1.Writable({
|
|
@@ -4354,7 +4379,6 @@ function arraySink(arrayCallback) {
|
|
|
4354
4379
|
sink.once('finish', () => arrayCallback(array));
|
|
4355
4380
|
return sink;
|
|
4356
4381
|
}
|
|
4357
|
-
exports.arraySink = arraySink;
|
|
4358
4382
|
|
|
4359
4383
|
|
|
4360
4384
|
/***/ }),
|
|
@@ -4367,7 +4391,8 @@ exports.arraySink = arraySink;
|
|
|
4367
4391
|
|
|
4368
4392
|
|
|
4369
4393
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
4370
|
-
exports.
|
|
4394
|
+
exports.singleSource = singleSource;
|
|
4395
|
+
exports.arraySource = arraySource;
|
|
4371
4396
|
const stream_1 = __webpack_require__(/*! stream */ "stream");
|
|
4372
4397
|
function singleSource(element, objectMode = false) {
|
|
4373
4398
|
return new stream_1.Readable({
|
|
@@ -4378,7 +4403,6 @@ function singleSource(element, objectMode = false) {
|
|
|
4378
4403
|
},
|
|
4379
4404
|
});
|
|
4380
4405
|
}
|
|
4381
|
-
exports.singleSource = singleSource;
|
|
4382
4406
|
function arraySource(array, objectMode = false) {
|
|
4383
4407
|
let pos = 0;
|
|
4384
4408
|
return new stream_1.Readable({
|
|
@@ -4398,7 +4422,6 @@ function arraySource(array, objectMode = false) {
|
|
|
4398
4422
|
},
|
|
4399
4423
|
});
|
|
4400
4424
|
}
|
|
4401
|
-
exports.arraySource = arraySource;
|
|
4402
4425
|
|
|
4403
4426
|
|
|
4404
4427
|
/***/ }),
|
|
@@ -4789,6 +4812,7 @@ class TagToVR {
|
|
|
4789
4812
|
return key in TagToVR.dict ? TagToVR.dict[key] : vr_1.VR.UN;
|
|
4790
4813
|
}
|
|
4791
4814
|
}
|
|
4815
|
+
exports.TagToVR = TagToVR;
|
|
4792
4816
|
TagToVR.dict = {
|
|
4793
4817
|
'0': vr_1.VR.UL,
|
|
4794
4818
|
'2': vr_1.VR.UI,
|
|
@@ -9090,7 +9114,6 @@ TagToVR.dict = {
|
|
|
9090
9114
|
fffafffa: vr_1.VR.SQ,
|
|
9091
9115
|
fffcfffc: vr_1.VR.OB,
|
|
9092
9116
|
};
|
|
9093
|
-
exports.TagToVR = TagToVR;
|
|
9094
9117
|
|
|
9095
9118
|
|
|
9096
9119
|
/***/ }),
|
|
@@ -9544,18 +9567,18 @@ exports.Tag = {
|
|
|
9544
9567
|
DirectoryRecordType: 0x00041430,
|
|
9545
9568
|
PrivateRecordUID: 0x00041432,
|
|
9546
9569
|
ReferencedFileID: 0x00041500,
|
|
9547
|
-
MRDRDirectoryRecordOffset: 0x00041504,
|
|
9570
|
+
MRDRDirectoryRecordOffset: 0x00041504, // retired
|
|
9548
9571
|
ReferencedSOPClassUIDInFile: 0x00041510,
|
|
9549
9572
|
ReferencedSOPInstanceUIDInFile: 0x00041511,
|
|
9550
9573
|
ReferencedTransferSyntaxUIDInFile: 0x00041512,
|
|
9551
9574
|
ReferencedRelatedGeneralSOPClassUIDInFile: 0x0004151a,
|
|
9552
|
-
NumberOfReferences: 0x00041600,
|
|
9575
|
+
NumberOfReferences: 0x00041600, // retired
|
|
9553
9576
|
// data elements
|
|
9554
|
-
LengthToEnd: 0x00080001,
|
|
9577
|
+
LengthToEnd: 0x00080001, // retired
|
|
9555
9578
|
SpecificCharacterSet: 0x00080005,
|
|
9556
9579
|
LanguageCodeSequence: 0x00080006,
|
|
9557
9580
|
ImageType: 0x00080008,
|
|
9558
|
-
RecognitionCode: 0x00080010,
|
|
9581
|
+
RecognitionCode: 0x00080010, // retired
|
|
9559
9582
|
InstanceCreationDate: 0x00080012,
|
|
9560
9583
|
InstanceCreationTime: 0x00080013,
|
|
9561
9584
|
InstanceCreatorUID: 0x00080014,
|
|
@@ -9568,18 +9591,18 @@ exports.Tag = {
|
|
|
9568
9591
|
SeriesDate: 0x00080021,
|
|
9569
9592
|
AcquisitionDate: 0x00080022,
|
|
9570
9593
|
ContentDate: 0x00080023,
|
|
9571
|
-
OverlayDate: 0x00080024,
|
|
9572
|
-
CurveDate: 0x00080025,
|
|
9594
|
+
OverlayDate: 0x00080024, // retired
|
|
9595
|
+
CurveDate: 0x00080025, // retired
|
|
9573
9596
|
AcquisitionDateTime: 0x0008002a,
|
|
9574
9597
|
StudyTime: 0x00080030,
|
|
9575
9598
|
SeriesTime: 0x00080031,
|
|
9576
9599
|
AcquisitionTime: 0x00080032,
|
|
9577
9600
|
ContentTime: 0x00080033,
|
|
9578
|
-
OverlayTime: 0x00080034,
|
|
9579
|
-
CurveTime: 0x00080035,
|
|
9580
|
-
DataSetType: 0x00080040,
|
|
9581
|
-
DataSetSubtype: 0x00080041,
|
|
9582
|
-
NuclearMedicineSeriesType: 0x00080042,
|
|
9601
|
+
OverlayTime: 0x00080034, // retired
|
|
9602
|
+
CurveTime: 0x00080035, // retired
|
|
9603
|
+
DataSetType: 0x00080040, // retired
|
|
9604
|
+
DataSetSubtype: 0x00080041, // retired
|
|
9605
|
+
NuclearMedicineSeriesType: 0x00080042, // retired
|
|
9583
9606
|
AccessionNumber: 0x00080050,
|
|
9584
9607
|
IssuerOfAccessionNumberSequence: 0x00080051,
|
|
9585
9608
|
QueryRetrieveLevel: 0x00080052,
|
|
@@ -9654,7 +9677,7 @@ exports.Tag = {
|
|
|
9654
9677
|
PrivateDataElementDescription: 0x0008030e,
|
|
9655
9678
|
PrivateDataElementEncoding: 0x0008030f,
|
|
9656
9679
|
PrivateDataElementDefinitionSequence: 0x00080310,
|
|
9657
|
-
NetworkID: 0x00081000,
|
|
9680
|
+
NetworkID: 0x00081000, // retired
|
|
9658
9681
|
StationName: 0x00081010,
|
|
9659
9682
|
StudyDescription: 0x00081030,
|
|
9660
9683
|
ProcedureCodeSequence: 0x00081032,
|
|
@@ -9672,17 +9695,17 @@ exports.Tag = {
|
|
|
9672
9695
|
AdmittingDiagnosesDescription: 0x00081080,
|
|
9673
9696
|
AdmittingDiagnosesCodeSequence: 0x00081084,
|
|
9674
9697
|
ManufacturerModelName: 0x00081090,
|
|
9675
|
-
ReferencedResultsSequence: 0x00081100,
|
|
9698
|
+
ReferencedResultsSequence: 0x00081100, // retired
|
|
9676
9699
|
ReferencedStudySequence: 0x00081110,
|
|
9677
9700
|
ReferencedPerformedProcedureStepSequence: 0x00081111,
|
|
9678
9701
|
ReferencedSeriesSequence: 0x00081115,
|
|
9679
9702
|
ReferencedPatientSequence: 0x00081120,
|
|
9680
9703
|
ReferencedVisitSequence: 0x00081125,
|
|
9681
|
-
ReferencedOverlaySequence: 0x00081130,
|
|
9704
|
+
ReferencedOverlaySequence: 0x00081130, // retired
|
|
9682
9705
|
ReferencedStereometricInstanceSequence: 0x00081134,
|
|
9683
9706
|
ReferencedWaveformSequence: 0x0008113a,
|
|
9684
9707
|
ReferencedImageSequence: 0x00081140,
|
|
9685
|
-
ReferencedCurveSequence: 0x00081145,
|
|
9708
|
+
ReferencedCurveSequence: 0x00081145, // retired
|
|
9686
9709
|
ReferencedInstanceSequence: 0x0008114a,
|
|
9687
9710
|
ReferencedRealWorldValueMappingInstanceSequence: 0x0008114b,
|
|
9688
9711
|
ReferencedSOPClassUID: 0x00081150,
|
|
@@ -9704,7 +9727,7 @@ exports.Tag = {
|
|
|
9704
9727
|
OtherFailuresSequence: 0x0008119a,
|
|
9705
9728
|
StudiesContainingOtherReferencedInstancesSequence: 0x00081200,
|
|
9706
9729
|
RelatedSeriesSequence: 0x00081250,
|
|
9707
|
-
LossyImageCompressionRetired: 0x00082110,
|
|
9730
|
+
LossyImageCompressionRetired: 0x00082110, // retired
|
|
9708
9731
|
DerivationDescription: 0x00082111,
|
|
9709
9732
|
SourceImageSequence: 0x00082112,
|
|
9710
9733
|
StageName: 0x00082120,
|
|
@@ -9722,32 +9745,32 @@ exports.Tag = {
|
|
|
9722
9745
|
StartTrim: 0x00082142,
|
|
9723
9746
|
StopTrim: 0x00082143,
|
|
9724
9747
|
RecommendedDisplayFrameRate: 0x00082144,
|
|
9725
|
-
TransducerPosition: 0x00082200,
|
|
9726
|
-
TransducerOrientation: 0x00082204,
|
|
9727
|
-
AnatomicStructure: 0x00082208,
|
|
9748
|
+
TransducerPosition: 0x00082200, // retired
|
|
9749
|
+
TransducerOrientation: 0x00082204, // retired
|
|
9750
|
+
AnatomicStructure: 0x00082208, // retired
|
|
9728
9751
|
AnatomicRegionSequence: 0x00082218,
|
|
9729
9752
|
AnatomicRegionModifierSequence: 0x00082220,
|
|
9730
9753
|
PrimaryAnatomicStructureSequence: 0x00082228,
|
|
9731
|
-
AnatomicStructureSpaceOrRegionSequence: 0x00082229,
|
|
9754
|
+
AnatomicStructureSpaceOrRegionSequence: 0x00082229, // retired
|
|
9732
9755
|
PrimaryAnatomicStructureModifierSequence: 0x00082230,
|
|
9733
|
-
TransducerPositionSequence: 0x00082240,
|
|
9734
|
-
TransducerPositionModifierSequence: 0x00082242,
|
|
9735
|
-
TransducerOrientationSequence: 0x00082244,
|
|
9736
|
-
TransducerOrientationModifierSequence: 0x00082246,
|
|
9737
|
-
AnatomicStructureSpaceOrRegionCodeSequenceTrial: 0x00082251,
|
|
9738
|
-
AnatomicPortalOfEntranceCodeSequenceTrial: 0x00082253,
|
|
9739
|
-
AnatomicApproachDirectionCodeSequenceTrial: 0x00082255,
|
|
9740
|
-
AnatomicPerspectiveDescriptionTrial: 0x00082256,
|
|
9741
|
-
AnatomicPerspectiveCodeSequenceTrial: 0x00082257,
|
|
9742
|
-
AnatomicLocationOfExaminingInstrumentDescriptionTrial: 0x00082258,
|
|
9743
|
-
AnatomicLocationOfExaminingInstrumentCodeSequenceTrial: 0x00082259,
|
|
9744
|
-
AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial: 0x0008225a,
|
|
9745
|
-
OnAxisBackgroundAnatomicStructureCodeSequenceTrial: 0x0008225c,
|
|
9756
|
+
TransducerPositionSequence: 0x00082240, // retired
|
|
9757
|
+
TransducerPositionModifierSequence: 0x00082242, // retired
|
|
9758
|
+
TransducerOrientationSequence: 0x00082244, // retired
|
|
9759
|
+
TransducerOrientationModifierSequence: 0x00082246, // retired
|
|
9760
|
+
AnatomicStructureSpaceOrRegionCodeSequenceTrial: 0x00082251, // retired
|
|
9761
|
+
AnatomicPortalOfEntranceCodeSequenceTrial: 0x00082253, // retired
|
|
9762
|
+
AnatomicApproachDirectionCodeSequenceTrial: 0x00082255, // retired
|
|
9763
|
+
AnatomicPerspectiveDescriptionTrial: 0x00082256, // retired
|
|
9764
|
+
AnatomicPerspectiveCodeSequenceTrial: 0x00082257, // retired
|
|
9765
|
+
AnatomicLocationOfExaminingInstrumentDescriptionTrial: 0x00082258, // retired
|
|
9766
|
+
AnatomicLocationOfExaminingInstrumentCodeSequenceTrial: 0x00082259, // retired
|
|
9767
|
+
AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial: 0x0008225a, // retired
|
|
9768
|
+
OnAxisBackgroundAnatomicStructureCodeSequenceTrial: 0x0008225c, // retired
|
|
9746
9769
|
AlternateRepresentationSequence: 0x00083001,
|
|
9747
9770
|
IrradiationEventUID: 0x00083010,
|
|
9748
9771
|
SourceIrradiationEventSequence: 0x00083011,
|
|
9749
9772
|
RadiopharmaceuticalAdministrationEventUID: 0x00083012,
|
|
9750
|
-
IdentifyingComments: 0x00084000,
|
|
9773
|
+
IdentifyingComments: 0x00084000, // retired
|
|
9751
9774
|
FrameType: 0x00089007,
|
|
9752
9775
|
ReferencedImageEvidenceSequence: 0x00089092,
|
|
9753
9776
|
ReferencedRawDataSequence: 0x00089121,
|
|
@@ -9796,7 +9819,7 @@ exports.Tag = {
|
|
|
9796
9819
|
GeneticModificationsDescription: 0x00100222,
|
|
9797
9820
|
GeneticModificationsNomenclature: 0x00100223,
|
|
9798
9821
|
GeneticModificationsCodeSequence: 0x00100229,
|
|
9799
|
-
OtherPatientIDs: 0x00101000,
|
|
9822
|
+
OtherPatientIDs: 0x00101000, // retired
|
|
9800
9823
|
OtherPatientNames: 0x00101001,
|
|
9801
9824
|
OtherPatientIDsSequence: 0x00101002,
|
|
9802
9825
|
PatientBirthName: 0x00101005,
|
|
@@ -9808,11 +9831,11 @@ exports.Tag = {
|
|
|
9808
9831
|
MeasuredLateralDimension: 0x00101024,
|
|
9809
9832
|
PatientWeight: 0x00101030,
|
|
9810
9833
|
PatientAddress: 0x00101040,
|
|
9811
|
-
InsurancePlanIdentification: 0x00101050,
|
|
9834
|
+
InsurancePlanIdentification: 0x00101050, // retired
|
|
9812
9835
|
PatientMotherBirthName: 0x00101060,
|
|
9813
9836
|
MilitaryRank: 0x00101080,
|
|
9814
9837
|
BranchOfService: 0x00101081,
|
|
9815
|
-
MedicalRecordLocator: 0x00101090,
|
|
9838
|
+
MedicalRecordLocator: 0x00101090, // retired
|
|
9816
9839
|
ReferencedPatientPhotoSequence: 0x00101100,
|
|
9817
9840
|
MedicalAlerts: 0x00102000,
|
|
9818
9841
|
Allergies: 0x00102110,
|
|
@@ -9865,8 +9888,8 @@ exports.Tag = {
|
|
|
9865
9888
|
ConsentForDistributionFlag: 0x00120085,
|
|
9866
9889
|
EthicsCommitteeApprovalEffectivenessStartDate: 0x00120086,
|
|
9867
9890
|
EthicsCommitteeApprovalEffectivenessEndDate: 0x00120087,
|
|
9868
|
-
CADFileFormat: 0x00140023,
|
|
9869
|
-
ComponentReferenceSystem: 0x00140024,
|
|
9891
|
+
CADFileFormat: 0x00140023, // retired
|
|
9892
|
+
ComponentReferenceSystem: 0x00140024, // retired
|
|
9870
9893
|
ComponentManufacturingProcedure: 0x00140025,
|
|
9871
9894
|
ComponentManufacturer: 0x00140028,
|
|
9872
9895
|
MaterialThickness: 0x00140030,
|
|
@@ -9874,7 +9897,7 @@ exports.Tag = {
|
|
|
9874
9897
|
MaterialIsolationDiameter: 0x00140034,
|
|
9875
9898
|
MaterialGrade: 0x00140042,
|
|
9876
9899
|
MaterialPropertiesDescription: 0x00140044,
|
|
9877
|
-
MaterialPropertiesFileFormatRetired: 0x00140045,
|
|
9900
|
+
MaterialPropertiesFileFormatRetired: 0x00140045, // retired
|
|
9878
9901
|
MaterialNotes: 0x00140046,
|
|
9879
9902
|
ComponentShape: 0x00140050,
|
|
9880
9903
|
CurvatureType: 0x00140052,
|
|
@@ -10073,16 +10096,16 @@ exports.Tag = {
|
|
|
10073
10096
|
InterventionDrugDose: 0x00180028,
|
|
10074
10097
|
InterventionDrugCodeSequence: 0x00180029,
|
|
10075
10098
|
AdditionalDrugSequence: 0x0018002a,
|
|
10076
|
-
Radionuclide: 0x00180030,
|
|
10099
|
+
Radionuclide: 0x00180030, // retired
|
|
10077
10100
|
Radiopharmaceutical: 0x00180031,
|
|
10078
|
-
EnergyWindowCenterline: 0x00180032,
|
|
10079
|
-
EnergyWindowTotalWidth: 0x00180033,
|
|
10101
|
+
EnergyWindowCenterline: 0x00180032, // retired
|
|
10102
|
+
EnergyWindowTotalWidth: 0x00180033, // retired
|
|
10080
10103
|
InterventionDrugName: 0x00180034,
|
|
10081
10104
|
InterventionDrugStartTime: 0x00180035,
|
|
10082
10105
|
InterventionSequence: 0x00180036,
|
|
10083
|
-
TherapyType: 0x00180037,
|
|
10106
|
+
TherapyType: 0x00180037, // retired
|
|
10084
10107
|
InterventionStatus: 0x00180038,
|
|
10085
|
-
TherapyDescription: 0x00180039,
|
|
10108
|
+
TherapyDescription: 0x00180039, // retired
|
|
10086
10109
|
InterventionDescription: 0x0018003a,
|
|
10087
10110
|
CineRate: 0x00180040,
|
|
10088
10111
|
InitialCineRunState: 0x00180042,
|
|
@@ -10120,15 +10143,15 @@ exports.Tag = {
|
|
|
10120
10143
|
UniqueDeviceIdentifier: 0x00181009,
|
|
10121
10144
|
UDISequence: 0x0018100a,
|
|
10122
10145
|
SecondaryCaptureDeviceID: 0x00181010,
|
|
10123
|
-
HardcopyCreationDeviceID: 0x00181011,
|
|
10146
|
+
HardcopyCreationDeviceID: 0x00181011, // retired
|
|
10124
10147
|
DateOfSecondaryCapture: 0x00181012,
|
|
10125
10148
|
TimeOfSecondaryCapture: 0x00181014,
|
|
10126
10149
|
SecondaryCaptureDeviceManufacturer: 0x00181016,
|
|
10127
|
-
HardcopyDeviceManufacturer: 0x00181017,
|
|
10150
|
+
HardcopyDeviceManufacturer: 0x00181017, // retired
|
|
10128
10151
|
SecondaryCaptureDeviceManufacturerModelName: 0x00181018,
|
|
10129
10152
|
SecondaryCaptureDeviceSoftwareVersions: 0x00181019,
|
|
10130
|
-
HardcopyDeviceSoftwareVersion: 0x0018101a,
|
|
10131
|
-
HardcopyDeviceManufacturerModelName: 0x0018101b,
|
|
10153
|
+
HardcopyDeviceSoftwareVersion: 0x0018101a, // retired
|
|
10154
|
+
HardcopyDeviceManufacturerModelName: 0x0018101b, // retired
|
|
10132
10155
|
SoftwareVersions: 0x00181020,
|
|
10133
10156
|
VideoImageFormatAcquired: 0x00181022,
|
|
10134
10157
|
DigitalImageFormatAcquired: 0x00181023,
|
|
@@ -10192,12 +10215,12 @@ exports.Tag = {
|
|
|
10192
10215
|
TableAngle: 0x00181138,
|
|
10193
10216
|
TableType: 0x0018113a,
|
|
10194
10217
|
RotationDirection: 0x00181140,
|
|
10195
|
-
AngularPosition: 0x00181141,
|
|
10218
|
+
AngularPosition: 0x00181141, // retired
|
|
10196
10219
|
RadialPosition: 0x00181142,
|
|
10197
10220
|
ScanArc: 0x00181143,
|
|
10198
10221
|
AngularStep: 0x00181144,
|
|
10199
10222
|
CenterOfRotationOffset: 0x00181145,
|
|
10200
|
-
RotationOffset: 0x00181146,
|
|
10223
|
+
RotationOffset: 0x00181146, // retired
|
|
10201
10224
|
FieldOfViewShape: 0x00181147,
|
|
10202
10225
|
FieldOfViewDimensions: 0x00181149,
|
|
10203
10226
|
ExposureTime: 0x00181150,
|
|
@@ -10231,7 +10254,7 @@ exports.Tag = {
|
|
|
10231
10254
|
TimeOfLastCalibration: 0x00181201,
|
|
10232
10255
|
DateTimeOfLastCalibration: 0x00181202,
|
|
10233
10256
|
ConvolutionKernel: 0x00181210,
|
|
10234
|
-
UpperLowerPixelValues: 0x00181240,
|
|
10257
|
+
UpperLowerPixelValues: 0x00181240, // retired
|
|
10235
10258
|
ActualFrameDuration: 0x00181242,
|
|
10236
10259
|
CountRate: 0x00181243,
|
|
10237
10260
|
PreferredPlaybackSequencing: 0x00181244,
|
|
@@ -10319,26 +10342,26 @@ exports.Tag = {
|
|
|
10319
10342
|
IVUSPullbackStartFrameNumber: 0x00183103,
|
|
10320
10343
|
IVUSPullbackStopFrameNumber: 0x00183104,
|
|
10321
10344
|
LesionNumber: 0x00183105,
|
|
10322
|
-
AcquisitionComments: 0x00184000,
|
|
10345
|
+
AcquisitionComments: 0x00184000, // retired
|
|
10323
10346
|
OutputPower: 0x00185000,
|
|
10324
10347
|
TransducerData: 0x00185010,
|
|
10325
10348
|
FocusDepth: 0x00185012,
|
|
10326
10349
|
ProcessingFunction: 0x00185020,
|
|
10327
|
-
PostprocessingFunction: 0x00185021,
|
|
10350
|
+
PostprocessingFunction: 0x00185021, // retired
|
|
10328
10351
|
MechanicalIndex: 0x00185022,
|
|
10329
10352
|
BoneThermalIndex: 0x00185024,
|
|
10330
10353
|
CranialThermalIndex: 0x00185026,
|
|
10331
10354
|
SoftTissueThermalIndex: 0x00185027,
|
|
10332
10355
|
SoftTissueFocusThermalIndex: 0x00185028,
|
|
10333
10356
|
SoftTissueSurfaceThermalIndex: 0x00185029,
|
|
10334
|
-
DynamicRange: 0x00185030,
|
|
10335
|
-
TotalGain: 0x00185040,
|
|
10357
|
+
DynamicRange: 0x00185030, // retired
|
|
10358
|
+
TotalGain: 0x00185040, // retired
|
|
10336
10359
|
DepthOfScanField: 0x00185050,
|
|
10337
10360
|
PatientPosition: 0x00185100,
|
|
10338
10361
|
ViewPosition: 0x00185101,
|
|
10339
10362
|
ProjectionEponymousNameCodeSequence: 0x00185104,
|
|
10340
|
-
ImageTransformationMatrix: 0x00185210,
|
|
10341
|
-
ImageTranslationVector: 0x00185212,
|
|
10363
|
+
ImageTransformationMatrix: 0x00185210, // retired
|
|
10364
|
+
ImageTranslationVector: 0x00185212, // retired
|
|
10342
10365
|
Sensitivity: 0x00186000,
|
|
10343
10366
|
SequenceOfUltrasoundRegions: 0x00186011,
|
|
10344
10367
|
RegionSpatialFormat: 0x00186012,
|
|
@@ -10361,17 +10384,17 @@ exports.Tag = {
|
|
|
10361
10384
|
PulseRepetitionFrequency: 0x00186032,
|
|
10362
10385
|
DopplerCorrectionAngle: 0x00186034,
|
|
10363
10386
|
SteeringAngle: 0x00186036,
|
|
10364
|
-
DopplerSampleVolumeXPositionRetired: 0x00186038,
|
|
10387
|
+
DopplerSampleVolumeXPositionRetired: 0x00186038, // retired
|
|
10365
10388
|
DopplerSampleVolumeXPosition: 0x00186039,
|
|
10366
|
-
DopplerSampleVolumeYPositionRetired: 0x0018603a,
|
|
10389
|
+
DopplerSampleVolumeYPositionRetired: 0x0018603a, // retired
|
|
10367
10390
|
DopplerSampleVolumeYPosition: 0x0018603b,
|
|
10368
|
-
TMLinePositionX0Retired: 0x0018603c,
|
|
10391
|
+
TMLinePositionX0Retired: 0x0018603c, // retired
|
|
10369
10392
|
TMLinePositionX0: 0x0018603d,
|
|
10370
|
-
TMLinePositionY0Retired: 0x0018603e,
|
|
10393
|
+
TMLinePositionY0Retired: 0x0018603e, // retired
|
|
10371
10394
|
TMLinePositionY0: 0x0018603f,
|
|
10372
|
-
TMLinePositionX1Retired: 0x00186040,
|
|
10395
|
+
TMLinePositionX1Retired: 0x00186040, // retired
|
|
10373
10396
|
TMLinePositionX1: 0x00186041,
|
|
10374
|
-
TMLinePositionY1Retired: 0x00186042,
|
|
10397
|
+
TMLinePositionY1Retired: 0x00186042, // retired
|
|
10375
10398
|
TMLinePositionY1: 0x00186043,
|
|
10376
10399
|
PixelComponentOrganization: 0x00186044,
|
|
10377
10400
|
PixelComponentMask: 0x00186046,
|
|
@@ -10508,7 +10531,7 @@ exports.Tag = {
|
|
|
10508
10531
|
NumberOfKSpaceTrajectories: 0x00189093,
|
|
10509
10532
|
CoverageOfKSpace: 0x00189094,
|
|
10510
10533
|
SpectroscopyAcquisitionPhaseRows: 0x00189095,
|
|
10511
|
-
ParallelReductionFactorInPlaneRetired: 0x00189096,
|
|
10534
|
+
ParallelReductionFactorInPlaneRetired: 0x00189096, // retired
|
|
10512
10535
|
TransmitterFrequency: 0x00189098,
|
|
10513
10536
|
ResonantNucleus: 0x00189100,
|
|
10514
10537
|
FrequencyCorrection: 0x00189101,
|
|
@@ -10531,7 +10554,7 @@ exports.Tag = {
|
|
|
10531
10554
|
MRMetaboliteMapSequence: 0x00189152,
|
|
10532
10555
|
ParallelReductionFactorOutOfPlane: 0x00189155,
|
|
10533
10556
|
SpectroscopyAcquisitionOutOfPlanePhaseSteps: 0x00189159,
|
|
10534
|
-
BulkMotionStatus: 0x00189166,
|
|
10557
|
+
BulkMotionStatus: 0x00189166, // retired
|
|
10535
10558
|
ParallelReductionFactorSecondInPlane: 0x00189168,
|
|
10536
10559
|
CardiacBeatRejectionTechnique: 0x00189169,
|
|
10537
10560
|
RespiratoryMotionCompensationTechnique: 0x00189170,
|
|
@@ -10551,8 +10574,8 @@ exports.Tag = {
|
|
|
10551
10574
|
TaggingDelay: 0x00189184,
|
|
10552
10575
|
RespiratoryMotionCompensationTechniqueDescription: 0x00189185,
|
|
10553
10576
|
RespiratorySignalSourceID: 0x00189186,
|
|
10554
|
-
ChemicalShiftMinimumIntegrationLimitInHz: 0x00189195,
|
|
10555
|
-
ChemicalShiftMaximumIntegrationLimitInHz: 0x00189196,
|
|
10577
|
+
ChemicalShiftMinimumIntegrationLimitInHz: 0x00189195, // retired
|
|
10578
|
+
ChemicalShiftMaximumIntegrationLimitInHz: 0x00189196, // retired
|
|
10556
10579
|
MRVelocityEncodingSequence: 0x00189197,
|
|
10557
10580
|
FirstOrderPhaseCorrection: 0x00189198,
|
|
10558
10581
|
WaterReferencedPhaseCorrection: 0x00189199,
|
|
@@ -10868,59 +10891,59 @@ exports.Tag = {
|
|
|
10868
10891
|
SeriesNumber: 0x00200011,
|
|
10869
10892
|
AcquisitionNumber: 0x00200012,
|
|
10870
10893
|
InstanceNumber: 0x00200013,
|
|
10871
|
-
IsotopeNumber: 0x00200014,
|
|
10872
|
-
PhaseNumber: 0x00200015,
|
|
10873
|
-
IntervalNumber: 0x00200016,
|
|
10874
|
-
TimeSlotNumber: 0x00200017,
|
|
10875
|
-
AngleNumber: 0x00200018,
|
|
10894
|
+
IsotopeNumber: 0x00200014, // retired
|
|
10895
|
+
PhaseNumber: 0x00200015, // retired
|
|
10896
|
+
IntervalNumber: 0x00200016, // retired
|
|
10897
|
+
TimeSlotNumber: 0x00200017, // retired
|
|
10898
|
+
AngleNumber: 0x00200018, // retired
|
|
10876
10899
|
ItemNumber: 0x00200019,
|
|
10877
10900
|
PatientOrientation: 0x00200020,
|
|
10878
|
-
OverlayNumber: 0x00200022,
|
|
10879
|
-
CurveNumber: 0x00200024,
|
|
10880
|
-
LUTNumber: 0x00200026,
|
|
10881
|
-
ImagePosition: 0x00200030,
|
|
10901
|
+
OverlayNumber: 0x00200022, // retired
|
|
10902
|
+
CurveNumber: 0x00200024, // retired
|
|
10903
|
+
LUTNumber: 0x00200026, // retired
|
|
10904
|
+
ImagePosition: 0x00200030, // retired
|
|
10882
10905
|
ImagePositionPatient: 0x00200032,
|
|
10883
|
-
ImageOrientation: 0x00200035,
|
|
10906
|
+
ImageOrientation: 0x00200035, // retired
|
|
10884
10907
|
ImageOrientationPatient: 0x00200037,
|
|
10885
|
-
Location: 0x00200050,
|
|
10908
|
+
Location: 0x00200050, // retired
|
|
10886
10909
|
FrameOfReferenceUID: 0x00200052,
|
|
10887
10910
|
Laterality: 0x00200060,
|
|
10888
10911
|
ImageLaterality: 0x00200062,
|
|
10889
|
-
ImageGeometryType: 0x00200070,
|
|
10890
|
-
MaskingImage: 0x00200080,
|
|
10891
|
-
ReportNumber: 0x002000aa,
|
|
10912
|
+
ImageGeometryType: 0x00200070, // retired
|
|
10913
|
+
MaskingImage: 0x00200080, // retired
|
|
10914
|
+
ReportNumber: 0x002000aa, // retired
|
|
10892
10915
|
TemporalPositionIdentifier: 0x00200100,
|
|
10893
10916
|
NumberOfTemporalPositions: 0x00200105,
|
|
10894
10917
|
TemporalResolution: 0x00200110,
|
|
10895
10918
|
SynchronizationFrameOfReferenceUID: 0x00200200,
|
|
10896
10919
|
SOPInstanceUIDOfConcatenationSource: 0x00200242,
|
|
10897
|
-
SeriesInStudy: 0x00201000,
|
|
10898
|
-
AcquisitionsInSeries: 0x00201001,
|
|
10920
|
+
SeriesInStudy: 0x00201000, // retired
|
|
10921
|
+
AcquisitionsInSeries: 0x00201001, // retired
|
|
10899
10922
|
ImagesInAcquisition: 0x00201002,
|
|
10900
|
-
ImagesInSeries: 0x00201003,
|
|
10901
|
-
AcquisitionsInStudy: 0x00201004,
|
|
10902
|
-
ImagesInStudy: 0x00201005,
|
|
10903
|
-
Reference: 0x00201020,
|
|
10923
|
+
ImagesInSeries: 0x00201003, // retired
|
|
10924
|
+
AcquisitionsInStudy: 0x00201004, // retired
|
|
10925
|
+
ImagesInStudy: 0x00201005, // retired
|
|
10926
|
+
Reference: 0x00201020, // retired
|
|
10904
10927
|
TargetPositionReferenceIndicator: 0x0020103f,
|
|
10905
10928
|
PositionReferenceIndicator: 0x00201040,
|
|
10906
10929
|
SliceLocation: 0x00201041,
|
|
10907
|
-
OtherStudyNumbers: 0x00201070,
|
|
10930
|
+
OtherStudyNumbers: 0x00201070, // retired
|
|
10908
10931
|
NumberOfPatientRelatedStudies: 0x00201200,
|
|
10909
10932
|
NumberOfPatientRelatedSeries: 0x00201202,
|
|
10910
10933
|
NumberOfPatientRelatedInstances: 0x00201204,
|
|
10911
10934
|
NumberOfStudyRelatedSeries: 0x00201206,
|
|
10912
10935
|
NumberOfStudyRelatedInstances: 0x00201208,
|
|
10913
10936
|
NumberOfSeriesRelatedInstances: 0x00201209,
|
|
10914
|
-
SourceImageIDs: 0x00203100,
|
|
10915
|
-
ModifyingDeviceID: 0x00203401,
|
|
10916
|
-
ModifiedImageID: 0x00203402,
|
|
10917
|
-
ModifiedImageDate: 0x00203403,
|
|
10918
|
-
ModifyingDeviceManufacturer: 0x00203404,
|
|
10919
|
-
ModifiedImageTime: 0x00203405,
|
|
10920
|
-
ModifiedImageDescription: 0x00203406,
|
|
10937
|
+
SourceImageIDs: 0x00203100, // retired
|
|
10938
|
+
ModifyingDeviceID: 0x00203401, // retired
|
|
10939
|
+
ModifiedImageID: 0x00203402, // retired
|
|
10940
|
+
ModifiedImageDate: 0x00203403, // retired
|
|
10941
|
+
ModifyingDeviceManufacturer: 0x00203404, // retired
|
|
10942
|
+
ModifiedImageTime: 0x00203405, // retired
|
|
10943
|
+
ModifiedImageDescription: 0x00203406, // retired
|
|
10921
10944
|
ImageComments: 0x00204000,
|
|
10922
|
-
OriginalImageIdentification: 0x00205000,
|
|
10923
|
-
OriginalImageIdentificationNomenclature: 0x00205002,
|
|
10945
|
+
OriginalImageIdentification: 0x00205000, // retired
|
|
10946
|
+
OriginalImageIdentificationNomenclature: 0x00205002, // retired
|
|
10924
10947
|
StackID: 0x00209056,
|
|
10925
10948
|
InStackPositionNumber: 0x00209057,
|
|
10926
10949
|
FrameAnatomySequence: 0x00209071,
|
|
@@ -11059,7 +11082,7 @@ exports.Tag = {
|
|
|
11059
11082
|
IOLPowerSequence: 0x00221090,
|
|
11060
11083
|
LensConstantSequence: 0x00221092,
|
|
11061
11084
|
IOLManufacturer: 0x00221093,
|
|
11062
|
-
LensConstantDescription: 0x00221094,
|
|
11085
|
+
LensConstantDescription: 0x00221094, // retired
|
|
11063
11086
|
ImplantName: 0x00221095,
|
|
11064
11087
|
KeratometryMeasurementTypeCodeSequence: 0x00221096,
|
|
11065
11088
|
ImplantPartNumber: 0x00221097,
|
|
@@ -11079,7 +11102,7 @@ exports.Tag = {
|
|
|
11079
11102
|
SourceOfRefractiveMeasurementsCodeSequence: 0x00221135,
|
|
11080
11103
|
OphthalmicAxialLengthMeasurementModified: 0x00221140,
|
|
11081
11104
|
OphthalmicAxialLengthDataSourceCodeSequence: 0x00221150,
|
|
11082
|
-
OphthalmicAxialLengthAcquisitionMethodCodeSequence: 0x00221153,
|
|
11105
|
+
OphthalmicAxialLengthAcquisitionMethodCodeSequence: 0x00221153, // retired
|
|
11083
11106
|
SignalToNoiseRatio: 0x00221155,
|
|
11084
11107
|
OphthalmicAxialLengthDataSourceDescription: 0x00221159,
|
|
11085
11108
|
OphthalmicAxialLengthMeasurementsTotalLengthSequence: 0x00221210,
|
|
@@ -11093,8 +11116,8 @@ exports.Tag = {
|
|
|
11093
11116
|
SelectedSegmentalOphthalmicAxialLengthSequence: 0x00221257,
|
|
11094
11117
|
SelectedTotalOphthalmicAxialLengthSequence: 0x00221260,
|
|
11095
11118
|
OphthalmicAxialLengthQualityMetricSequence: 0x00221262,
|
|
11096
|
-
OphthalmicAxialLengthQualityMetricTypeCodeSequence: 0x00221265,
|
|
11097
|
-
OphthalmicAxialLengthQualityMetricTypeDescription: 0x00221273,
|
|
11119
|
+
OphthalmicAxialLengthQualityMetricTypeCodeSequence: 0x00221265, // retired
|
|
11120
|
+
OphthalmicAxialLengthQualityMetricTypeDescription: 0x00221273, // retired
|
|
11098
11121
|
IntraocularLensCalculationsRightEyeSequence: 0x00221300,
|
|
11099
11122
|
IntraocularLensCalculationsLeftEyeSequence: 0x00221310,
|
|
11100
11123
|
ReferencedOphthalmicAxialLengthMeasurementQCImageSequence: 0x00221330,
|
|
@@ -11251,88 +11274,88 @@ exports.Tag = {
|
|
|
11251
11274
|
SamplesPerPixel: 0x00280002,
|
|
11252
11275
|
SamplesPerPixelUsed: 0x00280003,
|
|
11253
11276
|
PhotometricInterpretation: 0x00280004,
|
|
11254
|
-
ImageDimensions: 0x00280005,
|
|
11277
|
+
ImageDimensions: 0x00280005, // retired
|
|
11255
11278
|
PlanarConfiguration: 0x00280006,
|
|
11256
11279
|
NumberOfFrames: 0x00280008,
|
|
11257
11280
|
FrameIncrementPointer: 0x00280009,
|
|
11258
11281
|
FrameDimensionPointer: 0x0028000a,
|
|
11259
11282
|
Rows: 0x00280010,
|
|
11260
11283
|
Columns: 0x00280011,
|
|
11261
|
-
Planes: 0x00280012,
|
|
11284
|
+
Planes: 0x00280012, // retired
|
|
11262
11285
|
UltrasoundColorDataPresent: 0x00280014,
|
|
11263
11286
|
PixelSpacing: 0x00280030,
|
|
11264
11287
|
ZoomFactor: 0x00280031,
|
|
11265
11288
|
ZoomCenter: 0x00280032,
|
|
11266
11289
|
PixelAspectRatio: 0x00280034,
|
|
11267
|
-
ImageFormat: 0x00280040,
|
|
11268
|
-
ManipulatedImage: 0x00280050,
|
|
11290
|
+
ImageFormat: 0x00280040, // retired
|
|
11291
|
+
ManipulatedImage: 0x00280050, // retired
|
|
11269
11292
|
CorrectedImage: 0x00280051,
|
|
11270
|
-
CompressionRecognitionCode: 0x0028005f,
|
|
11271
|
-
CompressionCode: 0x00280060,
|
|
11272
|
-
CompressionOriginator: 0x00280061,
|
|
11273
|
-
CompressionLabel: 0x00280062,
|
|
11274
|
-
CompressionDescription: 0x00280063,
|
|
11275
|
-
CompressionSequence: 0x00280065,
|
|
11276
|
-
CompressionStepPointers: 0x00280066,
|
|
11277
|
-
RepeatInterval: 0x00280068,
|
|
11278
|
-
BitsGrouped: 0x00280069,
|
|
11279
|
-
PerimeterTable: 0x00280070,
|
|
11280
|
-
PerimeterValue: 0x00280071,
|
|
11281
|
-
PredictorRows: 0x00280080,
|
|
11282
|
-
PredictorColumns: 0x00280081,
|
|
11283
|
-
PredictorConstants: 0x00280082,
|
|
11284
|
-
BlockedPixels: 0x00280090,
|
|
11285
|
-
BlockRows: 0x00280091,
|
|
11286
|
-
BlockColumns: 0x00280092,
|
|
11287
|
-
RowOverlap: 0x00280093,
|
|
11288
|
-
ColumnOverlap: 0x00280094,
|
|
11293
|
+
CompressionRecognitionCode: 0x0028005f, // retired
|
|
11294
|
+
CompressionCode: 0x00280060, // retired
|
|
11295
|
+
CompressionOriginator: 0x00280061, // retired
|
|
11296
|
+
CompressionLabel: 0x00280062, // retired
|
|
11297
|
+
CompressionDescription: 0x00280063, // retired
|
|
11298
|
+
CompressionSequence: 0x00280065, // retired
|
|
11299
|
+
CompressionStepPointers: 0x00280066, // retired
|
|
11300
|
+
RepeatInterval: 0x00280068, // retired
|
|
11301
|
+
BitsGrouped: 0x00280069, // retired
|
|
11302
|
+
PerimeterTable: 0x00280070, // retired
|
|
11303
|
+
PerimeterValue: 0x00280071, // retired
|
|
11304
|
+
PredictorRows: 0x00280080, // retired
|
|
11305
|
+
PredictorColumns: 0x00280081, // retired
|
|
11306
|
+
PredictorConstants: 0x00280082, // retired
|
|
11307
|
+
BlockedPixels: 0x00280090, // retired
|
|
11308
|
+
BlockRows: 0x00280091, // retired
|
|
11309
|
+
BlockColumns: 0x00280092, // retired
|
|
11310
|
+
RowOverlap: 0x00280093, // retired
|
|
11311
|
+
ColumnOverlap: 0x00280094, // retired
|
|
11289
11312
|
BitsAllocated: 0x00280100,
|
|
11290
11313
|
BitsStored: 0x00280101,
|
|
11291
11314
|
HighBit: 0x00280102,
|
|
11292
11315
|
PixelRepresentation: 0x00280103,
|
|
11293
|
-
SmallestValidPixelValue: 0x00280104,
|
|
11294
|
-
LargestValidPixelValue: 0x00280105,
|
|
11316
|
+
SmallestValidPixelValue: 0x00280104, // retired
|
|
11317
|
+
LargestValidPixelValue: 0x00280105, // retired
|
|
11295
11318
|
SmallestImagePixelValue: 0x00280106,
|
|
11296
11319
|
LargestImagePixelValue: 0x00280107,
|
|
11297
11320
|
SmallestPixelValueInSeries: 0x00280108,
|
|
11298
11321
|
LargestPixelValueInSeries: 0x00280109,
|
|
11299
|
-
SmallestImagePixelValueInPlane: 0x00280110,
|
|
11300
|
-
LargestImagePixelValueInPlane: 0x00280111,
|
|
11322
|
+
SmallestImagePixelValueInPlane: 0x00280110, // retired
|
|
11323
|
+
LargestImagePixelValueInPlane: 0x00280111, // retired
|
|
11301
11324
|
PixelPaddingValue: 0x00280120,
|
|
11302
11325
|
PixelPaddingRangeLimit: 0x00280121,
|
|
11303
11326
|
FloatPixelPaddingValue: 0x00280122,
|
|
11304
11327
|
DoubleFloatPixelPaddingValue: 0x00280123,
|
|
11305
11328
|
FloatPixelPaddingRangeLimit: 0x00280124,
|
|
11306
11329
|
DoubleFloatPixelPaddingRangeLimit: 0x00280125,
|
|
11307
|
-
ImageLocation: 0x00280200,
|
|
11330
|
+
ImageLocation: 0x00280200, // retired
|
|
11308
11331
|
QualityControlImage: 0x00280300,
|
|
11309
11332
|
BurnedInAnnotation: 0x00280301,
|
|
11310
11333
|
RecognizableVisualFeatures: 0x00280302,
|
|
11311
11334
|
LongitudinalTemporalInformationModified: 0x00280303,
|
|
11312
11335
|
ReferencedColorPaletteInstanceUID: 0x00280304,
|
|
11313
|
-
TransformLabel: 0x00280400,
|
|
11314
|
-
TransformVersionNumber: 0x00280401,
|
|
11315
|
-
NumberOfTransformSteps: 0x00280402,
|
|
11316
|
-
SequenceOfCompressedData: 0x00280403,
|
|
11317
|
-
DetailsOfCoefficients: 0x00280404,
|
|
11318
|
-
RowsForNthOrderCoefficients: 0x00280400,
|
|
11319
|
-
ColumnsForNthOrderCoefficients: 0x00280401,
|
|
11320
|
-
CoefficientCoding: 0x00280402,
|
|
11321
|
-
CoefficientCodingPointers: 0x00280403,
|
|
11322
|
-
DCTLabel: 0x00280700,
|
|
11323
|
-
DataBlockDescription: 0x00280701,
|
|
11324
|
-
DataBlock: 0x00280702,
|
|
11325
|
-
NormalizationFactorFormat: 0x00280710,
|
|
11326
|
-
ZonalMapNumberFormat: 0x00280720,
|
|
11327
|
-
ZonalMapLocation: 0x00280721,
|
|
11328
|
-
ZonalMapFormat: 0x00280722,
|
|
11329
|
-
AdaptiveMapFormat: 0x00280730,
|
|
11330
|
-
CodeNumberFormat: 0x00280740,
|
|
11331
|
-
CodeLabel: 0x00280800,
|
|
11332
|
-
NumberOfTables: 0x00280802,
|
|
11333
|
-
CodeTableLocation: 0x00280803,
|
|
11334
|
-
BitsForCodeWord: 0x00280804,
|
|
11335
|
-
ImageDataLocation: 0x00280808,
|
|
11336
|
+
TransformLabel: 0x00280400, // retired
|
|
11337
|
+
TransformVersionNumber: 0x00280401, // retired
|
|
11338
|
+
NumberOfTransformSteps: 0x00280402, // retired
|
|
11339
|
+
SequenceOfCompressedData: 0x00280403, // retired
|
|
11340
|
+
DetailsOfCoefficients: 0x00280404, // retired
|
|
11341
|
+
RowsForNthOrderCoefficients: 0x00280400, // retired
|
|
11342
|
+
ColumnsForNthOrderCoefficients: 0x00280401, // retired
|
|
11343
|
+
CoefficientCoding: 0x00280402, // retired
|
|
11344
|
+
CoefficientCodingPointers: 0x00280403, // retired
|
|
11345
|
+
DCTLabel: 0x00280700, // retired
|
|
11346
|
+
DataBlockDescription: 0x00280701, // retired
|
|
11347
|
+
DataBlock: 0x00280702, // retired
|
|
11348
|
+
NormalizationFactorFormat: 0x00280710, // retired
|
|
11349
|
+
ZonalMapNumberFormat: 0x00280720, // retired
|
|
11350
|
+
ZonalMapLocation: 0x00280721, // retired
|
|
11351
|
+
ZonalMapFormat: 0x00280722, // retired
|
|
11352
|
+
AdaptiveMapFormat: 0x00280730, // retired
|
|
11353
|
+
CodeNumberFormat: 0x00280740, // retired
|
|
11354
|
+
CodeLabel: 0x00280800, // retired
|
|
11355
|
+
NumberOfTables: 0x00280802, // retired
|
|
11356
|
+
CodeTableLocation: 0x00280803, // retired
|
|
11357
|
+
BitsForCodeWord: 0x00280804, // retired
|
|
11358
|
+
ImageDataLocation: 0x00280808, // retired
|
|
11336
11359
|
PixelSpacingCalibrationType: 0x00280a02,
|
|
11337
11360
|
PixelSpacingCalibrationDescription: 0x00280a04,
|
|
11338
11361
|
PixelIntensityRelationship: 0x00281040,
|
|
@@ -11344,26 +11367,26 @@ exports.Tag = {
|
|
|
11344
11367
|
RescaleType: 0x00281054,
|
|
11345
11368
|
WindowCenterWidthExplanation: 0x00281055,
|
|
11346
11369
|
VOILUTFunction: 0x00281056,
|
|
11347
|
-
GrayScale: 0x00281080,
|
|
11370
|
+
GrayScale: 0x00281080, // retired
|
|
11348
11371
|
RecommendedViewingMode: 0x00281090,
|
|
11349
|
-
GrayLookupTableDescriptor: 0x00281100,
|
|
11372
|
+
GrayLookupTableDescriptor: 0x00281100, // retired
|
|
11350
11373
|
RedPaletteColorLookupTableDescriptor: 0x00281101,
|
|
11351
11374
|
GreenPaletteColorLookupTableDescriptor: 0x00281102,
|
|
11352
11375
|
BluePaletteColorLookupTableDescriptor: 0x00281103,
|
|
11353
11376
|
AlphaPaletteColorLookupTableDescriptor: 0x00281104,
|
|
11354
|
-
LargeRedPaletteColorLookupTableDescriptor: 0x00281111,
|
|
11355
|
-
LargeGreenPaletteColorLookupTableDescriptor: 0x00281112,
|
|
11356
|
-
LargeBluePaletteColorLookupTableDescriptor: 0x00281113,
|
|
11377
|
+
LargeRedPaletteColorLookupTableDescriptor: 0x00281111, // retired
|
|
11378
|
+
LargeGreenPaletteColorLookupTableDescriptor: 0x00281112, // retired
|
|
11379
|
+
LargeBluePaletteColorLookupTableDescriptor: 0x00281113, // retired
|
|
11357
11380
|
PaletteColorLookupTableUID: 0x00281199,
|
|
11358
|
-
GrayLookupTableData: 0x00281200,
|
|
11381
|
+
GrayLookupTableData: 0x00281200, // retired
|
|
11359
11382
|
RedPaletteColorLookupTableData: 0x00281201,
|
|
11360
11383
|
GreenPaletteColorLookupTableData: 0x00281202,
|
|
11361
11384
|
BluePaletteColorLookupTableData: 0x00281203,
|
|
11362
11385
|
AlphaPaletteColorLookupTableData: 0x00281204,
|
|
11363
|
-
LargeRedPaletteColorLookupTableData: 0x00281211,
|
|
11364
|
-
LargeGreenPaletteColorLookupTableData: 0x00281212,
|
|
11365
|
-
LargeBluePaletteColorLookupTableData: 0x00281213,
|
|
11366
|
-
LargePaletteColorLookupTableUID: 0x00281214,
|
|
11386
|
+
LargeRedPaletteColorLookupTableData: 0x00281211, // retired
|
|
11387
|
+
LargeGreenPaletteColorLookupTableData: 0x00281212, // retired
|
|
11388
|
+
LargeBluePaletteColorLookupTableData: 0x00281213, // retired
|
|
11389
|
+
LargePaletteColorLookupTableUID: 0x00281214, // retired
|
|
11367
11390
|
SegmentedRedPaletteColorLookupTableData: 0x00281221,
|
|
11368
11391
|
SegmentedGreenPaletteColorLookupTableData: 0x00281222,
|
|
11369
11392
|
SegmentedBluePaletteColorLookupTableData: 0x00281223,
|
|
@@ -11402,13 +11425,13 @@ exports.Tag = {
|
|
|
11402
11425
|
LUTData: 0x00283006,
|
|
11403
11426
|
VOILUTSequence: 0x00283010,
|
|
11404
11427
|
SoftcopyVOILUTSequence: 0x00283110,
|
|
11405
|
-
ImagePresentationComments: 0x00284000,
|
|
11406
|
-
BiPlaneAcquisitionSequence: 0x00285000,
|
|
11428
|
+
ImagePresentationComments: 0x00284000, // retired
|
|
11429
|
+
BiPlaneAcquisitionSequence: 0x00285000, // retired
|
|
11407
11430
|
RepresentativeFrameNumber: 0x00286010,
|
|
11408
11431
|
FrameNumbersOfInterest: 0x00286020,
|
|
11409
11432
|
FrameOfInterestDescription: 0x00286022,
|
|
11410
11433
|
FrameOfInterestType: 0x00286023,
|
|
11411
|
-
MaskPointers: 0x00286030,
|
|
11434
|
+
MaskPointers: 0x00286030, // retired
|
|
11412
11435
|
RWavePointer: 0x00286040,
|
|
11413
11436
|
MaskSubtractionSequence: 0x00286100,
|
|
11414
11437
|
MaskOperation: 0x00286101,
|
|
@@ -11469,7 +11492,7 @@ exports.Tag = {
|
|
|
11469
11492
|
DataPointRows: 0x00289001,
|
|
11470
11493
|
DataPointColumns: 0x00289002,
|
|
11471
11494
|
SignalDomainColumns: 0x00289003,
|
|
11472
|
-
LargestMonochromePixelValue: 0x00289099,
|
|
11495
|
+
LargestMonochromePixelValue: 0x00289099, // retired
|
|
11473
11496
|
DataRepresentation: 0x00289108,
|
|
11474
11497
|
PixelMeasuresSequence: 0x00289110,
|
|
11475
11498
|
FrameVOILUTSequence: 0x00289132,
|
|
@@ -11494,53 +11517,53 @@ exports.Tag = {
|
|
|
11494
11517
|
LUTFrameRange: 0x00289507,
|
|
11495
11518
|
ImageToEquipmentMappingMatrix: 0x00289520,
|
|
11496
11519
|
EquipmentCoordinateSystemIdentification: 0x00289537,
|
|
11497
|
-
StudyStatusID: 0x0032000a,
|
|
11498
|
-
StudyPriorityID: 0x0032000c,
|
|
11499
|
-
StudyIDIssuer: 0x00320012,
|
|
11500
|
-
StudyVerifiedDate: 0x00320032,
|
|
11501
|
-
StudyVerifiedTime: 0x00320033,
|
|
11502
|
-
StudyReadDate: 0x00320034,
|
|
11503
|
-
StudyReadTime: 0x00320035,
|
|
11504
|
-
ScheduledStudyStartDate: 0x00321000,
|
|
11505
|
-
ScheduledStudyStartTime: 0x00321001,
|
|
11506
|
-
ScheduledStudyStopDate: 0x00321010,
|
|
11507
|
-
ScheduledStudyStopTime: 0x00321011,
|
|
11508
|
-
ScheduledStudyLocation: 0x00321020,
|
|
11509
|
-
ScheduledStudyLocationAETitle: 0x00321021,
|
|
11510
|
-
ReasonForStudy: 0x00321030,
|
|
11520
|
+
StudyStatusID: 0x0032000a, // retired
|
|
11521
|
+
StudyPriorityID: 0x0032000c, // retired
|
|
11522
|
+
StudyIDIssuer: 0x00320012, // retired
|
|
11523
|
+
StudyVerifiedDate: 0x00320032, // retired
|
|
11524
|
+
StudyVerifiedTime: 0x00320033, // retired
|
|
11525
|
+
StudyReadDate: 0x00320034, // retired
|
|
11526
|
+
StudyReadTime: 0x00320035, // retired
|
|
11527
|
+
ScheduledStudyStartDate: 0x00321000, // retired
|
|
11528
|
+
ScheduledStudyStartTime: 0x00321001, // retired
|
|
11529
|
+
ScheduledStudyStopDate: 0x00321010, // retired
|
|
11530
|
+
ScheduledStudyStopTime: 0x00321011, // retired
|
|
11531
|
+
ScheduledStudyLocation: 0x00321020, // retired
|
|
11532
|
+
ScheduledStudyLocationAETitle: 0x00321021, // retired
|
|
11533
|
+
ReasonForStudy: 0x00321030, // retired
|
|
11511
11534
|
RequestingPhysicianIdentificationSequence: 0x00321031,
|
|
11512
11535
|
RequestingPhysician: 0x00321032,
|
|
11513
11536
|
RequestingService: 0x00321033,
|
|
11514
11537
|
RequestingServiceCodeSequence: 0x00321034,
|
|
11515
|
-
StudyArrivalDate: 0x00321040,
|
|
11516
|
-
StudyArrivalTime: 0x00321041,
|
|
11517
|
-
StudyCompletionDate: 0x00321050,
|
|
11518
|
-
StudyCompletionTime: 0x00321051,
|
|
11519
|
-
StudyComponentStatusID: 0x00321055,
|
|
11538
|
+
StudyArrivalDate: 0x00321040, // retired
|
|
11539
|
+
StudyArrivalTime: 0x00321041, // retired
|
|
11540
|
+
StudyCompletionDate: 0x00321050, // retired
|
|
11541
|
+
StudyCompletionTime: 0x00321051, // retired
|
|
11542
|
+
StudyComponentStatusID: 0x00321055, // retired
|
|
11520
11543
|
RequestedProcedureDescription: 0x00321060,
|
|
11521
11544
|
RequestedProcedureCodeSequence: 0x00321064,
|
|
11522
11545
|
RequestedContrastAgent: 0x00321070,
|
|
11523
|
-
StudyComments: 0x00324000,
|
|
11546
|
+
StudyComments: 0x00324000, // retired
|
|
11524
11547
|
ReferencedPatientAliasSequence: 0x00380004,
|
|
11525
11548
|
VisitStatusID: 0x00380008,
|
|
11526
11549
|
AdmissionID: 0x00380010,
|
|
11527
|
-
IssuerOfAdmissionID: 0x00380011,
|
|
11550
|
+
IssuerOfAdmissionID: 0x00380011, // retired
|
|
11528
11551
|
IssuerOfAdmissionIDSequence: 0x00380014,
|
|
11529
11552
|
RouteOfAdmissions: 0x00380016,
|
|
11530
|
-
ScheduledAdmissionDate: 0x0038001a,
|
|
11531
|
-
ScheduledAdmissionTime: 0x0038001b,
|
|
11532
|
-
ScheduledDischargeDate: 0x0038001c,
|
|
11533
|
-
ScheduledDischargeTime: 0x0038001d,
|
|
11534
|
-
ScheduledPatientInstitutionResidence: 0x0038001e,
|
|
11553
|
+
ScheduledAdmissionDate: 0x0038001a, // retired
|
|
11554
|
+
ScheduledAdmissionTime: 0x0038001b, // retired
|
|
11555
|
+
ScheduledDischargeDate: 0x0038001c, // retired
|
|
11556
|
+
ScheduledDischargeTime: 0x0038001d, // retired
|
|
11557
|
+
ScheduledPatientInstitutionResidence: 0x0038001e, // retired
|
|
11535
11558
|
AdmittingDate: 0x00380020,
|
|
11536
11559
|
AdmittingTime: 0x00380021,
|
|
11537
|
-
DischargeDate: 0x00380030,
|
|
11538
|
-
DischargeTime: 0x00380032,
|
|
11539
|
-
DischargeDiagnosisDescription: 0x00380040,
|
|
11540
|
-
DischargeDiagnosisCodeSequence: 0x00380044,
|
|
11560
|
+
DischargeDate: 0x00380030, // retired
|
|
11561
|
+
DischargeTime: 0x00380032, // retired
|
|
11562
|
+
DischargeDiagnosisDescription: 0x00380040, // retired
|
|
11563
|
+
DischargeDiagnosisCodeSequence: 0x00380044, // retired
|
|
11541
11564
|
SpecialNeeds: 0x00380050,
|
|
11542
11565
|
ServiceEpisodeID: 0x00380060,
|
|
11543
|
-
IssuerOfServiceEpisodeID: 0x00380061,
|
|
11566
|
+
IssuerOfServiceEpisodeID: 0x00380061, // retired
|
|
11544
11567
|
ServiceEpisodeDescription: 0x00380062,
|
|
11545
11568
|
IssuerOfServiceEpisodeIDSequence: 0x00380064,
|
|
11546
11569
|
PertinentDocumentsSequence: 0x00380100,
|
|
@@ -11636,13 +11659,13 @@ exports.Tag = {
|
|
|
11636
11659
|
Quantity: 0x00400294,
|
|
11637
11660
|
MeasuringUnitsSequence: 0x00400295,
|
|
11638
11661
|
BillingItemSequence: 0x00400296,
|
|
11639
|
-
TotalTimeOfFluoroscopy: 0x00400300,
|
|
11640
|
-
TotalNumberOfExposures: 0x00400301,
|
|
11662
|
+
TotalTimeOfFluoroscopy: 0x00400300, // retired
|
|
11663
|
+
TotalNumberOfExposures: 0x00400301, // retired
|
|
11641
11664
|
EntranceDose: 0x00400302,
|
|
11642
11665
|
ExposedArea: 0x00400303,
|
|
11643
11666
|
DistanceSourceToEntrance: 0x00400306,
|
|
11644
|
-
DistanceSourceToSupport: 0x00400307,
|
|
11645
|
-
ExposureDoseSequence: 0x0040030e,
|
|
11667
|
+
DistanceSourceToSupport: 0x00400307, // retired
|
|
11668
|
+
ExposureDoseSequence: 0x0040030e, // retired
|
|
11646
11669
|
CommentsOnRadiationDose: 0x00400310,
|
|
11647
11670
|
XRayOutput: 0x00400312,
|
|
11648
11671
|
HalfValueLayer: 0x00400314,
|
|
@@ -11651,23 +11674,23 @@ exports.Tag = {
|
|
|
11651
11674
|
BillingProcedureStepSequence: 0x00400320,
|
|
11652
11675
|
FilmConsumptionSequence: 0x00400321,
|
|
11653
11676
|
BillingSuppliesAndDevicesSequence: 0x00400324,
|
|
11654
|
-
ReferencedProcedureStepSequence: 0x00400330,
|
|
11677
|
+
ReferencedProcedureStepSequence: 0x00400330, // retired
|
|
11655
11678
|
PerformedSeriesSequence: 0x00400340,
|
|
11656
11679
|
CommentsOnTheScheduledProcedureStep: 0x00400400,
|
|
11657
11680
|
ProtocolContextSequence: 0x00400440,
|
|
11658
11681
|
ContentItemModifierSequence: 0x00400441,
|
|
11659
11682
|
ScheduledSpecimenSequence: 0x00400500,
|
|
11660
|
-
SpecimenAccessionNumber: 0x0040050a,
|
|
11683
|
+
SpecimenAccessionNumber: 0x0040050a, // retired
|
|
11661
11684
|
ContainerIdentifier: 0x00400512,
|
|
11662
11685
|
IssuerOfTheContainerIdentifierSequence: 0x00400513,
|
|
11663
11686
|
AlternateContainerIdentifierSequence: 0x00400515,
|
|
11664
11687
|
ContainerTypeCodeSequence: 0x00400518,
|
|
11665
11688
|
ContainerDescription: 0x0040051a,
|
|
11666
11689
|
ContainerComponentSequence: 0x00400520,
|
|
11667
|
-
SpecimenSequence: 0x00400550,
|
|
11690
|
+
SpecimenSequence: 0x00400550, // retired
|
|
11668
11691
|
SpecimenIdentifier: 0x00400551,
|
|
11669
|
-
SpecimenDescriptionSequenceTrial: 0x00400552,
|
|
11670
|
-
SpecimenDescriptionTrial: 0x00400553,
|
|
11692
|
+
SpecimenDescriptionSequenceTrial: 0x00400552, // retired
|
|
11693
|
+
SpecimenDescriptionTrial: 0x00400553, // retired
|
|
11671
11694
|
SpecimenUID: 0x00400554,
|
|
11672
11695
|
AcquisitionContextSequence: 0x00400555,
|
|
11673
11696
|
AcquisitionContextDescription: 0x00400556,
|
|
@@ -11679,39 +11702,39 @@ exports.Tag = {
|
|
|
11679
11702
|
SpecimenPreparationSequence: 0x00400610,
|
|
11680
11703
|
SpecimenPreparationStepContentItemSequence: 0x00400612,
|
|
11681
11704
|
SpecimenLocalizationContentItemSequence: 0x00400620,
|
|
11682
|
-
SlideIdentifier: 0x004006fa,
|
|
11705
|
+
SlideIdentifier: 0x004006fa, // retired
|
|
11683
11706
|
ImageCenterPointCoordinatesSequence: 0x0040071a,
|
|
11684
11707
|
XOffsetInSlideCoordinateSystem: 0x0040072a,
|
|
11685
11708
|
YOffsetInSlideCoordinateSystem: 0x0040073a,
|
|
11686
11709
|
ZOffsetInSlideCoordinateSystem: 0x0040074a,
|
|
11687
|
-
PixelSpacingSequence: 0x004008d8,
|
|
11688
|
-
CoordinateSystemAxisCodeSequence: 0x004008da,
|
|
11710
|
+
PixelSpacingSequence: 0x004008d8, // retired
|
|
11711
|
+
CoordinateSystemAxisCodeSequence: 0x004008da, // retired
|
|
11689
11712
|
MeasurementUnitsCodeSequence: 0x004008ea,
|
|
11690
|
-
VitalStainCodeSequenceTrial: 0x004009f8,
|
|
11713
|
+
VitalStainCodeSequenceTrial: 0x004009f8, // retired
|
|
11691
11714
|
RequestedProcedureID: 0x00401001,
|
|
11692
11715
|
ReasonForTheRequestedProcedure: 0x00401002,
|
|
11693
11716
|
RequestedProcedurePriority: 0x00401003,
|
|
11694
11717
|
PatientTransportArrangements: 0x00401004,
|
|
11695
11718
|
RequestedProcedureLocation: 0x00401005,
|
|
11696
|
-
PlacerOrderNumberProcedure: 0x00401006,
|
|
11697
|
-
FillerOrderNumberProcedure: 0x00401007,
|
|
11719
|
+
PlacerOrderNumberProcedure: 0x00401006, // retired
|
|
11720
|
+
FillerOrderNumberProcedure: 0x00401007, // retired
|
|
11698
11721
|
ConfidentialityCode: 0x00401008,
|
|
11699
11722
|
ReportingPriority: 0x00401009,
|
|
11700
11723
|
ReasonForRequestedProcedureCodeSequence: 0x0040100a,
|
|
11701
11724
|
NamesOfIntendedRecipientsOfResults: 0x00401010,
|
|
11702
11725
|
IntendedRecipientsOfResultsIdentificationSequence: 0x00401011,
|
|
11703
11726
|
ReasonForPerformedProcedureCodeSequence: 0x00401012,
|
|
11704
|
-
RequestedProcedureDescriptionTrial: 0x00401060,
|
|
11727
|
+
RequestedProcedureDescriptionTrial: 0x00401060, // retired
|
|
11705
11728
|
PersonIdentificationCodeSequence: 0x00401101,
|
|
11706
11729
|
PersonAddress: 0x00401102,
|
|
11707
11730
|
PersonTelephoneNumbers: 0x00401103,
|
|
11708
11731
|
PersonTelecomInformation: 0x00401104,
|
|
11709
11732
|
RequestedProcedureComments: 0x00401400,
|
|
11710
|
-
ReasonForTheImagingServiceRequest: 0x00402001,
|
|
11733
|
+
ReasonForTheImagingServiceRequest: 0x00402001, // retired
|
|
11711
11734
|
IssueDateOfImagingServiceRequest: 0x00402004,
|
|
11712
11735
|
IssueTimeOfImagingServiceRequest: 0x00402005,
|
|
11713
|
-
PlacerOrderNumberImagingServiceRequestRetired: 0x00402006,
|
|
11714
|
-
FillerOrderNumberImagingServiceRequestRetired: 0x00402007,
|
|
11736
|
+
PlacerOrderNumberImagingServiceRequestRetired: 0x00402006, // retired
|
|
11737
|
+
FillerOrderNumberImagingServiceRequestRetired: 0x00402007, // retired
|
|
11715
11738
|
OrderEnteredBy: 0x00402008,
|
|
11716
11739
|
OrderEntererLocation: 0x00402009,
|
|
11717
11740
|
OrderCallbackPhoneNumber: 0x00402010,
|
|
@@ -11720,32 +11743,32 @@ exports.Tag = {
|
|
|
11720
11743
|
FillerOrderNumberImagingServiceRequest: 0x00402017,
|
|
11721
11744
|
ImagingServiceRequestComments: 0x00402400,
|
|
11722
11745
|
ConfidentialityConstraintOnPatientDataDescription: 0x00403001,
|
|
11723
|
-
GeneralPurposeScheduledProcedureStepStatus: 0x00404001,
|
|
11724
|
-
GeneralPurposePerformedProcedureStepStatus: 0x00404002,
|
|
11725
|
-
GeneralPurposeScheduledProcedureStepPriority: 0x00404003,
|
|
11726
|
-
ScheduledProcessingApplicationsCodeSequence: 0x00404004,
|
|
11746
|
+
GeneralPurposeScheduledProcedureStepStatus: 0x00404001, // retired
|
|
11747
|
+
GeneralPurposePerformedProcedureStepStatus: 0x00404002, // retired
|
|
11748
|
+
GeneralPurposeScheduledProcedureStepPriority: 0x00404003, // retired
|
|
11749
|
+
ScheduledProcessingApplicationsCodeSequence: 0x00404004, // retired
|
|
11727
11750
|
ScheduledProcedureStepStartDateTime: 0x00404005,
|
|
11728
|
-
MultipleCopiesFlag: 0x00404006,
|
|
11729
|
-
PerformedProcessingApplicationsCodeSequence: 0x00404007,
|
|
11751
|
+
MultipleCopiesFlag: 0x00404006, // retired
|
|
11752
|
+
PerformedProcessingApplicationsCodeSequence: 0x00404007, // retired
|
|
11730
11753
|
HumanPerformerCodeSequence: 0x00404009,
|
|
11731
11754
|
ScheduledProcedureStepModificationDateTime: 0x00404010,
|
|
11732
11755
|
ExpectedCompletionDateTime: 0x00404011,
|
|
11733
|
-
ResultingGeneralPurposePerformedProcedureStepsSequence: 0x00404015,
|
|
11734
|
-
ReferencedGeneralPurposeScheduledProcedureStepSequence: 0x00404016,
|
|
11756
|
+
ResultingGeneralPurposePerformedProcedureStepsSequence: 0x00404015, // retired
|
|
11757
|
+
ReferencedGeneralPurposeScheduledProcedureStepSequence: 0x00404016, // retired
|
|
11735
11758
|
ScheduledWorkitemCodeSequence: 0x00404018,
|
|
11736
11759
|
PerformedWorkitemCodeSequence: 0x00404019,
|
|
11737
|
-
InputAvailabilityFlag: 0x00404020,
|
|
11760
|
+
InputAvailabilityFlag: 0x00404020, // retired
|
|
11738
11761
|
InputInformationSequence: 0x00404021,
|
|
11739
|
-
RelevantInformationSequence: 0x00404022,
|
|
11740
|
-
ReferencedGeneralPurposeScheduledProcedureStepTransactionUID: 0x00404023,
|
|
11762
|
+
RelevantInformationSequence: 0x00404022, // retired
|
|
11763
|
+
ReferencedGeneralPurposeScheduledProcedureStepTransactionUID: 0x00404023, // retired
|
|
11741
11764
|
ScheduledStationNameCodeSequence: 0x00404025,
|
|
11742
11765
|
ScheduledStationClassCodeSequence: 0x00404026,
|
|
11743
11766
|
ScheduledStationGeographicLocationCodeSequence: 0x00404027,
|
|
11744
11767
|
PerformedStationNameCodeSequence: 0x00404028,
|
|
11745
11768
|
PerformedStationClassCodeSequence: 0x00404029,
|
|
11746
11769
|
PerformedStationGeographicLocationCodeSequence: 0x00404030,
|
|
11747
|
-
RequestedSubsequentWorkitemCodeSequence: 0x00404031,
|
|
11748
|
-
NonDICOMOutputCodeSequence: 0x00404032,
|
|
11770
|
+
RequestedSubsequentWorkitemCodeSequence: 0x00404031, // retired
|
|
11771
|
+
NonDICOMOutputCodeSequence: 0x00404032, // retired
|
|
11749
11772
|
OutputInformationSequence: 0x00404033,
|
|
11750
11773
|
ScheduledHumanPerformersSequence: 0x00404034,
|
|
11751
11774
|
ActualHumanPerformersSequence: 0x00404035,
|
|
@@ -11776,51 +11799,51 @@ exports.Tag = {
|
|
|
11776
11799
|
QuantityDefinitionSequence: 0x00409220,
|
|
11777
11800
|
RealWorldValueIntercept: 0x00409224,
|
|
11778
11801
|
RealWorldValueSlope: 0x00409225,
|
|
11779
|
-
FindingsFlagTrial: 0x0040a007,
|
|
11802
|
+
FindingsFlagTrial: 0x0040a007, // retired
|
|
11780
11803
|
RelationshipType: 0x0040a010,
|
|
11781
|
-
FindingsSequenceTrial: 0x0040a020,
|
|
11782
|
-
FindingsGroupUIDTrial: 0x0040a021,
|
|
11783
|
-
ReferencedFindingsGroupUIDTrial: 0x0040a022,
|
|
11784
|
-
FindingsGroupRecordingDateTrial: 0x0040a023,
|
|
11785
|
-
FindingsGroupRecordingTimeTrial: 0x0040a024,
|
|
11786
|
-
FindingsSourceCategoryCodeSequenceTrial: 0x0040a026,
|
|
11804
|
+
FindingsSequenceTrial: 0x0040a020, // retired
|
|
11805
|
+
FindingsGroupUIDTrial: 0x0040a021, // retired
|
|
11806
|
+
ReferencedFindingsGroupUIDTrial: 0x0040a022, // retired
|
|
11807
|
+
FindingsGroupRecordingDateTrial: 0x0040a023, // retired
|
|
11808
|
+
FindingsGroupRecordingTimeTrial: 0x0040a024, // retired
|
|
11809
|
+
FindingsSourceCategoryCodeSequenceTrial: 0x0040a026, // retired
|
|
11787
11810
|
VerifyingOrganization: 0x0040a027,
|
|
11788
|
-
DocumentingOrganizationIdentifierCodeSequenceTrial: 0x0040a028,
|
|
11811
|
+
DocumentingOrganizationIdentifierCodeSequenceTrial: 0x0040a028, // retired
|
|
11789
11812
|
VerificationDateTime: 0x0040a030,
|
|
11790
11813
|
ObservationDateTime: 0x0040a032,
|
|
11791
11814
|
ValueType: 0x0040a040,
|
|
11792
11815
|
ConceptNameCodeSequence: 0x0040a043,
|
|
11793
|
-
MeasurementPrecisionDescriptionTrial: 0x0040a047,
|
|
11816
|
+
MeasurementPrecisionDescriptionTrial: 0x0040a047, // retired
|
|
11794
11817
|
ContinuityOfContent: 0x0040a050,
|
|
11795
|
-
UrgencyOrPriorityAlertsTrial: 0x0040a057,
|
|
11796
|
-
SequencingIndicatorTrial: 0x0040a060,
|
|
11797
|
-
DocumentIdentifierCodeSequenceTrial: 0x0040a066,
|
|
11798
|
-
DocumentAuthorTrial: 0x0040a067,
|
|
11799
|
-
DocumentAuthorIdentifierCodeSequenceTrial: 0x0040a068,
|
|
11800
|
-
IdentifierCodeSequenceTrial: 0x0040a070,
|
|
11818
|
+
UrgencyOrPriorityAlertsTrial: 0x0040a057, // retired
|
|
11819
|
+
SequencingIndicatorTrial: 0x0040a060, // retired
|
|
11820
|
+
DocumentIdentifierCodeSequenceTrial: 0x0040a066, // retired
|
|
11821
|
+
DocumentAuthorTrial: 0x0040a067, // retired
|
|
11822
|
+
DocumentAuthorIdentifierCodeSequenceTrial: 0x0040a068, // retired
|
|
11823
|
+
IdentifierCodeSequenceTrial: 0x0040a070, // retired
|
|
11801
11824
|
VerifyingObserverSequence: 0x0040a073,
|
|
11802
|
-
ObjectBinaryIdentifierTrial: 0x0040a074,
|
|
11825
|
+
ObjectBinaryIdentifierTrial: 0x0040a074, // retired
|
|
11803
11826
|
VerifyingObserverName: 0x0040a075,
|
|
11804
|
-
DocumentingObserverIdentifierCodeSequenceTrial: 0x0040a076,
|
|
11827
|
+
DocumentingObserverIdentifierCodeSequenceTrial: 0x0040a076, // retired
|
|
11805
11828
|
AuthorObserverSequence: 0x0040a078,
|
|
11806
11829
|
ParticipantSequence: 0x0040a07a,
|
|
11807
11830
|
CustodialOrganizationSequence: 0x0040a07c,
|
|
11808
11831
|
ParticipationType: 0x0040a080,
|
|
11809
11832
|
ParticipationDateTime: 0x0040a082,
|
|
11810
11833
|
ObserverType: 0x0040a084,
|
|
11811
|
-
ProcedureIdentifierCodeSequenceTrial: 0x0040a085,
|
|
11834
|
+
ProcedureIdentifierCodeSequenceTrial: 0x0040a085, // retired
|
|
11812
11835
|
VerifyingObserverIdentificationCodeSequence: 0x0040a088,
|
|
11813
|
-
ObjectDirectoryBinaryIdentifierTrial: 0x0040a089,
|
|
11814
|
-
EquivalentCDADocumentSequence: 0x0040a090,
|
|
11836
|
+
ObjectDirectoryBinaryIdentifierTrial: 0x0040a089, // retired
|
|
11837
|
+
EquivalentCDADocumentSequence: 0x0040a090, // retired
|
|
11815
11838
|
ReferencedWaveformChannels: 0x0040a0b0,
|
|
11816
|
-
DateOfDocumentOrVerbalTransactionTrial: 0x0040a110,
|
|
11817
|
-
TimeOfDocumentCreationOrVerbalTransactionTrial: 0x0040a112,
|
|
11839
|
+
DateOfDocumentOrVerbalTransactionTrial: 0x0040a110, // retired
|
|
11840
|
+
TimeOfDocumentCreationOrVerbalTransactionTrial: 0x0040a112, // retired
|
|
11818
11841
|
DateTime: 0x0040a120,
|
|
11819
11842
|
Date: 0x0040a121,
|
|
11820
11843
|
Time: 0x0040a122,
|
|
11821
11844
|
PersonName: 0x0040a123,
|
|
11822
11845
|
UID: 0x0040a124,
|
|
11823
|
-
ReportStatusIDTrial: 0x0040a125,
|
|
11846
|
+
ReportStatusIDTrial: 0x0040a125, // retired
|
|
11824
11847
|
TemporalRangeType: 0x0040a130,
|
|
11825
11848
|
ReferencedSamplePositions: 0x0040a132,
|
|
11826
11849
|
ReferencedFrameNumbers: 0x0040a136,
|
|
@@ -11830,45 +11853,45 @@ exports.Tag = {
|
|
|
11830
11853
|
FloatingPointValue: 0x0040a161,
|
|
11831
11854
|
RationalNumeratorValue: 0x0040a162,
|
|
11832
11855
|
RationalDenominatorValue: 0x0040a163,
|
|
11833
|
-
ObservationCategoryCodeSequenceTrial: 0x0040a167,
|
|
11856
|
+
ObservationCategoryCodeSequenceTrial: 0x0040a167, // retired
|
|
11834
11857
|
ConceptCodeSequence: 0x0040a168,
|
|
11835
|
-
BibliographicCitationTrial: 0x0040a16a,
|
|
11858
|
+
BibliographicCitationTrial: 0x0040a16a, // retired
|
|
11836
11859
|
PurposeOfReferenceCodeSequence: 0x0040a170,
|
|
11837
11860
|
ObservationUID: 0x0040a171,
|
|
11838
|
-
ReferencedObservationUIDTrial: 0x0040a172,
|
|
11839
|
-
ReferencedObservationClassTrial: 0x0040a173,
|
|
11840
|
-
ReferencedObjectObservationClassTrial: 0x0040a174,
|
|
11861
|
+
ReferencedObservationUIDTrial: 0x0040a172, // retired
|
|
11862
|
+
ReferencedObservationClassTrial: 0x0040a173, // retired
|
|
11863
|
+
ReferencedObjectObservationClassTrial: 0x0040a174, // retired
|
|
11841
11864
|
AnnotationGroupNumber: 0x0040a180,
|
|
11842
|
-
ObservationDateTrial: 0x0040a192,
|
|
11843
|
-
ObservationTimeTrial: 0x0040a193,
|
|
11844
|
-
MeasurementAutomationTrial: 0x0040a194,
|
|
11865
|
+
ObservationDateTrial: 0x0040a192, // retired
|
|
11866
|
+
ObservationTimeTrial: 0x0040a193, // retired
|
|
11867
|
+
MeasurementAutomationTrial: 0x0040a194, // retired
|
|
11845
11868
|
ModifierCodeSequence: 0x0040a195,
|
|
11846
|
-
IdentificationDescriptionTrial: 0x0040a224,
|
|
11847
|
-
CoordinatesSetGeometricTypeTrial: 0x0040a290,
|
|
11848
|
-
AlgorithmCodeSequenceTrial: 0x0040a296,
|
|
11849
|
-
AlgorithmDescriptionTrial: 0x0040a297,
|
|
11850
|
-
PixelCoordinatesSetTrial: 0x0040a29a,
|
|
11869
|
+
IdentificationDescriptionTrial: 0x0040a224, // retired
|
|
11870
|
+
CoordinatesSetGeometricTypeTrial: 0x0040a290, // retired
|
|
11871
|
+
AlgorithmCodeSequenceTrial: 0x0040a296, // retired
|
|
11872
|
+
AlgorithmDescriptionTrial: 0x0040a297, // retired
|
|
11873
|
+
PixelCoordinatesSetTrial: 0x0040a29a, // retired
|
|
11851
11874
|
MeasuredValueSequence: 0x0040a300,
|
|
11852
11875
|
NumericValueQualifierCodeSequence: 0x0040a301,
|
|
11853
|
-
CurrentObserverTrial: 0x0040a307,
|
|
11876
|
+
CurrentObserverTrial: 0x0040a307, // retired
|
|
11854
11877
|
NumericValue: 0x0040a30a,
|
|
11855
|
-
ReferencedAccessionSequenceTrial: 0x0040a313,
|
|
11856
|
-
ReportStatusCommentTrial: 0x0040a33a,
|
|
11857
|
-
ProcedureContextSequenceTrial: 0x0040a340,
|
|
11858
|
-
VerbalSourceTrial: 0x0040a352,
|
|
11859
|
-
AddressTrial: 0x0040a353,
|
|
11860
|
-
TelephoneNumberTrial: 0x0040a354,
|
|
11861
|
-
VerbalSourceIdentifierCodeSequenceTrial: 0x0040a358,
|
|
11878
|
+
ReferencedAccessionSequenceTrial: 0x0040a313, // retired
|
|
11879
|
+
ReportStatusCommentTrial: 0x0040a33a, // retired
|
|
11880
|
+
ProcedureContextSequenceTrial: 0x0040a340, // retired
|
|
11881
|
+
VerbalSourceTrial: 0x0040a352, // retired
|
|
11882
|
+
AddressTrial: 0x0040a353, // retired
|
|
11883
|
+
TelephoneNumberTrial: 0x0040a354, // retired
|
|
11884
|
+
VerbalSourceIdentifierCodeSequenceTrial: 0x0040a358, // retired
|
|
11862
11885
|
PredecessorDocumentsSequence: 0x0040a360,
|
|
11863
11886
|
ReferencedRequestSequence: 0x0040a370,
|
|
11864
11887
|
PerformedProcedureCodeSequence: 0x0040a372,
|
|
11865
11888
|
CurrentRequestedProcedureEvidenceSequence: 0x0040a375,
|
|
11866
|
-
ReportDetailSequenceTrial: 0x0040a380,
|
|
11889
|
+
ReportDetailSequenceTrial: 0x0040a380, // retired
|
|
11867
11890
|
PertinentOtherEvidenceSequence: 0x0040a385,
|
|
11868
11891
|
HL7StructuredDocumentReferenceSequence: 0x0040a390,
|
|
11869
|
-
ObservationSubjectUIDTrial: 0x0040a402,
|
|
11870
|
-
ObservationSubjectClassTrial: 0x0040a403,
|
|
11871
|
-
ObservationSubjectTypeCodeSequenceTrial: 0x0040a404,
|
|
11892
|
+
ObservationSubjectUIDTrial: 0x0040a402, // retired
|
|
11893
|
+
ObservationSubjectClassTrial: 0x0040a403, // retired
|
|
11894
|
+
ObservationSubjectTypeCodeSequenceTrial: 0x0040a404, // retired
|
|
11872
11895
|
CompletionFlag: 0x0040a491,
|
|
11873
11896
|
CompletionFlagDescription: 0x0040a492,
|
|
11874
11897
|
VerificationFlag: 0x0040a493,
|
|
@@ -11876,21 +11899,21 @@ exports.Tag = {
|
|
|
11876
11899
|
PreliminaryFlag: 0x0040a496,
|
|
11877
11900
|
ContentTemplateSequence: 0x0040a504,
|
|
11878
11901
|
IdenticalDocumentsSequence: 0x0040a525,
|
|
11879
|
-
ObservationSubjectContextFlagTrial: 0x0040a600,
|
|
11880
|
-
ObserverContextFlagTrial: 0x0040a601,
|
|
11881
|
-
ProcedureContextFlagTrial: 0x0040a603,
|
|
11902
|
+
ObservationSubjectContextFlagTrial: 0x0040a600, // retired
|
|
11903
|
+
ObserverContextFlagTrial: 0x0040a601, // retired
|
|
11904
|
+
ProcedureContextFlagTrial: 0x0040a603, // retired
|
|
11882
11905
|
ContentSequence: 0x0040a730,
|
|
11883
|
-
RelationshipSequenceTrial: 0x0040a731,
|
|
11884
|
-
RelationshipTypeCodeSequenceTrial: 0x0040a732,
|
|
11885
|
-
LanguageCodeSequenceTrial: 0x0040a744,
|
|
11886
|
-
UniformResourceLocatorTrial: 0x0040a992,
|
|
11906
|
+
RelationshipSequenceTrial: 0x0040a731, // retired
|
|
11907
|
+
RelationshipTypeCodeSequenceTrial: 0x0040a732, // retired
|
|
11908
|
+
LanguageCodeSequenceTrial: 0x0040a744, // retired
|
|
11909
|
+
UniformResourceLocatorTrial: 0x0040a992, // retired
|
|
11887
11910
|
WaveformAnnotationSequence: 0x0040b020,
|
|
11888
11911
|
TemplateIdentifier: 0x0040db00,
|
|
11889
|
-
TemplateVersion: 0x0040db06,
|
|
11890
|
-
TemplateLocalVersion: 0x0040db07,
|
|
11891
|
-
TemplateExtensionFlag: 0x0040db0b,
|
|
11892
|
-
TemplateExtensionOrganizationUID: 0x0040db0c,
|
|
11893
|
-
TemplateExtensionCreatorUID: 0x0040db0d,
|
|
11912
|
+
TemplateVersion: 0x0040db06, // retired
|
|
11913
|
+
TemplateLocalVersion: 0x0040db07, // retired
|
|
11914
|
+
TemplateExtensionFlag: 0x0040db0b, // retired
|
|
11915
|
+
TemplateExtensionOrganizationUID: 0x0040db0c, // retired
|
|
11916
|
+
TemplateExtensionCreatorUID: 0x0040db0d, // retired
|
|
11894
11917
|
ReferencedContentItemIdentifier: 0x0040db73,
|
|
11895
11918
|
HL7InstanceIdentifier: 0x0040e001,
|
|
11896
11919
|
HL7DocumentEffectiveTime: 0x0040e004,
|
|
@@ -12167,8 +12190,8 @@ exports.Tag = {
|
|
|
12167
12190
|
ScatterFractionFactor: 0x00541323,
|
|
12168
12191
|
DeadTimeFactor: 0x00541324,
|
|
12169
12192
|
ImageIndex: 0x00541330,
|
|
12170
|
-
CountsIncluded: 0x00541400,
|
|
12171
|
-
DeadTimeCorrectionFlag: 0x00541401,
|
|
12193
|
+
CountsIncluded: 0x00541400, // retired
|
|
12194
|
+
DeadTimeCorrectionFlag: 0x00541401, // retired
|
|
12172
12195
|
HistogramSequence: 0x00603000,
|
|
12173
12196
|
HistogramNumberOfBins: 0x00603002,
|
|
12174
12197
|
HistogramFirstBinValue: 0x00603004,
|
|
@@ -12230,13 +12253,13 @@ exports.Tag = {
|
|
|
12230
12253
|
VectorDimensionality: 0x0066001f,
|
|
12231
12254
|
VectorAccuracy: 0x00660020,
|
|
12232
12255
|
VectorCoordinateData: 0x00660021,
|
|
12233
|
-
TrianglePointIndexList: 0x00660023,
|
|
12234
|
-
EdgePointIndexList: 0x00660024,
|
|
12235
|
-
VertexPointIndexList: 0x00660025,
|
|
12256
|
+
TrianglePointIndexList: 0x00660023, // retired
|
|
12257
|
+
EdgePointIndexList: 0x00660024, // retired
|
|
12258
|
+
VertexPointIndexList: 0x00660025, // retired
|
|
12236
12259
|
TriangleStripSequence: 0x00660026,
|
|
12237
12260
|
TriangleFanSequence: 0x00660027,
|
|
12238
12261
|
LineSequence: 0x00660028,
|
|
12239
|
-
PrimitivePointIndexList: 0x00660029,
|
|
12262
|
+
PrimitivePointIndexList: 0x00660029, // retired
|
|
12240
12263
|
SurfaceCount: 0x0066002a,
|
|
12241
12264
|
ReferencedSurfaceSequence: 0x0066002b,
|
|
12242
12265
|
ReferencedSurfaceNumber: 0x0066002c,
|
|
@@ -12359,18 +12382,18 @@ exports.Tag = {
|
|
|
12359
12382
|
GraphicData: 0x00700022,
|
|
12360
12383
|
GraphicType: 0x00700023,
|
|
12361
12384
|
GraphicFilled: 0x00700024,
|
|
12362
|
-
ImageRotationRetired: 0x00700040,
|
|
12385
|
+
ImageRotationRetired: 0x00700040, // retired
|
|
12363
12386
|
ImageHorizontalFlip: 0x00700041,
|
|
12364
12387
|
ImageRotation: 0x00700042,
|
|
12365
|
-
DisplayedAreaTopLeftHandCornerTrial: 0x00700050,
|
|
12366
|
-
DisplayedAreaBottomRightHandCornerTrial: 0x00700051,
|
|
12388
|
+
DisplayedAreaTopLeftHandCornerTrial: 0x00700050, // retired
|
|
12389
|
+
DisplayedAreaBottomRightHandCornerTrial: 0x00700051, // retired
|
|
12367
12390
|
DisplayedAreaTopLeftHandCorner: 0x00700052,
|
|
12368
12391
|
DisplayedAreaBottomRightHandCorner: 0x00700053,
|
|
12369
12392
|
DisplayedAreaSelectionSequence: 0x0070005a,
|
|
12370
12393
|
GraphicLayerSequence: 0x00700060,
|
|
12371
12394
|
GraphicLayerOrder: 0x00700062,
|
|
12372
12395
|
GraphicLayerRecommendedDisplayGrayscaleValue: 0x00700066,
|
|
12373
|
-
GraphicLayerRecommendedDisplayRGBValue: 0x00700067,
|
|
12396
|
+
GraphicLayerRecommendedDisplayRGBValue: 0x00700067, // retired
|
|
12374
12397
|
GraphicLayerDescription: 0x00700068,
|
|
12375
12398
|
ContentLabel: 0x00700080,
|
|
12376
12399
|
ContentDescription: 0x00700081,
|
|
@@ -12459,7 +12482,7 @@ exports.Tag = {
|
|
|
12459
12482
|
InputSequencePositionIndex: 0x00701203,
|
|
12460
12483
|
Crop: 0x00701204,
|
|
12461
12484
|
CroppingSpecificationIndex: 0x00701205,
|
|
12462
|
-
CompositingMethod: 0x00701206,
|
|
12485
|
+
CompositingMethod: 0x00701206, // retired
|
|
12463
12486
|
VolumetricPresentationInputNumber: 0x00701207,
|
|
12464
12487
|
ImageVolumeGeometry: 0x00701208,
|
|
12465
12488
|
VolumetricPresentationInputSetUID: 0x00701209,
|
|
@@ -12662,7 +12685,7 @@ exports.Tag = {
|
|
|
12662
12685
|
ProcedureStepDiscontinuationReasonCodeSequence: 0x0074100e,
|
|
12663
12686
|
BeamTaskSequence: 0x00741020,
|
|
12664
12687
|
BeamTaskType: 0x00741022,
|
|
12665
|
-
BeamOrderIndexTrial: 0x00741024,
|
|
12688
|
+
BeamOrderIndexTrial: 0x00741024, // retired
|
|
12666
12689
|
AutosequenceFlag: 0x00741025,
|
|
12667
12690
|
TableTopVerticalAdjustedPosition: 0x00741026,
|
|
12668
12691
|
TableTopLongitudinalAdjustedPosition: 0x00741027,
|
|
@@ -12675,8 +12698,8 @@ exports.Tag = {
|
|
|
12675
12698
|
VerificationImageTiming: 0x00741032,
|
|
12676
12699
|
DoubleExposureFlag: 0x00741034,
|
|
12677
12700
|
DoubleExposureOrdering: 0x00741036,
|
|
12678
|
-
DoubleExposureMetersetTrial: 0x00741038,
|
|
12679
|
-
DoubleExposureFieldDeltaTrial: 0x0074103a,
|
|
12701
|
+
DoubleExposureMetersetTrial: 0x00741038, // retired
|
|
12702
|
+
DoubleExposureFieldDeltaTrial: 0x0074103a, // retired
|
|
12680
12703
|
RelatedReferenceRTImageSequence: 0x00741040,
|
|
12681
12704
|
GeneralMachineVerificationSequence: 0x00741042,
|
|
12682
12705
|
ConventionalMachineVerificationSequence: 0x00741044,
|
|
@@ -12696,8 +12719,8 @@ exports.Tag = {
|
|
|
12696
12719
|
ScheduledProcessingParametersSequence: 0x00741210,
|
|
12697
12720
|
PerformedProcessingParametersSequence: 0x00741212,
|
|
12698
12721
|
UnifiedProcedureStepPerformedProcedureSequence: 0x00741216,
|
|
12699
|
-
RelatedProcedureStepSequence: 0x00741220,
|
|
12700
|
-
ProcedureStepRelationshipType: 0x00741222,
|
|
12722
|
+
RelatedProcedureStepSequence: 0x00741220, // retired
|
|
12723
|
+
ProcedureStepRelationshipType: 0x00741222, // retired
|
|
12701
12724
|
ReplacedProcedureStepSequence: 0x00741224,
|
|
12702
12725
|
DeletionLock: 0x00741230,
|
|
12703
12726
|
ReceivingAE: 0x00741234,
|
|
@@ -12804,10 +12827,10 @@ exports.Tag = {
|
|
|
12804
12827
|
StorageMediaFileSetID: 0x00880130,
|
|
12805
12828
|
StorageMediaFileSetUID: 0x00880140,
|
|
12806
12829
|
IconImageSequence: 0x00880200,
|
|
12807
|
-
TopicTitle: 0x00880904,
|
|
12808
|
-
TopicSubject: 0x00880906,
|
|
12809
|
-
TopicAuthor: 0x00880910,
|
|
12810
|
-
TopicKeywords: 0x00880912,
|
|
12830
|
+
TopicTitle: 0x00880904, // retired
|
|
12831
|
+
TopicSubject: 0x00880906, // retired
|
|
12832
|
+
TopicAuthor: 0x00880910, // retired
|
|
12833
|
+
TopicKeywords: 0x00880912, // retired
|
|
12811
12834
|
SOPInstanceStatus: 0x01000410,
|
|
12812
12835
|
SOPAuthorizationDateTime: 0x01000420,
|
|
12813
12836
|
SOPAuthorizationComment: 0x01000424,
|
|
@@ -12836,13 +12859,13 @@ exports.Tag = {
|
|
|
12836
12859
|
ModifyingSystem: 0x04000563,
|
|
12837
12860
|
SourceOfPreviousValues: 0x04000564,
|
|
12838
12861
|
ReasonForTheAttributeModification: 0x04000565,
|
|
12839
|
-
EscapeTriplet: 0x10000000,
|
|
12840
|
-
RunLengthTriplet: 0x10000001,
|
|
12841
|
-
HuffmanTableSize: 0x10000002,
|
|
12842
|
-
HuffmanTableTriplet: 0x10000003,
|
|
12843
|
-
ShiftTableSize: 0x10000004,
|
|
12844
|
-
ShiftTableTriplet: 0x10000005,
|
|
12845
|
-
ZonalMap: 0x10100000,
|
|
12862
|
+
EscapeTriplet: 0x10000000, // retired
|
|
12863
|
+
RunLengthTriplet: 0x10000001, // retired
|
|
12864
|
+
HuffmanTableSize: 0x10000002, // retired
|
|
12865
|
+
HuffmanTableTriplet: 0x10000003, // retired
|
|
12866
|
+
ShiftTableSize: 0x10000004, // retired
|
|
12867
|
+
ShiftTableTriplet: 0x10000005, // retired
|
|
12868
|
+
ZonalMap: 0x10100000, // retired
|
|
12846
12869
|
NumberOfCopies: 0x20000010,
|
|
12847
12870
|
PrinterConfigurationSequence: 0x2000001e,
|
|
12848
12871
|
PrintPriority: 0x20000020,
|
|
@@ -12851,19 +12874,19 @@ exports.Tag = {
|
|
|
12851
12874
|
FilmSessionLabel: 0x20000050,
|
|
12852
12875
|
MemoryAllocation: 0x20000060,
|
|
12853
12876
|
MaximumMemoryAllocation: 0x20000061,
|
|
12854
|
-
ColorImagePrintingFlag: 0x20000062,
|
|
12855
|
-
CollationFlag: 0x20000063,
|
|
12856
|
-
AnnotationFlag: 0x20000065,
|
|
12857
|
-
ImageOverlayFlag: 0x20000067,
|
|
12858
|
-
PresentationLUTFlag: 0x20000069,
|
|
12859
|
-
ImageBoxPresentationLUTFlag: 0x2000006a,
|
|
12877
|
+
ColorImagePrintingFlag: 0x20000062, // retired
|
|
12878
|
+
CollationFlag: 0x20000063, // retired
|
|
12879
|
+
AnnotationFlag: 0x20000065, // retired
|
|
12880
|
+
ImageOverlayFlag: 0x20000067, // retired
|
|
12881
|
+
PresentationLUTFlag: 0x20000069, // retired
|
|
12882
|
+
ImageBoxPresentationLUTFlag: 0x2000006a, // retired
|
|
12860
12883
|
MemoryBitDepth: 0x200000a0,
|
|
12861
12884
|
PrintingBitDepth: 0x200000a1,
|
|
12862
12885
|
MediaInstalledSequence: 0x200000a2,
|
|
12863
12886
|
OtherMediaAvailableSequence: 0x200000a4,
|
|
12864
12887
|
SupportedImageDisplayFormatsSequence: 0x200000a8,
|
|
12865
12888
|
ReferencedFilmBoxSequence: 0x20000500,
|
|
12866
|
-
ReferencedStoredPrintSequence: 0x20000510,
|
|
12889
|
+
ReferencedStoredPrintSequence: 0x20000510, // retired
|
|
12867
12890
|
ImageDisplayFormat: 0x20100010,
|
|
12868
12891
|
AnnotationDisplayFormatID: 0x20100030,
|
|
12869
12892
|
FilmOrientation: 0x20100040,
|
|
@@ -12899,26 +12922,26 @@ exports.Tag = {
|
|
|
12899
12922
|
DecimateCropResult: 0x202000a2,
|
|
12900
12923
|
BasicGrayscaleImageSequence: 0x20200110,
|
|
12901
12924
|
BasicColorImageSequence: 0x20200111,
|
|
12902
|
-
ReferencedImageOverlayBoxSequence: 0x20200130,
|
|
12903
|
-
ReferencedVOILUTBoxSequence: 0x20200140,
|
|
12925
|
+
ReferencedImageOverlayBoxSequence: 0x20200130, // retired
|
|
12926
|
+
ReferencedVOILUTBoxSequence: 0x20200140, // retired
|
|
12904
12927
|
AnnotationPosition: 0x20300010,
|
|
12905
12928
|
TextString: 0x20300020,
|
|
12906
|
-
ReferencedOverlayPlaneSequence: 0x20400010,
|
|
12907
|
-
ReferencedOverlayPlaneGroups: 0x20400011,
|
|
12908
|
-
OverlayPixelDataSequence: 0x20400020,
|
|
12909
|
-
OverlayMagnificationType: 0x20400060,
|
|
12910
|
-
OverlaySmoothingType: 0x20400070,
|
|
12911
|
-
OverlayOrImageMagnification: 0x20400072,
|
|
12912
|
-
MagnifyToNumberOfColumns: 0x20400074,
|
|
12913
|
-
OverlayForegroundDensity: 0x20400080,
|
|
12914
|
-
OverlayBackgroundDensity: 0x20400082,
|
|
12915
|
-
OverlayMode: 0x20400090,
|
|
12916
|
-
ThresholdDensity: 0x20400100,
|
|
12917
|
-
ReferencedImageBoxSequenceRetired: 0x20400500,
|
|
12929
|
+
ReferencedOverlayPlaneSequence: 0x20400010, // retired
|
|
12930
|
+
ReferencedOverlayPlaneGroups: 0x20400011, // retired
|
|
12931
|
+
OverlayPixelDataSequence: 0x20400020, // retired
|
|
12932
|
+
OverlayMagnificationType: 0x20400060, // retired
|
|
12933
|
+
OverlaySmoothingType: 0x20400070, // retired
|
|
12934
|
+
OverlayOrImageMagnification: 0x20400072, // retired
|
|
12935
|
+
MagnifyToNumberOfColumns: 0x20400074, // retired
|
|
12936
|
+
OverlayForegroundDensity: 0x20400080, // retired
|
|
12937
|
+
OverlayBackgroundDensity: 0x20400082, // retired
|
|
12938
|
+
OverlayMode: 0x20400090, // retired
|
|
12939
|
+
ThresholdDensity: 0x20400100, // retired
|
|
12940
|
+
ReferencedImageBoxSequenceRetired: 0x20400500, // retired
|
|
12918
12941
|
PresentationLUTSequence: 0x20500010,
|
|
12919
12942
|
PresentationLUTShape: 0x20500020,
|
|
12920
12943
|
ReferencedPresentationLUTSequence: 0x20500500,
|
|
12921
|
-
PrintJobID: 0x21000010,
|
|
12944
|
+
PrintJobID: 0x21000010, // retired
|
|
12922
12945
|
ExecutionStatus: 0x21000020,
|
|
12923
12946
|
ExecutionStatusInfo: 0x21000030,
|
|
12924
12947
|
CreationDate: 0x21000040,
|
|
@@ -12927,23 +12950,23 @@ exports.Tag = {
|
|
|
12927
12950
|
DestinationAE: 0x21000140,
|
|
12928
12951
|
OwnerID: 0x21000160,
|
|
12929
12952
|
NumberOfFilms: 0x21000170,
|
|
12930
|
-
ReferencedPrintJobSequencePullStoredPrint: 0x21000500,
|
|
12953
|
+
ReferencedPrintJobSequencePullStoredPrint: 0x21000500, // retired
|
|
12931
12954
|
PrinterStatus: 0x21100010,
|
|
12932
12955
|
PrinterStatusInfo: 0x21100020,
|
|
12933
12956
|
PrinterName: 0x21100030,
|
|
12934
|
-
PrintQueueID: 0x21100099,
|
|
12935
|
-
QueueStatus: 0x21200010,
|
|
12936
|
-
PrintJobDescriptionSequence: 0x21200050,
|
|
12937
|
-
ReferencedPrintJobSequence: 0x21200070,
|
|
12938
|
-
PrintManagementCapabilitiesSequence: 0x21300010,
|
|
12939
|
-
PrinterCharacteristicsSequence: 0x21300015,
|
|
12940
|
-
FilmBoxContentSequence: 0x21300030,
|
|
12941
|
-
ImageBoxContentSequence: 0x21300040,
|
|
12942
|
-
AnnotationContentSequence: 0x21300050,
|
|
12943
|
-
ImageOverlayBoxContentSequence: 0x21300060,
|
|
12944
|
-
PresentationLUTContentSequence: 0x21300080,
|
|
12945
|
-
ProposedStudySequence: 0x213000a0,
|
|
12946
|
-
OriginalImageSequence: 0x213000c0,
|
|
12957
|
+
PrintQueueID: 0x21100099, // retired
|
|
12958
|
+
QueueStatus: 0x21200010, // retired
|
|
12959
|
+
PrintJobDescriptionSequence: 0x21200050, // retired
|
|
12960
|
+
ReferencedPrintJobSequence: 0x21200070, // retired
|
|
12961
|
+
PrintManagementCapabilitiesSequence: 0x21300010, // retired
|
|
12962
|
+
PrinterCharacteristicsSequence: 0x21300015, // retired
|
|
12963
|
+
FilmBoxContentSequence: 0x21300030, // retired
|
|
12964
|
+
ImageBoxContentSequence: 0x21300040, // retired
|
|
12965
|
+
AnnotationContentSequence: 0x21300050, // retired
|
|
12966
|
+
ImageOverlayBoxContentSequence: 0x21300060, // retired
|
|
12967
|
+
PresentationLUTContentSequence: 0x21300080, // retired
|
|
12968
|
+
ProposedStudySequence: 0x213000a0, // retired
|
|
12969
|
+
OriginalImageSequence: 0x213000c0, // retired
|
|
12947
12970
|
LabelUsingInformationExtractedFromInstances: 0x22000001,
|
|
12948
12971
|
LabelText: 0x22000002,
|
|
12949
12972
|
LabelStyleSelection: 0x22000003,
|
|
@@ -13054,10 +13077,10 @@ exports.Tag = {
|
|
|
13054
13077
|
ROIElementalCompositionSequence: 0x300600b6,
|
|
13055
13078
|
ROIElementalCompositionAtomicNumber: 0x300600b7,
|
|
13056
13079
|
ROIElementalCompositionAtomicMassFraction: 0x300600b8,
|
|
13057
|
-
AdditionalRTROIIdentificationCodeSequence: 0x300600b9,
|
|
13058
|
-
FrameOfReferenceRelationshipSequence: 0x300600c0,
|
|
13059
|
-
RelatedFrameOfReferenceUID: 0x300600c2,
|
|
13060
|
-
FrameOfReferenceTransformationType: 0x300600c4,
|
|
13080
|
+
AdditionalRTROIIdentificationCodeSequence: 0x300600b9, // retired
|
|
13081
|
+
FrameOfReferenceRelationshipSequence: 0x300600c0, // retired
|
|
13082
|
+
RelatedFrameOfReferenceUID: 0x300600c2, // retired
|
|
13083
|
+
FrameOfReferenceTransformationType: 0x300600c4, // retired
|
|
13061
13084
|
FrameOfReferenceTransformationMatrix: 0x300600c6,
|
|
13062
13085
|
FrameOfReferenceTransformationComment: 0x300600c8,
|
|
13063
13086
|
MeasuredDoseReferenceSequence: 0x30080010,
|
|
@@ -13218,9 +13241,9 @@ exports.Tag = {
|
|
|
13218
13241
|
BeamDosePointSSD: 0x300a008a,
|
|
13219
13242
|
BeamDoseMeaning: 0x300a008b,
|
|
13220
13243
|
BeamDoseVerificationControlPointSequence: 0x300a008c,
|
|
13221
|
-
AverageBeamDosePointDepth: 0x300a008d,
|
|
13222
|
-
AverageBeamDosePointEquivalentDepth: 0x300a008e,
|
|
13223
|
-
AverageBeamDosePointSSD: 0x300a008f,
|
|
13244
|
+
AverageBeamDosePointDepth: 0x300a008d, // retired
|
|
13245
|
+
AverageBeamDosePointEquivalentDepth: 0x300a008e, // retired
|
|
13246
|
+
AverageBeamDosePointSSD: 0x300a008f, // retired
|
|
13224
13247
|
BeamDoseType: 0x300a0090,
|
|
13225
13248
|
AlternateBeamDose: 0x300a0091,
|
|
13226
13249
|
AlternateBeamDoseType: 0x300a0092,
|
|
@@ -13592,36 +13615,36 @@ exports.Tag = {
|
|
|
13592
13615
|
ReviewDate: 0x300e0004,
|
|
13593
13616
|
ReviewTime: 0x300e0005,
|
|
13594
13617
|
ReviewerName: 0x300e0008,
|
|
13595
|
-
Arbitrary: 0x40000010,
|
|
13596
|
-
TextComments: 0x40004000,
|
|
13597
|
-
ResultsID: 0x40080040,
|
|
13598
|
-
ResultsIDIssuer: 0x40080042,
|
|
13599
|
-
ReferencedInterpretationSequence: 0x40080050,
|
|
13600
|
-
ReportProductionStatusTrial: 0x400800ff,
|
|
13601
|
-
InterpretationRecordedDate: 0x40080100,
|
|
13602
|
-
InterpretationRecordedTime: 0x40080101,
|
|
13603
|
-
InterpretationRecorder: 0x40080102,
|
|
13604
|
-
ReferenceToRecordedSound: 0x40080103,
|
|
13605
|
-
InterpretationTranscriptionDate: 0x40080108,
|
|
13606
|
-
InterpretationTranscriptionTime: 0x40080109,
|
|
13607
|
-
InterpretationTranscriber: 0x4008010a,
|
|
13608
|
-
InterpretationText: 0x4008010b,
|
|
13609
|
-
InterpretationAuthor: 0x4008010c,
|
|
13610
|
-
InterpretationApproverSequence: 0x40080111,
|
|
13611
|
-
InterpretationApprovalDate: 0x40080112,
|
|
13612
|
-
InterpretationApprovalTime: 0x40080113,
|
|
13613
|
-
PhysicianApprovingInterpretation: 0x40080114,
|
|
13614
|
-
InterpretationDiagnosisDescription: 0x40080115,
|
|
13615
|
-
InterpretationDiagnosisCodeSequence: 0x40080117,
|
|
13616
|
-
ResultsDistributionListSequence: 0x40080118,
|
|
13617
|
-
DistributionName: 0x40080119,
|
|
13618
|
-
DistributionAddress: 0x4008011a,
|
|
13619
|
-
InterpretationID: 0x40080200,
|
|
13620
|
-
InterpretationIDIssuer: 0x40080202,
|
|
13621
|
-
InterpretationTypeID: 0x40080210,
|
|
13622
|
-
InterpretationStatusID: 0x40080212,
|
|
13623
|
-
Impressions: 0x40080300,
|
|
13624
|
-
ResultsComments: 0x40084000,
|
|
13618
|
+
Arbitrary: 0x40000010, // retired
|
|
13619
|
+
TextComments: 0x40004000, // retired
|
|
13620
|
+
ResultsID: 0x40080040, // retired
|
|
13621
|
+
ResultsIDIssuer: 0x40080042, // retired
|
|
13622
|
+
ReferencedInterpretationSequence: 0x40080050, // retired
|
|
13623
|
+
ReportProductionStatusTrial: 0x400800ff, // retired
|
|
13624
|
+
InterpretationRecordedDate: 0x40080100, // retired
|
|
13625
|
+
InterpretationRecordedTime: 0x40080101, // retired
|
|
13626
|
+
InterpretationRecorder: 0x40080102, // retired
|
|
13627
|
+
ReferenceToRecordedSound: 0x40080103, // retired
|
|
13628
|
+
InterpretationTranscriptionDate: 0x40080108, // retired
|
|
13629
|
+
InterpretationTranscriptionTime: 0x40080109, // retired
|
|
13630
|
+
InterpretationTranscriber: 0x4008010a, // retired
|
|
13631
|
+
InterpretationText: 0x4008010b, // retired
|
|
13632
|
+
InterpretationAuthor: 0x4008010c, // retired
|
|
13633
|
+
InterpretationApproverSequence: 0x40080111, // retired
|
|
13634
|
+
InterpretationApprovalDate: 0x40080112, // retired
|
|
13635
|
+
InterpretationApprovalTime: 0x40080113, // retired
|
|
13636
|
+
PhysicianApprovingInterpretation: 0x40080114, // retired
|
|
13637
|
+
InterpretationDiagnosisDescription: 0x40080115, // retired
|
|
13638
|
+
InterpretationDiagnosisCodeSequence: 0x40080117, // retired
|
|
13639
|
+
ResultsDistributionListSequence: 0x40080118, // retired
|
|
13640
|
+
DistributionName: 0x40080119, // retired
|
|
13641
|
+
DistributionAddress: 0x4008011a, // retired
|
|
13642
|
+
InterpretationID: 0x40080200, // retired
|
|
13643
|
+
InterpretationIDIssuer: 0x40080202, // retired
|
|
13644
|
+
InterpretationTypeID: 0x40080210, // retired
|
|
13645
|
+
InterpretationStatusID: 0x40080212, // retired
|
|
13646
|
+
Impressions: 0x40080300, // retired
|
|
13647
|
+
ResultsComments: 0x40084000, // retired
|
|
13625
13648
|
LowEnergyDetectors: 0x40100001,
|
|
13626
13649
|
HighEnergyDetectors: 0x40100002,
|
|
13627
13650
|
DetectorGeometrySequence: 0x40100004,
|
|
@@ -13709,32 +13732,32 @@ exports.Tag = {
|
|
|
13709
13732
|
SecondaryInspectionMethodSequence: 0x4010107d,
|
|
13710
13733
|
PRCSToRCSOrientation: 0x4010107e,
|
|
13711
13734
|
MACParametersSequence: 0x4ffe0001,
|
|
13712
|
-
CurveDimensions: 0x50000005,
|
|
13713
|
-
NumberOfPoints: 0x50000010,
|
|
13714
|
-
TypeOfData: 0x50000020,
|
|
13715
|
-
CurveDescription: 0x50000022,
|
|
13716
|
-
AxisUnits: 0x50000030,
|
|
13717
|
-
AxisLabels: 0x50000040,
|
|
13718
|
-
DataValueRepresentation: 0x50000103,
|
|
13719
|
-
MinimumCoordinateValue: 0x50000104,
|
|
13720
|
-
MaximumCoordinateValue: 0x50000105,
|
|
13721
|
-
CurveRange: 0x50000106,
|
|
13722
|
-
CurveDataDescriptor: 0x50000110,
|
|
13723
|
-
CoordinateStartValue: 0x50000112,
|
|
13724
|
-
CoordinateStepValue: 0x50000114,
|
|
13725
|
-
CurveActivationLayer: 0x50001001,
|
|
13726
|
-
AudioType: 0x50002000,
|
|
13727
|
-
AudioSampleFormat: 0x50002002,
|
|
13728
|
-
NumberOfChannels: 0x50002004,
|
|
13729
|
-
NumberOfSamples: 0x50002006,
|
|
13730
|
-
SampleRate: 0x50002008,
|
|
13731
|
-
TotalTime: 0x5000200a,
|
|
13732
|
-
AudioSampleData: 0x5000200c,
|
|
13733
|
-
AudioComments: 0x5000200e,
|
|
13734
|
-
CurveLabel: 0x50002500,
|
|
13735
|
-
CurveReferencedOverlaySequence: 0x50002600,
|
|
13736
|
-
CurveReferencedOverlayGroup: 0x50002610,
|
|
13737
|
-
CurveData: 0x50003000,
|
|
13735
|
+
CurveDimensions: 0x50000005, // retired
|
|
13736
|
+
NumberOfPoints: 0x50000010, // retired
|
|
13737
|
+
TypeOfData: 0x50000020, // retired
|
|
13738
|
+
CurveDescription: 0x50000022, // retired
|
|
13739
|
+
AxisUnits: 0x50000030, // retired
|
|
13740
|
+
AxisLabels: 0x50000040, // retired
|
|
13741
|
+
DataValueRepresentation: 0x50000103, // retired
|
|
13742
|
+
MinimumCoordinateValue: 0x50000104, // retired
|
|
13743
|
+
MaximumCoordinateValue: 0x50000105, // retired
|
|
13744
|
+
CurveRange: 0x50000106, // retired
|
|
13745
|
+
CurveDataDescriptor: 0x50000110, // retired
|
|
13746
|
+
CoordinateStartValue: 0x50000112, // retired
|
|
13747
|
+
CoordinateStepValue: 0x50000114, // retired
|
|
13748
|
+
CurveActivationLayer: 0x50001001, // retired
|
|
13749
|
+
AudioType: 0x50002000, // retired
|
|
13750
|
+
AudioSampleFormat: 0x50002002, // retired
|
|
13751
|
+
NumberOfChannels: 0x50002004, // retired
|
|
13752
|
+
NumberOfSamples: 0x50002006, // retired
|
|
13753
|
+
SampleRate: 0x50002008, // retired
|
|
13754
|
+
TotalTime: 0x5000200a, // retired
|
|
13755
|
+
AudioSampleData: 0x5000200c, // retired
|
|
13756
|
+
AudioComments: 0x5000200e, // retired
|
|
13757
|
+
CurveLabel: 0x50002500, // retired
|
|
13758
|
+
CurveReferencedOverlaySequence: 0x50002600, // retired
|
|
13759
|
+
CurveReferencedOverlayGroup: 0x50002610, // retired
|
|
13760
|
+
CurveData: 0x50003000, // retired
|
|
13738
13761
|
SharedFunctionalGroupsSequence: 0x52009229,
|
|
13739
13762
|
PerFrameFunctionalGroupsSequence: 0x52009230,
|
|
13740
13763
|
WaveformSequence: 0x54000100,
|
|
@@ -13748,55 +13771,55 @@ exports.Tag = {
|
|
|
13748
13771
|
SpectroscopyData: 0x56000020,
|
|
13749
13772
|
OverlayRows: 0x60000010,
|
|
13750
13773
|
OverlayColumns: 0x60000011,
|
|
13751
|
-
OverlayPlanes: 0x60000012,
|
|
13774
|
+
OverlayPlanes: 0x60000012, // retired
|
|
13752
13775
|
NumberOfFramesInOverlay: 0x60000015,
|
|
13753
13776
|
OverlayDescription: 0x60000022,
|
|
13754
13777
|
OverlayType: 0x60000040,
|
|
13755
13778
|
OverlaySubtype: 0x60000045,
|
|
13756
13779
|
OverlayOrigin: 0x60000050,
|
|
13757
13780
|
ImageFrameOrigin: 0x60000051,
|
|
13758
|
-
OverlayPlaneOrigin: 0x60000052,
|
|
13759
|
-
OverlayCompressionCode: 0x60000060,
|
|
13760
|
-
OverlayCompressionOriginator: 0x60000061,
|
|
13761
|
-
OverlayCompressionLabel: 0x60000062,
|
|
13762
|
-
OverlayCompressionDescription: 0x60000063,
|
|
13763
|
-
OverlayCompressionStepPointers: 0x60000066,
|
|
13764
|
-
OverlayRepeatInterval: 0x60000068,
|
|
13765
|
-
OverlayBitsGrouped: 0x60000069,
|
|
13781
|
+
OverlayPlaneOrigin: 0x60000052, // retired
|
|
13782
|
+
OverlayCompressionCode: 0x60000060, // retired
|
|
13783
|
+
OverlayCompressionOriginator: 0x60000061, // retired
|
|
13784
|
+
OverlayCompressionLabel: 0x60000062, // retired
|
|
13785
|
+
OverlayCompressionDescription: 0x60000063, // retired
|
|
13786
|
+
OverlayCompressionStepPointers: 0x60000066, // retired
|
|
13787
|
+
OverlayRepeatInterval: 0x60000068, // retired
|
|
13788
|
+
OverlayBitsGrouped: 0x60000069, // retired
|
|
13766
13789
|
OverlayBitsAllocated: 0x60000100,
|
|
13767
13790
|
OverlayBitPosition: 0x60000102,
|
|
13768
|
-
OverlayFormat: 0x60000110,
|
|
13769
|
-
OverlayLocation: 0x60000200,
|
|
13770
|
-
OverlayCodeLabel: 0x60000800,
|
|
13771
|
-
OverlayNumberOfTables: 0x60000802,
|
|
13772
|
-
OverlayCodeTableLocation: 0x60000803,
|
|
13773
|
-
OverlayBitsForCodeWord: 0x60000804,
|
|
13791
|
+
OverlayFormat: 0x60000110, // retired
|
|
13792
|
+
OverlayLocation: 0x60000200, // retired
|
|
13793
|
+
OverlayCodeLabel: 0x60000800, // retired
|
|
13794
|
+
OverlayNumberOfTables: 0x60000802, // retired
|
|
13795
|
+
OverlayCodeTableLocation: 0x60000803, // retired
|
|
13796
|
+
OverlayBitsForCodeWord: 0x60000804, // retired
|
|
13774
13797
|
OverlayActivationLayer: 0x60001001,
|
|
13775
|
-
OverlayDescriptorGray: 0x60001100,
|
|
13776
|
-
OverlayDescriptorRed: 0x60001101,
|
|
13777
|
-
OverlayDescriptorGreen: 0x60001102,
|
|
13778
|
-
OverlayDescriptorBlue: 0x60001103,
|
|
13779
|
-
OverlaysGray: 0x60001200,
|
|
13780
|
-
OverlaysRed: 0x60001201,
|
|
13781
|
-
OverlaysGreen: 0x60001202,
|
|
13782
|
-
OverlaysBlue: 0x60001203,
|
|
13798
|
+
OverlayDescriptorGray: 0x60001100, // retired
|
|
13799
|
+
OverlayDescriptorRed: 0x60001101, // retired
|
|
13800
|
+
OverlayDescriptorGreen: 0x60001102, // retired
|
|
13801
|
+
OverlayDescriptorBlue: 0x60001103, // retired
|
|
13802
|
+
OverlaysGray: 0x60001200, // retired
|
|
13803
|
+
OverlaysRed: 0x60001201, // retired
|
|
13804
|
+
OverlaysGreen: 0x60001202, // retired
|
|
13805
|
+
OverlaysBlue: 0x60001203, // retired
|
|
13783
13806
|
ROIArea: 0x60001301,
|
|
13784
13807
|
ROIMean: 0x60001302,
|
|
13785
13808
|
ROIStandardDeviation: 0x60001303,
|
|
13786
13809
|
OverlayLabel: 0x60001500,
|
|
13787
13810
|
OverlayData: 0x60003000,
|
|
13788
|
-
OverlayComments: 0x60004000,
|
|
13811
|
+
OverlayComments: 0x60004000, // retired
|
|
13789
13812
|
FloatPixelData: 0x7fe00008,
|
|
13790
13813
|
DoubleFloatPixelData: 0x7fe00009,
|
|
13791
13814
|
PixelData: 0x7fe00010,
|
|
13792
|
-
CoefficientsSDVN: 0x7fe00020,
|
|
13793
|
-
CoefficientsSDHN: 0x7fe00030,
|
|
13794
|
-
CoefficientsSDDN: 0x7fe00040,
|
|
13795
|
-
VariablePixelData: 0x7f000010,
|
|
13796
|
-
VariableNextDataGroup: 0x7f000011,
|
|
13797
|
-
VariableCoefficientsSDVN: 0x7f000020,
|
|
13798
|
-
VariableCoefficientsSDHN: 0x7f000030,
|
|
13799
|
-
VariableCoefficientsSDDN: 0x7f000040,
|
|
13815
|
+
CoefficientsSDVN: 0x7fe00020, // retired
|
|
13816
|
+
CoefficientsSDHN: 0x7fe00030, // retired
|
|
13817
|
+
CoefficientsSDDN: 0x7fe00040, // retired
|
|
13818
|
+
VariablePixelData: 0x7f000010, // retired
|
|
13819
|
+
VariableNextDataGroup: 0x7f000011, // retired
|
|
13820
|
+
VariableCoefficientsSDVN: 0x7f000020, // retired
|
|
13821
|
+
VariableCoefficientsSDHN: 0x7f000030, // retired
|
|
13822
|
+
VariableCoefficientsSDDN: 0x7f000040, // retired
|
|
13800
13823
|
DigitalSignaturesSequence: 0xfffafffa,
|
|
13801
13824
|
DataSetTrailingPadding: 0xfffcfffc,
|
|
13802
13825
|
Item: 0xfffee000,
|
|
@@ -13825,6 +13848,7 @@ class UIDToName {
|
|
|
13825
13848
|
return UIDToName.dict[uid];
|
|
13826
13849
|
}
|
|
13827
13850
|
}
|
|
13851
|
+
exports.UIDToName = UIDToName;
|
|
13828
13852
|
UIDToName.dict = {
|
|
13829
13853
|
'1.2.840.10008.1.1': 'Verification SOP Class',
|
|
13830
13854
|
'1.2.840.10008.1.2': 'Implicit VR Little Endian',
|
|
@@ -14236,7 +14260,6 @@ UIDToName.dict = {
|
|
|
14236
14260
|
'1.2.840.10008.15.0.4.8': 'dicomTransferCapability',
|
|
14237
14261
|
'1.2.840.10008.15.1.1': 'Universal Coordinated Time',
|
|
14238
14262
|
};
|
|
14239
|
-
exports.UIDToName = UIDToName;
|
|
14240
14263
|
|
|
14241
14264
|
|
|
14242
14265
|
/***/ }),
|
|
@@ -14255,24 +14278,24 @@ exports.UID = {
|
|
|
14255
14278
|
ImplicitVRLittleEndian: '1.2.840.10008.1.2',
|
|
14256
14279
|
ExplicitVRLittleEndian: '1.2.840.10008.1.2.1',
|
|
14257
14280
|
DeflatedExplicitVRLittleEndian: '1.2.840.10008.1.2.1.99',
|
|
14258
|
-
ExplicitVRBigEndianRetired: '1.2.840.10008.1.2.2',
|
|
14281
|
+
ExplicitVRBigEndianRetired: '1.2.840.10008.1.2.2', // retired
|
|
14259
14282
|
JPEGBaselineProcess1: '1.2.840.10008.1.2.4.50',
|
|
14260
14283
|
JPEGExtendedProcess24: '1.2.840.10008.1.2.4.51',
|
|
14261
|
-
JPEGExtendedProcess35Retired: '1.2.840.10008.1.2.4.52',
|
|
14262
|
-
JPEGSpectralSelectionNonHierarchicalProcess68Retired: '1.2.840.10008.1.2.4.53',
|
|
14263
|
-
JPEGSpectralSelectionNonHierarchicalProcess79Retired: '1.2.840.10008.1.2.4.54',
|
|
14264
|
-
JPEGFullProgressionNonHierarchicalProcess1012Retired: '1.2.840.10008.1.2.4.55',
|
|
14265
|
-
JPEGFullProgressionNonHierarchicalProcess1113Retired: '1.2.840.10008.1.2.4.56',
|
|
14284
|
+
JPEGExtendedProcess35Retired: '1.2.840.10008.1.2.4.52', // retired
|
|
14285
|
+
JPEGSpectralSelectionNonHierarchicalProcess68Retired: '1.2.840.10008.1.2.4.53', // retired
|
|
14286
|
+
JPEGSpectralSelectionNonHierarchicalProcess79Retired: '1.2.840.10008.1.2.4.54', // retired
|
|
14287
|
+
JPEGFullProgressionNonHierarchicalProcess1012Retired: '1.2.840.10008.1.2.4.55', // retired
|
|
14288
|
+
JPEGFullProgressionNonHierarchicalProcess1113Retired: '1.2.840.10008.1.2.4.56', // retired
|
|
14266
14289
|
JPEGLosslessNonHierarchicalProcess14: '1.2.840.10008.1.2.4.57',
|
|
14267
|
-
JPEGLosslessNonHierarchicalProcess15Retired: '1.2.840.10008.1.2.4.58',
|
|
14268
|
-
JPEGExtendedHierarchicalProcess1618Retired: '1.2.840.10008.1.2.4.59',
|
|
14269
|
-
JPEGExtendedHierarchicalProcess1719Retired: '1.2.840.10008.1.2.4.60',
|
|
14270
|
-
JPEGSpectralSelectionHierarchicalProcess2022Retired: '1.2.840.10008.1.2.4.61',
|
|
14271
|
-
JPEGSpectralSelectionHierarchicalProcess2123Retired: '1.2.840.10008.1.2.4.62',
|
|
14272
|
-
JPEGFullProgressionHierarchicalProcess2426Retired: '1.2.840.10008.1.2.4.63',
|
|
14273
|
-
JPEGFullProgressionHierarchicalProcess2527Retired: '1.2.840.10008.1.2.4.64',
|
|
14274
|
-
JPEGLosslessHierarchicalProcess28Retired: '1.2.840.10008.1.2.4.65',
|
|
14275
|
-
JPEGLosslessHierarchicalProcess29Retired: '1.2.840.10008.1.2.4.66',
|
|
14290
|
+
JPEGLosslessNonHierarchicalProcess15Retired: '1.2.840.10008.1.2.4.58', // retired
|
|
14291
|
+
JPEGExtendedHierarchicalProcess1618Retired: '1.2.840.10008.1.2.4.59', // retired
|
|
14292
|
+
JPEGExtendedHierarchicalProcess1719Retired: '1.2.840.10008.1.2.4.60', // retired
|
|
14293
|
+
JPEGSpectralSelectionHierarchicalProcess2022Retired: '1.2.840.10008.1.2.4.61', // retired
|
|
14294
|
+
JPEGSpectralSelectionHierarchicalProcess2123Retired: '1.2.840.10008.1.2.4.62', // retired
|
|
14295
|
+
JPEGFullProgressionHierarchicalProcess2426Retired: '1.2.840.10008.1.2.4.63', // retired
|
|
14296
|
+
JPEGFullProgressionHierarchicalProcess2527Retired: '1.2.840.10008.1.2.4.64', // retired
|
|
14297
|
+
JPEGLosslessHierarchicalProcess28Retired: '1.2.840.10008.1.2.4.65', // retired
|
|
14298
|
+
JPEGLosslessHierarchicalProcess29Retired: '1.2.840.10008.1.2.4.66', // retired
|
|
14276
14299
|
JPEGLosslessNonHierarchicalFirstOrderPredictionProcess14SelectionValue1: '1.2.840.10008.1.2.4.70',
|
|
14277
14300
|
JPEGLSLosslessImageCompression: '1.2.840.10008.1.2.4.80',
|
|
14278
14301
|
JPEGLSLossyNearLosslessImageCompression: '1.2.840.10008.1.2.4.81',
|
|
@@ -14323,12 +14346,12 @@ exports.UID = {
|
|
|
14323
14346
|
SummerColorPaletteSOPInstance: '1.2.840.10008.1.5.6',
|
|
14324
14347
|
FallColorPaletteSOPInstance: '1.2.840.10008.1.5.7',
|
|
14325
14348
|
WinterColorPaletteSOPInstance: '1.2.840.10008.1.5.8',
|
|
14326
|
-
BasicStudyContentNotificationSOPClassRetired: '1.2.840.10008.1.9',
|
|
14327
|
-
Papyrus3ImplicitVRLittleEndianRetired: '1.2.840.10008.1.20',
|
|
14349
|
+
BasicStudyContentNotificationSOPClassRetired: '1.2.840.10008.1.9', // retired
|
|
14350
|
+
Papyrus3ImplicitVRLittleEndianRetired: '1.2.840.10008.1.20', // retired
|
|
14328
14351
|
StorageCommitmentPushModelSOPClass: '1.2.840.10008.1.20.1',
|
|
14329
14352
|
StorageCommitmentPushModelSOPInstance: '1.2.840.10008.1.20.1.1',
|
|
14330
|
-
StorageCommitmentPullModelSOPClassRetired: '1.2.840.10008.1.20.2',
|
|
14331
|
-
StorageCommitmentPullModelSOPInstanceRetired: '1.2.840.10008.1.20.2.1',
|
|
14353
|
+
StorageCommitmentPullModelSOPClassRetired: '1.2.840.10008.1.20.2', // retired
|
|
14354
|
+
StorageCommitmentPullModelSOPInstanceRetired: '1.2.840.10008.1.20.2.1', // retired
|
|
14332
14355
|
ProceduralEventLoggingSOPClass: '1.2.840.10008.1.40',
|
|
14333
14356
|
ProceduralEventLoggingSOPInstance: '1.2.840.10008.1.40.1',
|
|
14334
14357
|
SubstanceAdministrationLoggingSOPClass: '1.2.840.10008.1.42',
|
|
@@ -14341,26 +14364,26 @@ exports.UID = {
|
|
|
14341
14364
|
MouseGenomeInitiativeMGI: '1.2.840.10008.2.16.8',
|
|
14342
14365
|
PubChemCompoundCID: '1.2.840.10008.2.16.9',
|
|
14343
14366
|
DICOMApplicationContextName: '1.2.840.10008.3.1.1.1',
|
|
14344
|
-
DetachedPatientManagementSOPClassRetired: '1.2.840.10008.3.1.2.1.1',
|
|
14345
|
-
DetachedPatientManagementMetaSOPClassRetired: '1.2.840.10008.3.1.2.1.4',
|
|
14346
|
-
DetachedVisitManagementSOPClassRetired: '1.2.840.10008.3.1.2.2.1',
|
|
14347
|
-
DetachedStudyManagementSOPClassRetired: '1.2.840.10008.3.1.2.3.1',
|
|
14348
|
-
StudyComponentManagementSOPClassRetired: '1.2.840.10008.3.1.2.3.2',
|
|
14367
|
+
DetachedPatientManagementSOPClassRetired: '1.2.840.10008.3.1.2.1.1', // retired
|
|
14368
|
+
DetachedPatientManagementMetaSOPClassRetired: '1.2.840.10008.3.1.2.1.4', // retired
|
|
14369
|
+
DetachedVisitManagementSOPClassRetired: '1.2.840.10008.3.1.2.2.1', // retired
|
|
14370
|
+
DetachedStudyManagementSOPClassRetired: '1.2.840.10008.3.1.2.3.1', // retired
|
|
14371
|
+
StudyComponentManagementSOPClassRetired: '1.2.840.10008.3.1.2.3.2', // retired
|
|
14349
14372
|
ModalityPerformedProcedureStepSOPClass: '1.2.840.10008.3.1.2.3.3',
|
|
14350
14373
|
ModalityPerformedProcedureStepRetrieveSOPClass: '1.2.840.10008.3.1.2.3.4',
|
|
14351
14374
|
ModalityPerformedProcedureStepNotificationSOPClass: '1.2.840.10008.3.1.2.3.5',
|
|
14352
|
-
DetachedResultsManagementSOPClassRetired: '1.2.840.10008.3.1.2.5.1',
|
|
14353
|
-
DetachedResultsManagementMetaSOPClassRetired: '1.2.840.10008.3.1.2.5.4',
|
|
14354
|
-
DetachedStudyManagementMetaSOPClassRetired: '1.2.840.10008.3.1.2.5.5',
|
|
14355
|
-
DetachedInterpretationManagementSOPClassRetired: '1.2.840.10008.3.1.2.6.1',
|
|
14375
|
+
DetachedResultsManagementSOPClassRetired: '1.2.840.10008.3.1.2.5.1', // retired
|
|
14376
|
+
DetachedResultsManagementMetaSOPClassRetired: '1.2.840.10008.3.1.2.5.4', // retired
|
|
14377
|
+
DetachedStudyManagementMetaSOPClassRetired: '1.2.840.10008.3.1.2.5.5', // retired
|
|
14378
|
+
DetachedInterpretationManagementSOPClassRetired: '1.2.840.10008.3.1.2.6.1', // retired
|
|
14356
14379
|
StorageServiceClass: '1.2.840.10008.4.2',
|
|
14357
14380
|
BasicFilmSessionSOPClass: '1.2.840.10008.5.1.1.1',
|
|
14358
14381
|
BasicFilmBoxSOPClass: '1.2.840.10008.5.1.1.2',
|
|
14359
14382
|
BasicGrayscaleImageBoxSOPClass: '1.2.840.10008.5.1.1.4',
|
|
14360
14383
|
BasicColorImageBoxSOPClass: '1.2.840.10008.5.1.1.4.1',
|
|
14361
|
-
ReferencedImageBoxSOPClassRetired: '1.2.840.10008.5.1.1.4.2',
|
|
14384
|
+
ReferencedImageBoxSOPClassRetired: '1.2.840.10008.5.1.1.4.2', // retired
|
|
14362
14385
|
BasicGrayscalePrintManagementMetaSOPClass: '1.2.840.10008.5.1.1.9',
|
|
14363
|
-
ReferencedGrayscalePrintManagementMetaSOPClassRetired: '1.2.840.10008.5.1.1.9.1',
|
|
14386
|
+
ReferencedGrayscalePrintManagementMetaSOPClassRetired: '1.2.840.10008.5.1.1.9.1', // retired
|
|
14364
14387
|
PrintJobSOPClass: '1.2.840.10008.5.1.1.14',
|
|
14365
14388
|
BasicAnnotationBoxSOPClass: '1.2.840.10008.5.1.1.15',
|
|
14366
14389
|
PrinterSOPClass: '1.2.840.10008.5.1.1.16',
|
|
@@ -14368,18 +14391,18 @@ exports.UID = {
|
|
|
14368
14391
|
PrinterSOPInstance: '1.2.840.10008.5.1.1.17',
|
|
14369
14392
|
PrinterConfigurationRetrievalSOPInstance: '1.2.840.10008.5.1.1.17.376',
|
|
14370
14393
|
BasicColorPrintManagementMetaSOPClass: '1.2.840.10008.5.1.1.18',
|
|
14371
|
-
ReferencedColorPrintManagementMetaSOPClassRetired: '1.2.840.10008.5.1.1.18.1',
|
|
14394
|
+
ReferencedColorPrintManagementMetaSOPClassRetired: '1.2.840.10008.5.1.1.18.1', // retired
|
|
14372
14395
|
VOILUTBoxSOPClass: '1.2.840.10008.5.1.1.22',
|
|
14373
14396
|
PresentationLUTSOPClass: '1.2.840.10008.5.1.1.23',
|
|
14374
|
-
ImageOverlayBoxSOPClassRetired: '1.2.840.10008.5.1.1.24',
|
|
14375
|
-
BasicPrintImageOverlayBoxSOPClassRetired: '1.2.840.10008.5.1.1.24.1',
|
|
14376
|
-
PrintQueueSOPInstanceRetired: '1.2.840.10008.5.1.1.25',
|
|
14377
|
-
PrintQueueManagementSOPClassRetired: '1.2.840.10008.5.1.1.26',
|
|
14378
|
-
StoredPrintStorageSOPClassRetired: '1.2.840.10008.5.1.1.27',
|
|
14379
|
-
HardcopyGrayscaleImageStorageSOPClassRetired: '1.2.840.10008.5.1.1.29',
|
|
14380
|
-
HardcopyColorImageStorageSOPClassRetired: '1.2.840.10008.5.1.1.30',
|
|
14381
|
-
PullPrintRequestSOPClassRetired: '1.2.840.10008.5.1.1.31',
|
|
14382
|
-
PullStoredPrintManagementMetaSOPClassRetired: '1.2.840.10008.5.1.1.32',
|
|
14397
|
+
ImageOverlayBoxSOPClassRetired: '1.2.840.10008.5.1.1.24', // retired
|
|
14398
|
+
BasicPrintImageOverlayBoxSOPClassRetired: '1.2.840.10008.5.1.1.24.1', // retired
|
|
14399
|
+
PrintQueueSOPInstanceRetired: '1.2.840.10008.5.1.1.25', // retired
|
|
14400
|
+
PrintQueueManagementSOPClassRetired: '1.2.840.10008.5.1.1.26', // retired
|
|
14401
|
+
StoredPrintStorageSOPClassRetired: '1.2.840.10008.5.1.1.27', // retired
|
|
14402
|
+
HardcopyGrayscaleImageStorageSOPClassRetired: '1.2.840.10008.5.1.1.29', // retired
|
|
14403
|
+
HardcopyColorImageStorageSOPClassRetired: '1.2.840.10008.5.1.1.30', // retired
|
|
14404
|
+
PullPrintRequestSOPClassRetired: '1.2.840.10008.5.1.1.31', // retired
|
|
14405
|
+
PullStoredPrintManagementMetaSOPClassRetired: '1.2.840.10008.5.1.1.32', // retired
|
|
14383
14406
|
MediaCreationManagementSOPClassUID: '1.2.840.10008.5.1.1.33',
|
|
14384
14407
|
DisplaySystemSOPClass: '1.2.840.10008.5.1.1.40',
|
|
14385
14408
|
DisplaySystemSOPInstance: '1.2.840.10008.5.1.1.40.1',
|
|
@@ -14393,15 +14416,15 @@ exports.UID = {
|
|
|
14393
14416
|
CTImageStorage: '1.2.840.10008.5.1.4.1.1.2',
|
|
14394
14417
|
EnhancedCTImageStorage: '1.2.840.10008.5.1.4.1.1.2.1',
|
|
14395
14418
|
LegacyConvertedEnhancedCTImageStorage: '1.2.840.10008.5.1.4.1.1.2.2',
|
|
14396
|
-
UltrasoundMultiframeImageStorageRetired: '1.2.840.10008.5.1.4.1.1.3',
|
|
14419
|
+
UltrasoundMultiframeImageStorageRetired: '1.2.840.10008.5.1.4.1.1.3', // retired
|
|
14397
14420
|
UltrasoundMultiframeImageStorage: '1.2.840.10008.5.1.4.1.1.3.1',
|
|
14398
14421
|
MRImageStorage: '1.2.840.10008.5.1.4.1.1.4',
|
|
14399
14422
|
EnhancedMRImageStorage: '1.2.840.10008.5.1.4.1.1.4.1',
|
|
14400
14423
|
MRSpectroscopyStorage: '1.2.840.10008.5.1.4.1.1.4.2',
|
|
14401
14424
|
EnhancedMRColorImageStorage: '1.2.840.10008.5.1.4.1.1.4.3',
|
|
14402
14425
|
LegacyConvertedEnhancedMRImageStorage: '1.2.840.10008.5.1.4.1.1.4.4',
|
|
14403
|
-
NuclearMedicineImageStorageRetired: '1.2.840.10008.5.1.4.1.1.5',
|
|
14404
|
-
UltrasoundImageStorageRetired: '1.2.840.10008.5.1.4.1.1.6',
|
|
14426
|
+
NuclearMedicineImageStorageRetired: '1.2.840.10008.5.1.4.1.1.5', // retired
|
|
14427
|
+
UltrasoundImageStorageRetired: '1.2.840.10008.5.1.4.1.1.6', // retired
|
|
14405
14428
|
UltrasoundImageStorage: '1.2.840.10008.5.1.4.1.1.6.1',
|
|
14406
14429
|
EnhancedUSVolumeStorage: '1.2.840.10008.5.1.4.1.1.6.2',
|
|
14407
14430
|
SecondaryCaptureImageStorage: '1.2.840.10008.5.1.4.1.1.7',
|
|
@@ -14409,9 +14432,9 @@ exports.UID = {
|
|
|
14409
14432
|
MultiframeGrayscaleByteSecondaryCaptureImageStorage: '1.2.840.10008.5.1.4.1.1.7.2',
|
|
14410
14433
|
MultiframeGrayscaleWordSecondaryCaptureImageStorage: '1.2.840.10008.5.1.4.1.1.7.3',
|
|
14411
14434
|
MultiframeTrueColorSecondaryCaptureImageStorage: '1.2.840.10008.5.1.4.1.1.7.4',
|
|
14412
|
-
StandaloneOverlayStorageRetired: '1.2.840.10008.5.1.4.1.1.8',
|
|
14413
|
-
StandaloneCurveStorageRetired: '1.2.840.10008.5.1.4.1.1.9',
|
|
14414
|
-
WaveformStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.9.1',
|
|
14435
|
+
StandaloneOverlayStorageRetired: '1.2.840.10008.5.1.4.1.1.8', // retired
|
|
14436
|
+
StandaloneCurveStorageRetired: '1.2.840.10008.5.1.4.1.1.9', // retired
|
|
14437
|
+
WaveformStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.9.1', // retired
|
|
14415
14438
|
TwelveleadECGWaveformStorage: '1.2.840.10008.5.1.4.1.1.9.1.1',
|
|
14416
14439
|
GeneralECGWaveformStorage: '1.2.840.10008.5.1.4.1.1.9.1.2',
|
|
14417
14440
|
AmbulatoryECGWaveformStorage: '1.2.840.10008.5.1.4.1.1.9.1.3',
|
|
@@ -14421,8 +14444,8 @@ exports.UID = {
|
|
|
14421
14444
|
GeneralAudioWaveformStorage: '1.2.840.10008.5.1.4.1.1.9.4.2',
|
|
14422
14445
|
ArterialPulseWaveformStorage: '1.2.840.10008.5.1.4.1.1.9.5.1',
|
|
14423
14446
|
RespiratoryWaveformStorage: '1.2.840.10008.5.1.4.1.1.9.6.1',
|
|
14424
|
-
StandaloneModalityLUTStorageRetired: '1.2.840.10008.5.1.4.1.1.10',
|
|
14425
|
-
StandaloneVOILUTStorageRetired: '1.2.840.10008.5.1.4.1.1.11',
|
|
14447
|
+
StandaloneModalityLUTStorageRetired: '1.2.840.10008.5.1.4.1.1.10', // retired
|
|
14448
|
+
StandaloneVOILUTStorageRetired: '1.2.840.10008.5.1.4.1.1.11', // retired
|
|
14426
14449
|
GrayscaleSoftcopyPresentationStateStorage: '1.2.840.10008.5.1.4.1.1.11.1',
|
|
14427
14450
|
ColorSoftcopyPresentationStateStorage: '1.2.840.10008.5.1.4.1.1.11.2',
|
|
14428
14451
|
PseudoColorSoftcopyPresentationStateStorage: '1.2.840.10008.5.1.4.1.1.11.3',
|
|
@@ -14438,7 +14461,7 @@ exports.UID = {
|
|
|
14438
14461
|
EnhancedXAImageStorage: '1.2.840.10008.5.1.4.1.1.12.1.1',
|
|
14439
14462
|
XRayRadiofluoroscopicImageStorage: '1.2.840.10008.5.1.4.1.1.12.2',
|
|
14440
14463
|
EnhancedXRFImageStorage: '1.2.840.10008.5.1.4.1.1.12.2.1',
|
|
14441
|
-
XRayAngiographicBiPlaneImageStorageRetired: '1.2.840.10008.5.1.4.1.1.12.3',
|
|
14464
|
+
XRayAngiographicBiPlaneImageStorageRetired: '1.2.840.10008.5.1.4.1.1.12.3', // retired
|
|
14442
14465
|
XRay3DAngiographicImageStorage: '1.2.840.10008.5.1.4.1.1.13.1.1',
|
|
14443
14466
|
XRay3DCraniofacialImageStorage: '1.2.840.10008.5.1.4.1.1.13.1.2',
|
|
14444
14467
|
BreastTomosynthesisImageStorage: '1.2.840.10008.5.1.4.1.1.13.1.3',
|
|
@@ -14458,8 +14481,8 @@ exports.UID = {
|
|
|
14458
14481
|
RealWorldValueMappingStorage: '1.2.840.10008.5.1.4.1.1.67',
|
|
14459
14482
|
SurfaceScanMeshStorage: '1.2.840.10008.5.1.4.1.1.68.1',
|
|
14460
14483
|
SurfaceScanPointCloudStorage: '1.2.840.10008.5.1.4.1.1.68.2',
|
|
14461
|
-
VLImageStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.77.1',
|
|
14462
|
-
VLMultiframeImageStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.77.2',
|
|
14484
|
+
VLImageStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.77.1', // retired
|
|
14485
|
+
VLMultiframeImageStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.77.2', // retired
|
|
14463
14486
|
VLEndoscopicImageStorage: '1.2.840.10008.5.1.4.1.1.77.1.1',
|
|
14464
14487
|
VideoEndoscopicImageStorage: '1.2.840.10008.5.1.4.1.1.77.1.1.1',
|
|
14465
14488
|
VLMicroscopicImageStorage: '1.2.840.10008.5.1.4.1.1.77.1.2',
|
|
@@ -14488,10 +14511,10 @@ exports.UID = {
|
|
|
14488
14511
|
OphthalmicVisualFieldStaticPerimetryMeasurementsStorage: '1.2.840.10008.5.1.4.1.1.80.1',
|
|
14489
14512
|
OphthalmicThicknessMapStorage: '1.2.840.10008.5.1.4.1.1.81.1',
|
|
14490
14513
|
CornealTopographyMapStorage: '1.2.840.10008.5.1.4.1.1.82.1',
|
|
14491
|
-
TextSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.1',
|
|
14492
|
-
AudioSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.2',
|
|
14493
|
-
DetailSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.3',
|
|
14494
|
-
ComprehensiveSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.4',
|
|
14514
|
+
TextSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.1', // retired
|
|
14515
|
+
AudioSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.2', // retired
|
|
14516
|
+
DetailSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.3', // retired
|
|
14517
|
+
ComprehensiveSRStorageTrialRetired: '1.2.840.10008.5.1.4.1.1.88.4', // retired
|
|
14495
14518
|
BasicTextSRStorage: '1.2.840.10008.5.1.4.1.1.88.11',
|
|
14496
14519
|
EnhancedSRStorage: '1.2.840.10008.5.1.4.1.1.88.22',
|
|
14497
14520
|
ComprehensiveSRStorage: '1.2.840.10008.5.1.4.1.1.88.33',
|
|
@@ -14513,7 +14536,7 @@ exports.UID = {
|
|
|
14513
14536
|
EncapsulatedCDAStorage: '1.2.840.10008.5.1.4.1.1.104.2',
|
|
14514
14537
|
PositronEmissionTomographyImageStorage: '1.2.840.10008.5.1.4.1.1.128',
|
|
14515
14538
|
LegacyConvertedEnhancedPETImageStorage: '1.2.840.10008.5.1.4.1.1.128.1',
|
|
14516
|
-
StandalonePETCurveStorageRetired: '1.2.840.10008.5.1.4.1.1.129',
|
|
14539
|
+
StandalonePETCurveStorageRetired: '1.2.840.10008.5.1.4.1.1.129', // retired
|
|
14517
14540
|
EnhancedPETImageStorage: '1.2.840.10008.5.1.4.1.1.130',
|
|
14518
14541
|
BasicStructuredDisplayStorage: '1.2.840.10008.5.1.4.1.1.131',
|
|
14519
14542
|
CTDefinedProcedureProtocolStorage: '1.2.840.10008.5.1.4.1.1.200.1',
|
|
@@ -14546,9 +14569,9 @@ exports.UID = {
|
|
|
14546
14569
|
StudyRootQueryRetrieveInformationModelFIND: '1.2.840.10008.5.1.4.1.2.2.1',
|
|
14547
14570
|
StudyRootQueryRetrieveInformationModelMOVE: '1.2.840.10008.5.1.4.1.2.2.2',
|
|
14548
14571
|
StudyRootQueryRetrieveInformationModelGET: '1.2.840.10008.5.1.4.1.2.2.3',
|
|
14549
|
-
PatientStudyOnlyQueryRetrieveInformationModelFINDRetired: '1.2.840.10008.5.1.4.1.2.3.1',
|
|
14550
|
-
PatientStudyOnlyQueryRetrieveInformationModelMOVERetired: '1.2.840.10008.5.1.4.1.2.3.2',
|
|
14551
|
-
PatientStudyOnlyQueryRetrieveInformationModelGETRetired: '1.2.840.10008.5.1.4.1.2.3.3',
|
|
14572
|
+
PatientStudyOnlyQueryRetrieveInformationModelFINDRetired: '1.2.840.10008.5.1.4.1.2.3.1', // retired
|
|
14573
|
+
PatientStudyOnlyQueryRetrieveInformationModelMOVERetired: '1.2.840.10008.5.1.4.1.2.3.2', // retired
|
|
14574
|
+
PatientStudyOnlyQueryRetrieveInformationModelGETRetired: '1.2.840.10008.5.1.4.1.2.3.3', // retired
|
|
14552
14575
|
CompositeInstanceRootRetrieveMOVE: '1.2.840.10008.5.1.4.1.2.4.2',
|
|
14553
14576
|
CompositeInstanceRootRetrieveGET: '1.2.840.10008.5.1.4.1.2.4.3',
|
|
14554
14577
|
CompositeInstanceRetrieveWithoutBulkDataGET: '1.2.840.10008.5.1.4.1.2.5.3',
|
|
@@ -14556,19 +14579,19 @@ exports.UID = {
|
|
|
14556
14579
|
DefinedProcedureProtocolInformationModelMOVE: '1.2.840.10008.5.1.4.20.2',
|
|
14557
14580
|
DefinedProcedureProtocolInformationModelGET: '1.2.840.10008.5.1.4.20.3',
|
|
14558
14581
|
ModalityWorklistInformationModelFIND: '1.2.840.10008.5.1.4.31',
|
|
14559
|
-
GeneralPurposeWorklistManagementMetaSOPClassRetired: '1.2.840.10008.5.1.4.32',
|
|
14560
|
-
GeneralPurposeWorklistInformationModelFINDRetired: '1.2.840.10008.5.1.4.32.1',
|
|
14561
|
-
GeneralPurposeScheduledProcedureStepSOPClassRetired: '1.2.840.10008.5.1.4.32.2',
|
|
14562
|
-
GeneralPurposePerformedProcedureStepSOPClassRetired: '1.2.840.10008.5.1.4.32.3',
|
|
14582
|
+
GeneralPurposeWorklistManagementMetaSOPClassRetired: '1.2.840.10008.5.1.4.32', // retired
|
|
14583
|
+
GeneralPurposeWorklistInformationModelFINDRetired: '1.2.840.10008.5.1.4.32.1', // retired
|
|
14584
|
+
GeneralPurposeScheduledProcedureStepSOPClassRetired: '1.2.840.10008.5.1.4.32.2', // retired
|
|
14585
|
+
GeneralPurposePerformedProcedureStepSOPClassRetired: '1.2.840.10008.5.1.4.32.3', // retired
|
|
14563
14586
|
InstanceAvailabilityNotificationSOPClass: '1.2.840.10008.5.1.4.33',
|
|
14564
|
-
RTBeamsDeliveryInstructionStorageTrialRetired: '1.2.840.10008.5.1.4.34.1',
|
|
14565
|
-
RTConventionalMachineVerificationTrialRetired: '1.2.840.10008.5.1.4.34.2',
|
|
14566
|
-
RTIonMachineVerificationTrialRetired: '1.2.840.10008.5.1.4.34.3',
|
|
14567
|
-
UnifiedWorklistandProcedureStepServiceClassTrialRetired: '1.2.840.10008.5.1.4.34.4',
|
|
14568
|
-
UnifiedProcedureStepPushSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.1',
|
|
14569
|
-
UnifiedProcedureStepWatchSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.2',
|
|
14570
|
-
UnifiedProcedureStepPullSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.3',
|
|
14571
|
-
UnifiedProcedureStepEventSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.4',
|
|
14587
|
+
RTBeamsDeliveryInstructionStorageTrialRetired: '1.2.840.10008.5.1.4.34.1', // retired
|
|
14588
|
+
RTConventionalMachineVerificationTrialRetired: '1.2.840.10008.5.1.4.34.2', // retired
|
|
14589
|
+
RTIonMachineVerificationTrialRetired: '1.2.840.10008.5.1.4.34.3', // retired
|
|
14590
|
+
UnifiedWorklistandProcedureStepServiceClassTrialRetired: '1.2.840.10008.5.1.4.34.4', // retired
|
|
14591
|
+
UnifiedProcedureStepPushSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.1', // retired
|
|
14592
|
+
UnifiedProcedureStepWatchSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.2', // retired
|
|
14593
|
+
UnifiedProcedureStepPullSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.3', // retired
|
|
14594
|
+
UnifiedProcedureStepEventSOPClassTrialRetired: '1.2.840.10008.5.1.4.34.4.4', // retired
|
|
14572
14595
|
UPSGlobalSubscriptionSOPInstance: '1.2.840.10008.5.1.4.34.5',
|
|
14573
14596
|
UPSFilteredGlobalSubscriptionSOPInstance: '1.2.840.10008.5.1.4.34.5.1',
|
|
14574
14597
|
UnifiedWorklistandProcedureStepServiceClass: '1.2.840.10008.5.1.4.34.6',
|
|
@@ -14661,7 +14684,8 @@ exports.UID = {
|
|
|
14661
14684
|
|
|
14662
14685
|
|
|
14663
14686
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
14664
|
-
exports.
|
|
14687
|
+
exports.Value = void 0;
|
|
14688
|
+
exports.parsePersonName = parsePersonName;
|
|
14665
14689
|
const js_joda_1 = __webpack_require__(/*! js-joda */ "js-joda");
|
|
14666
14690
|
const base_1 = __webpack_require__(/*! ./base */ "./src/base.ts");
|
|
14667
14691
|
const character_sets_1 = __webpack_require__(/*! ./character-sets */ "./src/character-sets.ts");
|
|
@@ -15215,7 +15239,6 @@ function parsePersonName(s) {
|
|
|
15215
15239
|
const comps = transpose(matrix).map((c) => new person_name_1.ComponentGroup(c[0], c[1], c[2]));
|
|
15216
15240
|
return new person_name_1.PersonName(comps[0], comps[1], comps[2], comps[3], comps[4]);
|
|
15217
15241
|
}
|
|
15218
|
-
exports.parsePersonName = parsePersonName;
|
|
15219
15242
|
function parseURL(s) {
|
|
15220
15243
|
try {
|
|
15221
15244
|
return new URL(s);
|
|
@@ -15248,6 +15271,7 @@ class VR {
|
|
|
15248
15271
|
this.paddingByte = paddingByte;
|
|
15249
15272
|
}
|
|
15250
15273
|
}
|
|
15274
|
+
exports.VR = VR;
|
|
15251
15275
|
VR.AE = new VR('AE', 0x4145, 8, 0x20);
|
|
15252
15276
|
VR.AS = new VR('AS', 0x4153, 8, 0x20);
|
|
15253
15277
|
VR.AT = new VR('AT', 0x4154, 8, 0);
|
|
@@ -15322,7 +15346,6 @@ VR.map = VR.values.reduce((m, vr) => {
|
|
|
15322
15346
|
m.set(vr.code, vr);
|
|
15323
15347
|
return m;
|
|
15324
15348
|
}, new Map());
|
|
15325
|
-
exports.VR = VR;
|
|
15326
15349
|
|
|
15327
15350
|
|
|
15328
15351
|
/***/ }),
|