@exini/dicom-streams-js 3.0.10 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/RELEASE-NOTES.md +10 -0
- package/coverage/base.css +224 -0
- package/coverage/block-navigation.js +87 -0
- package/coverage/dicom-streams-js/index.html +116 -0
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +146 -0
- package/coverage/prettify.css +1 -0
- package/coverage/prettify.js +2 -0
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +196 -0
- package/dist/LICENSE +201 -0
- package/dist/README.md +157 -0
- package/{lib → dist/lib}/base.d.ts +0 -1
- package/{lib → dist/lib}/base.js +64 -65
- package/dist/lib/base.js.map +1 -0
- package/{lib → dist/lib}/byte-parser.d.ts +0 -1
- package/dist/lib/byte-parser.js.map +1 -0
- package/{lib → dist/lib}/character-sets.d.ts +0 -1
- package/{lib → dist/lib}/character-sets.js.map +1 -1
- package/{lib → dist/lib}/collect-flow.d.ts +0 -1
- package/{lib → dist/lib}/collect-flow.js +2 -3
- package/dist/lib/collect-flow.js.map +1 -0
- package/{lib → dist/lib}/detour.d.ts +0 -1
- package/dist/lib/detour.js.map +1 -0
- package/{lib → dist/lib}/dicom-elements.d.ts +0 -1
- package/dist/lib/dicom-elements.js.map +1 -0
- package/{lib → dist/lib}/dicom-flow.d.ts +0 -1
- package/{lib → dist/lib}/dicom-flow.js +2 -2
- package/dist/lib/dicom-flow.js.map +1 -0
- package/{lib → dist/lib}/dicom-flows.d.ts +0 -1
- package/{lib → dist/lib}/dicom-flows.js +14 -14
- package/dist/lib/dicom-flows.js.map +1 -0
- package/{lib → dist/lib}/dicom-parts.d.ts +0 -1
- package/dist/lib/dicom-parts.js.map +1 -0
- package/{lib → dist/lib}/element-flows.js +1 -2
- package/dist/lib/element-flows.js.map +1 -0
- package/{lib → dist/lib}/element-sink.d.ts +0 -1
- package/{lib → dist/lib}/element-sink.js +1 -2
- package/dist/lib/element-sink.js.map +1 -0
- package/dist/lib/elements-builder.js.map +1 -0
- package/{lib → dist/lib}/elements.d.ts +0 -1
- package/{lib → dist/lib}/elements.js +2 -2
- package/dist/lib/elements.js.map +1 -0
- package/{lib → dist/lib}/flows.d.ts +0 -1
- package/{lib → dist/lib}/flows.js +8 -9
- package/dist/lib/flows.js.map +1 -0
- package/{lib → dist/lib}/lookup.js +1 -1
- package/dist/lib/lookup.js.map +1 -0
- package/{lib → dist/lib}/modify-flow.d.ts +0 -1
- package/{lib → dist/lib}/modify-flow.js +2 -2
- package/dist/lib/modify-flow.js.map +1 -0
- package/{lib → dist/lib}/parse-flow.js +1 -2
- package/dist/lib/parse-flow.js.map +1 -0
- package/{lib → dist/lib}/parser.d.ts +0 -1
- package/{lib → dist/lib}/parser.js +36 -4
- package/dist/lib/parser.js.map +1 -0
- package/{lib → dist/lib}/parsing.d.ts +0 -1
- package/{lib → dist/lib}/parsing.js +9 -9
- package/dist/lib/parsing.js.map +1 -0
- package/{lib → dist/lib}/sinks.d.ts +0 -2
- package/{lib → dist/lib}/sinks.js +3 -4
- package/dist/lib/sinks.js.map +1 -0
- package/{lib → dist/lib}/sources.d.ts +0 -1
- package/{lib → dist/lib}/sources.js +2 -3
- package/dist/lib/sources.js.map +1 -0
- package/dist/lib/tag-path-like.js.map +1 -0
- package/dist/lib/tag-path.js.map +1 -0
- package/{lib → dist/lib}/tag-to-vr.js +1 -1
- package/dist/lib/tag-to-vr.js.map +1 -0
- package/dist/lib/tag-tree.js.map +1 -0
- package/{lib → dist/lib}/tag.js +448 -448
- package/dist/lib/tag.js.map +1 -0
- package/{lib → dist/lib}/uid-to-name.js +1 -1
- package/dist/lib/uid-to-name.js.map +1 -0
- package/{lib → dist/lib}/uid.js +71 -71
- package/dist/lib/uid.js.map +1 -0
- package/{lib → dist/lib}/value.d.ts +0 -1
- package/{lib → dist/lib}/value.js +2 -2
- package/dist/lib/value.js.map +1 -0
- package/{lib → dist/lib}/vr.js +1 -1
- package/dist/lib/vr.js.map +1 -0
- package/{node → dist/node}/index.js +672 -648
- package/dist/node/index.js.map +1 -0
- package/dist/node/index.min.js +1 -0
- package/dist/package.json +92 -0
- package/{web → dist/web}/index.js +685 -661
- package/dist/web/index.js.map +1 -0
- package/dist/web/index.min.js +2 -0
- package/{web → dist/web}/index.min.js.LICENSE.txt +1 -1
- package/example/data-model.png +0 -0
- package/example/detour-example.js +52 -0
- package/example/image/example-eb.dcm +0 -0
- package/example/image/example-ed.dcm +0 -0
- package/example/image/example-el-delimited.dcm +0 -0
- package/example/image/example-el.dcm +0 -0
- package/example/image/example-il.dcm +0 -0
- package/example/parse-log.js +13 -0
- package/example/parse-modify-log.js +43 -0
- package/example/parse-modify-write.js +40 -0
- package/package.json +11 -11
- package/typings/dicom-character-set/index.d.ts +5 -0
- package/typings/multipipe/index.d.ts +4 -0
- package/lib/base.js.map +0 -1
- package/lib/byte-parser.js.map +0 -1
- package/lib/collect-flow.js.map +0 -1
- package/lib/detour.js.map +0 -1
- package/lib/dicom-elements.js.map +0 -1
- package/lib/dicom-flow.js.map +0 -1
- package/lib/dicom-flows.js.map +0 -1
- package/lib/dicom-parts.js.map +0 -1
- package/lib/element-flows.js.map +0 -1
- package/lib/element-sink.js.map +0 -1
- package/lib/elements-builder.js.map +0 -1
- package/lib/elements.js.map +0 -1
- package/lib/flows.js.map +0 -1
- package/lib/lookup.js.map +0 -1
- package/lib/modify-flow.js.map +0 -1
- package/lib/parse-flow.js.map +0 -1
- package/lib/parser.js.map +0 -1
- package/lib/parsing.js.map +0 -1
- package/lib/sinks.js.map +0 -1
- package/lib/sources.js.map +0 -1
- package/lib/tag-path-like.js.map +0 -1
- package/lib/tag-path.js.map +0 -1
- package/lib/tag-to-vr.js.map +0 -1
- package/lib/tag-tree.js.map +0 -1
- package/lib/tag.js.map +0 -1
- package/lib/uid-to-name.js.map +0 -1
- package/lib/uid.js.map +0 -1
- package/lib/value.js.map +0 -1
- package/lib/vr.js.map +0 -1
- package/node/index.js.map +0 -1
- package/node/index.min.js +0 -1
- package/web/index.js.map +0 -1
- package/web/index.min.js +0 -2
- /package/{lib → dist/lib}/byte-parser.js +0 -0
- /package/{lib → dist/lib}/character-sets.js +0 -0
- /package/{lib → dist/lib}/detour.js +0 -0
- /package/{lib → dist/lib}/dicom-elements.js +0 -0
- /package/{lib → dist/lib}/dicom-parts.js +0 -0
- /package/{lib → dist/lib}/element-flows.d.ts +0 -0
- /package/{lib → dist/lib}/elements-builder.d.ts +0 -0
- /package/{lib → dist/lib}/elements-builder.js +0 -0
- /package/{lib → dist/lib}/index.d.ts +0 -0
- /package/{lib → dist/lib}/index.js +0 -0
- /package/{lib → dist/lib}/index.js.map +0 -0
- /package/{lib → dist/lib}/lookup.d.ts +0 -0
- /package/{lib → dist/lib}/parse-flow.d.ts +0 -0
- /package/{lib → dist/lib}/person-name.d.ts +0 -0
- /package/{lib → dist/lib}/person-name.js +0 -0
- /package/{lib → dist/lib}/person-name.js.map +0 -0
- /package/{lib → dist/lib}/tag-path-like.d.ts +0 -0
- /package/{lib → dist/lib}/tag-path-like.js +0 -0
- /package/{lib → dist/lib}/tag-path.d.ts +0 -0
- /package/{lib → dist/lib}/tag-path.js +0 -0
- /package/{lib → dist/lib}/tag-to-vr.d.ts +0 -0
- /package/{lib → dist/lib}/tag-tree.d.ts +0 -0
- /package/{lib → dist/lib}/tag-tree.js +0 -0
- /package/{lib → dist/lib}/tag.d.ts +0 -0
- /package/{lib → dist/lib}/uid-to-name.d.ts +0 -0
- /package/{lib → dist/lib}/uid.d.ts +0 -0
- /package/{lib → dist/lib}/vr.d.ts +0 -0
package/{lib → dist/lib}/tag.js
RENAMED
|
@@ -54,18 +54,18 @@ exports.Tag = {
|
|
|
54
54
|
DirectoryRecordType: 0x00041430,
|
|
55
55
|
PrivateRecordUID: 0x00041432,
|
|
56
56
|
ReferencedFileID: 0x00041500,
|
|
57
|
-
MRDRDirectoryRecordOffset: 0x00041504,
|
|
57
|
+
MRDRDirectoryRecordOffset: 0x00041504, // retired
|
|
58
58
|
ReferencedSOPClassUIDInFile: 0x00041510,
|
|
59
59
|
ReferencedSOPInstanceUIDInFile: 0x00041511,
|
|
60
60
|
ReferencedTransferSyntaxUIDInFile: 0x00041512,
|
|
61
61
|
ReferencedRelatedGeneralSOPClassUIDInFile: 0x0004151a,
|
|
62
|
-
NumberOfReferences: 0x00041600,
|
|
62
|
+
NumberOfReferences: 0x00041600, // retired
|
|
63
63
|
// data elements
|
|
64
|
-
LengthToEnd: 0x00080001,
|
|
64
|
+
LengthToEnd: 0x00080001, // retired
|
|
65
65
|
SpecificCharacterSet: 0x00080005,
|
|
66
66
|
LanguageCodeSequence: 0x00080006,
|
|
67
67
|
ImageType: 0x00080008,
|
|
68
|
-
RecognitionCode: 0x00080010,
|
|
68
|
+
RecognitionCode: 0x00080010, // retired
|
|
69
69
|
InstanceCreationDate: 0x00080012,
|
|
70
70
|
InstanceCreationTime: 0x00080013,
|
|
71
71
|
InstanceCreatorUID: 0x00080014,
|
|
@@ -78,18 +78,18 @@ exports.Tag = {
|
|
|
78
78
|
SeriesDate: 0x00080021,
|
|
79
79
|
AcquisitionDate: 0x00080022,
|
|
80
80
|
ContentDate: 0x00080023,
|
|
81
|
-
OverlayDate: 0x00080024,
|
|
82
|
-
CurveDate: 0x00080025,
|
|
81
|
+
OverlayDate: 0x00080024, // retired
|
|
82
|
+
CurveDate: 0x00080025, // retired
|
|
83
83
|
AcquisitionDateTime: 0x0008002a,
|
|
84
84
|
StudyTime: 0x00080030,
|
|
85
85
|
SeriesTime: 0x00080031,
|
|
86
86
|
AcquisitionTime: 0x00080032,
|
|
87
87
|
ContentTime: 0x00080033,
|
|
88
|
-
OverlayTime: 0x00080034,
|
|
89
|
-
CurveTime: 0x00080035,
|
|
90
|
-
DataSetType: 0x00080040,
|
|
91
|
-
DataSetSubtype: 0x00080041,
|
|
92
|
-
NuclearMedicineSeriesType: 0x00080042,
|
|
88
|
+
OverlayTime: 0x00080034, // retired
|
|
89
|
+
CurveTime: 0x00080035, // retired
|
|
90
|
+
DataSetType: 0x00080040, // retired
|
|
91
|
+
DataSetSubtype: 0x00080041, // retired
|
|
92
|
+
NuclearMedicineSeriesType: 0x00080042, // retired
|
|
93
93
|
AccessionNumber: 0x00080050,
|
|
94
94
|
IssuerOfAccessionNumberSequence: 0x00080051,
|
|
95
95
|
QueryRetrieveLevel: 0x00080052,
|
|
@@ -164,7 +164,7 @@ exports.Tag = {
|
|
|
164
164
|
PrivateDataElementDescription: 0x0008030e,
|
|
165
165
|
PrivateDataElementEncoding: 0x0008030f,
|
|
166
166
|
PrivateDataElementDefinitionSequence: 0x00080310,
|
|
167
|
-
NetworkID: 0x00081000,
|
|
167
|
+
NetworkID: 0x00081000, // retired
|
|
168
168
|
StationName: 0x00081010,
|
|
169
169
|
StudyDescription: 0x00081030,
|
|
170
170
|
ProcedureCodeSequence: 0x00081032,
|
|
@@ -182,17 +182,17 @@ exports.Tag = {
|
|
|
182
182
|
AdmittingDiagnosesDescription: 0x00081080,
|
|
183
183
|
AdmittingDiagnosesCodeSequence: 0x00081084,
|
|
184
184
|
ManufacturerModelName: 0x00081090,
|
|
185
|
-
ReferencedResultsSequence: 0x00081100,
|
|
185
|
+
ReferencedResultsSequence: 0x00081100, // retired
|
|
186
186
|
ReferencedStudySequence: 0x00081110,
|
|
187
187
|
ReferencedPerformedProcedureStepSequence: 0x00081111,
|
|
188
188
|
ReferencedSeriesSequence: 0x00081115,
|
|
189
189
|
ReferencedPatientSequence: 0x00081120,
|
|
190
190
|
ReferencedVisitSequence: 0x00081125,
|
|
191
|
-
ReferencedOverlaySequence: 0x00081130,
|
|
191
|
+
ReferencedOverlaySequence: 0x00081130, // retired
|
|
192
192
|
ReferencedStereometricInstanceSequence: 0x00081134,
|
|
193
193
|
ReferencedWaveformSequence: 0x0008113a,
|
|
194
194
|
ReferencedImageSequence: 0x00081140,
|
|
195
|
-
ReferencedCurveSequence: 0x00081145,
|
|
195
|
+
ReferencedCurveSequence: 0x00081145, // retired
|
|
196
196
|
ReferencedInstanceSequence: 0x0008114a,
|
|
197
197
|
ReferencedRealWorldValueMappingInstanceSequence: 0x0008114b,
|
|
198
198
|
ReferencedSOPClassUID: 0x00081150,
|
|
@@ -214,7 +214,7 @@ exports.Tag = {
|
|
|
214
214
|
OtherFailuresSequence: 0x0008119a,
|
|
215
215
|
StudiesContainingOtherReferencedInstancesSequence: 0x00081200,
|
|
216
216
|
RelatedSeriesSequence: 0x00081250,
|
|
217
|
-
LossyImageCompressionRetired: 0x00082110,
|
|
217
|
+
LossyImageCompressionRetired: 0x00082110, // retired
|
|
218
218
|
DerivationDescription: 0x00082111,
|
|
219
219
|
SourceImageSequence: 0x00082112,
|
|
220
220
|
StageName: 0x00082120,
|
|
@@ -232,32 +232,32 @@ exports.Tag = {
|
|
|
232
232
|
StartTrim: 0x00082142,
|
|
233
233
|
StopTrim: 0x00082143,
|
|
234
234
|
RecommendedDisplayFrameRate: 0x00082144,
|
|
235
|
-
TransducerPosition: 0x00082200,
|
|
236
|
-
TransducerOrientation: 0x00082204,
|
|
237
|
-
AnatomicStructure: 0x00082208,
|
|
235
|
+
TransducerPosition: 0x00082200, // retired
|
|
236
|
+
TransducerOrientation: 0x00082204, // retired
|
|
237
|
+
AnatomicStructure: 0x00082208, // retired
|
|
238
238
|
AnatomicRegionSequence: 0x00082218,
|
|
239
239
|
AnatomicRegionModifierSequence: 0x00082220,
|
|
240
240
|
PrimaryAnatomicStructureSequence: 0x00082228,
|
|
241
|
-
AnatomicStructureSpaceOrRegionSequence: 0x00082229,
|
|
241
|
+
AnatomicStructureSpaceOrRegionSequence: 0x00082229, // retired
|
|
242
242
|
PrimaryAnatomicStructureModifierSequence: 0x00082230,
|
|
243
|
-
TransducerPositionSequence: 0x00082240,
|
|
244
|
-
TransducerPositionModifierSequence: 0x00082242,
|
|
245
|
-
TransducerOrientationSequence: 0x00082244,
|
|
246
|
-
TransducerOrientationModifierSequence: 0x00082246,
|
|
247
|
-
AnatomicStructureSpaceOrRegionCodeSequenceTrial: 0x00082251,
|
|
248
|
-
AnatomicPortalOfEntranceCodeSequenceTrial: 0x00082253,
|
|
249
|
-
AnatomicApproachDirectionCodeSequenceTrial: 0x00082255,
|
|
250
|
-
AnatomicPerspectiveDescriptionTrial: 0x00082256,
|
|
251
|
-
AnatomicPerspectiveCodeSequenceTrial: 0x00082257,
|
|
252
|
-
AnatomicLocationOfExaminingInstrumentDescriptionTrial: 0x00082258,
|
|
253
|
-
AnatomicLocationOfExaminingInstrumentCodeSequenceTrial: 0x00082259,
|
|
254
|
-
AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial: 0x0008225a,
|
|
255
|
-
OnAxisBackgroundAnatomicStructureCodeSequenceTrial: 0x0008225c,
|
|
243
|
+
TransducerPositionSequence: 0x00082240, // retired
|
|
244
|
+
TransducerPositionModifierSequence: 0x00082242, // retired
|
|
245
|
+
TransducerOrientationSequence: 0x00082244, // retired
|
|
246
|
+
TransducerOrientationModifierSequence: 0x00082246, // retired
|
|
247
|
+
AnatomicStructureSpaceOrRegionCodeSequenceTrial: 0x00082251, // retired
|
|
248
|
+
AnatomicPortalOfEntranceCodeSequenceTrial: 0x00082253, // retired
|
|
249
|
+
AnatomicApproachDirectionCodeSequenceTrial: 0x00082255, // retired
|
|
250
|
+
AnatomicPerspectiveDescriptionTrial: 0x00082256, // retired
|
|
251
|
+
AnatomicPerspectiveCodeSequenceTrial: 0x00082257, // retired
|
|
252
|
+
AnatomicLocationOfExaminingInstrumentDescriptionTrial: 0x00082258, // retired
|
|
253
|
+
AnatomicLocationOfExaminingInstrumentCodeSequenceTrial: 0x00082259, // retired
|
|
254
|
+
AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial: 0x0008225a, // retired
|
|
255
|
+
OnAxisBackgroundAnatomicStructureCodeSequenceTrial: 0x0008225c, // retired
|
|
256
256
|
AlternateRepresentationSequence: 0x00083001,
|
|
257
257
|
IrradiationEventUID: 0x00083010,
|
|
258
258
|
SourceIrradiationEventSequence: 0x00083011,
|
|
259
259
|
RadiopharmaceuticalAdministrationEventUID: 0x00083012,
|
|
260
|
-
IdentifyingComments: 0x00084000,
|
|
260
|
+
IdentifyingComments: 0x00084000, // retired
|
|
261
261
|
FrameType: 0x00089007,
|
|
262
262
|
ReferencedImageEvidenceSequence: 0x00089092,
|
|
263
263
|
ReferencedRawDataSequence: 0x00089121,
|
|
@@ -306,7 +306,7 @@ exports.Tag = {
|
|
|
306
306
|
GeneticModificationsDescription: 0x00100222,
|
|
307
307
|
GeneticModificationsNomenclature: 0x00100223,
|
|
308
308
|
GeneticModificationsCodeSequence: 0x00100229,
|
|
309
|
-
OtherPatientIDs: 0x00101000,
|
|
309
|
+
OtherPatientIDs: 0x00101000, // retired
|
|
310
310
|
OtherPatientNames: 0x00101001,
|
|
311
311
|
OtherPatientIDsSequence: 0x00101002,
|
|
312
312
|
PatientBirthName: 0x00101005,
|
|
@@ -318,11 +318,11 @@ exports.Tag = {
|
|
|
318
318
|
MeasuredLateralDimension: 0x00101024,
|
|
319
319
|
PatientWeight: 0x00101030,
|
|
320
320
|
PatientAddress: 0x00101040,
|
|
321
|
-
InsurancePlanIdentification: 0x00101050,
|
|
321
|
+
InsurancePlanIdentification: 0x00101050, // retired
|
|
322
322
|
PatientMotherBirthName: 0x00101060,
|
|
323
323
|
MilitaryRank: 0x00101080,
|
|
324
324
|
BranchOfService: 0x00101081,
|
|
325
|
-
MedicalRecordLocator: 0x00101090,
|
|
325
|
+
MedicalRecordLocator: 0x00101090, // retired
|
|
326
326
|
ReferencedPatientPhotoSequence: 0x00101100,
|
|
327
327
|
MedicalAlerts: 0x00102000,
|
|
328
328
|
Allergies: 0x00102110,
|
|
@@ -375,8 +375,8 @@ exports.Tag = {
|
|
|
375
375
|
ConsentForDistributionFlag: 0x00120085,
|
|
376
376
|
EthicsCommitteeApprovalEffectivenessStartDate: 0x00120086,
|
|
377
377
|
EthicsCommitteeApprovalEffectivenessEndDate: 0x00120087,
|
|
378
|
-
CADFileFormat: 0x00140023,
|
|
379
|
-
ComponentReferenceSystem: 0x00140024,
|
|
378
|
+
CADFileFormat: 0x00140023, // retired
|
|
379
|
+
ComponentReferenceSystem: 0x00140024, // retired
|
|
380
380
|
ComponentManufacturingProcedure: 0x00140025,
|
|
381
381
|
ComponentManufacturer: 0x00140028,
|
|
382
382
|
MaterialThickness: 0x00140030,
|
|
@@ -384,7 +384,7 @@ exports.Tag = {
|
|
|
384
384
|
MaterialIsolationDiameter: 0x00140034,
|
|
385
385
|
MaterialGrade: 0x00140042,
|
|
386
386
|
MaterialPropertiesDescription: 0x00140044,
|
|
387
|
-
MaterialPropertiesFileFormatRetired: 0x00140045,
|
|
387
|
+
MaterialPropertiesFileFormatRetired: 0x00140045, // retired
|
|
388
388
|
MaterialNotes: 0x00140046,
|
|
389
389
|
ComponentShape: 0x00140050,
|
|
390
390
|
CurvatureType: 0x00140052,
|
|
@@ -583,16 +583,16 @@ exports.Tag = {
|
|
|
583
583
|
InterventionDrugDose: 0x00180028,
|
|
584
584
|
InterventionDrugCodeSequence: 0x00180029,
|
|
585
585
|
AdditionalDrugSequence: 0x0018002a,
|
|
586
|
-
Radionuclide: 0x00180030,
|
|
586
|
+
Radionuclide: 0x00180030, // retired
|
|
587
587
|
Radiopharmaceutical: 0x00180031,
|
|
588
|
-
EnergyWindowCenterline: 0x00180032,
|
|
589
|
-
EnergyWindowTotalWidth: 0x00180033,
|
|
588
|
+
EnergyWindowCenterline: 0x00180032, // retired
|
|
589
|
+
EnergyWindowTotalWidth: 0x00180033, // retired
|
|
590
590
|
InterventionDrugName: 0x00180034,
|
|
591
591
|
InterventionDrugStartTime: 0x00180035,
|
|
592
592
|
InterventionSequence: 0x00180036,
|
|
593
|
-
TherapyType: 0x00180037,
|
|
593
|
+
TherapyType: 0x00180037, // retired
|
|
594
594
|
InterventionStatus: 0x00180038,
|
|
595
|
-
TherapyDescription: 0x00180039,
|
|
595
|
+
TherapyDescription: 0x00180039, // retired
|
|
596
596
|
InterventionDescription: 0x0018003a,
|
|
597
597
|
CineRate: 0x00180040,
|
|
598
598
|
InitialCineRunState: 0x00180042,
|
|
@@ -630,15 +630,15 @@ exports.Tag = {
|
|
|
630
630
|
UniqueDeviceIdentifier: 0x00181009,
|
|
631
631
|
UDISequence: 0x0018100a,
|
|
632
632
|
SecondaryCaptureDeviceID: 0x00181010,
|
|
633
|
-
HardcopyCreationDeviceID: 0x00181011,
|
|
633
|
+
HardcopyCreationDeviceID: 0x00181011, // retired
|
|
634
634
|
DateOfSecondaryCapture: 0x00181012,
|
|
635
635
|
TimeOfSecondaryCapture: 0x00181014,
|
|
636
636
|
SecondaryCaptureDeviceManufacturer: 0x00181016,
|
|
637
|
-
HardcopyDeviceManufacturer: 0x00181017,
|
|
637
|
+
HardcopyDeviceManufacturer: 0x00181017, // retired
|
|
638
638
|
SecondaryCaptureDeviceManufacturerModelName: 0x00181018,
|
|
639
639
|
SecondaryCaptureDeviceSoftwareVersions: 0x00181019,
|
|
640
|
-
HardcopyDeviceSoftwareVersion: 0x0018101a,
|
|
641
|
-
HardcopyDeviceManufacturerModelName: 0x0018101b,
|
|
640
|
+
HardcopyDeviceSoftwareVersion: 0x0018101a, // retired
|
|
641
|
+
HardcopyDeviceManufacturerModelName: 0x0018101b, // retired
|
|
642
642
|
SoftwareVersions: 0x00181020,
|
|
643
643
|
VideoImageFormatAcquired: 0x00181022,
|
|
644
644
|
DigitalImageFormatAcquired: 0x00181023,
|
|
@@ -702,12 +702,12 @@ exports.Tag = {
|
|
|
702
702
|
TableAngle: 0x00181138,
|
|
703
703
|
TableType: 0x0018113a,
|
|
704
704
|
RotationDirection: 0x00181140,
|
|
705
|
-
AngularPosition: 0x00181141,
|
|
705
|
+
AngularPosition: 0x00181141, // retired
|
|
706
706
|
RadialPosition: 0x00181142,
|
|
707
707
|
ScanArc: 0x00181143,
|
|
708
708
|
AngularStep: 0x00181144,
|
|
709
709
|
CenterOfRotationOffset: 0x00181145,
|
|
710
|
-
RotationOffset: 0x00181146,
|
|
710
|
+
RotationOffset: 0x00181146, // retired
|
|
711
711
|
FieldOfViewShape: 0x00181147,
|
|
712
712
|
FieldOfViewDimensions: 0x00181149,
|
|
713
713
|
ExposureTime: 0x00181150,
|
|
@@ -741,7 +741,7 @@ exports.Tag = {
|
|
|
741
741
|
TimeOfLastCalibration: 0x00181201,
|
|
742
742
|
DateTimeOfLastCalibration: 0x00181202,
|
|
743
743
|
ConvolutionKernel: 0x00181210,
|
|
744
|
-
UpperLowerPixelValues: 0x00181240,
|
|
744
|
+
UpperLowerPixelValues: 0x00181240, // retired
|
|
745
745
|
ActualFrameDuration: 0x00181242,
|
|
746
746
|
CountRate: 0x00181243,
|
|
747
747
|
PreferredPlaybackSequencing: 0x00181244,
|
|
@@ -829,26 +829,26 @@ exports.Tag = {
|
|
|
829
829
|
IVUSPullbackStartFrameNumber: 0x00183103,
|
|
830
830
|
IVUSPullbackStopFrameNumber: 0x00183104,
|
|
831
831
|
LesionNumber: 0x00183105,
|
|
832
|
-
AcquisitionComments: 0x00184000,
|
|
832
|
+
AcquisitionComments: 0x00184000, // retired
|
|
833
833
|
OutputPower: 0x00185000,
|
|
834
834
|
TransducerData: 0x00185010,
|
|
835
835
|
FocusDepth: 0x00185012,
|
|
836
836
|
ProcessingFunction: 0x00185020,
|
|
837
|
-
PostprocessingFunction: 0x00185021,
|
|
837
|
+
PostprocessingFunction: 0x00185021, // retired
|
|
838
838
|
MechanicalIndex: 0x00185022,
|
|
839
839
|
BoneThermalIndex: 0x00185024,
|
|
840
840
|
CranialThermalIndex: 0x00185026,
|
|
841
841
|
SoftTissueThermalIndex: 0x00185027,
|
|
842
842
|
SoftTissueFocusThermalIndex: 0x00185028,
|
|
843
843
|
SoftTissueSurfaceThermalIndex: 0x00185029,
|
|
844
|
-
DynamicRange: 0x00185030,
|
|
845
|
-
TotalGain: 0x00185040,
|
|
844
|
+
DynamicRange: 0x00185030, // retired
|
|
845
|
+
TotalGain: 0x00185040, // retired
|
|
846
846
|
DepthOfScanField: 0x00185050,
|
|
847
847
|
PatientPosition: 0x00185100,
|
|
848
848
|
ViewPosition: 0x00185101,
|
|
849
849
|
ProjectionEponymousNameCodeSequence: 0x00185104,
|
|
850
|
-
ImageTransformationMatrix: 0x00185210,
|
|
851
|
-
ImageTranslationVector: 0x00185212,
|
|
850
|
+
ImageTransformationMatrix: 0x00185210, // retired
|
|
851
|
+
ImageTranslationVector: 0x00185212, // retired
|
|
852
852
|
Sensitivity: 0x00186000,
|
|
853
853
|
SequenceOfUltrasoundRegions: 0x00186011,
|
|
854
854
|
RegionSpatialFormat: 0x00186012,
|
|
@@ -871,17 +871,17 @@ exports.Tag = {
|
|
|
871
871
|
PulseRepetitionFrequency: 0x00186032,
|
|
872
872
|
DopplerCorrectionAngle: 0x00186034,
|
|
873
873
|
SteeringAngle: 0x00186036,
|
|
874
|
-
DopplerSampleVolumeXPositionRetired: 0x00186038,
|
|
874
|
+
DopplerSampleVolumeXPositionRetired: 0x00186038, // retired
|
|
875
875
|
DopplerSampleVolumeXPosition: 0x00186039,
|
|
876
|
-
DopplerSampleVolumeYPositionRetired: 0x0018603a,
|
|
876
|
+
DopplerSampleVolumeYPositionRetired: 0x0018603a, // retired
|
|
877
877
|
DopplerSampleVolumeYPosition: 0x0018603b,
|
|
878
|
-
TMLinePositionX0Retired: 0x0018603c,
|
|
878
|
+
TMLinePositionX0Retired: 0x0018603c, // retired
|
|
879
879
|
TMLinePositionX0: 0x0018603d,
|
|
880
|
-
TMLinePositionY0Retired: 0x0018603e,
|
|
880
|
+
TMLinePositionY0Retired: 0x0018603e, // retired
|
|
881
881
|
TMLinePositionY0: 0x0018603f,
|
|
882
|
-
TMLinePositionX1Retired: 0x00186040,
|
|
882
|
+
TMLinePositionX1Retired: 0x00186040, // retired
|
|
883
883
|
TMLinePositionX1: 0x00186041,
|
|
884
|
-
TMLinePositionY1Retired: 0x00186042,
|
|
884
|
+
TMLinePositionY1Retired: 0x00186042, // retired
|
|
885
885
|
TMLinePositionY1: 0x00186043,
|
|
886
886
|
PixelComponentOrganization: 0x00186044,
|
|
887
887
|
PixelComponentMask: 0x00186046,
|
|
@@ -1018,7 +1018,7 @@ exports.Tag = {
|
|
|
1018
1018
|
NumberOfKSpaceTrajectories: 0x00189093,
|
|
1019
1019
|
CoverageOfKSpace: 0x00189094,
|
|
1020
1020
|
SpectroscopyAcquisitionPhaseRows: 0x00189095,
|
|
1021
|
-
ParallelReductionFactorInPlaneRetired: 0x00189096,
|
|
1021
|
+
ParallelReductionFactorInPlaneRetired: 0x00189096, // retired
|
|
1022
1022
|
TransmitterFrequency: 0x00189098,
|
|
1023
1023
|
ResonantNucleus: 0x00189100,
|
|
1024
1024
|
FrequencyCorrection: 0x00189101,
|
|
@@ -1041,7 +1041,7 @@ exports.Tag = {
|
|
|
1041
1041
|
MRMetaboliteMapSequence: 0x00189152,
|
|
1042
1042
|
ParallelReductionFactorOutOfPlane: 0x00189155,
|
|
1043
1043
|
SpectroscopyAcquisitionOutOfPlanePhaseSteps: 0x00189159,
|
|
1044
|
-
BulkMotionStatus: 0x00189166,
|
|
1044
|
+
BulkMotionStatus: 0x00189166, // retired
|
|
1045
1045
|
ParallelReductionFactorSecondInPlane: 0x00189168,
|
|
1046
1046
|
CardiacBeatRejectionTechnique: 0x00189169,
|
|
1047
1047
|
RespiratoryMotionCompensationTechnique: 0x00189170,
|
|
@@ -1061,8 +1061,8 @@ exports.Tag = {
|
|
|
1061
1061
|
TaggingDelay: 0x00189184,
|
|
1062
1062
|
RespiratoryMotionCompensationTechniqueDescription: 0x00189185,
|
|
1063
1063
|
RespiratorySignalSourceID: 0x00189186,
|
|
1064
|
-
ChemicalShiftMinimumIntegrationLimitInHz: 0x00189195,
|
|
1065
|
-
ChemicalShiftMaximumIntegrationLimitInHz: 0x00189196,
|
|
1064
|
+
ChemicalShiftMinimumIntegrationLimitInHz: 0x00189195, // retired
|
|
1065
|
+
ChemicalShiftMaximumIntegrationLimitInHz: 0x00189196, // retired
|
|
1066
1066
|
MRVelocityEncodingSequence: 0x00189197,
|
|
1067
1067
|
FirstOrderPhaseCorrection: 0x00189198,
|
|
1068
1068
|
WaterReferencedPhaseCorrection: 0x00189199,
|
|
@@ -1378,59 +1378,59 @@ exports.Tag = {
|
|
|
1378
1378
|
SeriesNumber: 0x00200011,
|
|
1379
1379
|
AcquisitionNumber: 0x00200012,
|
|
1380
1380
|
InstanceNumber: 0x00200013,
|
|
1381
|
-
IsotopeNumber: 0x00200014,
|
|
1382
|
-
PhaseNumber: 0x00200015,
|
|
1383
|
-
IntervalNumber: 0x00200016,
|
|
1384
|
-
TimeSlotNumber: 0x00200017,
|
|
1385
|
-
AngleNumber: 0x00200018,
|
|
1381
|
+
IsotopeNumber: 0x00200014, // retired
|
|
1382
|
+
PhaseNumber: 0x00200015, // retired
|
|
1383
|
+
IntervalNumber: 0x00200016, // retired
|
|
1384
|
+
TimeSlotNumber: 0x00200017, // retired
|
|
1385
|
+
AngleNumber: 0x00200018, // retired
|
|
1386
1386
|
ItemNumber: 0x00200019,
|
|
1387
1387
|
PatientOrientation: 0x00200020,
|
|
1388
|
-
OverlayNumber: 0x00200022,
|
|
1389
|
-
CurveNumber: 0x00200024,
|
|
1390
|
-
LUTNumber: 0x00200026,
|
|
1391
|
-
ImagePosition: 0x00200030,
|
|
1388
|
+
OverlayNumber: 0x00200022, // retired
|
|
1389
|
+
CurveNumber: 0x00200024, // retired
|
|
1390
|
+
LUTNumber: 0x00200026, // retired
|
|
1391
|
+
ImagePosition: 0x00200030, // retired
|
|
1392
1392
|
ImagePositionPatient: 0x00200032,
|
|
1393
|
-
ImageOrientation: 0x00200035,
|
|
1393
|
+
ImageOrientation: 0x00200035, // retired
|
|
1394
1394
|
ImageOrientationPatient: 0x00200037,
|
|
1395
|
-
Location: 0x00200050,
|
|
1395
|
+
Location: 0x00200050, // retired
|
|
1396
1396
|
FrameOfReferenceUID: 0x00200052,
|
|
1397
1397
|
Laterality: 0x00200060,
|
|
1398
1398
|
ImageLaterality: 0x00200062,
|
|
1399
|
-
ImageGeometryType: 0x00200070,
|
|
1400
|
-
MaskingImage: 0x00200080,
|
|
1401
|
-
ReportNumber: 0x002000aa,
|
|
1399
|
+
ImageGeometryType: 0x00200070, // retired
|
|
1400
|
+
MaskingImage: 0x00200080, // retired
|
|
1401
|
+
ReportNumber: 0x002000aa, // retired
|
|
1402
1402
|
TemporalPositionIdentifier: 0x00200100,
|
|
1403
1403
|
NumberOfTemporalPositions: 0x00200105,
|
|
1404
1404
|
TemporalResolution: 0x00200110,
|
|
1405
1405
|
SynchronizationFrameOfReferenceUID: 0x00200200,
|
|
1406
1406
|
SOPInstanceUIDOfConcatenationSource: 0x00200242,
|
|
1407
|
-
SeriesInStudy: 0x00201000,
|
|
1408
|
-
AcquisitionsInSeries: 0x00201001,
|
|
1407
|
+
SeriesInStudy: 0x00201000, // retired
|
|
1408
|
+
AcquisitionsInSeries: 0x00201001, // retired
|
|
1409
1409
|
ImagesInAcquisition: 0x00201002,
|
|
1410
|
-
ImagesInSeries: 0x00201003,
|
|
1411
|
-
AcquisitionsInStudy: 0x00201004,
|
|
1412
|
-
ImagesInStudy: 0x00201005,
|
|
1413
|
-
Reference: 0x00201020,
|
|
1410
|
+
ImagesInSeries: 0x00201003, // retired
|
|
1411
|
+
AcquisitionsInStudy: 0x00201004, // retired
|
|
1412
|
+
ImagesInStudy: 0x00201005, // retired
|
|
1413
|
+
Reference: 0x00201020, // retired
|
|
1414
1414
|
TargetPositionReferenceIndicator: 0x0020103f,
|
|
1415
1415
|
PositionReferenceIndicator: 0x00201040,
|
|
1416
1416
|
SliceLocation: 0x00201041,
|
|
1417
|
-
OtherStudyNumbers: 0x00201070,
|
|
1417
|
+
OtherStudyNumbers: 0x00201070, // retired
|
|
1418
1418
|
NumberOfPatientRelatedStudies: 0x00201200,
|
|
1419
1419
|
NumberOfPatientRelatedSeries: 0x00201202,
|
|
1420
1420
|
NumberOfPatientRelatedInstances: 0x00201204,
|
|
1421
1421
|
NumberOfStudyRelatedSeries: 0x00201206,
|
|
1422
1422
|
NumberOfStudyRelatedInstances: 0x00201208,
|
|
1423
1423
|
NumberOfSeriesRelatedInstances: 0x00201209,
|
|
1424
|
-
SourceImageIDs: 0x00203100,
|
|
1425
|
-
ModifyingDeviceID: 0x00203401,
|
|
1426
|
-
ModifiedImageID: 0x00203402,
|
|
1427
|
-
ModifiedImageDate: 0x00203403,
|
|
1428
|
-
ModifyingDeviceManufacturer: 0x00203404,
|
|
1429
|
-
ModifiedImageTime: 0x00203405,
|
|
1430
|
-
ModifiedImageDescription: 0x00203406,
|
|
1424
|
+
SourceImageIDs: 0x00203100, // retired
|
|
1425
|
+
ModifyingDeviceID: 0x00203401, // retired
|
|
1426
|
+
ModifiedImageID: 0x00203402, // retired
|
|
1427
|
+
ModifiedImageDate: 0x00203403, // retired
|
|
1428
|
+
ModifyingDeviceManufacturer: 0x00203404, // retired
|
|
1429
|
+
ModifiedImageTime: 0x00203405, // retired
|
|
1430
|
+
ModifiedImageDescription: 0x00203406, // retired
|
|
1431
1431
|
ImageComments: 0x00204000,
|
|
1432
|
-
OriginalImageIdentification: 0x00205000,
|
|
1433
|
-
OriginalImageIdentificationNomenclature: 0x00205002,
|
|
1432
|
+
OriginalImageIdentification: 0x00205000, // retired
|
|
1433
|
+
OriginalImageIdentificationNomenclature: 0x00205002, // retired
|
|
1434
1434
|
StackID: 0x00209056,
|
|
1435
1435
|
InStackPositionNumber: 0x00209057,
|
|
1436
1436
|
FrameAnatomySequence: 0x00209071,
|
|
@@ -1569,7 +1569,7 @@ exports.Tag = {
|
|
|
1569
1569
|
IOLPowerSequence: 0x00221090,
|
|
1570
1570
|
LensConstantSequence: 0x00221092,
|
|
1571
1571
|
IOLManufacturer: 0x00221093,
|
|
1572
|
-
LensConstantDescription: 0x00221094,
|
|
1572
|
+
LensConstantDescription: 0x00221094, // retired
|
|
1573
1573
|
ImplantName: 0x00221095,
|
|
1574
1574
|
KeratometryMeasurementTypeCodeSequence: 0x00221096,
|
|
1575
1575
|
ImplantPartNumber: 0x00221097,
|
|
@@ -1589,7 +1589,7 @@ exports.Tag = {
|
|
|
1589
1589
|
SourceOfRefractiveMeasurementsCodeSequence: 0x00221135,
|
|
1590
1590
|
OphthalmicAxialLengthMeasurementModified: 0x00221140,
|
|
1591
1591
|
OphthalmicAxialLengthDataSourceCodeSequence: 0x00221150,
|
|
1592
|
-
OphthalmicAxialLengthAcquisitionMethodCodeSequence: 0x00221153,
|
|
1592
|
+
OphthalmicAxialLengthAcquisitionMethodCodeSequence: 0x00221153, // retired
|
|
1593
1593
|
SignalToNoiseRatio: 0x00221155,
|
|
1594
1594
|
OphthalmicAxialLengthDataSourceDescription: 0x00221159,
|
|
1595
1595
|
OphthalmicAxialLengthMeasurementsTotalLengthSequence: 0x00221210,
|
|
@@ -1603,8 +1603,8 @@ exports.Tag = {
|
|
|
1603
1603
|
SelectedSegmentalOphthalmicAxialLengthSequence: 0x00221257,
|
|
1604
1604
|
SelectedTotalOphthalmicAxialLengthSequence: 0x00221260,
|
|
1605
1605
|
OphthalmicAxialLengthQualityMetricSequence: 0x00221262,
|
|
1606
|
-
OphthalmicAxialLengthQualityMetricTypeCodeSequence: 0x00221265,
|
|
1607
|
-
OphthalmicAxialLengthQualityMetricTypeDescription: 0x00221273,
|
|
1606
|
+
OphthalmicAxialLengthQualityMetricTypeCodeSequence: 0x00221265, // retired
|
|
1607
|
+
OphthalmicAxialLengthQualityMetricTypeDescription: 0x00221273, // retired
|
|
1608
1608
|
IntraocularLensCalculationsRightEyeSequence: 0x00221300,
|
|
1609
1609
|
IntraocularLensCalculationsLeftEyeSequence: 0x00221310,
|
|
1610
1610
|
ReferencedOphthalmicAxialLengthMeasurementQCImageSequence: 0x00221330,
|
|
@@ -1761,88 +1761,88 @@ exports.Tag = {
|
|
|
1761
1761
|
SamplesPerPixel: 0x00280002,
|
|
1762
1762
|
SamplesPerPixelUsed: 0x00280003,
|
|
1763
1763
|
PhotometricInterpretation: 0x00280004,
|
|
1764
|
-
ImageDimensions: 0x00280005,
|
|
1764
|
+
ImageDimensions: 0x00280005, // retired
|
|
1765
1765
|
PlanarConfiguration: 0x00280006,
|
|
1766
1766
|
NumberOfFrames: 0x00280008,
|
|
1767
1767
|
FrameIncrementPointer: 0x00280009,
|
|
1768
1768
|
FrameDimensionPointer: 0x0028000a,
|
|
1769
1769
|
Rows: 0x00280010,
|
|
1770
1770
|
Columns: 0x00280011,
|
|
1771
|
-
Planes: 0x00280012,
|
|
1771
|
+
Planes: 0x00280012, // retired
|
|
1772
1772
|
UltrasoundColorDataPresent: 0x00280014,
|
|
1773
1773
|
PixelSpacing: 0x00280030,
|
|
1774
1774
|
ZoomFactor: 0x00280031,
|
|
1775
1775
|
ZoomCenter: 0x00280032,
|
|
1776
1776
|
PixelAspectRatio: 0x00280034,
|
|
1777
|
-
ImageFormat: 0x00280040,
|
|
1778
|
-
ManipulatedImage: 0x00280050,
|
|
1777
|
+
ImageFormat: 0x00280040, // retired
|
|
1778
|
+
ManipulatedImage: 0x00280050, // retired
|
|
1779
1779
|
CorrectedImage: 0x00280051,
|
|
1780
|
-
CompressionRecognitionCode: 0x0028005f,
|
|
1781
|
-
CompressionCode: 0x00280060,
|
|
1782
|
-
CompressionOriginator: 0x00280061,
|
|
1783
|
-
CompressionLabel: 0x00280062,
|
|
1784
|
-
CompressionDescription: 0x00280063,
|
|
1785
|
-
CompressionSequence: 0x00280065,
|
|
1786
|
-
CompressionStepPointers: 0x00280066,
|
|
1787
|
-
RepeatInterval: 0x00280068,
|
|
1788
|
-
BitsGrouped: 0x00280069,
|
|
1789
|
-
PerimeterTable: 0x00280070,
|
|
1790
|
-
PerimeterValue: 0x00280071,
|
|
1791
|
-
PredictorRows: 0x00280080,
|
|
1792
|
-
PredictorColumns: 0x00280081,
|
|
1793
|
-
PredictorConstants: 0x00280082,
|
|
1794
|
-
BlockedPixels: 0x00280090,
|
|
1795
|
-
BlockRows: 0x00280091,
|
|
1796
|
-
BlockColumns: 0x00280092,
|
|
1797
|
-
RowOverlap: 0x00280093,
|
|
1798
|
-
ColumnOverlap: 0x00280094,
|
|
1780
|
+
CompressionRecognitionCode: 0x0028005f, // retired
|
|
1781
|
+
CompressionCode: 0x00280060, // retired
|
|
1782
|
+
CompressionOriginator: 0x00280061, // retired
|
|
1783
|
+
CompressionLabel: 0x00280062, // retired
|
|
1784
|
+
CompressionDescription: 0x00280063, // retired
|
|
1785
|
+
CompressionSequence: 0x00280065, // retired
|
|
1786
|
+
CompressionStepPointers: 0x00280066, // retired
|
|
1787
|
+
RepeatInterval: 0x00280068, // retired
|
|
1788
|
+
BitsGrouped: 0x00280069, // retired
|
|
1789
|
+
PerimeterTable: 0x00280070, // retired
|
|
1790
|
+
PerimeterValue: 0x00280071, // retired
|
|
1791
|
+
PredictorRows: 0x00280080, // retired
|
|
1792
|
+
PredictorColumns: 0x00280081, // retired
|
|
1793
|
+
PredictorConstants: 0x00280082, // retired
|
|
1794
|
+
BlockedPixels: 0x00280090, // retired
|
|
1795
|
+
BlockRows: 0x00280091, // retired
|
|
1796
|
+
BlockColumns: 0x00280092, // retired
|
|
1797
|
+
RowOverlap: 0x00280093, // retired
|
|
1798
|
+
ColumnOverlap: 0x00280094, // retired
|
|
1799
1799
|
BitsAllocated: 0x00280100,
|
|
1800
1800
|
BitsStored: 0x00280101,
|
|
1801
1801
|
HighBit: 0x00280102,
|
|
1802
1802
|
PixelRepresentation: 0x00280103,
|
|
1803
|
-
SmallestValidPixelValue: 0x00280104,
|
|
1804
|
-
LargestValidPixelValue: 0x00280105,
|
|
1803
|
+
SmallestValidPixelValue: 0x00280104, // retired
|
|
1804
|
+
LargestValidPixelValue: 0x00280105, // retired
|
|
1805
1805
|
SmallestImagePixelValue: 0x00280106,
|
|
1806
1806
|
LargestImagePixelValue: 0x00280107,
|
|
1807
1807
|
SmallestPixelValueInSeries: 0x00280108,
|
|
1808
1808
|
LargestPixelValueInSeries: 0x00280109,
|
|
1809
|
-
SmallestImagePixelValueInPlane: 0x00280110,
|
|
1810
|
-
LargestImagePixelValueInPlane: 0x00280111,
|
|
1809
|
+
SmallestImagePixelValueInPlane: 0x00280110, // retired
|
|
1810
|
+
LargestImagePixelValueInPlane: 0x00280111, // retired
|
|
1811
1811
|
PixelPaddingValue: 0x00280120,
|
|
1812
1812
|
PixelPaddingRangeLimit: 0x00280121,
|
|
1813
1813
|
FloatPixelPaddingValue: 0x00280122,
|
|
1814
1814
|
DoubleFloatPixelPaddingValue: 0x00280123,
|
|
1815
1815
|
FloatPixelPaddingRangeLimit: 0x00280124,
|
|
1816
1816
|
DoubleFloatPixelPaddingRangeLimit: 0x00280125,
|
|
1817
|
-
ImageLocation: 0x00280200,
|
|
1817
|
+
ImageLocation: 0x00280200, // retired
|
|
1818
1818
|
QualityControlImage: 0x00280300,
|
|
1819
1819
|
BurnedInAnnotation: 0x00280301,
|
|
1820
1820
|
RecognizableVisualFeatures: 0x00280302,
|
|
1821
1821
|
LongitudinalTemporalInformationModified: 0x00280303,
|
|
1822
1822
|
ReferencedColorPaletteInstanceUID: 0x00280304,
|
|
1823
|
-
TransformLabel: 0x00280400,
|
|
1824
|
-
TransformVersionNumber: 0x00280401,
|
|
1825
|
-
NumberOfTransformSteps: 0x00280402,
|
|
1826
|
-
SequenceOfCompressedData: 0x00280403,
|
|
1827
|
-
DetailsOfCoefficients: 0x00280404,
|
|
1828
|
-
RowsForNthOrderCoefficients: 0x00280400,
|
|
1829
|
-
ColumnsForNthOrderCoefficients: 0x00280401,
|
|
1830
|
-
CoefficientCoding: 0x00280402,
|
|
1831
|
-
CoefficientCodingPointers: 0x00280403,
|
|
1832
|
-
DCTLabel: 0x00280700,
|
|
1833
|
-
DataBlockDescription: 0x00280701,
|
|
1834
|
-
DataBlock: 0x00280702,
|
|
1835
|
-
NormalizationFactorFormat: 0x00280710,
|
|
1836
|
-
ZonalMapNumberFormat: 0x00280720,
|
|
1837
|
-
ZonalMapLocation: 0x00280721,
|
|
1838
|
-
ZonalMapFormat: 0x00280722,
|
|
1839
|
-
AdaptiveMapFormat: 0x00280730,
|
|
1840
|
-
CodeNumberFormat: 0x00280740,
|
|
1841
|
-
CodeLabel: 0x00280800,
|
|
1842
|
-
NumberOfTables: 0x00280802,
|
|
1843
|
-
CodeTableLocation: 0x00280803,
|
|
1844
|
-
BitsForCodeWord: 0x00280804,
|
|
1845
|
-
ImageDataLocation: 0x00280808,
|
|
1823
|
+
TransformLabel: 0x00280400, // retired
|
|
1824
|
+
TransformVersionNumber: 0x00280401, // retired
|
|
1825
|
+
NumberOfTransformSteps: 0x00280402, // retired
|
|
1826
|
+
SequenceOfCompressedData: 0x00280403, // retired
|
|
1827
|
+
DetailsOfCoefficients: 0x00280404, // retired
|
|
1828
|
+
RowsForNthOrderCoefficients: 0x00280400, // retired
|
|
1829
|
+
ColumnsForNthOrderCoefficients: 0x00280401, // retired
|
|
1830
|
+
CoefficientCoding: 0x00280402, // retired
|
|
1831
|
+
CoefficientCodingPointers: 0x00280403, // retired
|
|
1832
|
+
DCTLabel: 0x00280700, // retired
|
|
1833
|
+
DataBlockDescription: 0x00280701, // retired
|
|
1834
|
+
DataBlock: 0x00280702, // retired
|
|
1835
|
+
NormalizationFactorFormat: 0x00280710, // retired
|
|
1836
|
+
ZonalMapNumberFormat: 0x00280720, // retired
|
|
1837
|
+
ZonalMapLocation: 0x00280721, // retired
|
|
1838
|
+
ZonalMapFormat: 0x00280722, // retired
|
|
1839
|
+
AdaptiveMapFormat: 0x00280730, // retired
|
|
1840
|
+
CodeNumberFormat: 0x00280740, // retired
|
|
1841
|
+
CodeLabel: 0x00280800, // retired
|
|
1842
|
+
NumberOfTables: 0x00280802, // retired
|
|
1843
|
+
CodeTableLocation: 0x00280803, // retired
|
|
1844
|
+
BitsForCodeWord: 0x00280804, // retired
|
|
1845
|
+
ImageDataLocation: 0x00280808, // retired
|
|
1846
1846
|
PixelSpacingCalibrationType: 0x00280a02,
|
|
1847
1847
|
PixelSpacingCalibrationDescription: 0x00280a04,
|
|
1848
1848
|
PixelIntensityRelationship: 0x00281040,
|
|
@@ -1854,26 +1854,26 @@ exports.Tag = {
|
|
|
1854
1854
|
RescaleType: 0x00281054,
|
|
1855
1855
|
WindowCenterWidthExplanation: 0x00281055,
|
|
1856
1856
|
VOILUTFunction: 0x00281056,
|
|
1857
|
-
GrayScale: 0x00281080,
|
|
1857
|
+
GrayScale: 0x00281080, // retired
|
|
1858
1858
|
RecommendedViewingMode: 0x00281090,
|
|
1859
|
-
GrayLookupTableDescriptor: 0x00281100,
|
|
1859
|
+
GrayLookupTableDescriptor: 0x00281100, // retired
|
|
1860
1860
|
RedPaletteColorLookupTableDescriptor: 0x00281101,
|
|
1861
1861
|
GreenPaletteColorLookupTableDescriptor: 0x00281102,
|
|
1862
1862
|
BluePaletteColorLookupTableDescriptor: 0x00281103,
|
|
1863
1863
|
AlphaPaletteColorLookupTableDescriptor: 0x00281104,
|
|
1864
|
-
LargeRedPaletteColorLookupTableDescriptor: 0x00281111,
|
|
1865
|
-
LargeGreenPaletteColorLookupTableDescriptor: 0x00281112,
|
|
1866
|
-
LargeBluePaletteColorLookupTableDescriptor: 0x00281113,
|
|
1864
|
+
LargeRedPaletteColorLookupTableDescriptor: 0x00281111, // retired
|
|
1865
|
+
LargeGreenPaletteColorLookupTableDescriptor: 0x00281112, // retired
|
|
1866
|
+
LargeBluePaletteColorLookupTableDescriptor: 0x00281113, // retired
|
|
1867
1867
|
PaletteColorLookupTableUID: 0x00281199,
|
|
1868
|
-
GrayLookupTableData: 0x00281200,
|
|
1868
|
+
GrayLookupTableData: 0x00281200, // retired
|
|
1869
1869
|
RedPaletteColorLookupTableData: 0x00281201,
|
|
1870
1870
|
GreenPaletteColorLookupTableData: 0x00281202,
|
|
1871
1871
|
BluePaletteColorLookupTableData: 0x00281203,
|
|
1872
1872
|
AlphaPaletteColorLookupTableData: 0x00281204,
|
|
1873
|
-
LargeRedPaletteColorLookupTableData: 0x00281211,
|
|
1874
|
-
LargeGreenPaletteColorLookupTableData: 0x00281212,
|
|
1875
|
-
LargeBluePaletteColorLookupTableData: 0x00281213,
|
|
1876
|
-
LargePaletteColorLookupTableUID: 0x00281214,
|
|
1873
|
+
LargeRedPaletteColorLookupTableData: 0x00281211, // retired
|
|
1874
|
+
LargeGreenPaletteColorLookupTableData: 0x00281212, // retired
|
|
1875
|
+
LargeBluePaletteColorLookupTableData: 0x00281213, // retired
|
|
1876
|
+
LargePaletteColorLookupTableUID: 0x00281214, // retired
|
|
1877
1877
|
SegmentedRedPaletteColorLookupTableData: 0x00281221,
|
|
1878
1878
|
SegmentedGreenPaletteColorLookupTableData: 0x00281222,
|
|
1879
1879
|
SegmentedBluePaletteColorLookupTableData: 0x00281223,
|
|
@@ -1912,13 +1912,13 @@ exports.Tag = {
|
|
|
1912
1912
|
LUTData: 0x00283006,
|
|
1913
1913
|
VOILUTSequence: 0x00283010,
|
|
1914
1914
|
SoftcopyVOILUTSequence: 0x00283110,
|
|
1915
|
-
ImagePresentationComments: 0x00284000,
|
|
1916
|
-
BiPlaneAcquisitionSequence: 0x00285000,
|
|
1915
|
+
ImagePresentationComments: 0x00284000, // retired
|
|
1916
|
+
BiPlaneAcquisitionSequence: 0x00285000, // retired
|
|
1917
1917
|
RepresentativeFrameNumber: 0x00286010,
|
|
1918
1918
|
FrameNumbersOfInterest: 0x00286020,
|
|
1919
1919
|
FrameOfInterestDescription: 0x00286022,
|
|
1920
1920
|
FrameOfInterestType: 0x00286023,
|
|
1921
|
-
MaskPointers: 0x00286030,
|
|
1921
|
+
MaskPointers: 0x00286030, // retired
|
|
1922
1922
|
RWavePointer: 0x00286040,
|
|
1923
1923
|
MaskSubtractionSequence: 0x00286100,
|
|
1924
1924
|
MaskOperation: 0x00286101,
|
|
@@ -1979,7 +1979,7 @@ exports.Tag = {
|
|
|
1979
1979
|
DataPointRows: 0x00289001,
|
|
1980
1980
|
DataPointColumns: 0x00289002,
|
|
1981
1981
|
SignalDomainColumns: 0x00289003,
|
|
1982
|
-
LargestMonochromePixelValue: 0x00289099,
|
|
1982
|
+
LargestMonochromePixelValue: 0x00289099, // retired
|
|
1983
1983
|
DataRepresentation: 0x00289108,
|
|
1984
1984
|
PixelMeasuresSequence: 0x00289110,
|
|
1985
1985
|
FrameVOILUTSequence: 0x00289132,
|
|
@@ -2004,53 +2004,53 @@ exports.Tag = {
|
|
|
2004
2004
|
LUTFrameRange: 0x00289507,
|
|
2005
2005
|
ImageToEquipmentMappingMatrix: 0x00289520,
|
|
2006
2006
|
EquipmentCoordinateSystemIdentification: 0x00289537,
|
|
2007
|
-
StudyStatusID: 0x0032000a,
|
|
2008
|
-
StudyPriorityID: 0x0032000c,
|
|
2009
|
-
StudyIDIssuer: 0x00320012,
|
|
2010
|
-
StudyVerifiedDate: 0x00320032,
|
|
2011
|
-
StudyVerifiedTime: 0x00320033,
|
|
2012
|
-
StudyReadDate: 0x00320034,
|
|
2013
|
-
StudyReadTime: 0x00320035,
|
|
2014
|
-
ScheduledStudyStartDate: 0x00321000,
|
|
2015
|
-
ScheduledStudyStartTime: 0x00321001,
|
|
2016
|
-
ScheduledStudyStopDate: 0x00321010,
|
|
2017
|
-
ScheduledStudyStopTime: 0x00321011,
|
|
2018
|
-
ScheduledStudyLocation: 0x00321020,
|
|
2019
|
-
ScheduledStudyLocationAETitle: 0x00321021,
|
|
2020
|
-
ReasonForStudy: 0x00321030,
|
|
2007
|
+
StudyStatusID: 0x0032000a, // retired
|
|
2008
|
+
StudyPriorityID: 0x0032000c, // retired
|
|
2009
|
+
StudyIDIssuer: 0x00320012, // retired
|
|
2010
|
+
StudyVerifiedDate: 0x00320032, // retired
|
|
2011
|
+
StudyVerifiedTime: 0x00320033, // retired
|
|
2012
|
+
StudyReadDate: 0x00320034, // retired
|
|
2013
|
+
StudyReadTime: 0x00320035, // retired
|
|
2014
|
+
ScheduledStudyStartDate: 0x00321000, // retired
|
|
2015
|
+
ScheduledStudyStartTime: 0x00321001, // retired
|
|
2016
|
+
ScheduledStudyStopDate: 0x00321010, // retired
|
|
2017
|
+
ScheduledStudyStopTime: 0x00321011, // retired
|
|
2018
|
+
ScheduledStudyLocation: 0x00321020, // retired
|
|
2019
|
+
ScheduledStudyLocationAETitle: 0x00321021, // retired
|
|
2020
|
+
ReasonForStudy: 0x00321030, // retired
|
|
2021
2021
|
RequestingPhysicianIdentificationSequence: 0x00321031,
|
|
2022
2022
|
RequestingPhysician: 0x00321032,
|
|
2023
2023
|
RequestingService: 0x00321033,
|
|
2024
2024
|
RequestingServiceCodeSequence: 0x00321034,
|
|
2025
|
-
StudyArrivalDate: 0x00321040,
|
|
2026
|
-
StudyArrivalTime: 0x00321041,
|
|
2027
|
-
StudyCompletionDate: 0x00321050,
|
|
2028
|
-
StudyCompletionTime: 0x00321051,
|
|
2029
|
-
StudyComponentStatusID: 0x00321055,
|
|
2025
|
+
StudyArrivalDate: 0x00321040, // retired
|
|
2026
|
+
StudyArrivalTime: 0x00321041, // retired
|
|
2027
|
+
StudyCompletionDate: 0x00321050, // retired
|
|
2028
|
+
StudyCompletionTime: 0x00321051, // retired
|
|
2029
|
+
StudyComponentStatusID: 0x00321055, // retired
|
|
2030
2030
|
RequestedProcedureDescription: 0x00321060,
|
|
2031
2031
|
RequestedProcedureCodeSequence: 0x00321064,
|
|
2032
2032
|
RequestedContrastAgent: 0x00321070,
|
|
2033
|
-
StudyComments: 0x00324000,
|
|
2033
|
+
StudyComments: 0x00324000, // retired
|
|
2034
2034
|
ReferencedPatientAliasSequence: 0x00380004,
|
|
2035
2035
|
VisitStatusID: 0x00380008,
|
|
2036
2036
|
AdmissionID: 0x00380010,
|
|
2037
|
-
IssuerOfAdmissionID: 0x00380011,
|
|
2037
|
+
IssuerOfAdmissionID: 0x00380011, // retired
|
|
2038
2038
|
IssuerOfAdmissionIDSequence: 0x00380014,
|
|
2039
2039
|
RouteOfAdmissions: 0x00380016,
|
|
2040
|
-
ScheduledAdmissionDate: 0x0038001a,
|
|
2041
|
-
ScheduledAdmissionTime: 0x0038001b,
|
|
2042
|
-
ScheduledDischargeDate: 0x0038001c,
|
|
2043
|
-
ScheduledDischargeTime: 0x0038001d,
|
|
2044
|
-
ScheduledPatientInstitutionResidence: 0x0038001e,
|
|
2040
|
+
ScheduledAdmissionDate: 0x0038001a, // retired
|
|
2041
|
+
ScheduledAdmissionTime: 0x0038001b, // retired
|
|
2042
|
+
ScheduledDischargeDate: 0x0038001c, // retired
|
|
2043
|
+
ScheduledDischargeTime: 0x0038001d, // retired
|
|
2044
|
+
ScheduledPatientInstitutionResidence: 0x0038001e, // retired
|
|
2045
2045
|
AdmittingDate: 0x00380020,
|
|
2046
2046
|
AdmittingTime: 0x00380021,
|
|
2047
|
-
DischargeDate: 0x00380030,
|
|
2048
|
-
DischargeTime: 0x00380032,
|
|
2049
|
-
DischargeDiagnosisDescription: 0x00380040,
|
|
2050
|
-
DischargeDiagnosisCodeSequence: 0x00380044,
|
|
2047
|
+
DischargeDate: 0x00380030, // retired
|
|
2048
|
+
DischargeTime: 0x00380032, // retired
|
|
2049
|
+
DischargeDiagnosisDescription: 0x00380040, // retired
|
|
2050
|
+
DischargeDiagnosisCodeSequence: 0x00380044, // retired
|
|
2051
2051
|
SpecialNeeds: 0x00380050,
|
|
2052
2052
|
ServiceEpisodeID: 0x00380060,
|
|
2053
|
-
IssuerOfServiceEpisodeID: 0x00380061,
|
|
2053
|
+
IssuerOfServiceEpisodeID: 0x00380061, // retired
|
|
2054
2054
|
ServiceEpisodeDescription: 0x00380062,
|
|
2055
2055
|
IssuerOfServiceEpisodeIDSequence: 0x00380064,
|
|
2056
2056
|
PertinentDocumentsSequence: 0x00380100,
|
|
@@ -2146,13 +2146,13 @@ exports.Tag = {
|
|
|
2146
2146
|
Quantity: 0x00400294,
|
|
2147
2147
|
MeasuringUnitsSequence: 0x00400295,
|
|
2148
2148
|
BillingItemSequence: 0x00400296,
|
|
2149
|
-
TotalTimeOfFluoroscopy: 0x00400300,
|
|
2150
|
-
TotalNumberOfExposures: 0x00400301,
|
|
2149
|
+
TotalTimeOfFluoroscopy: 0x00400300, // retired
|
|
2150
|
+
TotalNumberOfExposures: 0x00400301, // retired
|
|
2151
2151
|
EntranceDose: 0x00400302,
|
|
2152
2152
|
ExposedArea: 0x00400303,
|
|
2153
2153
|
DistanceSourceToEntrance: 0x00400306,
|
|
2154
|
-
DistanceSourceToSupport: 0x00400307,
|
|
2155
|
-
ExposureDoseSequence: 0x0040030e,
|
|
2154
|
+
DistanceSourceToSupport: 0x00400307, // retired
|
|
2155
|
+
ExposureDoseSequence: 0x0040030e, // retired
|
|
2156
2156
|
CommentsOnRadiationDose: 0x00400310,
|
|
2157
2157
|
XRayOutput: 0x00400312,
|
|
2158
2158
|
HalfValueLayer: 0x00400314,
|
|
@@ -2161,23 +2161,23 @@ exports.Tag = {
|
|
|
2161
2161
|
BillingProcedureStepSequence: 0x00400320,
|
|
2162
2162
|
FilmConsumptionSequence: 0x00400321,
|
|
2163
2163
|
BillingSuppliesAndDevicesSequence: 0x00400324,
|
|
2164
|
-
ReferencedProcedureStepSequence: 0x00400330,
|
|
2164
|
+
ReferencedProcedureStepSequence: 0x00400330, // retired
|
|
2165
2165
|
PerformedSeriesSequence: 0x00400340,
|
|
2166
2166
|
CommentsOnTheScheduledProcedureStep: 0x00400400,
|
|
2167
2167
|
ProtocolContextSequence: 0x00400440,
|
|
2168
2168
|
ContentItemModifierSequence: 0x00400441,
|
|
2169
2169
|
ScheduledSpecimenSequence: 0x00400500,
|
|
2170
|
-
SpecimenAccessionNumber: 0x0040050a,
|
|
2170
|
+
SpecimenAccessionNumber: 0x0040050a, // retired
|
|
2171
2171
|
ContainerIdentifier: 0x00400512,
|
|
2172
2172
|
IssuerOfTheContainerIdentifierSequence: 0x00400513,
|
|
2173
2173
|
AlternateContainerIdentifierSequence: 0x00400515,
|
|
2174
2174
|
ContainerTypeCodeSequence: 0x00400518,
|
|
2175
2175
|
ContainerDescription: 0x0040051a,
|
|
2176
2176
|
ContainerComponentSequence: 0x00400520,
|
|
2177
|
-
SpecimenSequence: 0x00400550,
|
|
2177
|
+
SpecimenSequence: 0x00400550, // retired
|
|
2178
2178
|
SpecimenIdentifier: 0x00400551,
|
|
2179
|
-
SpecimenDescriptionSequenceTrial: 0x00400552,
|
|
2180
|
-
SpecimenDescriptionTrial: 0x00400553,
|
|
2179
|
+
SpecimenDescriptionSequenceTrial: 0x00400552, // retired
|
|
2180
|
+
SpecimenDescriptionTrial: 0x00400553, // retired
|
|
2181
2181
|
SpecimenUID: 0x00400554,
|
|
2182
2182
|
AcquisitionContextSequence: 0x00400555,
|
|
2183
2183
|
AcquisitionContextDescription: 0x00400556,
|
|
@@ -2189,39 +2189,39 @@ exports.Tag = {
|
|
|
2189
2189
|
SpecimenPreparationSequence: 0x00400610,
|
|
2190
2190
|
SpecimenPreparationStepContentItemSequence: 0x00400612,
|
|
2191
2191
|
SpecimenLocalizationContentItemSequence: 0x00400620,
|
|
2192
|
-
SlideIdentifier: 0x004006fa,
|
|
2192
|
+
SlideIdentifier: 0x004006fa, // retired
|
|
2193
2193
|
ImageCenterPointCoordinatesSequence: 0x0040071a,
|
|
2194
2194
|
XOffsetInSlideCoordinateSystem: 0x0040072a,
|
|
2195
2195
|
YOffsetInSlideCoordinateSystem: 0x0040073a,
|
|
2196
2196
|
ZOffsetInSlideCoordinateSystem: 0x0040074a,
|
|
2197
|
-
PixelSpacingSequence: 0x004008d8,
|
|
2198
|
-
CoordinateSystemAxisCodeSequence: 0x004008da,
|
|
2197
|
+
PixelSpacingSequence: 0x004008d8, // retired
|
|
2198
|
+
CoordinateSystemAxisCodeSequence: 0x004008da, // retired
|
|
2199
2199
|
MeasurementUnitsCodeSequence: 0x004008ea,
|
|
2200
|
-
VitalStainCodeSequenceTrial: 0x004009f8,
|
|
2200
|
+
VitalStainCodeSequenceTrial: 0x004009f8, // retired
|
|
2201
2201
|
RequestedProcedureID: 0x00401001,
|
|
2202
2202
|
ReasonForTheRequestedProcedure: 0x00401002,
|
|
2203
2203
|
RequestedProcedurePriority: 0x00401003,
|
|
2204
2204
|
PatientTransportArrangements: 0x00401004,
|
|
2205
2205
|
RequestedProcedureLocation: 0x00401005,
|
|
2206
|
-
PlacerOrderNumberProcedure: 0x00401006,
|
|
2207
|
-
FillerOrderNumberProcedure: 0x00401007,
|
|
2206
|
+
PlacerOrderNumberProcedure: 0x00401006, // retired
|
|
2207
|
+
FillerOrderNumberProcedure: 0x00401007, // retired
|
|
2208
2208
|
ConfidentialityCode: 0x00401008,
|
|
2209
2209
|
ReportingPriority: 0x00401009,
|
|
2210
2210
|
ReasonForRequestedProcedureCodeSequence: 0x0040100a,
|
|
2211
2211
|
NamesOfIntendedRecipientsOfResults: 0x00401010,
|
|
2212
2212
|
IntendedRecipientsOfResultsIdentificationSequence: 0x00401011,
|
|
2213
2213
|
ReasonForPerformedProcedureCodeSequence: 0x00401012,
|
|
2214
|
-
RequestedProcedureDescriptionTrial: 0x00401060,
|
|
2214
|
+
RequestedProcedureDescriptionTrial: 0x00401060, // retired
|
|
2215
2215
|
PersonIdentificationCodeSequence: 0x00401101,
|
|
2216
2216
|
PersonAddress: 0x00401102,
|
|
2217
2217
|
PersonTelephoneNumbers: 0x00401103,
|
|
2218
2218
|
PersonTelecomInformation: 0x00401104,
|
|
2219
2219
|
RequestedProcedureComments: 0x00401400,
|
|
2220
|
-
ReasonForTheImagingServiceRequest: 0x00402001,
|
|
2220
|
+
ReasonForTheImagingServiceRequest: 0x00402001, // retired
|
|
2221
2221
|
IssueDateOfImagingServiceRequest: 0x00402004,
|
|
2222
2222
|
IssueTimeOfImagingServiceRequest: 0x00402005,
|
|
2223
|
-
PlacerOrderNumberImagingServiceRequestRetired: 0x00402006,
|
|
2224
|
-
FillerOrderNumberImagingServiceRequestRetired: 0x00402007,
|
|
2223
|
+
PlacerOrderNumberImagingServiceRequestRetired: 0x00402006, // retired
|
|
2224
|
+
FillerOrderNumberImagingServiceRequestRetired: 0x00402007, // retired
|
|
2225
2225
|
OrderEnteredBy: 0x00402008,
|
|
2226
2226
|
OrderEntererLocation: 0x00402009,
|
|
2227
2227
|
OrderCallbackPhoneNumber: 0x00402010,
|
|
@@ -2230,32 +2230,32 @@ exports.Tag = {
|
|
|
2230
2230
|
FillerOrderNumberImagingServiceRequest: 0x00402017,
|
|
2231
2231
|
ImagingServiceRequestComments: 0x00402400,
|
|
2232
2232
|
ConfidentialityConstraintOnPatientDataDescription: 0x00403001,
|
|
2233
|
-
GeneralPurposeScheduledProcedureStepStatus: 0x00404001,
|
|
2234
|
-
GeneralPurposePerformedProcedureStepStatus: 0x00404002,
|
|
2235
|
-
GeneralPurposeScheduledProcedureStepPriority: 0x00404003,
|
|
2236
|
-
ScheduledProcessingApplicationsCodeSequence: 0x00404004,
|
|
2233
|
+
GeneralPurposeScheduledProcedureStepStatus: 0x00404001, // retired
|
|
2234
|
+
GeneralPurposePerformedProcedureStepStatus: 0x00404002, // retired
|
|
2235
|
+
GeneralPurposeScheduledProcedureStepPriority: 0x00404003, // retired
|
|
2236
|
+
ScheduledProcessingApplicationsCodeSequence: 0x00404004, // retired
|
|
2237
2237
|
ScheduledProcedureStepStartDateTime: 0x00404005,
|
|
2238
|
-
MultipleCopiesFlag: 0x00404006,
|
|
2239
|
-
PerformedProcessingApplicationsCodeSequence: 0x00404007,
|
|
2238
|
+
MultipleCopiesFlag: 0x00404006, // retired
|
|
2239
|
+
PerformedProcessingApplicationsCodeSequence: 0x00404007, // retired
|
|
2240
2240
|
HumanPerformerCodeSequence: 0x00404009,
|
|
2241
2241
|
ScheduledProcedureStepModificationDateTime: 0x00404010,
|
|
2242
2242
|
ExpectedCompletionDateTime: 0x00404011,
|
|
2243
|
-
ResultingGeneralPurposePerformedProcedureStepsSequence: 0x00404015,
|
|
2244
|
-
ReferencedGeneralPurposeScheduledProcedureStepSequence: 0x00404016,
|
|
2243
|
+
ResultingGeneralPurposePerformedProcedureStepsSequence: 0x00404015, // retired
|
|
2244
|
+
ReferencedGeneralPurposeScheduledProcedureStepSequence: 0x00404016, // retired
|
|
2245
2245
|
ScheduledWorkitemCodeSequence: 0x00404018,
|
|
2246
2246
|
PerformedWorkitemCodeSequence: 0x00404019,
|
|
2247
|
-
InputAvailabilityFlag: 0x00404020,
|
|
2247
|
+
InputAvailabilityFlag: 0x00404020, // retired
|
|
2248
2248
|
InputInformationSequence: 0x00404021,
|
|
2249
|
-
RelevantInformationSequence: 0x00404022,
|
|
2250
|
-
ReferencedGeneralPurposeScheduledProcedureStepTransactionUID: 0x00404023,
|
|
2249
|
+
RelevantInformationSequence: 0x00404022, // retired
|
|
2250
|
+
ReferencedGeneralPurposeScheduledProcedureStepTransactionUID: 0x00404023, // retired
|
|
2251
2251
|
ScheduledStationNameCodeSequence: 0x00404025,
|
|
2252
2252
|
ScheduledStationClassCodeSequence: 0x00404026,
|
|
2253
2253
|
ScheduledStationGeographicLocationCodeSequence: 0x00404027,
|
|
2254
2254
|
PerformedStationNameCodeSequence: 0x00404028,
|
|
2255
2255
|
PerformedStationClassCodeSequence: 0x00404029,
|
|
2256
2256
|
PerformedStationGeographicLocationCodeSequence: 0x00404030,
|
|
2257
|
-
RequestedSubsequentWorkitemCodeSequence: 0x00404031,
|
|
2258
|
-
NonDICOMOutputCodeSequence: 0x00404032,
|
|
2257
|
+
RequestedSubsequentWorkitemCodeSequence: 0x00404031, // retired
|
|
2258
|
+
NonDICOMOutputCodeSequence: 0x00404032, // retired
|
|
2259
2259
|
OutputInformationSequence: 0x00404033,
|
|
2260
2260
|
ScheduledHumanPerformersSequence: 0x00404034,
|
|
2261
2261
|
ActualHumanPerformersSequence: 0x00404035,
|
|
@@ -2286,51 +2286,51 @@ exports.Tag = {
|
|
|
2286
2286
|
QuantityDefinitionSequence: 0x00409220,
|
|
2287
2287
|
RealWorldValueIntercept: 0x00409224,
|
|
2288
2288
|
RealWorldValueSlope: 0x00409225,
|
|
2289
|
-
FindingsFlagTrial: 0x0040a007,
|
|
2289
|
+
FindingsFlagTrial: 0x0040a007, // retired
|
|
2290
2290
|
RelationshipType: 0x0040a010,
|
|
2291
|
-
FindingsSequenceTrial: 0x0040a020,
|
|
2292
|
-
FindingsGroupUIDTrial: 0x0040a021,
|
|
2293
|
-
ReferencedFindingsGroupUIDTrial: 0x0040a022,
|
|
2294
|
-
FindingsGroupRecordingDateTrial: 0x0040a023,
|
|
2295
|
-
FindingsGroupRecordingTimeTrial: 0x0040a024,
|
|
2296
|
-
FindingsSourceCategoryCodeSequenceTrial: 0x0040a026,
|
|
2291
|
+
FindingsSequenceTrial: 0x0040a020, // retired
|
|
2292
|
+
FindingsGroupUIDTrial: 0x0040a021, // retired
|
|
2293
|
+
ReferencedFindingsGroupUIDTrial: 0x0040a022, // retired
|
|
2294
|
+
FindingsGroupRecordingDateTrial: 0x0040a023, // retired
|
|
2295
|
+
FindingsGroupRecordingTimeTrial: 0x0040a024, // retired
|
|
2296
|
+
FindingsSourceCategoryCodeSequenceTrial: 0x0040a026, // retired
|
|
2297
2297
|
VerifyingOrganization: 0x0040a027,
|
|
2298
|
-
DocumentingOrganizationIdentifierCodeSequenceTrial: 0x0040a028,
|
|
2298
|
+
DocumentingOrganizationIdentifierCodeSequenceTrial: 0x0040a028, // retired
|
|
2299
2299
|
VerificationDateTime: 0x0040a030,
|
|
2300
2300
|
ObservationDateTime: 0x0040a032,
|
|
2301
2301
|
ValueType: 0x0040a040,
|
|
2302
2302
|
ConceptNameCodeSequence: 0x0040a043,
|
|
2303
|
-
MeasurementPrecisionDescriptionTrial: 0x0040a047,
|
|
2303
|
+
MeasurementPrecisionDescriptionTrial: 0x0040a047, // retired
|
|
2304
2304
|
ContinuityOfContent: 0x0040a050,
|
|
2305
|
-
UrgencyOrPriorityAlertsTrial: 0x0040a057,
|
|
2306
|
-
SequencingIndicatorTrial: 0x0040a060,
|
|
2307
|
-
DocumentIdentifierCodeSequenceTrial: 0x0040a066,
|
|
2308
|
-
DocumentAuthorTrial: 0x0040a067,
|
|
2309
|
-
DocumentAuthorIdentifierCodeSequenceTrial: 0x0040a068,
|
|
2310
|
-
IdentifierCodeSequenceTrial: 0x0040a070,
|
|
2305
|
+
UrgencyOrPriorityAlertsTrial: 0x0040a057, // retired
|
|
2306
|
+
SequencingIndicatorTrial: 0x0040a060, // retired
|
|
2307
|
+
DocumentIdentifierCodeSequenceTrial: 0x0040a066, // retired
|
|
2308
|
+
DocumentAuthorTrial: 0x0040a067, // retired
|
|
2309
|
+
DocumentAuthorIdentifierCodeSequenceTrial: 0x0040a068, // retired
|
|
2310
|
+
IdentifierCodeSequenceTrial: 0x0040a070, // retired
|
|
2311
2311
|
VerifyingObserverSequence: 0x0040a073,
|
|
2312
|
-
ObjectBinaryIdentifierTrial: 0x0040a074,
|
|
2312
|
+
ObjectBinaryIdentifierTrial: 0x0040a074, // retired
|
|
2313
2313
|
VerifyingObserverName: 0x0040a075,
|
|
2314
|
-
DocumentingObserverIdentifierCodeSequenceTrial: 0x0040a076,
|
|
2314
|
+
DocumentingObserverIdentifierCodeSequenceTrial: 0x0040a076, // retired
|
|
2315
2315
|
AuthorObserverSequence: 0x0040a078,
|
|
2316
2316
|
ParticipantSequence: 0x0040a07a,
|
|
2317
2317
|
CustodialOrganizationSequence: 0x0040a07c,
|
|
2318
2318
|
ParticipationType: 0x0040a080,
|
|
2319
2319
|
ParticipationDateTime: 0x0040a082,
|
|
2320
2320
|
ObserverType: 0x0040a084,
|
|
2321
|
-
ProcedureIdentifierCodeSequenceTrial: 0x0040a085,
|
|
2321
|
+
ProcedureIdentifierCodeSequenceTrial: 0x0040a085, // retired
|
|
2322
2322
|
VerifyingObserverIdentificationCodeSequence: 0x0040a088,
|
|
2323
|
-
ObjectDirectoryBinaryIdentifierTrial: 0x0040a089,
|
|
2324
|
-
EquivalentCDADocumentSequence: 0x0040a090,
|
|
2323
|
+
ObjectDirectoryBinaryIdentifierTrial: 0x0040a089, // retired
|
|
2324
|
+
EquivalentCDADocumentSequence: 0x0040a090, // retired
|
|
2325
2325
|
ReferencedWaveformChannels: 0x0040a0b0,
|
|
2326
|
-
DateOfDocumentOrVerbalTransactionTrial: 0x0040a110,
|
|
2327
|
-
TimeOfDocumentCreationOrVerbalTransactionTrial: 0x0040a112,
|
|
2326
|
+
DateOfDocumentOrVerbalTransactionTrial: 0x0040a110, // retired
|
|
2327
|
+
TimeOfDocumentCreationOrVerbalTransactionTrial: 0x0040a112, // retired
|
|
2328
2328
|
DateTime: 0x0040a120,
|
|
2329
2329
|
Date: 0x0040a121,
|
|
2330
2330
|
Time: 0x0040a122,
|
|
2331
2331
|
PersonName: 0x0040a123,
|
|
2332
2332
|
UID: 0x0040a124,
|
|
2333
|
-
ReportStatusIDTrial: 0x0040a125,
|
|
2333
|
+
ReportStatusIDTrial: 0x0040a125, // retired
|
|
2334
2334
|
TemporalRangeType: 0x0040a130,
|
|
2335
2335
|
ReferencedSamplePositions: 0x0040a132,
|
|
2336
2336
|
ReferencedFrameNumbers: 0x0040a136,
|
|
@@ -2340,45 +2340,45 @@ exports.Tag = {
|
|
|
2340
2340
|
FloatingPointValue: 0x0040a161,
|
|
2341
2341
|
RationalNumeratorValue: 0x0040a162,
|
|
2342
2342
|
RationalDenominatorValue: 0x0040a163,
|
|
2343
|
-
ObservationCategoryCodeSequenceTrial: 0x0040a167,
|
|
2343
|
+
ObservationCategoryCodeSequenceTrial: 0x0040a167, // retired
|
|
2344
2344
|
ConceptCodeSequence: 0x0040a168,
|
|
2345
|
-
BibliographicCitationTrial: 0x0040a16a,
|
|
2345
|
+
BibliographicCitationTrial: 0x0040a16a, // retired
|
|
2346
2346
|
PurposeOfReferenceCodeSequence: 0x0040a170,
|
|
2347
2347
|
ObservationUID: 0x0040a171,
|
|
2348
|
-
ReferencedObservationUIDTrial: 0x0040a172,
|
|
2349
|
-
ReferencedObservationClassTrial: 0x0040a173,
|
|
2350
|
-
ReferencedObjectObservationClassTrial: 0x0040a174,
|
|
2348
|
+
ReferencedObservationUIDTrial: 0x0040a172, // retired
|
|
2349
|
+
ReferencedObservationClassTrial: 0x0040a173, // retired
|
|
2350
|
+
ReferencedObjectObservationClassTrial: 0x0040a174, // retired
|
|
2351
2351
|
AnnotationGroupNumber: 0x0040a180,
|
|
2352
|
-
ObservationDateTrial: 0x0040a192,
|
|
2353
|
-
ObservationTimeTrial: 0x0040a193,
|
|
2354
|
-
MeasurementAutomationTrial: 0x0040a194,
|
|
2352
|
+
ObservationDateTrial: 0x0040a192, // retired
|
|
2353
|
+
ObservationTimeTrial: 0x0040a193, // retired
|
|
2354
|
+
MeasurementAutomationTrial: 0x0040a194, // retired
|
|
2355
2355
|
ModifierCodeSequence: 0x0040a195,
|
|
2356
|
-
IdentificationDescriptionTrial: 0x0040a224,
|
|
2357
|
-
CoordinatesSetGeometricTypeTrial: 0x0040a290,
|
|
2358
|
-
AlgorithmCodeSequenceTrial: 0x0040a296,
|
|
2359
|
-
AlgorithmDescriptionTrial: 0x0040a297,
|
|
2360
|
-
PixelCoordinatesSetTrial: 0x0040a29a,
|
|
2356
|
+
IdentificationDescriptionTrial: 0x0040a224, // retired
|
|
2357
|
+
CoordinatesSetGeometricTypeTrial: 0x0040a290, // retired
|
|
2358
|
+
AlgorithmCodeSequenceTrial: 0x0040a296, // retired
|
|
2359
|
+
AlgorithmDescriptionTrial: 0x0040a297, // retired
|
|
2360
|
+
PixelCoordinatesSetTrial: 0x0040a29a, // retired
|
|
2361
2361
|
MeasuredValueSequence: 0x0040a300,
|
|
2362
2362
|
NumericValueQualifierCodeSequence: 0x0040a301,
|
|
2363
|
-
CurrentObserverTrial: 0x0040a307,
|
|
2363
|
+
CurrentObserverTrial: 0x0040a307, // retired
|
|
2364
2364
|
NumericValue: 0x0040a30a,
|
|
2365
|
-
ReferencedAccessionSequenceTrial: 0x0040a313,
|
|
2366
|
-
ReportStatusCommentTrial: 0x0040a33a,
|
|
2367
|
-
ProcedureContextSequenceTrial: 0x0040a340,
|
|
2368
|
-
VerbalSourceTrial: 0x0040a352,
|
|
2369
|
-
AddressTrial: 0x0040a353,
|
|
2370
|
-
TelephoneNumberTrial: 0x0040a354,
|
|
2371
|
-
VerbalSourceIdentifierCodeSequenceTrial: 0x0040a358,
|
|
2365
|
+
ReferencedAccessionSequenceTrial: 0x0040a313, // retired
|
|
2366
|
+
ReportStatusCommentTrial: 0x0040a33a, // retired
|
|
2367
|
+
ProcedureContextSequenceTrial: 0x0040a340, // retired
|
|
2368
|
+
VerbalSourceTrial: 0x0040a352, // retired
|
|
2369
|
+
AddressTrial: 0x0040a353, // retired
|
|
2370
|
+
TelephoneNumberTrial: 0x0040a354, // retired
|
|
2371
|
+
VerbalSourceIdentifierCodeSequenceTrial: 0x0040a358, // retired
|
|
2372
2372
|
PredecessorDocumentsSequence: 0x0040a360,
|
|
2373
2373
|
ReferencedRequestSequence: 0x0040a370,
|
|
2374
2374
|
PerformedProcedureCodeSequence: 0x0040a372,
|
|
2375
2375
|
CurrentRequestedProcedureEvidenceSequence: 0x0040a375,
|
|
2376
|
-
ReportDetailSequenceTrial: 0x0040a380,
|
|
2376
|
+
ReportDetailSequenceTrial: 0x0040a380, // retired
|
|
2377
2377
|
PertinentOtherEvidenceSequence: 0x0040a385,
|
|
2378
2378
|
HL7StructuredDocumentReferenceSequence: 0x0040a390,
|
|
2379
|
-
ObservationSubjectUIDTrial: 0x0040a402,
|
|
2380
|
-
ObservationSubjectClassTrial: 0x0040a403,
|
|
2381
|
-
ObservationSubjectTypeCodeSequenceTrial: 0x0040a404,
|
|
2379
|
+
ObservationSubjectUIDTrial: 0x0040a402, // retired
|
|
2380
|
+
ObservationSubjectClassTrial: 0x0040a403, // retired
|
|
2381
|
+
ObservationSubjectTypeCodeSequenceTrial: 0x0040a404, // retired
|
|
2382
2382
|
CompletionFlag: 0x0040a491,
|
|
2383
2383
|
CompletionFlagDescription: 0x0040a492,
|
|
2384
2384
|
VerificationFlag: 0x0040a493,
|
|
@@ -2386,21 +2386,21 @@ exports.Tag = {
|
|
|
2386
2386
|
PreliminaryFlag: 0x0040a496,
|
|
2387
2387
|
ContentTemplateSequence: 0x0040a504,
|
|
2388
2388
|
IdenticalDocumentsSequence: 0x0040a525,
|
|
2389
|
-
ObservationSubjectContextFlagTrial: 0x0040a600,
|
|
2390
|
-
ObserverContextFlagTrial: 0x0040a601,
|
|
2391
|
-
ProcedureContextFlagTrial: 0x0040a603,
|
|
2389
|
+
ObservationSubjectContextFlagTrial: 0x0040a600, // retired
|
|
2390
|
+
ObserverContextFlagTrial: 0x0040a601, // retired
|
|
2391
|
+
ProcedureContextFlagTrial: 0x0040a603, // retired
|
|
2392
2392
|
ContentSequence: 0x0040a730,
|
|
2393
|
-
RelationshipSequenceTrial: 0x0040a731,
|
|
2394
|
-
RelationshipTypeCodeSequenceTrial: 0x0040a732,
|
|
2395
|
-
LanguageCodeSequenceTrial: 0x0040a744,
|
|
2396
|
-
UniformResourceLocatorTrial: 0x0040a992,
|
|
2393
|
+
RelationshipSequenceTrial: 0x0040a731, // retired
|
|
2394
|
+
RelationshipTypeCodeSequenceTrial: 0x0040a732, // retired
|
|
2395
|
+
LanguageCodeSequenceTrial: 0x0040a744, // retired
|
|
2396
|
+
UniformResourceLocatorTrial: 0x0040a992, // retired
|
|
2397
2397
|
WaveformAnnotationSequence: 0x0040b020,
|
|
2398
2398
|
TemplateIdentifier: 0x0040db00,
|
|
2399
|
-
TemplateVersion: 0x0040db06,
|
|
2400
|
-
TemplateLocalVersion: 0x0040db07,
|
|
2401
|
-
TemplateExtensionFlag: 0x0040db0b,
|
|
2402
|
-
TemplateExtensionOrganizationUID: 0x0040db0c,
|
|
2403
|
-
TemplateExtensionCreatorUID: 0x0040db0d,
|
|
2399
|
+
TemplateVersion: 0x0040db06, // retired
|
|
2400
|
+
TemplateLocalVersion: 0x0040db07, // retired
|
|
2401
|
+
TemplateExtensionFlag: 0x0040db0b, // retired
|
|
2402
|
+
TemplateExtensionOrganizationUID: 0x0040db0c, // retired
|
|
2403
|
+
TemplateExtensionCreatorUID: 0x0040db0d, // retired
|
|
2404
2404
|
ReferencedContentItemIdentifier: 0x0040db73,
|
|
2405
2405
|
HL7InstanceIdentifier: 0x0040e001,
|
|
2406
2406
|
HL7DocumentEffectiveTime: 0x0040e004,
|
|
@@ -2677,8 +2677,8 @@ exports.Tag = {
|
|
|
2677
2677
|
ScatterFractionFactor: 0x00541323,
|
|
2678
2678
|
DeadTimeFactor: 0x00541324,
|
|
2679
2679
|
ImageIndex: 0x00541330,
|
|
2680
|
-
CountsIncluded: 0x00541400,
|
|
2681
|
-
DeadTimeCorrectionFlag: 0x00541401,
|
|
2680
|
+
CountsIncluded: 0x00541400, // retired
|
|
2681
|
+
DeadTimeCorrectionFlag: 0x00541401, // retired
|
|
2682
2682
|
HistogramSequence: 0x00603000,
|
|
2683
2683
|
HistogramNumberOfBins: 0x00603002,
|
|
2684
2684
|
HistogramFirstBinValue: 0x00603004,
|
|
@@ -2740,13 +2740,13 @@ exports.Tag = {
|
|
|
2740
2740
|
VectorDimensionality: 0x0066001f,
|
|
2741
2741
|
VectorAccuracy: 0x00660020,
|
|
2742
2742
|
VectorCoordinateData: 0x00660021,
|
|
2743
|
-
TrianglePointIndexList: 0x00660023,
|
|
2744
|
-
EdgePointIndexList: 0x00660024,
|
|
2745
|
-
VertexPointIndexList: 0x00660025,
|
|
2743
|
+
TrianglePointIndexList: 0x00660023, // retired
|
|
2744
|
+
EdgePointIndexList: 0x00660024, // retired
|
|
2745
|
+
VertexPointIndexList: 0x00660025, // retired
|
|
2746
2746
|
TriangleStripSequence: 0x00660026,
|
|
2747
2747
|
TriangleFanSequence: 0x00660027,
|
|
2748
2748
|
LineSequence: 0x00660028,
|
|
2749
|
-
PrimitivePointIndexList: 0x00660029,
|
|
2749
|
+
PrimitivePointIndexList: 0x00660029, // retired
|
|
2750
2750
|
SurfaceCount: 0x0066002a,
|
|
2751
2751
|
ReferencedSurfaceSequence: 0x0066002b,
|
|
2752
2752
|
ReferencedSurfaceNumber: 0x0066002c,
|
|
@@ -2869,18 +2869,18 @@ exports.Tag = {
|
|
|
2869
2869
|
GraphicData: 0x00700022,
|
|
2870
2870
|
GraphicType: 0x00700023,
|
|
2871
2871
|
GraphicFilled: 0x00700024,
|
|
2872
|
-
ImageRotationRetired: 0x00700040,
|
|
2872
|
+
ImageRotationRetired: 0x00700040, // retired
|
|
2873
2873
|
ImageHorizontalFlip: 0x00700041,
|
|
2874
2874
|
ImageRotation: 0x00700042,
|
|
2875
|
-
DisplayedAreaTopLeftHandCornerTrial: 0x00700050,
|
|
2876
|
-
DisplayedAreaBottomRightHandCornerTrial: 0x00700051,
|
|
2875
|
+
DisplayedAreaTopLeftHandCornerTrial: 0x00700050, // retired
|
|
2876
|
+
DisplayedAreaBottomRightHandCornerTrial: 0x00700051, // retired
|
|
2877
2877
|
DisplayedAreaTopLeftHandCorner: 0x00700052,
|
|
2878
2878
|
DisplayedAreaBottomRightHandCorner: 0x00700053,
|
|
2879
2879
|
DisplayedAreaSelectionSequence: 0x0070005a,
|
|
2880
2880
|
GraphicLayerSequence: 0x00700060,
|
|
2881
2881
|
GraphicLayerOrder: 0x00700062,
|
|
2882
2882
|
GraphicLayerRecommendedDisplayGrayscaleValue: 0x00700066,
|
|
2883
|
-
GraphicLayerRecommendedDisplayRGBValue: 0x00700067,
|
|
2883
|
+
GraphicLayerRecommendedDisplayRGBValue: 0x00700067, // retired
|
|
2884
2884
|
GraphicLayerDescription: 0x00700068,
|
|
2885
2885
|
ContentLabel: 0x00700080,
|
|
2886
2886
|
ContentDescription: 0x00700081,
|
|
@@ -2969,7 +2969,7 @@ exports.Tag = {
|
|
|
2969
2969
|
InputSequencePositionIndex: 0x00701203,
|
|
2970
2970
|
Crop: 0x00701204,
|
|
2971
2971
|
CroppingSpecificationIndex: 0x00701205,
|
|
2972
|
-
CompositingMethod: 0x00701206,
|
|
2972
|
+
CompositingMethod: 0x00701206, // retired
|
|
2973
2973
|
VolumetricPresentationInputNumber: 0x00701207,
|
|
2974
2974
|
ImageVolumeGeometry: 0x00701208,
|
|
2975
2975
|
VolumetricPresentationInputSetUID: 0x00701209,
|
|
@@ -3172,7 +3172,7 @@ exports.Tag = {
|
|
|
3172
3172
|
ProcedureStepDiscontinuationReasonCodeSequence: 0x0074100e,
|
|
3173
3173
|
BeamTaskSequence: 0x00741020,
|
|
3174
3174
|
BeamTaskType: 0x00741022,
|
|
3175
|
-
BeamOrderIndexTrial: 0x00741024,
|
|
3175
|
+
BeamOrderIndexTrial: 0x00741024, // retired
|
|
3176
3176
|
AutosequenceFlag: 0x00741025,
|
|
3177
3177
|
TableTopVerticalAdjustedPosition: 0x00741026,
|
|
3178
3178
|
TableTopLongitudinalAdjustedPosition: 0x00741027,
|
|
@@ -3185,8 +3185,8 @@ exports.Tag = {
|
|
|
3185
3185
|
VerificationImageTiming: 0x00741032,
|
|
3186
3186
|
DoubleExposureFlag: 0x00741034,
|
|
3187
3187
|
DoubleExposureOrdering: 0x00741036,
|
|
3188
|
-
DoubleExposureMetersetTrial: 0x00741038,
|
|
3189
|
-
DoubleExposureFieldDeltaTrial: 0x0074103a,
|
|
3188
|
+
DoubleExposureMetersetTrial: 0x00741038, // retired
|
|
3189
|
+
DoubleExposureFieldDeltaTrial: 0x0074103a, // retired
|
|
3190
3190
|
RelatedReferenceRTImageSequence: 0x00741040,
|
|
3191
3191
|
GeneralMachineVerificationSequence: 0x00741042,
|
|
3192
3192
|
ConventionalMachineVerificationSequence: 0x00741044,
|
|
@@ -3206,8 +3206,8 @@ exports.Tag = {
|
|
|
3206
3206
|
ScheduledProcessingParametersSequence: 0x00741210,
|
|
3207
3207
|
PerformedProcessingParametersSequence: 0x00741212,
|
|
3208
3208
|
UnifiedProcedureStepPerformedProcedureSequence: 0x00741216,
|
|
3209
|
-
RelatedProcedureStepSequence: 0x00741220,
|
|
3210
|
-
ProcedureStepRelationshipType: 0x00741222,
|
|
3209
|
+
RelatedProcedureStepSequence: 0x00741220, // retired
|
|
3210
|
+
ProcedureStepRelationshipType: 0x00741222, // retired
|
|
3211
3211
|
ReplacedProcedureStepSequence: 0x00741224,
|
|
3212
3212
|
DeletionLock: 0x00741230,
|
|
3213
3213
|
ReceivingAE: 0x00741234,
|
|
@@ -3314,10 +3314,10 @@ exports.Tag = {
|
|
|
3314
3314
|
StorageMediaFileSetID: 0x00880130,
|
|
3315
3315
|
StorageMediaFileSetUID: 0x00880140,
|
|
3316
3316
|
IconImageSequence: 0x00880200,
|
|
3317
|
-
TopicTitle: 0x00880904,
|
|
3318
|
-
TopicSubject: 0x00880906,
|
|
3319
|
-
TopicAuthor: 0x00880910,
|
|
3320
|
-
TopicKeywords: 0x00880912,
|
|
3317
|
+
TopicTitle: 0x00880904, // retired
|
|
3318
|
+
TopicSubject: 0x00880906, // retired
|
|
3319
|
+
TopicAuthor: 0x00880910, // retired
|
|
3320
|
+
TopicKeywords: 0x00880912, // retired
|
|
3321
3321
|
SOPInstanceStatus: 0x01000410,
|
|
3322
3322
|
SOPAuthorizationDateTime: 0x01000420,
|
|
3323
3323
|
SOPAuthorizationComment: 0x01000424,
|
|
@@ -3346,13 +3346,13 @@ exports.Tag = {
|
|
|
3346
3346
|
ModifyingSystem: 0x04000563,
|
|
3347
3347
|
SourceOfPreviousValues: 0x04000564,
|
|
3348
3348
|
ReasonForTheAttributeModification: 0x04000565,
|
|
3349
|
-
EscapeTriplet: 0x10000000,
|
|
3350
|
-
RunLengthTriplet: 0x10000001,
|
|
3351
|
-
HuffmanTableSize: 0x10000002,
|
|
3352
|
-
HuffmanTableTriplet: 0x10000003,
|
|
3353
|
-
ShiftTableSize: 0x10000004,
|
|
3354
|
-
ShiftTableTriplet: 0x10000005,
|
|
3355
|
-
ZonalMap: 0x10100000,
|
|
3349
|
+
EscapeTriplet: 0x10000000, // retired
|
|
3350
|
+
RunLengthTriplet: 0x10000001, // retired
|
|
3351
|
+
HuffmanTableSize: 0x10000002, // retired
|
|
3352
|
+
HuffmanTableTriplet: 0x10000003, // retired
|
|
3353
|
+
ShiftTableSize: 0x10000004, // retired
|
|
3354
|
+
ShiftTableTriplet: 0x10000005, // retired
|
|
3355
|
+
ZonalMap: 0x10100000, // retired
|
|
3356
3356
|
NumberOfCopies: 0x20000010,
|
|
3357
3357
|
PrinterConfigurationSequence: 0x2000001e,
|
|
3358
3358
|
PrintPriority: 0x20000020,
|
|
@@ -3361,19 +3361,19 @@ exports.Tag = {
|
|
|
3361
3361
|
FilmSessionLabel: 0x20000050,
|
|
3362
3362
|
MemoryAllocation: 0x20000060,
|
|
3363
3363
|
MaximumMemoryAllocation: 0x20000061,
|
|
3364
|
-
ColorImagePrintingFlag: 0x20000062,
|
|
3365
|
-
CollationFlag: 0x20000063,
|
|
3366
|
-
AnnotationFlag: 0x20000065,
|
|
3367
|
-
ImageOverlayFlag: 0x20000067,
|
|
3368
|
-
PresentationLUTFlag: 0x20000069,
|
|
3369
|
-
ImageBoxPresentationLUTFlag: 0x2000006a,
|
|
3364
|
+
ColorImagePrintingFlag: 0x20000062, // retired
|
|
3365
|
+
CollationFlag: 0x20000063, // retired
|
|
3366
|
+
AnnotationFlag: 0x20000065, // retired
|
|
3367
|
+
ImageOverlayFlag: 0x20000067, // retired
|
|
3368
|
+
PresentationLUTFlag: 0x20000069, // retired
|
|
3369
|
+
ImageBoxPresentationLUTFlag: 0x2000006a, // retired
|
|
3370
3370
|
MemoryBitDepth: 0x200000a0,
|
|
3371
3371
|
PrintingBitDepth: 0x200000a1,
|
|
3372
3372
|
MediaInstalledSequence: 0x200000a2,
|
|
3373
3373
|
OtherMediaAvailableSequence: 0x200000a4,
|
|
3374
3374
|
SupportedImageDisplayFormatsSequence: 0x200000a8,
|
|
3375
3375
|
ReferencedFilmBoxSequence: 0x20000500,
|
|
3376
|
-
ReferencedStoredPrintSequence: 0x20000510,
|
|
3376
|
+
ReferencedStoredPrintSequence: 0x20000510, // retired
|
|
3377
3377
|
ImageDisplayFormat: 0x20100010,
|
|
3378
3378
|
AnnotationDisplayFormatID: 0x20100030,
|
|
3379
3379
|
FilmOrientation: 0x20100040,
|
|
@@ -3409,26 +3409,26 @@ exports.Tag = {
|
|
|
3409
3409
|
DecimateCropResult: 0x202000a2,
|
|
3410
3410
|
BasicGrayscaleImageSequence: 0x20200110,
|
|
3411
3411
|
BasicColorImageSequence: 0x20200111,
|
|
3412
|
-
ReferencedImageOverlayBoxSequence: 0x20200130,
|
|
3413
|
-
ReferencedVOILUTBoxSequence: 0x20200140,
|
|
3412
|
+
ReferencedImageOverlayBoxSequence: 0x20200130, // retired
|
|
3413
|
+
ReferencedVOILUTBoxSequence: 0x20200140, // retired
|
|
3414
3414
|
AnnotationPosition: 0x20300010,
|
|
3415
3415
|
TextString: 0x20300020,
|
|
3416
|
-
ReferencedOverlayPlaneSequence: 0x20400010,
|
|
3417
|
-
ReferencedOverlayPlaneGroups: 0x20400011,
|
|
3418
|
-
OverlayPixelDataSequence: 0x20400020,
|
|
3419
|
-
OverlayMagnificationType: 0x20400060,
|
|
3420
|
-
OverlaySmoothingType: 0x20400070,
|
|
3421
|
-
OverlayOrImageMagnification: 0x20400072,
|
|
3422
|
-
MagnifyToNumberOfColumns: 0x20400074,
|
|
3423
|
-
OverlayForegroundDensity: 0x20400080,
|
|
3424
|
-
OverlayBackgroundDensity: 0x20400082,
|
|
3425
|
-
OverlayMode: 0x20400090,
|
|
3426
|
-
ThresholdDensity: 0x20400100,
|
|
3427
|
-
ReferencedImageBoxSequenceRetired: 0x20400500,
|
|
3416
|
+
ReferencedOverlayPlaneSequence: 0x20400010, // retired
|
|
3417
|
+
ReferencedOverlayPlaneGroups: 0x20400011, // retired
|
|
3418
|
+
OverlayPixelDataSequence: 0x20400020, // retired
|
|
3419
|
+
OverlayMagnificationType: 0x20400060, // retired
|
|
3420
|
+
OverlaySmoothingType: 0x20400070, // retired
|
|
3421
|
+
OverlayOrImageMagnification: 0x20400072, // retired
|
|
3422
|
+
MagnifyToNumberOfColumns: 0x20400074, // retired
|
|
3423
|
+
OverlayForegroundDensity: 0x20400080, // retired
|
|
3424
|
+
OverlayBackgroundDensity: 0x20400082, // retired
|
|
3425
|
+
OverlayMode: 0x20400090, // retired
|
|
3426
|
+
ThresholdDensity: 0x20400100, // retired
|
|
3427
|
+
ReferencedImageBoxSequenceRetired: 0x20400500, // retired
|
|
3428
3428
|
PresentationLUTSequence: 0x20500010,
|
|
3429
3429
|
PresentationLUTShape: 0x20500020,
|
|
3430
3430
|
ReferencedPresentationLUTSequence: 0x20500500,
|
|
3431
|
-
PrintJobID: 0x21000010,
|
|
3431
|
+
PrintJobID: 0x21000010, // retired
|
|
3432
3432
|
ExecutionStatus: 0x21000020,
|
|
3433
3433
|
ExecutionStatusInfo: 0x21000030,
|
|
3434
3434
|
CreationDate: 0x21000040,
|
|
@@ -3437,23 +3437,23 @@ exports.Tag = {
|
|
|
3437
3437
|
DestinationAE: 0x21000140,
|
|
3438
3438
|
OwnerID: 0x21000160,
|
|
3439
3439
|
NumberOfFilms: 0x21000170,
|
|
3440
|
-
ReferencedPrintJobSequencePullStoredPrint: 0x21000500,
|
|
3440
|
+
ReferencedPrintJobSequencePullStoredPrint: 0x21000500, // retired
|
|
3441
3441
|
PrinterStatus: 0x21100010,
|
|
3442
3442
|
PrinterStatusInfo: 0x21100020,
|
|
3443
3443
|
PrinterName: 0x21100030,
|
|
3444
|
-
PrintQueueID: 0x21100099,
|
|
3445
|
-
QueueStatus: 0x21200010,
|
|
3446
|
-
PrintJobDescriptionSequence: 0x21200050,
|
|
3447
|
-
ReferencedPrintJobSequence: 0x21200070,
|
|
3448
|
-
PrintManagementCapabilitiesSequence: 0x21300010,
|
|
3449
|
-
PrinterCharacteristicsSequence: 0x21300015,
|
|
3450
|
-
FilmBoxContentSequence: 0x21300030,
|
|
3451
|
-
ImageBoxContentSequence: 0x21300040,
|
|
3452
|
-
AnnotationContentSequence: 0x21300050,
|
|
3453
|
-
ImageOverlayBoxContentSequence: 0x21300060,
|
|
3454
|
-
PresentationLUTContentSequence: 0x21300080,
|
|
3455
|
-
ProposedStudySequence: 0x213000a0,
|
|
3456
|
-
OriginalImageSequence: 0x213000c0,
|
|
3444
|
+
PrintQueueID: 0x21100099, // retired
|
|
3445
|
+
QueueStatus: 0x21200010, // retired
|
|
3446
|
+
PrintJobDescriptionSequence: 0x21200050, // retired
|
|
3447
|
+
ReferencedPrintJobSequence: 0x21200070, // retired
|
|
3448
|
+
PrintManagementCapabilitiesSequence: 0x21300010, // retired
|
|
3449
|
+
PrinterCharacteristicsSequence: 0x21300015, // retired
|
|
3450
|
+
FilmBoxContentSequence: 0x21300030, // retired
|
|
3451
|
+
ImageBoxContentSequence: 0x21300040, // retired
|
|
3452
|
+
AnnotationContentSequence: 0x21300050, // retired
|
|
3453
|
+
ImageOverlayBoxContentSequence: 0x21300060, // retired
|
|
3454
|
+
PresentationLUTContentSequence: 0x21300080, // retired
|
|
3455
|
+
ProposedStudySequence: 0x213000a0, // retired
|
|
3456
|
+
OriginalImageSequence: 0x213000c0, // retired
|
|
3457
3457
|
LabelUsingInformationExtractedFromInstances: 0x22000001,
|
|
3458
3458
|
LabelText: 0x22000002,
|
|
3459
3459
|
LabelStyleSelection: 0x22000003,
|
|
@@ -3564,10 +3564,10 @@ exports.Tag = {
|
|
|
3564
3564
|
ROIElementalCompositionSequence: 0x300600b6,
|
|
3565
3565
|
ROIElementalCompositionAtomicNumber: 0x300600b7,
|
|
3566
3566
|
ROIElementalCompositionAtomicMassFraction: 0x300600b8,
|
|
3567
|
-
AdditionalRTROIIdentificationCodeSequence: 0x300600b9,
|
|
3568
|
-
FrameOfReferenceRelationshipSequence: 0x300600c0,
|
|
3569
|
-
RelatedFrameOfReferenceUID: 0x300600c2,
|
|
3570
|
-
FrameOfReferenceTransformationType: 0x300600c4,
|
|
3567
|
+
AdditionalRTROIIdentificationCodeSequence: 0x300600b9, // retired
|
|
3568
|
+
FrameOfReferenceRelationshipSequence: 0x300600c0, // retired
|
|
3569
|
+
RelatedFrameOfReferenceUID: 0x300600c2, // retired
|
|
3570
|
+
FrameOfReferenceTransformationType: 0x300600c4, // retired
|
|
3571
3571
|
FrameOfReferenceTransformationMatrix: 0x300600c6,
|
|
3572
3572
|
FrameOfReferenceTransformationComment: 0x300600c8,
|
|
3573
3573
|
MeasuredDoseReferenceSequence: 0x30080010,
|
|
@@ -3728,9 +3728,9 @@ exports.Tag = {
|
|
|
3728
3728
|
BeamDosePointSSD: 0x300a008a,
|
|
3729
3729
|
BeamDoseMeaning: 0x300a008b,
|
|
3730
3730
|
BeamDoseVerificationControlPointSequence: 0x300a008c,
|
|
3731
|
-
AverageBeamDosePointDepth: 0x300a008d,
|
|
3732
|
-
AverageBeamDosePointEquivalentDepth: 0x300a008e,
|
|
3733
|
-
AverageBeamDosePointSSD: 0x300a008f,
|
|
3731
|
+
AverageBeamDosePointDepth: 0x300a008d, // retired
|
|
3732
|
+
AverageBeamDosePointEquivalentDepth: 0x300a008e, // retired
|
|
3733
|
+
AverageBeamDosePointSSD: 0x300a008f, // retired
|
|
3734
3734
|
BeamDoseType: 0x300a0090,
|
|
3735
3735
|
AlternateBeamDose: 0x300a0091,
|
|
3736
3736
|
AlternateBeamDoseType: 0x300a0092,
|
|
@@ -4102,36 +4102,36 @@ exports.Tag = {
|
|
|
4102
4102
|
ReviewDate: 0x300e0004,
|
|
4103
4103
|
ReviewTime: 0x300e0005,
|
|
4104
4104
|
ReviewerName: 0x300e0008,
|
|
4105
|
-
Arbitrary: 0x40000010,
|
|
4106
|
-
TextComments: 0x40004000,
|
|
4107
|
-
ResultsID: 0x40080040,
|
|
4108
|
-
ResultsIDIssuer: 0x40080042,
|
|
4109
|
-
ReferencedInterpretationSequence: 0x40080050,
|
|
4110
|
-
ReportProductionStatusTrial: 0x400800ff,
|
|
4111
|
-
InterpretationRecordedDate: 0x40080100,
|
|
4112
|
-
InterpretationRecordedTime: 0x40080101,
|
|
4113
|
-
InterpretationRecorder: 0x40080102,
|
|
4114
|
-
ReferenceToRecordedSound: 0x40080103,
|
|
4115
|
-
InterpretationTranscriptionDate: 0x40080108,
|
|
4116
|
-
InterpretationTranscriptionTime: 0x40080109,
|
|
4117
|
-
InterpretationTranscriber: 0x4008010a,
|
|
4118
|
-
InterpretationText: 0x4008010b,
|
|
4119
|
-
InterpretationAuthor: 0x4008010c,
|
|
4120
|
-
InterpretationApproverSequence: 0x40080111,
|
|
4121
|
-
InterpretationApprovalDate: 0x40080112,
|
|
4122
|
-
InterpretationApprovalTime: 0x40080113,
|
|
4123
|
-
PhysicianApprovingInterpretation: 0x40080114,
|
|
4124
|
-
InterpretationDiagnosisDescription: 0x40080115,
|
|
4125
|
-
InterpretationDiagnosisCodeSequence: 0x40080117,
|
|
4126
|
-
ResultsDistributionListSequence: 0x40080118,
|
|
4127
|
-
DistributionName: 0x40080119,
|
|
4128
|
-
DistributionAddress: 0x4008011a,
|
|
4129
|
-
InterpretationID: 0x40080200,
|
|
4130
|
-
InterpretationIDIssuer: 0x40080202,
|
|
4131
|
-
InterpretationTypeID: 0x40080210,
|
|
4132
|
-
InterpretationStatusID: 0x40080212,
|
|
4133
|
-
Impressions: 0x40080300,
|
|
4134
|
-
ResultsComments: 0x40084000,
|
|
4105
|
+
Arbitrary: 0x40000010, // retired
|
|
4106
|
+
TextComments: 0x40004000, // retired
|
|
4107
|
+
ResultsID: 0x40080040, // retired
|
|
4108
|
+
ResultsIDIssuer: 0x40080042, // retired
|
|
4109
|
+
ReferencedInterpretationSequence: 0x40080050, // retired
|
|
4110
|
+
ReportProductionStatusTrial: 0x400800ff, // retired
|
|
4111
|
+
InterpretationRecordedDate: 0x40080100, // retired
|
|
4112
|
+
InterpretationRecordedTime: 0x40080101, // retired
|
|
4113
|
+
InterpretationRecorder: 0x40080102, // retired
|
|
4114
|
+
ReferenceToRecordedSound: 0x40080103, // retired
|
|
4115
|
+
InterpretationTranscriptionDate: 0x40080108, // retired
|
|
4116
|
+
InterpretationTranscriptionTime: 0x40080109, // retired
|
|
4117
|
+
InterpretationTranscriber: 0x4008010a, // retired
|
|
4118
|
+
InterpretationText: 0x4008010b, // retired
|
|
4119
|
+
InterpretationAuthor: 0x4008010c, // retired
|
|
4120
|
+
InterpretationApproverSequence: 0x40080111, // retired
|
|
4121
|
+
InterpretationApprovalDate: 0x40080112, // retired
|
|
4122
|
+
InterpretationApprovalTime: 0x40080113, // retired
|
|
4123
|
+
PhysicianApprovingInterpretation: 0x40080114, // retired
|
|
4124
|
+
InterpretationDiagnosisDescription: 0x40080115, // retired
|
|
4125
|
+
InterpretationDiagnosisCodeSequence: 0x40080117, // retired
|
|
4126
|
+
ResultsDistributionListSequence: 0x40080118, // retired
|
|
4127
|
+
DistributionName: 0x40080119, // retired
|
|
4128
|
+
DistributionAddress: 0x4008011a, // retired
|
|
4129
|
+
InterpretationID: 0x40080200, // retired
|
|
4130
|
+
InterpretationIDIssuer: 0x40080202, // retired
|
|
4131
|
+
InterpretationTypeID: 0x40080210, // retired
|
|
4132
|
+
InterpretationStatusID: 0x40080212, // retired
|
|
4133
|
+
Impressions: 0x40080300, // retired
|
|
4134
|
+
ResultsComments: 0x40084000, // retired
|
|
4135
4135
|
LowEnergyDetectors: 0x40100001,
|
|
4136
4136
|
HighEnergyDetectors: 0x40100002,
|
|
4137
4137
|
DetectorGeometrySequence: 0x40100004,
|
|
@@ -4219,32 +4219,32 @@ exports.Tag = {
|
|
|
4219
4219
|
SecondaryInspectionMethodSequence: 0x4010107d,
|
|
4220
4220
|
PRCSToRCSOrientation: 0x4010107e,
|
|
4221
4221
|
MACParametersSequence: 0x4ffe0001,
|
|
4222
|
-
CurveDimensions: 0x50000005,
|
|
4223
|
-
NumberOfPoints: 0x50000010,
|
|
4224
|
-
TypeOfData: 0x50000020,
|
|
4225
|
-
CurveDescription: 0x50000022,
|
|
4226
|
-
AxisUnits: 0x50000030,
|
|
4227
|
-
AxisLabels: 0x50000040,
|
|
4228
|
-
DataValueRepresentation: 0x50000103,
|
|
4229
|
-
MinimumCoordinateValue: 0x50000104,
|
|
4230
|
-
MaximumCoordinateValue: 0x50000105,
|
|
4231
|
-
CurveRange: 0x50000106,
|
|
4232
|
-
CurveDataDescriptor: 0x50000110,
|
|
4233
|
-
CoordinateStartValue: 0x50000112,
|
|
4234
|
-
CoordinateStepValue: 0x50000114,
|
|
4235
|
-
CurveActivationLayer: 0x50001001,
|
|
4236
|
-
AudioType: 0x50002000,
|
|
4237
|
-
AudioSampleFormat: 0x50002002,
|
|
4238
|
-
NumberOfChannels: 0x50002004,
|
|
4239
|
-
NumberOfSamples: 0x50002006,
|
|
4240
|
-
SampleRate: 0x50002008,
|
|
4241
|
-
TotalTime: 0x5000200a,
|
|
4242
|
-
AudioSampleData: 0x5000200c,
|
|
4243
|
-
AudioComments: 0x5000200e,
|
|
4244
|
-
CurveLabel: 0x50002500,
|
|
4245
|
-
CurveReferencedOverlaySequence: 0x50002600,
|
|
4246
|
-
CurveReferencedOverlayGroup: 0x50002610,
|
|
4247
|
-
CurveData: 0x50003000,
|
|
4222
|
+
CurveDimensions: 0x50000005, // retired
|
|
4223
|
+
NumberOfPoints: 0x50000010, // retired
|
|
4224
|
+
TypeOfData: 0x50000020, // retired
|
|
4225
|
+
CurveDescription: 0x50000022, // retired
|
|
4226
|
+
AxisUnits: 0x50000030, // retired
|
|
4227
|
+
AxisLabels: 0x50000040, // retired
|
|
4228
|
+
DataValueRepresentation: 0x50000103, // retired
|
|
4229
|
+
MinimumCoordinateValue: 0x50000104, // retired
|
|
4230
|
+
MaximumCoordinateValue: 0x50000105, // retired
|
|
4231
|
+
CurveRange: 0x50000106, // retired
|
|
4232
|
+
CurveDataDescriptor: 0x50000110, // retired
|
|
4233
|
+
CoordinateStartValue: 0x50000112, // retired
|
|
4234
|
+
CoordinateStepValue: 0x50000114, // retired
|
|
4235
|
+
CurveActivationLayer: 0x50001001, // retired
|
|
4236
|
+
AudioType: 0x50002000, // retired
|
|
4237
|
+
AudioSampleFormat: 0x50002002, // retired
|
|
4238
|
+
NumberOfChannels: 0x50002004, // retired
|
|
4239
|
+
NumberOfSamples: 0x50002006, // retired
|
|
4240
|
+
SampleRate: 0x50002008, // retired
|
|
4241
|
+
TotalTime: 0x5000200a, // retired
|
|
4242
|
+
AudioSampleData: 0x5000200c, // retired
|
|
4243
|
+
AudioComments: 0x5000200e, // retired
|
|
4244
|
+
CurveLabel: 0x50002500, // retired
|
|
4245
|
+
CurveReferencedOverlaySequence: 0x50002600, // retired
|
|
4246
|
+
CurveReferencedOverlayGroup: 0x50002610, // retired
|
|
4247
|
+
CurveData: 0x50003000, // retired
|
|
4248
4248
|
SharedFunctionalGroupsSequence: 0x52009229,
|
|
4249
4249
|
PerFrameFunctionalGroupsSequence: 0x52009230,
|
|
4250
4250
|
WaveformSequence: 0x54000100,
|
|
@@ -4258,55 +4258,55 @@ exports.Tag = {
|
|
|
4258
4258
|
SpectroscopyData: 0x56000020,
|
|
4259
4259
|
OverlayRows: 0x60000010,
|
|
4260
4260
|
OverlayColumns: 0x60000011,
|
|
4261
|
-
OverlayPlanes: 0x60000012,
|
|
4261
|
+
OverlayPlanes: 0x60000012, // retired
|
|
4262
4262
|
NumberOfFramesInOverlay: 0x60000015,
|
|
4263
4263
|
OverlayDescription: 0x60000022,
|
|
4264
4264
|
OverlayType: 0x60000040,
|
|
4265
4265
|
OverlaySubtype: 0x60000045,
|
|
4266
4266
|
OverlayOrigin: 0x60000050,
|
|
4267
4267
|
ImageFrameOrigin: 0x60000051,
|
|
4268
|
-
OverlayPlaneOrigin: 0x60000052,
|
|
4269
|
-
OverlayCompressionCode: 0x60000060,
|
|
4270
|
-
OverlayCompressionOriginator: 0x60000061,
|
|
4271
|
-
OverlayCompressionLabel: 0x60000062,
|
|
4272
|
-
OverlayCompressionDescription: 0x60000063,
|
|
4273
|
-
OverlayCompressionStepPointers: 0x60000066,
|
|
4274
|
-
OverlayRepeatInterval: 0x60000068,
|
|
4275
|
-
OverlayBitsGrouped: 0x60000069,
|
|
4268
|
+
OverlayPlaneOrigin: 0x60000052, // retired
|
|
4269
|
+
OverlayCompressionCode: 0x60000060, // retired
|
|
4270
|
+
OverlayCompressionOriginator: 0x60000061, // retired
|
|
4271
|
+
OverlayCompressionLabel: 0x60000062, // retired
|
|
4272
|
+
OverlayCompressionDescription: 0x60000063, // retired
|
|
4273
|
+
OverlayCompressionStepPointers: 0x60000066, // retired
|
|
4274
|
+
OverlayRepeatInterval: 0x60000068, // retired
|
|
4275
|
+
OverlayBitsGrouped: 0x60000069, // retired
|
|
4276
4276
|
OverlayBitsAllocated: 0x60000100,
|
|
4277
4277
|
OverlayBitPosition: 0x60000102,
|
|
4278
|
-
OverlayFormat: 0x60000110,
|
|
4279
|
-
OverlayLocation: 0x60000200,
|
|
4280
|
-
OverlayCodeLabel: 0x60000800,
|
|
4281
|
-
OverlayNumberOfTables: 0x60000802,
|
|
4282
|
-
OverlayCodeTableLocation: 0x60000803,
|
|
4283
|
-
OverlayBitsForCodeWord: 0x60000804,
|
|
4278
|
+
OverlayFormat: 0x60000110, // retired
|
|
4279
|
+
OverlayLocation: 0x60000200, // retired
|
|
4280
|
+
OverlayCodeLabel: 0x60000800, // retired
|
|
4281
|
+
OverlayNumberOfTables: 0x60000802, // retired
|
|
4282
|
+
OverlayCodeTableLocation: 0x60000803, // retired
|
|
4283
|
+
OverlayBitsForCodeWord: 0x60000804, // retired
|
|
4284
4284
|
OverlayActivationLayer: 0x60001001,
|
|
4285
|
-
OverlayDescriptorGray: 0x60001100,
|
|
4286
|
-
OverlayDescriptorRed: 0x60001101,
|
|
4287
|
-
OverlayDescriptorGreen: 0x60001102,
|
|
4288
|
-
OverlayDescriptorBlue: 0x60001103,
|
|
4289
|
-
OverlaysGray: 0x60001200,
|
|
4290
|
-
OverlaysRed: 0x60001201,
|
|
4291
|
-
OverlaysGreen: 0x60001202,
|
|
4292
|
-
OverlaysBlue: 0x60001203,
|
|
4285
|
+
OverlayDescriptorGray: 0x60001100, // retired
|
|
4286
|
+
OverlayDescriptorRed: 0x60001101, // retired
|
|
4287
|
+
OverlayDescriptorGreen: 0x60001102, // retired
|
|
4288
|
+
OverlayDescriptorBlue: 0x60001103, // retired
|
|
4289
|
+
OverlaysGray: 0x60001200, // retired
|
|
4290
|
+
OverlaysRed: 0x60001201, // retired
|
|
4291
|
+
OverlaysGreen: 0x60001202, // retired
|
|
4292
|
+
OverlaysBlue: 0x60001203, // retired
|
|
4293
4293
|
ROIArea: 0x60001301,
|
|
4294
4294
|
ROIMean: 0x60001302,
|
|
4295
4295
|
ROIStandardDeviation: 0x60001303,
|
|
4296
4296
|
OverlayLabel: 0x60001500,
|
|
4297
4297
|
OverlayData: 0x60003000,
|
|
4298
|
-
OverlayComments: 0x60004000,
|
|
4298
|
+
OverlayComments: 0x60004000, // retired
|
|
4299
4299
|
FloatPixelData: 0x7fe00008,
|
|
4300
4300
|
DoubleFloatPixelData: 0x7fe00009,
|
|
4301
4301
|
PixelData: 0x7fe00010,
|
|
4302
|
-
CoefficientsSDVN: 0x7fe00020,
|
|
4303
|
-
CoefficientsSDHN: 0x7fe00030,
|
|
4304
|
-
CoefficientsSDDN: 0x7fe00040,
|
|
4305
|
-
VariablePixelData: 0x7f000010,
|
|
4306
|
-
VariableNextDataGroup: 0x7f000011,
|
|
4307
|
-
VariableCoefficientsSDVN: 0x7f000020,
|
|
4308
|
-
VariableCoefficientsSDHN: 0x7f000030,
|
|
4309
|
-
VariableCoefficientsSDDN: 0x7f000040,
|
|
4302
|
+
CoefficientsSDVN: 0x7fe00020, // retired
|
|
4303
|
+
CoefficientsSDHN: 0x7fe00030, // retired
|
|
4304
|
+
CoefficientsSDDN: 0x7fe00040, // retired
|
|
4305
|
+
VariablePixelData: 0x7f000010, // retired
|
|
4306
|
+
VariableNextDataGroup: 0x7f000011, // retired
|
|
4307
|
+
VariableCoefficientsSDVN: 0x7f000020, // retired
|
|
4308
|
+
VariableCoefficientsSDHN: 0x7f000030, // retired
|
|
4309
|
+
VariableCoefficientsSDDN: 0x7f000040, // retired
|
|
4310
4310
|
DigitalSignaturesSequence: 0xfffafffa,
|
|
4311
4311
|
DataSetTrailingPadding: 0xfffcfffc,
|
|
4312
4312
|
Item: 0xfffee000,
|