dcm_dict 0.21.1 → 0.22.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/LICENSE +1 -1
- data/README.md +2 -2
- data/bin/dcm_dict_converter.rb +2 -2
- data/lib/dcm_dict.rb +1 -1
- data/lib/dcm_dict/dictionary/base_dictionary.rb +1 -1
- data/lib/dcm_dict/dictionary/base_record.rb +1 -1
- data/lib/dcm_dict/dictionary/data_element_dictionary.rb +1 -1
- data/lib/dcm_dict/dictionary/data_element_record.rb +1 -1
- data/lib/dcm_dict/dictionary/uid_record.rb +1 -1
- data/lib/dcm_dict/encoder/data_to_code.rb +1 -1
- data/lib/dcm_dict/error/dictionary_error.rb +1 -1
- data/lib/dcm_dict/ext/object_extension.rb +1 -1
- data/lib/dcm_dict/refine/array_refine.rb +1 -1
- data/lib/dcm_dict/refine/data_element_refine.rb +1 -1
- data/lib/dcm_dict/refine/internal/array_refine_internal.rb +1 -1
- data/lib/dcm_dict/refine/internal/hash_refine_internal.rb +1 -1
- data/lib/dcm_dict/refine/internal/string_refine_internal.rb +1 -1
- data/lib/dcm_dict/refine/string_refine.rb +1 -1
- data/lib/dcm_dict/refine/symbol_refine.rb +1 -1
- data/lib/dcm_dict/refine/uid_refine.rb +1 -1
- data/lib/dcm_dict/rubies/rb_ext.rb +1 -1
- data/lib/dcm_dict/source_data/data_elements_data.rb +540 -412
- data/lib/dcm_dict/source_data/detached_data.rb +1 -1
- data/lib/dcm_dict/source_data/uid_values_data.rb +6 -1
- data/lib/dcm_dict/version.rb +3 -3
- data/lib/dcm_dict/xml/constant.rb +1 -1
- data/lib/dcm_dict/xml/field_data.rb +1 -1
- data/lib/dcm_dict/xml/nokogiri_tool.rb +1 -1
- data/lib/dcm_dict/xml/rexml_tool.rb +1 -1
- data/lib/dcm_dict/xml/tag_field_data.rb +1 -1
- data/lib/dcm_dict/xml/uid_field_data.rb +1 -1
- data/lib/dcm_dict/xml/xml_tool.rb +1 -1
- data/spec/data_element_sample_spec_helper.rb +7 -7
- data/spec/data_element_shared_example_spec_helper.rb +1 -1
- data/spec/dcm_dict/dictionary/data_element_dictionary_spec.rb +1 -1
- data/spec/dcm_dict/dictionary/data_element_record_spec.rb +1 -1
- data/spec/dcm_dict/dictionary/uid_record_spec.rb +1 -1
- data/spec/dcm_dict/encoder/data_to_code_spec.rb +1 -1
- data/spec/dcm_dict/ext/object_extension_spec.rb +1 -1
- data/spec/dcm_dict/refine/array_refine_spec.rb +1 -1
- data/spec/dcm_dict/refine/internal/array_refine_internal_spec.rb +1 -1
- data/spec/dcm_dict/refine/internal/hash_refine_internal_spec.rb +1 -1
- data/spec/dcm_dict/refine/internal/string_refine_internal_spec.rb +1 -1
- data/spec/dcm_dict/refine/string_refine_spec.rb +1 -1
- data/spec/dcm_dict/refine/symbol_refine_spec.rb +1 -1
- data/spec/dcm_dict/rubies/rb_ext_spec.rb +1 -1
- data/spec/dcm_dict/source_data/data_elements_data_spec.rb +1 -1
- data/spec/dcm_dict/source_data/detached_data_spec.rb +1 -1
- data/spec/dcm_dict/source_data/uid_values_data_spec.rb +1 -1
- data/spec/dcm_dict/version_spec.rb +1 -1
- data/spec/dcm_dict/xml/tag_field_data_spec.rb +1 -1
- data/spec/dcm_dict/xml/uid_field_data_spec.rb +1 -1
- data/spec/dictionary_shared_example_spec_helper.rb +1 -1
- data/spec/refine_shared_example_spec_helper.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/xml_sample_spec_helper.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a82cd62299530a043379bf213dd2d231e35b15d74a6ef58f72b35c75980b99e7
|
4
|
+
data.tar.gz: 3dc5afbdc9d352df703b748f4befe69f19edbce009cf608608b4dba49918d022
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7552952157ac39f1ae55d518fd7fbd86f7b73607239e121ed2954765961b25afa0b12ccbf8250cb05ef5ec2c718c767042edde848fa8f249996416d6c0102927
|
7
|
+
data.tar.gz: 696877690f3c2967ae2c9a5be1048d246385e0b88733aa5cabfbed8ece31a22aefaf184d34038569081e3d96e410ebdbd5ea8d45575dfa38dded10d73f9ebde9
|
data/CHANGELOG.md
CHANGED
data/LICENSE
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
DcmDict is a Ruby gem (dcm_dict) to handle
|
2
2
|
in a simple way the Data defined within the DICOM Standard.
|
3
3
|
|
4
|
-
Copyright (C) 2014-
|
4
|
+
Copyright (C) 2014-2019 Enrico Rivarola
|
5
5
|
|
6
6
|
DcmDict is free software: you can redistribute it and/or modify
|
7
7
|
it under the terms of the GNU General Public License as published by
|
data/README.md
CHANGED
@@ -272,7 +272,7 @@ Note: the script use the [Nokogiri][3] as XML parser if installed as gem, otherw
|
|
272
272
|
Check the file for other details.
|
273
273
|
|
274
274
|
## Note
|
275
|
-
Current library version is aligned to *DICOM Base Standard* **
|
275
|
+
Current library version is aligned to *DICOM Base Standard* **2019a**
|
276
276
|
|
277
277
|
## Install
|
278
278
|
|
@@ -295,7 +295,7 @@ There are many possible *candidates* for inclusion in the *dictionary*, here are
|
|
295
295
|
TBD
|
296
296
|
|
297
297
|
## License
|
298
|
-
Copyright (C) 2014-
|
298
|
+
Copyright (C) 2014-2019 Enrico Rivarola.
|
299
299
|
See the `LICENSE` and `COPYING` files for license details.
|
300
300
|
|
301
301
|
## Ruby Gem
|
data/bin/dcm_dict_converter.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# -*- ruby -*-
|
3
3
|
#
|
4
|
-
# Copyright (C) 2014-
|
4
|
+
# Copyright (C) 2014-2019 Enrico Rivarola
|
5
5
|
#
|
6
6
|
# This file is part of DcmDict gem (dcm_dict).
|
7
7
|
#
|
@@ -29,7 +29,7 @@ require 'dcm_dict'
|
|
29
29
|
require 'dcm_dict/xml/xml_tool'
|
30
30
|
|
31
31
|
LICENSE_TEXT=<<END_LICENSE
|
32
|
-
Copyright (C) 2014-
|
32
|
+
Copyright (C) 2014-2019 Enrico Rivarola
|
33
33
|
|
34
34
|
This file is part of DcmDict gem (dcm_dict).
|
35
35
|
|
data/lib/dcm_dict.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
#
|
3
|
-
# Copyright (C) 2014-
|
3
|
+
# Copyright (C) 2014-2019 Enrico Rivarola
|
4
4
|
#
|
5
5
|
# This file is part of DcmDict gem (dcm_dict).
|
6
6
|
#
|
@@ -122,12 +122,12 @@ HIGH = 0001H'},
|
|
122
122
|
{ tag_ps: '(0004,1430)', tag_name: "Directory Record Type", tag_key: 'DirectoryRecordType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0004,1430)', tag_sym: :directory_record_type, tag_ndm: '00041430', tag_ary: [0x0004,0x1430], tag_multiple: false, tag_note: ''},
|
123
123
|
{ tag_ps: '(0004,1432)', tag_name: "Private Record UID", tag_key: 'PrivateRecordUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0004,1432)', tag_sym: :private_record_uid, tag_ndm: '00041432', tag_ary: [0x0004,0x1432], tag_multiple: false, tag_note: ''},
|
124
124
|
{ tag_ps: '(0004,1500)', tag_name: "Referenced File ID", tag_key: 'ReferencedFileID', tag_vr: [:CS], tag_vm: ["1-8"], tag_str: '(0004,1500)', tag_sym: :referenced_file_id, tag_ndm: '00041500', tag_ary: [0x0004,0x1500], tag_multiple: false, tag_note: ''},
|
125
|
-
{ tag_ps: '(0004,1504)', tag_name: "MRDR Directory Record Offset", tag_key: 'MRDRDirectoryRecordOffset', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0004,1504)', tag_sym: :mrdr_directory_record_offset, tag_ndm: '00041504', tag_ary: [0x0004,0x1504], tag_multiple: false, tag_note: 'RET'},
|
125
|
+
{ tag_ps: '(0004,1504)', tag_name: "MRDR Directory Record Offset", tag_key: 'MRDRDirectoryRecordOffset', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0004,1504)', tag_sym: :mrdr_directory_record_offset, tag_ndm: '00041504', tag_ary: [0x0004,0x1504], tag_multiple: false, tag_note: 'RET (2004)'},
|
126
126
|
{ tag_ps: '(0004,1510)', tag_name: "Referenced SOP Class UID in File", tag_key: 'ReferencedSOPClassUIDInFile', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0004,1510)', tag_sym: :referenced_sop_class_uid_in_file, tag_ndm: '00041510', tag_ary: [0x0004,0x1510], tag_multiple: false, tag_note: ''},
|
127
127
|
{ tag_ps: '(0004,1511)', tag_name: "Referenced SOP Instance UID in File", tag_key: 'ReferencedSOPInstanceUIDInFile', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0004,1511)', tag_sym: :referenced_sop_instance_uid_in_file, tag_ndm: '00041511', tag_ary: [0x0004,0x1511], tag_multiple: false, tag_note: ''},
|
128
128
|
{ tag_ps: '(0004,1512)', tag_name: "Referenced Transfer Syntax UID in File", tag_key: 'ReferencedTransferSyntaxUIDInFile', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0004,1512)', tag_sym: :referenced_transfer_syntax_uid_in_file, tag_ndm: '00041512', tag_ary: [0x0004,0x1512], tag_multiple: false, tag_note: ''},
|
129
129
|
{ tag_ps: '(0004,151A)', tag_name: "Referenced Related General SOP Class UID in File", tag_key: 'ReferencedRelatedGeneralSOPClassUIDInFile', tag_vr: [:UI], tag_vm: ["1-n"], tag_str: '(0004,151A)', tag_sym: :referenced_related_general_sop_class_uid_in_file, tag_ndm: '0004151A', tag_ary: [0x0004,0x151A], tag_multiple: false, tag_note: ''},
|
130
|
-
{ tag_ps: '(0004,1600)', tag_name: "Number of References", tag_key: 'NumberOfReferences', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0004,1600)', tag_sym: :number_of_references, tag_ndm: '00041600', tag_ary: [0x0004,0x1600], tag_multiple: false, tag_note: 'RET'},
|
130
|
+
{ tag_ps: '(0004,1600)', tag_name: "Number of References", tag_key: 'NumberOfReferences', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0004,1600)', tag_sym: :number_of_references, tag_ndm: '00041600', tag_ary: [0x0004,0x1600], tag_multiple: false, tag_note: 'RET (2004)'},
|
131
131
|
{ tag_ps: '(0008,0001)', tag_name: "Length to End", tag_key: 'LengthToEnd', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0008,0001)', tag_sym: :length_to_end, tag_ndm: '00080001', tag_ary: [0x0008,0x0001], tag_multiple: false, tag_note: 'RET'},
|
132
132
|
{ tag_ps: '(0008,0005)', tag_name: "Specific Character Set", tag_key: 'SpecificCharacterSet', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0008,0005)', tag_sym: :specific_character_set, tag_ndm: '00080005', tag_ary: [0x0008,0x0005], tag_multiple: false, tag_note: ''},
|
133
133
|
{ tag_ps: '(0008,0006)', tag_name: "Language Code Sequence", tag_key: 'LanguageCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,0006)', tag_sym: :language_code_sequence, tag_ndm: '00080006', tag_ary: [0x0008,0x0006], tag_multiple: false, tag_note: ''},
|
@@ -145,18 +145,18 @@ HIGH = 0001H'},
|
|
145
145
|
{ tag_ps: '(0008,0021)', tag_name: "Series Date", tag_key: 'SeriesDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0008,0021)', tag_sym: :series_date, tag_ndm: '00080021', tag_ary: [0x0008,0x0021], tag_multiple: false, tag_note: ''},
|
146
146
|
{ tag_ps: '(0008,0022)', tag_name: "Acquisition Date", tag_key: 'AcquisitionDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0008,0022)', tag_sym: :acquisition_date, tag_ndm: '00080022', tag_ary: [0x0008,0x0022], tag_multiple: false, tag_note: ''},
|
147
147
|
{ tag_ps: '(0008,0023)', tag_name: "Content Date", tag_key: 'ContentDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0008,0023)', tag_sym: :content_date, tag_ndm: '00080023', tag_ary: [0x0008,0x0023], tag_multiple: false, tag_note: ''},
|
148
|
-
{ tag_ps: '(0008,0024)', tag_name: "Overlay Date", tag_key: 'OverlayDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0008,0024)', tag_sym: :overlay_date, tag_ndm: '00080024', tag_ary: [0x0008,0x0024], tag_multiple: false, tag_note: 'RET'},
|
149
|
-
{ tag_ps: '(0008,0025)', tag_name: "Curve Date", tag_key: 'CurveDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0008,0025)', tag_sym: :curve_date, tag_ndm: '00080025', tag_ary: [0x0008,0x0025], tag_multiple: false, tag_note: 'RET'},
|
148
|
+
{ tag_ps: '(0008,0024)', tag_name: "Overlay Date", tag_key: 'OverlayDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0008,0024)', tag_sym: :overlay_date, tag_ndm: '00080024', tag_ary: [0x0008,0x0024], tag_multiple: false, tag_note: 'RET (2004)'},
|
149
|
+
{ tag_ps: '(0008,0025)', tag_name: "Curve Date", tag_key: 'CurveDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0008,0025)', tag_sym: :curve_date, tag_ndm: '00080025', tag_ary: [0x0008,0x0025], tag_multiple: false, tag_note: 'RET (2004)'},
|
150
150
|
{ tag_ps: '(0008,002A)', tag_name: "Acquisition DateTime", tag_key: 'AcquisitionDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0008,002A)', tag_sym: :acquisition_date_time, tag_ndm: '0008002A', tag_ary: [0x0008,0x002A], tag_multiple: false, tag_note: ''},
|
151
151
|
{ tag_ps: '(0008,0030)', tag_name: "Study Time", tag_key: 'StudyTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0008,0030)', tag_sym: :study_time, tag_ndm: '00080030', tag_ary: [0x0008,0x0030], tag_multiple: false, tag_note: ''},
|
152
152
|
{ tag_ps: '(0008,0031)', tag_name: "Series Time", tag_key: 'SeriesTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0008,0031)', tag_sym: :series_time, tag_ndm: '00080031', tag_ary: [0x0008,0x0031], tag_multiple: false, tag_note: ''},
|
153
153
|
{ tag_ps: '(0008,0032)', tag_name: "Acquisition Time", tag_key: 'AcquisitionTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0008,0032)', tag_sym: :acquisition_time, tag_ndm: '00080032', tag_ary: [0x0008,0x0032], tag_multiple: false, tag_note: ''},
|
154
154
|
{ tag_ps: '(0008,0033)', tag_name: "Content Time", tag_key: 'ContentTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0008,0033)', tag_sym: :content_time, tag_ndm: '00080033', tag_ary: [0x0008,0x0033], tag_multiple: false, tag_note: ''},
|
155
|
-
{ tag_ps: '(0008,0034)', tag_name: "Overlay Time", tag_key: 'OverlayTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0008,0034)', tag_sym: :overlay_time, tag_ndm: '00080034', tag_ary: [0x0008,0x0034], tag_multiple: false, tag_note: 'RET'},
|
155
|
+
{ tag_ps: '(0008,0034)', tag_name: "Overlay Time", tag_key: 'OverlayTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0008,0034)', tag_sym: :overlay_time, tag_ndm: '00080034', tag_ary: [0x0008,0x0034], tag_multiple: false, tag_note: 'RET (2004)'},
|
156
156
|
{ tag_ps: '(0008,0035)', tag_name: "Curve Time", tag_key: 'CurveTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0008,0035)', tag_sym: :curve_time, tag_ndm: '00080035', tag_ary: [0x0008,0x0035], tag_multiple: false, tag_note: 'RET'},
|
157
|
-
{ tag_ps: '(0008,0040)', tag_name: "Data Set Type", tag_key: 'DataSetType', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0008,0040)', tag_sym: :data_set_type, tag_ndm: '00080040', tag_ary: [0x0008,0x0040], tag_multiple: false, tag_note: 'RET'},
|
158
|
-
{ tag_ps: '(0008,0041)', tag_name: "Data Set Subtype", tag_key: 'DataSetSubtype', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0008,0041)', tag_sym: :data_set_subtype, tag_ndm: '00080041', tag_ary: [0x0008,0x0041], tag_multiple: false, tag_note: 'RET'},
|
159
|
-
{ tag_ps: '(0008,0042)', tag_name: "Nuclear Medicine Series Type", tag_key: 'NuclearMedicineSeriesType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,0042)', tag_sym: :nuclear_medicine_series_type, tag_ndm: '00080042', tag_ary: [0x0008,0x0042], tag_multiple: false, tag_note: 'RET'},
|
157
|
+
{ tag_ps: '(0008,0040)', tag_name: "Data Set Type", tag_key: 'DataSetType', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0008,0040)', tag_sym: :data_set_type, tag_ndm: '00080040', tag_ary: [0x0008,0x0040], tag_multiple: false, tag_note: 'RET (2004)'},
|
158
|
+
{ tag_ps: '(0008,0041)', tag_name: "Data Set Subtype", tag_key: 'DataSetSubtype', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0008,0041)', tag_sym: :data_set_subtype, tag_ndm: '00080041', tag_ary: [0x0008,0x0041], tag_multiple: false, tag_note: 'RET (2004)'},
|
159
|
+
{ tag_ps: '(0008,0042)', tag_name: "Nuclear Medicine Series Type", tag_key: 'NuclearMedicineSeriesType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,0042)', tag_sym: :nuclear_medicine_series_type, tag_ndm: '00080042', tag_ary: [0x0008,0x0042], tag_multiple: false, tag_note: 'RET (2004)'},
|
160
160
|
{ tag_ps: '(0008,0050)', tag_name: "Accession Number", tag_key: 'AccessionNumber', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0008,0050)', tag_sym: :accession_number, tag_ndm: '00080050', tag_ary: [0x0008,0x0050], tag_multiple: false, tag_note: ''},
|
161
161
|
{ tag_ps: '(0008,0051)', tag_name: "Issuer of Accession Number Sequence", tag_key: 'IssuerOfAccessionNumberSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,0051)', tag_sym: :issuer_of_accession_number_sequence, tag_ndm: '00080051', tag_ary: [0x0008,0x0051], tag_multiple: false, tag_note: ''},
|
162
162
|
{ tag_ps: '(0008,0052)', tag_name: "Query/Retrieve Level", tag_key: 'QueryRetrieveLevel', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,0052)', tag_sym: :query_retrieve_level, tag_ndm: '00080052', tag_ary: [0x0008,0x0052], tag_multiple: false, tag_note: ''},
|
@@ -250,17 +250,17 @@ HIGH = 0001H'},
|
|
250
250
|
{ tag_ps: '(0008,1080)', tag_name: "Admitting Diagnoses Description", tag_key: 'AdmittingDiagnosesDescription', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0008,1080)', tag_sym: :admitting_diagnoses_description, tag_ndm: '00081080', tag_ary: [0x0008,0x1080], tag_multiple: false, tag_note: ''},
|
251
251
|
{ tag_ps: '(0008,1084)', tag_name: "Admitting Diagnoses Code Sequence", tag_key: 'AdmittingDiagnosesCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1084)', tag_sym: :admitting_diagnoses_code_sequence, tag_ndm: '00081084', tag_ary: [0x0008,0x1084], tag_multiple: false, tag_note: ''},
|
252
252
|
{ tag_ps: '(0008,1090)', tag_name: "Manufacturer's Model Name", tag_key: 'ManufacturerModelName', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0008,1090)', tag_sym: :manufacturer_model_name, tag_ndm: '00081090', tag_ary: [0x0008,0x1090], tag_multiple: false, tag_note: ''},
|
253
|
-
{ tag_ps: '(0008,1100)', tag_name: "Referenced Results Sequence", tag_key: 'ReferencedResultsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1100)', tag_sym: :referenced_results_sequence, tag_ndm: '00081100', tag_ary: [0x0008,0x1100], tag_multiple: false, tag_note: 'RET'},
|
253
|
+
{ tag_ps: '(0008,1100)', tag_name: "Referenced Results Sequence", tag_key: 'ReferencedResultsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1100)', tag_sym: :referenced_results_sequence, tag_ndm: '00081100', tag_ary: [0x0008,0x1100], tag_multiple: false, tag_note: 'RET (2004)'},
|
254
254
|
{ tag_ps: '(0008,1110)', tag_name: "Referenced Study Sequence", tag_key: 'ReferencedStudySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1110)', tag_sym: :referenced_study_sequence, tag_ndm: '00081110', tag_ary: [0x0008,0x1110], tag_multiple: false, tag_note: ''},
|
255
255
|
{ tag_ps: '(0008,1111)', tag_name: "Referenced Performed Procedure Step Sequence", tag_key: 'ReferencedPerformedProcedureStepSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1111)', tag_sym: :referenced_performed_procedure_step_sequence, tag_ndm: '00081111', tag_ary: [0x0008,0x1111], tag_multiple: false, tag_note: ''},
|
256
256
|
{ tag_ps: '(0008,1115)', tag_name: "Referenced Series Sequence", tag_key: 'ReferencedSeriesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1115)', tag_sym: :referenced_series_sequence, tag_ndm: '00081115', tag_ary: [0x0008,0x1115], tag_multiple: false, tag_note: ''},
|
257
257
|
{ tag_ps: '(0008,1120)', tag_name: "Referenced Patient Sequence", tag_key: 'ReferencedPatientSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1120)', tag_sym: :referenced_patient_sequence, tag_ndm: '00081120', tag_ary: [0x0008,0x1120], tag_multiple: false, tag_note: ''},
|
258
258
|
{ tag_ps: '(0008,1125)', tag_name: "Referenced Visit Sequence", tag_key: 'ReferencedVisitSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1125)', tag_sym: :referenced_visit_sequence, tag_ndm: '00081125', tag_ary: [0x0008,0x1125], tag_multiple: false, tag_note: ''},
|
259
|
-
{ tag_ps: '(0008,1130)', tag_name: "Referenced Overlay Sequence", tag_key: 'ReferencedOverlaySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1130)', tag_sym: :referenced_overlay_sequence, tag_ndm: '00081130', tag_ary: [0x0008,0x1130], tag_multiple: false, tag_note: 'RET'},
|
259
|
+
{ tag_ps: '(0008,1130)', tag_name: "Referenced Overlay Sequence", tag_key: 'ReferencedOverlaySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1130)', tag_sym: :referenced_overlay_sequence, tag_ndm: '00081130', tag_ary: [0x0008,0x1130], tag_multiple: false, tag_note: 'RET (2004)'},
|
260
260
|
{ tag_ps: '(0008,1134)', tag_name: "Referenced Stereometric Instance Sequence", tag_key: 'ReferencedStereometricInstanceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1134)', tag_sym: :referenced_stereometric_instance_sequence, tag_ndm: '00081134', tag_ary: [0x0008,0x1134], tag_multiple: false, tag_note: ''},
|
261
261
|
{ tag_ps: '(0008,113A)', tag_name: "Referenced Waveform Sequence", tag_key: 'ReferencedWaveformSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,113A)', tag_sym: :referenced_waveform_sequence, tag_ndm: '0008113A', tag_ary: [0x0008,0x113A], tag_multiple: false, tag_note: ''},
|
262
262
|
{ tag_ps: '(0008,1140)', tag_name: "Referenced Image Sequence", tag_key: 'ReferencedImageSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1140)', tag_sym: :referenced_image_sequence, tag_ndm: '00081140', tag_ary: [0x0008,0x1140], tag_multiple: false, tag_note: ''},
|
263
|
-
{ tag_ps: '(0008,1145)', tag_name: "Referenced Curve Sequence", tag_key: 'ReferencedCurveSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1145)', tag_sym: :referenced_curve_sequence, tag_ndm: '00081145', tag_ary: [0x0008,0x1145], tag_multiple: false, tag_note: 'RET'},
|
263
|
+
{ tag_ps: '(0008,1145)', tag_name: "Referenced Curve Sequence", tag_key: 'ReferencedCurveSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1145)', tag_sym: :referenced_curve_sequence, tag_ndm: '00081145', tag_ary: [0x0008,0x1145], tag_multiple: false, tag_note: 'RET (2004)'},
|
264
264
|
{ tag_ps: '(0008,114A)', tag_name: "Referenced Instance Sequence", tag_key: 'ReferencedInstanceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,114A)', tag_sym: :referenced_instance_sequence, tag_ndm: '0008114A', tag_ary: [0x0008,0x114A], tag_multiple: false, tag_note: ''},
|
265
265
|
{ tag_ps: '(0008,114B)', tag_name: "Referenced Real World Value Mapping Instance Sequence", tag_key: 'ReferencedRealWorldValueMappingInstanceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,114B)', tag_sym: :referenced_real_world_value_mapping_instance_sequence, tag_ndm: '0008114B', tag_ary: [0x0008,0x114B], tag_multiple: false, tag_note: ''},
|
266
266
|
{ tag_ps: '(0008,1150)', tag_name: "Referenced SOP Class UID", tag_key: 'ReferencedSOPClassUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0008,1150)', tag_sym: :referenced_sop_class_uid, tag_ndm: '00081150', tag_ary: [0x0008,0x1150], tag_multiple: false, tag_note: ''},
|
@@ -282,7 +282,7 @@ HIGH = 0001H'},
|
|
282
282
|
{ tag_ps: '(0008,119A)', tag_name: "Other Failures Sequence", tag_key: 'OtherFailuresSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,119A)', tag_sym: :other_failures_sequence, tag_ndm: '0008119A', tag_ary: [0x0008,0x119A], tag_multiple: false, tag_note: ''},
|
283
283
|
{ tag_ps: '(0008,1200)', tag_name: "Studies Containing Other Referenced Instances Sequence", tag_key: 'StudiesContainingOtherReferencedInstancesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1200)', tag_sym: :studies_containing_other_referenced_instances_sequence, tag_ndm: '00081200', tag_ary: [0x0008,0x1200], tag_multiple: false, tag_note: ''},
|
284
284
|
{ tag_ps: '(0008,1250)', tag_name: "Related Series Sequence", tag_key: 'RelatedSeriesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1250)', tag_sym: :related_series_sequence, tag_ndm: '00081250', tag_ary: [0x0008,0x1250], tag_multiple: false, tag_note: ''},
|
285
|
-
{ tag_ps: '(0008,2110)', tag_name: "Lossy Image Compression (Retired)", tag_key: 'LossyImageCompressionRetired', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,2110)', tag_sym: :lossy_image_compression_retired, tag_ndm: '00082110', tag_ary: [0x0008,0x2110], tag_multiple: false, tag_note: 'RET'},
|
285
|
+
{ tag_ps: '(0008,2110)', tag_name: "Lossy Image Compression (Retired)", tag_key: 'LossyImageCompressionRetired', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,2110)', tag_sym: :lossy_image_compression_retired, tag_ndm: '00082110', tag_ary: [0x0008,0x2110], tag_multiple: false, tag_note: 'RET (1993)'},
|
286
286
|
{ tag_ps: '(0008,2111)', tag_name: "Derivation Description", tag_key: 'DerivationDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0008,2111)', tag_sym: :derivation_description, tag_ndm: '00082111', tag_ary: [0x0008,0x2111], tag_multiple: false, tag_note: ''},
|
287
287
|
{ tag_ps: '(0008,2112)', tag_name: "Source Image Sequence", tag_key: 'SourceImageSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2112)', tag_sym: :source_image_sequence, tag_ndm: '00082112', tag_ary: [0x0008,0x2112], tag_multiple: false, tag_note: ''},
|
288
288
|
{ tag_ps: '(0008,2120)', tag_name: "Stage Name", tag_key: 'StageName', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0008,2120)', tag_sym: :stage_name, tag_ndm: '00082120', tag_ary: [0x0008,0x2120], tag_multiple: false, tag_note: ''},
|
@@ -300,27 +300,27 @@ HIGH = 0001H'},
|
|
300
300
|
{ tag_ps: '(0008,2142)', tag_name: "Start Trim", tag_key: 'StartTrim', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0008,2142)', tag_sym: :start_trim, tag_ndm: '00082142', tag_ary: [0x0008,0x2142], tag_multiple: false, tag_note: ''},
|
301
301
|
{ tag_ps: '(0008,2143)', tag_name: "Stop Trim", tag_key: 'StopTrim', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0008,2143)', tag_sym: :stop_trim, tag_ndm: '00082143', tag_ary: [0x0008,0x2143], tag_multiple: false, tag_note: ''},
|
302
302
|
{ tag_ps: '(0008,2144)', tag_name: "Recommended Display Frame Rate", tag_key: 'RecommendedDisplayFrameRate', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0008,2144)', tag_sym: :recommended_display_frame_rate, tag_ndm: '00082144', tag_ary: [0x0008,0x2144], tag_multiple: false, tag_note: ''},
|
303
|
-
{ tag_ps: '(0008,2200)', tag_name: "Transducer Position", tag_key: 'TransducerPosition', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,2200)', tag_sym: :transducer_position, tag_ndm: '00082200', tag_ary: [0x0008,0x2200], tag_multiple: false, tag_note: 'RET'},
|
304
|
-
{ tag_ps: '(0008,2204)', tag_name: "Transducer Orientation", tag_key: 'TransducerOrientation', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,2204)', tag_sym: :transducer_orientation, tag_ndm: '00082204', tag_ary: [0x0008,0x2204], tag_multiple: false, tag_note: 'RET'},
|
305
|
-
{ tag_ps: '(0008,2208)', tag_name: "Anatomic Structure", tag_key: 'AnatomicStructure', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,2208)', tag_sym: :anatomic_structure, tag_ndm: '00082208', tag_ary: [0x0008,0x2208], tag_multiple: false, tag_note: 'RET'},
|
303
|
+
{ tag_ps: '(0008,2200)', tag_name: "Transducer Position", tag_key: 'TransducerPosition', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,2200)', tag_sym: :transducer_position, tag_ndm: '00082200', tag_ary: [0x0008,0x2200], tag_multiple: false, tag_note: 'RET (1993)'},
|
304
|
+
{ tag_ps: '(0008,2204)', tag_name: "Transducer Orientation", tag_key: 'TransducerOrientation', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,2204)', tag_sym: :transducer_orientation, tag_ndm: '00082204', tag_ary: [0x0008,0x2204], tag_multiple: false, tag_note: 'RET (1993)'},
|
305
|
+
{ tag_ps: '(0008,2208)', tag_name: "Anatomic Structure", tag_key: 'AnatomicStructure', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,2208)', tag_sym: :anatomic_structure, tag_ndm: '00082208', tag_ary: [0x0008,0x2208], tag_multiple: false, tag_note: 'RET (1993)'},
|
306
306
|
{ tag_ps: '(0008,2218)', tag_name: "Anatomic Region Sequence", tag_key: 'AnatomicRegionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2218)', tag_sym: :anatomic_region_sequence, tag_ndm: '00082218', tag_ary: [0x0008,0x2218], tag_multiple: false, tag_note: ''},
|
307
307
|
{ tag_ps: '(0008,2220)', tag_name: "Anatomic Region Modifier Sequence", tag_key: 'AnatomicRegionModifierSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2220)', tag_sym: :anatomic_region_modifier_sequence, tag_ndm: '00082220', tag_ary: [0x0008,0x2220], tag_multiple: false, tag_note: ''},
|
308
308
|
{ tag_ps: '(0008,2228)', tag_name: "Primary Anatomic Structure Sequence", tag_key: 'PrimaryAnatomicStructureSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2228)', tag_sym: :primary_anatomic_structure_sequence, tag_ndm: '00082228', tag_ary: [0x0008,0x2228], tag_multiple: false, tag_note: ''},
|
309
|
-
{ tag_ps: '(0008,2229)', tag_name: "Anatomic Structure, Space or Region Sequence", tag_key: 'AnatomicStructureSpaceOrRegionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2229)', tag_sym: :anatomic_structure_space_or_region_sequence, tag_ndm: '00082229', tag_ary: [0x0008,0x2229], tag_multiple: false, tag_note: 'RET'},
|
309
|
+
{ tag_ps: '(0008,2229)', tag_name: "Anatomic Structure, Space or Region Sequence", tag_key: 'AnatomicStructureSpaceOrRegionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2229)', tag_sym: :anatomic_structure_space_or_region_sequence, tag_ndm: '00082229', tag_ary: [0x0008,0x2229], tag_multiple: false, tag_note: 'RET (2017c)'},
|
310
310
|
{ tag_ps: '(0008,2230)', tag_name: "Primary Anatomic Structure Modifier Sequence", tag_key: 'PrimaryAnatomicStructureModifierSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2230)', tag_sym: :primary_anatomic_structure_modifier_sequence, tag_ndm: '00082230', tag_ary: [0x0008,0x2230], tag_multiple: false, tag_note: ''},
|
311
|
-
{ tag_ps: '(0008,2240)', tag_name: "Transducer Position Sequence", tag_key: 'TransducerPositionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2240)', tag_sym: :transducer_position_sequence, tag_ndm: '00082240', tag_ary: [0x0008,0x2240], tag_multiple: false, tag_note: 'RET'},
|
312
|
-
{ tag_ps: '(0008,2242)', tag_name: "Transducer Position Modifier Sequence", tag_key: 'TransducerPositionModifierSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2242)', tag_sym: :transducer_position_modifier_sequence, tag_ndm: '00082242', tag_ary: [0x0008,0x2242], tag_multiple: false, tag_note: 'RET'},
|
313
|
-
{ tag_ps: '(0008,2244)', tag_name: "Transducer Orientation Sequence", tag_key: 'TransducerOrientationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2244)', tag_sym: :transducer_orientation_sequence, tag_ndm: '00082244', tag_ary: [0x0008,0x2244], tag_multiple: false, tag_note: 'RET'},
|
314
|
-
{ tag_ps: '(0008,2246)', tag_name: "Transducer Orientation Modifier Sequence", tag_key: 'TransducerOrientationModifierSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2246)', tag_sym: :transducer_orientation_modifier_sequence, tag_ndm: '00082246', tag_ary: [0x0008,0x2246], tag_multiple: false, tag_note: 'RET'},
|
315
|
-
{ tag_ps: '(0008,2251)', tag_name: "Anatomic Structure Space Or Region Code Sequence (Trial)", tag_key: 'AnatomicStructureSpaceOrRegionCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2251)', tag_sym: :anatomic_structure_space_or_region_code_sequence_trial, tag_ndm: '00082251', tag_ary: [0x0008,0x2251], tag_multiple: false, tag_note: 'RET'},
|
316
|
-
{ tag_ps: '(0008,2253)', tag_name: "Anatomic Portal Of Entrance Code Sequence (Trial)", tag_key: 'AnatomicPortalOfEntranceCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2253)', tag_sym: :anatomic_portal_of_entrance_code_sequence_trial, tag_ndm: '00082253', tag_ary: [0x0008,0x2253], tag_multiple: false, tag_note: 'RET'},
|
317
|
-
{ tag_ps: '(0008,2255)', tag_name: "Anatomic Approach Direction Code Sequence (Trial)", tag_key: 'AnatomicApproachDirectionCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2255)', tag_sym: :anatomic_approach_direction_code_sequence_trial, tag_ndm: '00082255', tag_ary: [0x0008,0x2255], tag_multiple: false, tag_note: 'RET'},
|
318
|
-
{ tag_ps: '(0008,2256)', tag_name: "Anatomic Perspective Description (Trial)", tag_key: 'AnatomicPerspectiveDescriptionTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0008,2256)', tag_sym: :anatomic_perspective_description_trial, tag_ndm: '00082256', tag_ary: [0x0008,0x2256], tag_multiple: false, tag_note: 'RET'},
|
319
|
-
{ tag_ps: '(0008,2257)', tag_name: "Anatomic Perspective Code Sequence (Trial)", tag_key: 'AnatomicPerspectiveCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2257)', tag_sym: :anatomic_perspective_code_sequence_trial, tag_ndm: '00082257', tag_ary: [0x0008,0x2257], tag_multiple: false, tag_note: 'RET'},
|
320
|
-
{ tag_ps: '(0008,2258)', tag_name: "Anatomic Location Of Examining Instrument Description (Trial)", tag_key: 'AnatomicLocationOfExaminingInstrumentDescriptionTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0008,2258)', tag_sym: :anatomic_location_of_examining_instrument_description_trial, tag_ndm: '00082258', tag_ary: [0x0008,0x2258], tag_multiple: false, tag_note: 'RET'},
|
321
|
-
{ tag_ps: '(0008,2259)', tag_name: "Anatomic Location Of Examining Instrument Code Sequence (Trial)", tag_key: 'AnatomicLocationOfExaminingInstrumentCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2259)', tag_sym: :anatomic_location_of_examining_instrument_code_sequence_trial, tag_ndm: '00082259', tag_ary: [0x0008,0x2259], tag_multiple: false, tag_note: 'RET'},
|
322
|
-
{ tag_ps: '(0008,225A)', tag_name: "Anatomic Structure Space Or Region Modifier Code Sequence (Trial)", tag_key: 'AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,225A)', tag_sym: :anatomic_structure_space_or_region_modifier_code_sequence_trial, tag_ndm: '0008225A', tag_ary: [0x0008,0x225A], tag_multiple: false, tag_note: 'RET'},
|
323
|
-
{ tag_ps: '(0008,225C)', tag_name: "On Axis Background Anatomic Structure Code Sequence (Trial)", tag_key: 'OnAxisBackgroundAnatomicStructureCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,225C)', tag_sym: :on_axis_background_anatomic_structure_code_sequence_trial, tag_ndm: '0008225C', tag_ary: [0x0008,0x225C], tag_multiple: false, tag_note: 'RET'},
|
311
|
+
{ tag_ps: '(0008,2240)', tag_name: "Transducer Position Sequence", tag_key: 'TransducerPositionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2240)', tag_sym: :transducer_position_sequence, tag_ndm: '00082240', tag_ary: [0x0008,0x2240], tag_multiple: false, tag_note: 'RET (2004)'},
|
312
|
+
{ tag_ps: '(0008,2242)', tag_name: "Transducer Position Modifier Sequence", tag_key: 'TransducerPositionModifierSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2242)', tag_sym: :transducer_position_modifier_sequence, tag_ndm: '00082242', tag_ary: [0x0008,0x2242], tag_multiple: false, tag_note: 'RET (2004)'},
|
313
|
+
{ tag_ps: '(0008,2244)', tag_name: "Transducer Orientation Sequence", tag_key: 'TransducerOrientationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2244)', tag_sym: :transducer_orientation_sequence, tag_ndm: '00082244', tag_ary: [0x0008,0x2244], tag_multiple: false, tag_note: 'RET (2004)'},
|
314
|
+
{ tag_ps: '(0008,2246)', tag_name: "Transducer Orientation Modifier Sequence", tag_key: 'TransducerOrientationModifierSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2246)', tag_sym: :transducer_orientation_modifier_sequence, tag_ndm: '00082246', tag_ary: [0x0008,0x2246], tag_multiple: false, tag_note: 'RET (2004)'},
|
315
|
+
{ tag_ps: '(0008,2251)', tag_name: "Anatomic Structure Space Or Region Code Sequence (Trial)", tag_key: 'AnatomicStructureSpaceOrRegionCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2251)', tag_sym: :anatomic_structure_space_or_region_code_sequence_trial, tag_ndm: '00082251', tag_ary: [0x0008,0x2251], tag_multiple: false, tag_note: 'RET (2007)'},
|
316
|
+
{ tag_ps: '(0008,2253)', tag_name: "Anatomic Portal Of Entrance Code Sequence (Trial)", tag_key: 'AnatomicPortalOfEntranceCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2253)', tag_sym: :anatomic_portal_of_entrance_code_sequence_trial, tag_ndm: '00082253', tag_ary: [0x0008,0x2253], tag_multiple: false, tag_note: 'RET (2007)'},
|
317
|
+
{ tag_ps: '(0008,2255)', tag_name: "Anatomic Approach Direction Code Sequence (Trial)", tag_key: 'AnatomicApproachDirectionCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2255)', tag_sym: :anatomic_approach_direction_code_sequence_trial, tag_ndm: '00082255', tag_ary: [0x0008,0x2255], tag_multiple: false, tag_note: 'RET (2007)'},
|
318
|
+
{ tag_ps: '(0008,2256)', tag_name: "Anatomic Perspective Description (Trial)", tag_key: 'AnatomicPerspectiveDescriptionTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0008,2256)', tag_sym: :anatomic_perspective_description_trial, tag_ndm: '00082256', tag_ary: [0x0008,0x2256], tag_multiple: false, tag_note: 'RET (2007)'},
|
319
|
+
{ tag_ps: '(0008,2257)', tag_name: "Anatomic Perspective Code Sequence (Trial)", tag_key: 'AnatomicPerspectiveCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2257)', tag_sym: :anatomic_perspective_code_sequence_trial, tag_ndm: '00082257', tag_ary: [0x0008,0x2257], tag_multiple: false, tag_note: 'RET (2007)'},
|
320
|
+
{ tag_ps: '(0008,2258)', tag_name: "Anatomic Location Of Examining Instrument Description (Trial)", tag_key: 'AnatomicLocationOfExaminingInstrumentDescriptionTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0008,2258)', tag_sym: :anatomic_location_of_examining_instrument_description_trial, tag_ndm: '00082258', tag_ary: [0x0008,0x2258], tag_multiple: false, tag_note: 'RET (2007)'},
|
321
|
+
{ tag_ps: '(0008,2259)', tag_name: "Anatomic Location Of Examining Instrument Code Sequence (Trial)", tag_key: 'AnatomicLocationOfExaminingInstrumentCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,2259)', tag_sym: :anatomic_location_of_examining_instrument_code_sequence_trial, tag_ndm: '00082259', tag_ary: [0x0008,0x2259], tag_multiple: false, tag_note: 'RET (2007)'},
|
322
|
+
{ tag_ps: '(0008,225A)', tag_name: "Anatomic Structure Space Or Region Modifier Code Sequence (Trial)", tag_key: 'AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,225A)', tag_sym: :anatomic_structure_space_or_region_modifier_code_sequence_trial, tag_ndm: '0008225A', tag_ary: [0x0008,0x225A], tag_multiple: false, tag_note: 'RET (2007)'},
|
323
|
+
{ tag_ps: '(0008,225C)', tag_name: "On Axis Background Anatomic Structure Code Sequence (Trial)", tag_key: 'OnAxisBackgroundAnatomicStructureCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,225C)', tag_sym: :on_axis_background_anatomic_structure_code_sequence_trial, tag_ndm: '0008225C', tag_ary: [0x0008,0x225C], tag_multiple: false, tag_note: 'RET (2007)'},
|
324
324
|
{ tag_ps: '(0008,3001)', tag_name: "Alternate Representation Sequence", tag_key: 'AlternateRepresentationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,3001)', tag_sym: :alternate_representation_sequence, tag_ndm: '00083001', tag_ary: [0x0008,0x3001], tag_multiple: false, tag_note: ''},
|
325
325
|
{ tag_ps: '(0008,3010)', tag_name: "Irradiation Event UID", tag_key: 'IrradiationEventUID', tag_vr: [:UI], tag_vm: ["1-n"], tag_str: '(0008,3010)', tag_sym: :irradiation_event_uid, tag_ndm: '00083010', tag_ary: [0x0008,0x3010], tag_multiple: false, tag_note: ''},
|
326
326
|
{ tag_ps: '(0008,3011)', tag_name: "Source Irradiation Event Sequence", tag_key: 'SourceIrradiationEventSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,3011)', tag_sym: :source_irradiation_event_sequence, tag_ndm: '00083011', tag_ary: [0x0008,0x3011], tag_multiple: false, tag_note: ''},
|
@@ -374,7 +374,7 @@ HIGH = 0001H'},
|
|
374
374
|
{ tag_ps: '(0010,0222)', tag_name: "Genetic Modifications Description", tag_key: 'GeneticModificationsDescription', tag_vr: [:UC], tag_vm: ["1"], tag_str: '(0010,0222)', tag_sym: :genetic_modifications_description, tag_ndm: '00100222', tag_ary: [0x0010,0x0222], tag_multiple: false, tag_note: ''},
|
375
375
|
{ tag_ps: '(0010,0223)', tag_name: "Genetic Modifications Nomenclature", tag_key: 'GeneticModificationsNomenclature', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0010,0223)', tag_sym: :genetic_modifications_nomenclature, tag_ndm: '00100223', tag_ary: [0x0010,0x0223], tag_multiple: false, tag_note: ''},
|
376
376
|
{ tag_ps: '(0010,0229)', tag_name: "Genetic Modifications Code Sequence", tag_key: 'GeneticModificationsCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0010,0229)', tag_sym: :genetic_modifications_code_sequence, tag_ndm: '00100229', tag_ary: [0x0010,0x0229], tag_multiple: false, tag_note: ''},
|
377
|
-
{ tag_ps: '(0010,1000)', tag_name: "Other Patient IDs", tag_key: 'OtherPatientIDs', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0010,1000)', tag_sym: :other_patient_ids, tag_ndm: '00101000', tag_ary: [0x0010,0x1000], tag_multiple: false, tag_note: 'RET'},
|
377
|
+
{ tag_ps: '(0010,1000)', tag_name: "Other Patient IDs", tag_key: 'OtherPatientIDs', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0010,1000)', tag_sym: :other_patient_ids, tag_ndm: '00101000', tag_ary: [0x0010,0x1000], tag_multiple: false, tag_note: 'RET (2017a)'},
|
378
378
|
{ tag_ps: '(0010,1001)', tag_name: "Other Patient Names", tag_key: 'OtherPatientNames', tag_vr: [:PN], tag_vm: ["1-n"], tag_str: '(0010,1001)', tag_sym: :other_patient_names, tag_ndm: '00101001', tag_ary: [0x0010,0x1001], tag_multiple: false, tag_note: ''},
|
379
379
|
{ tag_ps: '(0010,1002)', tag_name: "Other Patient IDs Sequence", tag_key: 'OtherPatientIDsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0010,1002)', tag_sym: :other_patient_ids_sequence, tag_ndm: '00101002', tag_ary: [0x0010,0x1002], tag_multiple: false, tag_note: ''},
|
380
380
|
{ tag_ps: '(0010,1005)', tag_name: "Patient's Birth Name", tag_key: 'PatientBirthName', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(0010,1005)', tag_sym: :patient_birth_name, tag_ndm: '00101005', tag_ary: [0x0010,0x1005], tag_multiple: false, tag_note: ''},
|
@@ -390,7 +390,7 @@ HIGH = 0001H'},
|
|
390
390
|
{ tag_ps: '(0010,1060)', tag_name: "Patient's Mother's Birth Name", tag_key: 'PatientMotherBirthName', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(0010,1060)', tag_sym: :patient_mother_birth_name, tag_ndm: '00101060', tag_ary: [0x0010,0x1060], tag_multiple: false, tag_note: ''},
|
391
391
|
{ tag_ps: '(0010,1080)', tag_name: "Military Rank", tag_key: 'MilitaryRank', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0010,1080)', tag_sym: :military_rank, tag_ndm: '00101080', tag_ary: [0x0010,0x1080], tag_multiple: false, tag_note: ''},
|
392
392
|
{ tag_ps: '(0010,1081)', tag_name: "Branch of Service", tag_key: 'BranchOfService', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0010,1081)', tag_sym: :branch_of_service, tag_ndm: '00101081', tag_ary: [0x0010,0x1081], tag_multiple: false, tag_note: ''},
|
393
|
-
{ tag_ps: '(0010,1090)', tag_name: "Medical Record Locator", tag_key: 'MedicalRecordLocator', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0010,1090)', tag_sym: :medical_record_locator, tag_ndm: '00101090', tag_ary: [0x0010,0x1090], tag_multiple: false, tag_note: 'RET'},
|
393
|
+
{ tag_ps: '(0010,1090)', tag_name: "Medical Record Locator", tag_key: 'MedicalRecordLocator', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0010,1090)', tag_sym: :medical_record_locator, tag_ndm: '00101090', tag_ary: [0x0010,0x1090], tag_multiple: false, tag_note: 'RET (2017a)'},
|
394
394
|
{ tag_ps: '(0010,1100)', tag_name: "Referenced Patient Photo Sequence", tag_key: 'ReferencedPatientPhotoSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0010,1100)', tag_sym: :referenced_patient_photo_sequence, tag_ndm: '00101100', tag_ary: [0x0010,0x1100], tag_multiple: false, tag_note: ''},
|
395
395
|
{ tag_ps: '(0010,2000)', tag_name: "Medical Alerts", tag_key: 'MedicalAlerts', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0010,2000)', tag_sym: :medical_alerts, tag_ndm: '00102000', tag_ary: [0x0010,0x2000], tag_multiple: false, tag_note: ''},
|
396
396
|
{ tag_ps: '(0010,2110)', tag_name: "Allergies", tag_key: 'Allergies', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0010,2110)', tag_sym: :allergies, tag_ndm: '00102110', tag_ary: [0x0010,0x2110], tag_multiple: false, tag_note: ''},
|
@@ -443,8 +443,8 @@ HIGH = 0001H'},
|
|
443
443
|
{ tag_ps: '(0012,0085)', tag_name: "Consent for Distribution Flag", tag_key: 'ConsentForDistributionFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0012,0085)', tag_sym: :consent_for_distribution_flag, tag_ndm: '00120085', tag_ary: [0x0012,0x0085], tag_multiple: false, tag_note: ''},
|
444
444
|
{ tag_ps: '(0012,0086)', tag_name: "Ethics Committee Approval Effectiveness Start Date", tag_key: 'EthicsCommitteeApprovalEffectivenessStartDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0012,0086)', tag_sym: :ethics_committee_approval_effectiveness_start_date, tag_ndm: '00120086', tag_ary: [0x0012,0x0086], tag_multiple: false, tag_note: ''},
|
445
445
|
{ tag_ps: '(0012,0087)', tag_name: "Ethics Committee Approval Effectiveness End Date", tag_key: 'EthicsCommitteeApprovalEffectivenessEndDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0012,0087)', tag_sym: :ethics_committee_approval_effectiveness_end_date, tag_ndm: '00120087', tag_ary: [0x0012,0x0087], tag_multiple: false, tag_note: ''},
|
446
|
-
{ tag_ps: '(0014,0023)', tag_name: "CAD File Format", tag_key: 'CADFileFormat', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0014,0023)', tag_sym: :cad_file_format, tag_ndm: '00140023', tag_ary: [0x0014,0x0023], tag_multiple: false, tag_note: 'RET'},
|
447
|
-
{ tag_ps: '(0014,0024)', tag_name: "Component Reference System", tag_key: 'ComponentReferenceSystem', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0014,0024)', tag_sym: :component_reference_system, tag_ndm: '00140024', tag_ary: [0x0014,0x0024], tag_multiple: false, tag_note: 'RET'},
|
446
|
+
{ tag_ps: '(0014,0023)', tag_name: "CAD File Format", tag_key: 'CADFileFormat', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0014,0023)', tag_sym: :cad_file_format, tag_ndm: '00140023', tag_ary: [0x0014,0x0023], tag_multiple: false, tag_note: 'RET (2011)'},
|
447
|
+
{ tag_ps: '(0014,0024)', tag_name: "Component Reference System", tag_key: 'ComponentReferenceSystem', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0014,0024)', tag_sym: :component_reference_system, tag_ndm: '00140024', tag_ary: [0x0014,0x0024], tag_multiple: false, tag_note: 'RET (2011)'},
|
448
448
|
{ tag_ps: '(0014,0025)', tag_name: "Component Manufacturing Procedure", tag_key: 'ComponentManufacturingProcedure', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0014,0025)', tag_sym: :component_manufacturing_procedure, tag_ndm: '00140025', tag_ary: [0x0014,0x0025], tag_multiple: false, tag_note: 'DICONDE'},
|
449
449
|
{ tag_ps: '(0014,0028)', tag_name: "Component Manufacturer", tag_key: 'ComponentManufacturer', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0014,0028)', tag_sym: :component_manufacturer, tag_ndm: '00140028', tag_ary: [0x0014,0x0028], tag_multiple: false, tag_note: 'DICONDE'},
|
450
450
|
{ tag_ps: '(0014,0030)', tag_name: "Material Thickness", tag_key: 'MaterialThickness', tag_vr: [:DS], tag_vm: ["1-n"], tag_str: '(0014,0030)', tag_sym: :material_thickness, tag_ndm: '00140030', tag_ary: [0x0014,0x0030], tag_multiple: false, tag_note: 'DICONDE'},
|
@@ -452,7 +452,7 @@ HIGH = 0001H'},
|
|
452
452
|
{ tag_ps: '(0014,0034)', tag_name: "Material Isolation Diameter", tag_key: 'MaterialIsolationDiameter', tag_vr: [:DS], tag_vm: ["1-n"], tag_str: '(0014,0034)', tag_sym: :material_isolation_diameter, tag_ndm: '00140034', tag_ary: [0x0014,0x0034], tag_multiple: false, tag_note: 'DICONDE'},
|
453
453
|
{ tag_ps: '(0014,0042)', tag_name: "Material Grade", tag_key: 'MaterialGrade', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0014,0042)', tag_sym: :material_grade, tag_ndm: '00140042', tag_ary: [0x0014,0x0042], tag_multiple: false, tag_note: 'DICONDE'},
|
454
454
|
{ tag_ps: '(0014,0044)', tag_name: "Material Properties Description", tag_key: 'MaterialPropertiesDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0014,0044)', tag_sym: :material_properties_description, tag_ndm: '00140044', tag_ary: [0x0014,0x0044], tag_multiple: false, tag_note: 'DICONDE'},
|
455
|
-
{ tag_ps: '(0014,0045)', tag_name: "Material Properties File Format (Retired)", tag_key: 'MaterialPropertiesFileFormatRetired', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0014,0045)', tag_sym: :material_properties_file_format_retired, tag_ndm: '00140045', tag_ary: [0x0014,0x0045], tag_multiple: false, tag_note: 'RET'},
|
455
|
+
{ tag_ps: '(0014,0045)', tag_name: "Material Properties File Format (Retired)", tag_key: 'MaterialPropertiesFileFormatRetired', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0014,0045)', tag_sym: :material_properties_file_format_retired, tag_ndm: '00140045', tag_ary: [0x0014,0x0045], tag_multiple: false, tag_note: 'RET (2011)'},
|
456
456
|
{ tag_ps: '(0014,0046)', tag_name: "Material Notes", tag_key: 'MaterialNotes', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0014,0046)', tag_sym: :material_notes, tag_ndm: '00140046', tag_ary: [0x0014,0x0046], tag_multiple: false, tag_note: 'DICONDE'},
|
457
457
|
{ tag_ps: '(0014,0050)', tag_name: "Component Shape", tag_key: 'ComponentShape', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0014,0050)', tag_sym: :component_shape, tag_ndm: '00140050', tag_ary: [0x0014,0x0050], tag_multiple: false, tag_note: 'DICONDE'},
|
458
458
|
{ tag_ps: '(0014,0052)', tag_name: "Curvature Type", tag_key: 'CurvatureType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0014,0052)', tag_sym: :curvature_type, tag_ndm: '00140052', tag_ary: [0x0014,0x0052], tag_multiple: false, tag_note: 'DICONDE'},
|
@@ -635,6 +635,111 @@ HIGH = 0001H'},
|
|
635
635
|
{ tag_ps: '(0014,511D)', tag_name: "Wedge Chamfer Height", tag_key: 'WedgeChamferHeight', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0014,511D)', tag_sym: :wedge_chamfer_height, tag_ndm: '0014511D', tag_ary: [0x0014,0x511D], tag_multiple: false, tag_note: 'DICONDE'},
|
636
636
|
{ tag_ps: '(0014,511E)', tag_name: "Wedge Curve", tag_key: 'WedgeCurve', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0014,511E)', tag_sym: :wedge_curve, tag_ndm: '0014511E', tag_ary: [0x0014,0x511E], tag_multiple: false, tag_note: 'DICONDE'},
|
637
637
|
{ tag_ps: '(0014,511F)', tag_name: "Radius Along the Wedge", tag_key: 'RadiusAlongWedge', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0014,511F)', tag_sym: :radius_along_wedge, tag_ndm: '0014511F', tag_ary: [0x0014,0x511F], tag_multiple: false, tag_note: 'DICONDE'},
|
638
|
+
{ tag_ps: '(0016,0001)', tag_name: "White Point", tag_key: 'WhitePoint', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0001)', tag_sym: :white_point, tag_ndm: '00160001', tag_ary: [0x0016,0x0001], tag_multiple: false, tag_note: ''},
|
639
|
+
{ tag_ps: '(0016,0002)', tag_name: "Primary Chromaticities", tag_key: 'PrimaryChromaticities', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(0016,0002)', tag_sym: :primary_chromaticities, tag_ndm: '00160002', tag_ary: [0x0016,0x0002], tag_multiple: false, tag_note: ''},
|
640
|
+
{ tag_ps: '(0016,0003)', tag_name: "Battery Level", tag_key: 'BatteryLevel', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(0016,0003)', tag_sym: :battery_level, tag_ndm: '00160003', tag_ary: [0x0016,0x0003], tag_multiple: false, tag_note: ''},
|
641
|
+
{ tag_ps: '(0016,0004)', tag_name: "Exposure Time in Seconds", tag_key: 'ExposureTimeInSeconds', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0004)', tag_sym: :exposure_time_in_seconds, tag_ndm: '00160004', tag_ary: [0x0016,0x0004], tag_multiple: false, tag_note: ''},
|
642
|
+
{ tag_ps: '(0016,0005)', tag_name: "F-Number", tag_key: 'FNumber', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0005)', tag_sym: :f_number, tag_ndm: '00160005', tag_ary: [0x0016,0x0005], tag_multiple: false, tag_note: ''},
|
643
|
+
{ tag_ps: '(0016,0006)', tag_name: "OECF Rows", tag_key: 'OECFRows', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,0006)', tag_sym: :oecf_rows, tag_ndm: '00160006', tag_ary: [0x0016,0x0006], tag_multiple: false, tag_note: ''},
|
644
|
+
{ tag_ps: '(0016,0007)', tag_name: "OECF Columns", tag_key: 'OECFColumns', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,0007)', tag_sym: :oecf_columns, tag_ndm: '00160007', tag_ary: [0x0016,0x0007], tag_multiple: false, tag_note: ''},
|
645
|
+
{ tag_ps: '(0016,0008)', tag_name: "OECF Column Names", tag_key: 'OECFColumnNames', tag_vr: [:UC], tag_vm: ["1-n"], tag_str: '(0016,0008)', tag_sym: :oecf_column_names, tag_ndm: '00160008', tag_ary: [0x0016,0x0008], tag_multiple: false, tag_note: ''},
|
646
|
+
{ tag_ps: '(0016,0009)', tag_name: "OECF Values", tag_key: 'OECFValues', tag_vr: [:DS], tag_vm: ["1-n"], tag_str: '(0016,0009)', tag_sym: :oecf_values, tag_ndm: '00160009', tag_ary: [0x0016,0x0009], tag_multiple: false, tag_note: ''},
|
647
|
+
{ tag_ps: '(0016,000A)', tag_name: "Spatial Frequency Response Rows", tag_key: 'SpatialFrequencyResponseRows', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,000A)', tag_sym: :spatial_frequency_response_rows, tag_ndm: '0016000A', tag_ary: [0x0016,0x000A], tag_multiple: false, tag_note: ''},
|
648
|
+
{ tag_ps: '(0016,000B)', tag_name: "Spatial Frequency Response Columns", tag_key: 'SpatialFrequencyResponseColumns', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,000B)', tag_sym: :spatial_frequency_response_columns, tag_ndm: '0016000B', tag_ary: [0x0016,0x000B], tag_multiple: false, tag_note: ''},
|
649
|
+
{ tag_ps: '(0016,000C)', tag_name: "Spatial Frequency Response Column Names", tag_key: 'SpatialFrequencyResponseColumnNames', tag_vr: [:UC], tag_vm: ["1-n"], tag_str: '(0016,000C)', tag_sym: :spatial_frequency_response_column_names, tag_ndm: '0016000C', tag_ary: [0x0016,0x000C], tag_multiple: false, tag_note: ''},
|
650
|
+
{ tag_ps: '(0016,000D)', tag_name: "Spatial Frequency Response Values", tag_key: 'SpatialFrequencyResponseValues', tag_vr: [:DS], tag_vm: ["1-n"], tag_str: '(0016,000D)', tag_sym: :spatial_frequency_response_values, tag_ndm: '0016000D', tag_ary: [0x0016,0x000D], tag_multiple: false, tag_note: ''},
|
651
|
+
{ tag_ps: '(0016,000E)', tag_name: "Color Filter Array Pattern Rows", tag_key: 'ColorFilterArrayPatternRows', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,000E)', tag_sym: :color_filter_array_pattern_rows, tag_ndm: '0016000E', tag_ary: [0x0016,0x000E], tag_multiple: false, tag_note: ''},
|
652
|
+
{ tag_ps: '(0016,000F)', tag_name: "Color Filter Array Pattern Columns", tag_key: 'ColorFilterArrayPatternColumns', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,000F)', tag_sym: :color_filter_array_pattern_columns, tag_ndm: '0016000F', tag_ary: [0x0016,0x000F], tag_multiple: false, tag_note: ''},
|
653
|
+
{ tag_ps: '(0016,0010)', tag_name: "Color Filter Array Pattern Values", tag_key: 'ColorFilterArrayPatternValues', tag_vr: [:DS], tag_vm: ["1-n"], tag_str: '(0016,0010)', tag_sym: :color_filter_array_pattern_values, tag_ndm: '00160010', tag_ary: [0x0016,0x0010], tag_multiple: false, tag_note: ''},
|
654
|
+
{ tag_ps: '(0016,0011)', tag_name: "Flash Firing Status", tag_key: 'FlashFiringStatus', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0011)', tag_sym: :flash_firing_status, tag_ndm: '00160011', tag_ary: [0x0016,0x0011], tag_multiple: false, tag_note: ''},
|
655
|
+
{ tag_ps: '(0016,0012)', tag_name: "Flash Return Status", tag_key: 'FlashReturnStatus', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0012)', tag_sym: :flash_return_status, tag_ndm: '00160012', tag_ary: [0x0016,0x0012], tag_multiple: false, tag_note: ''},
|
656
|
+
{ tag_ps: '(0016,0013)', tag_name: "Flash Mode", tag_key: 'FlashMode', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0013)', tag_sym: :flash_mode, tag_ndm: '00160013', tag_ary: [0x0016,0x0013], tag_multiple: false, tag_note: ''},
|
657
|
+
{ tag_ps: '(0016,0014)', tag_name: "Flash Function Present", tag_key: 'FlashFunctionPresent', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0014)', tag_sym: :flash_function_present, tag_ndm: '00160014', tag_ary: [0x0016,0x0014], tag_multiple: false, tag_note: ''},
|
658
|
+
{ tag_ps: '(0016,0015)', tag_name: "Flash Red Eye Mode", tag_key: 'FlashRedEyeMode', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0015)', tag_sym: :flash_red_eye_mode, tag_ndm: '00160015', tag_ary: [0x0016,0x0015], tag_multiple: false, tag_note: ''},
|
659
|
+
{ tag_ps: '(0016,0016)', tag_name: "Exposure Program", tag_key: 'ExposureProgram', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0016)', tag_sym: :exposure_program, tag_ndm: '00160016', tag_ary: [0x0016,0x0016], tag_multiple: false, tag_note: ''},
|
660
|
+
{ tag_ps: '(0016,0017)', tag_name: "Spectral Sensitivity", tag_key: 'SpectralSensitivity', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(0016,0017)', tag_sym: :spectral_sensitivity, tag_ndm: '00160017', tag_ary: [0x0016,0x0017], tag_multiple: false, tag_note: ''},
|
661
|
+
{ tag_ps: '(0016,0018)', tag_name: "Photographic Sensitivity", tag_key: 'PhotographicSensitivity', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,0018)', tag_sym: :photographic_sensitivity, tag_ndm: '00160018', tag_ary: [0x0016,0x0018], tag_multiple: false, tag_note: ''},
|
662
|
+
{ tag_ps: '(0016,0019)', tag_name: "Self Timer Mode", tag_key: 'SelfTimerMode', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,0019)', tag_sym: :self_timer_mode, tag_ndm: '00160019', tag_ary: [0x0016,0x0019], tag_multiple: false, tag_note: ''},
|
663
|
+
{ tag_ps: '(0016,001A)', tag_name: "Sensitivity Type", tag_key: 'SensitivityType', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,001A)', tag_sym: :sensitivity_type, tag_ndm: '0016001A', tag_ary: [0x0016,0x001A], tag_multiple: false, tag_note: ''},
|
664
|
+
{ tag_ps: '(0016,001B)', tag_name: "Standard Output Sensitivity", tag_key: 'StandardOutputSensitivity', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,001B)', tag_sym: :standard_output_sensitivity, tag_ndm: '0016001B', tag_ary: [0x0016,0x001B], tag_multiple: false, tag_note: ''},
|
665
|
+
{ tag_ps: '(0016,001C)', tag_name: "Recommended Exposure Index", tag_key: 'RecommendedExposureIndex', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,001C)', tag_sym: :recommended_exposure_index, tag_ndm: '0016001C', tag_ary: [0x0016,0x001C], tag_multiple: false, tag_note: ''},
|
666
|
+
{ tag_ps: '(0016,001D)', tag_name: "ISO Speed", tag_key: 'ISOSpeed', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,001D)', tag_sym: :iso_speed, tag_ndm: '0016001D', tag_ary: [0x0016,0x001D], tag_multiple: false, tag_note: ''},
|
667
|
+
{ tag_ps: '(0016,001E)', tag_name: "ISO Speed Latitude yyy", tag_key: 'ISOSpeedLatitudeyyy', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,001E)', tag_sym: :iso_speed_latitudeyyy, tag_ndm: '0016001E', tag_ary: [0x0016,0x001E], tag_multiple: false, tag_note: ''},
|
668
|
+
{ tag_ps: '(0016,001F)', tag_name: "ISO Speed Latitude zzz", tag_key: 'ISOSpeedLatitudezzz', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,001F)', tag_sym: :iso_speed_latitudezzz, tag_ndm: '0016001F', tag_ary: [0x0016,0x001F], tag_multiple: false, tag_note: ''},
|
669
|
+
{ tag_ps: '(0016,0020)', tag_name: "EXIF Version", tag_key: 'EXIFVersion', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(0016,0020)', tag_sym: :exif_version, tag_ndm: '00160020', tag_ary: [0x0016,0x0020], tag_multiple: false, tag_note: ''},
|
670
|
+
{ tag_ps: '(0016,0021)', tag_name: "Shutter Speed Value", tag_key: 'ShutterSpeedValue', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0021)', tag_sym: :shutter_speed_value, tag_ndm: '00160021', tag_ary: [0x0016,0x0021], tag_multiple: false, tag_note: ''},
|
671
|
+
{ tag_ps: '(0016,0022)', tag_name: "Aperture Value", tag_key: 'ApertureValue', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0022)', tag_sym: :aperture_value, tag_ndm: '00160022', tag_ary: [0x0016,0x0022], tag_multiple: false, tag_note: ''},
|
672
|
+
{ tag_ps: '(0016,0023)', tag_name: "Brightness Value", tag_key: 'BrightnessValue', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0023)', tag_sym: :brightness_value, tag_ndm: '00160023', tag_ary: [0x0016,0x0023], tag_multiple: false, tag_note: ''},
|
673
|
+
{ tag_ps: '(0016,0024)', tag_name: "Exposure Bias Value", tag_key: 'ExposureBiasValue', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0024)', tag_sym: :exposure_bias_value, tag_ndm: '00160024', tag_ary: [0x0016,0x0024], tag_multiple: false, tag_note: ''},
|
674
|
+
{ tag_ps: '(0016,0025)', tag_name: "Max Aperture Value", tag_key: 'MaxApertureValue', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0025)', tag_sym: :max_aperture_value, tag_ndm: '00160025', tag_ary: [0x0016,0x0025], tag_multiple: false, tag_note: ''},
|
675
|
+
{ tag_ps: '(0016,0026)', tag_name: "Subject Distance", tag_key: 'SubjectDistance', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0026)', tag_sym: :subject_distance, tag_ndm: '00160026', tag_ary: [0x0016,0x0026], tag_multiple: false, tag_note: ''},
|
676
|
+
{ tag_ps: '(0016,0027)', tag_name: "Metering Mode", tag_key: 'MeteringMode', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0027)', tag_sym: :metering_mode, tag_ndm: '00160027', tag_ary: [0x0016,0x0027], tag_multiple: false, tag_note: ''},
|
677
|
+
{ tag_ps: '(0016,0028)', tag_name: "Light Source", tag_key: 'LightSource', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0028)', tag_sym: :light_source, tag_ndm: '00160028', tag_ary: [0x0016,0x0028], tag_multiple: false, tag_note: ''},
|
678
|
+
{ tag_ps: '(0016,0029)', tag_name: "Focal Length", tag_key: 'FocalLength', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0029)', tag_sym: :focal_length, tag_ndm: '00160029', tag_ary: [0x0016,0x0029], tag_multiple: false, tag_note: ''},
|
679
|
+
{ tag_ps: '(0016,002A)', tag_name: "Subject Area", tag_key: 'SubjectArea', tag_vr: [:IS], tag_vm: ["2-4"], tag_str: '(0016,002A)', tag_sym: :subject_area, tag_ndm: '0016002A', tag_ary: [0x0016,0x002A], tag_multiple: false, tag_note: ''},
|
680
|
+
{ tag_ps: '(0016,002B)', tag_name: "Maker Note", tag_key: 'MakerNote', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0016,002B)', tag_sym: :maker_note, tag_ndm: '0016002B', tag_ary: [0x0016,0x002B], tag_multiple: false, tag_note: ''},
|
681
|
+
{ tag_ps: '(0016,0030)', tag_name: "Temperature", tag_key: 'Temperature', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0030)', tag_sym: :temperature, tag_ndm: '00160030', tag_ary: [0x0016,0x0030], tag_multiple: false, tag_note: ''},
|
682
|
+
{ tag_ps: '(0016,0031)', tag_name: "Humidity", tag_key: 'Humidity', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0031)', tag_sym: :humidity, tag_ndm: '00160031', tag_ary: [0x0016,0x0031], tag_multiple: false, tag_note: ''},
|
683
|
+
{ tag_ps: '(0016,0032)', tag_name: "Pressure", tag_key: 'Pressure', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0032)', tag_sym: :pressure, tag_ndm: '00160032', tag_ary: [0x0016,0x0032], tag_multiple: false, tag_note: ''},
|
684
|
+
{ tag_ps: '(0016,0033)', tag_name: "Water Depth", tag_key: 'WaterDepth', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0033)', tag_sym: :water_depth, tag_ndm: '00160033', tag_ary: [0x0016,0x0033], tag_multiple: false, tag_note: ''},
|
685
|
+
{ tag_ps: '(0016,0034)', tag_name: "Acceleration", tag_key: 'Acceleration', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0034)', tag_sym: :acceleration, tag_ndm: '00160034', tag_ary: [0x0016,0x0034], tag_multiple: false, tag_note: ''},
|
686
|
+
{ tag_ps: '(0016,0035)', tag_name: "Camera Elevation Angle", tag_key: 'CameraElevationAngle', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0035)', tag_sym: :camera_elevation_angle, tag_ndm: '00160035', tag_ary: [0x0016,0x0035], tag_multiple: false, tag_note: ''},
|
687
|
+
{ tag_ps: '(0016,0036)', tag_name: "Flash Energy", tag_key: 'FlashEnergy', tag_vr: [:DS], tag_vm: ["1-2"], tag_str: '(0016,0036)', tag_sym: :flash_energy, tag_ndm: '00160036', tag_ary: [0x0016,0x0036], tag_multiple: false, tag_note: ''},
|
688
|
+
{ tag_ps: '(0016,0037)', tag_name: "Subject Location", tag_key: 'SubjectLocation', tag_vr: [:IS], tag_vm: ["2"], tag_str: '(0016,0037)', tag_sym: :subject_location, tag_ndm: '00160037', tag_ary: [0x0016,0x0037], tag_multiple: false, tag_note: ''},
|
689
|
+
{ tag_ps: '(0016,0038)', tag_name: "Photographic Exposure Index", tag_key: 'PhotographicExposureIndex', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0038)', tag_sym: :photographic_exposure_index, tag_ndm: '00160038', tag_ary: [0x0016,0x0038], tag_multiple: false, tag_note: ''},
|
690
|
+
{ tag_ps: '(0016,0039)', tag_name: "Sensing Method", tag_key: 'SensingMethod', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0039)', tag_sym: :sensing_method, tag_ndm: '00160039', tag_ary: [0x0016,0x0039], tag_multiple: false, tag_note: ''},
|
691
|
+
{ tag_ps: '(0016,003A)', tag_name: "File Source", tag_key: 'FileSource', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,003A)', tag_sym: :file_source, tag_ndm: '0016003A', tag_ary: [0x0016,0x003A], tag_multiple: false, tag_note: ''},
|
692
|
+
{ tag_ps: '(0016,003B)', tag_name: "Scene Type", tag_key: 'SceneType', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,003B)', tag_sym: :scene_type, tag_ndm: '0016003B', tag_ary: [0x0016,0x003B], tag_multiple: false, tag_note: ''},
|
693
|
+
{ tag_ps: '(0016,0041)', tag_name: "Custom Rendered", tag_key: 'CustomRendered', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0041)', tag_sym: :custom_rendered, tag_ndm: '00160041', tag_ary: [0x0016,0x0041], tag_multiple: false, tag_note: ''},
|
694
|
+
{ tag_ps: '(0016,0042)', tag_name: "Exposure Mode", tag_key: 'ExposureMode', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0042)', tag_sym: :exposure_mode, tag_ndm: '00160042', tag_ary: [0x0016,0x0042], tag_multiple: false, tag_note: ''},
|
695
|
+
{ tag_ps: '(0016,0043)', tag_name: "White Balance", tag_key: 'WhiteBalance', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0043)', tag_sym: :white_balance, tag_ndm: '00160043', tag_ary: [0x0016,0x0043], tag_multiple: false, tag_note: ''},
|
696
|
+
{ tag_ps: '(0016,0044)', tag_name: "Digital Zoom Ratio", tag_key: 'DigitalZoomRatio', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0044)', tag_sym: :digital_zoom_ratio, tag_ndm: '00160044', tag_ary: [0x0016,0x0044], tag_multiple: false, tag_note: ''},
|
697
|
+
{ tag_ps: '(0016,0045)', tag_name: "Focal Length In 35mm Film", tag_key: 'FocalLengthIn35mmFilm', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,0045)', tag_sym: :focal_length_in35mm_film, tag_ndm: '00160045', tag_ary: [0x0016,0x0045], tag_multiple: false, tag_note: ''},
|
698
|
+
{ tag_ps: '(0016,0046)', tag_name: "Scene Capture Type", tag_key: 'SceneCaptureType', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0046)', tag_sym: :scene_capture_type, tag_ndm: '00160046', tag_ary: [0x0016,0x0046], tag_multiple: false, tag_note: ''},
|
699
|
+
{ tag_ps: '(0016,0047)', tag_name: "Gain Control", tag_key: 'GainControl', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0047)', tag_sym: :gain_control, tag_ndm: '00160047', tag_ary: [0x0016,0x0047], tag_multiple: false, tag_note: ''},
|
700
|
+
{ tag_ps: '(0016,0048)', tag_name: "Contrast", tag_key: 'Contrast', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0048)', tag_sym: :contrast, tag_ndm: '00160048', tag_ary: [0x0016,0x0048], tag_multiple: false, tag_note: ''},
|
701
|
+
{ tag_ps: '(0016,0049)', tag_name: "Saturation", tag_key: 'Saturation', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0049)', tag_sym: :saturation, tag_ndm: '00160049', tag_ary: [0x0016,0x0049], tag_multiple: false, tag_note: ''},
|
702
|
+
{ tag_ps: '(0016,004A)', tag_name: "Sharpness", tag_key: 'Sharpness', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,004A)', tag_sym: :sharpness, tag_ndm: '0016004A', tag_ary: [0x0016,0x004A], tag_multiple: false, tag_note: ''},
|
703
|
+
{ tag_ps: '(0016,004B)', tag_name: "Device Setting Description", tag_key: 'DeviceSettingDescription', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0016,004B)', tag_sym: :device_setting_description, tag_ndm: '0016004B', tag_ary: [0x0016,0x004B], tag_multiple: false, tag_note: ''},
|
704
|
+
{ tag_ps: '(0016,004C)', tag_name: "Subject Distance Range", tag_key: 'SubjectDistanceRange', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,004C)', tag_sym: :subject_distance_range, tag_ndm: '0016004C', tag_ary: [0x0016,0x004C], tag_multiple: false, tag_note: ''},
|
705
|
+
{ tag_ps: '(0016,004D)', tag_name: "Camera Owner Name", tag_key: 'CameraOwnerName', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(0016,004D)', tag_sym: :camera_owner_name, tag_ndm: '0016004D', tag_ary: [0x0016,0x004D], tag_multiple: false, tag_note: ''},
|
706
|
+
{ tag_ps: '(0016,004E)', tag_name: "Lens Specification", tag_key: 'LensSpecification', tag_vr: [:DS], tag_vm: ["4"], tag_str: '(0016,004E)', tag_sym: :lens_specification, tag_ndm: '0016004E', tag_ary: [0x0016,0x004E], tag_multiple: false, tag_note: ''},
|
707
|
+
{ tag_ps: '(0016,004F)', tag_name: "Lens Make", tag_key: 'LensMake', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(0016,004F)', tag_sym: :lens_make, tag_ndm: '0016004F', tag_ary: [0x0016,0x004F], tag_multiple: false, tag_note: ''},
|
708
|
+
{ tag_ps: '(0016,0050)', tag_name: "Lens Model", tag_key: 'LensModel', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(0016,0050)', tag_sym: :lens_model, tag_ndm: '00160050', tag_ary: [0x0016,0x0050], tag_multiple: false, tag_note: ''},
|
709
|
+
{ tag_ps: '(0016,0051)', tag_name: "Lens Serial Number", tag_key: 'LensSerialNumber', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(0016,0051)', tag_sym: :lens_serial_number, tag_ndm: '00160051', tag_ary: [0x0016,0x0051], tag_multiple: false, tag_note: ''},
|
710
|
+
{ tag_ps: '(0016,0061)', tag_name: "Interoperability Index", tag_key: 'InteroperabilityIndex', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0016,0061)', tag_sym: :interoperability_index, tag_ndm: '00160061', tag_ary: [0x0016,0x0061], tag_multiple: false, tag_note: ''},
|
711
|
+
{ tag_ps: '(0016,0062)', tag_name: "Interoperability Version", tag_key: 'InteroperabilityVersion', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0016,0062)', tag_sym: :interoperability_version, tag_ndm: '00160062', tag_ary: [0x0016,0x0062], tag_multiple: false, tag_note: ''},
|
712
|
+
{ tag_ps: '(0016,0070)', tag_name: "GPS Version ID", tag_key: 'GPSVersionID', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0016,0070)', tag_sym: :gps_version_id, tag_ndm: '00160070', tag_ary: [0x0016,0x0070], tag_multiple: false, tag_note: ''},
|
713
|
+
{ tag_ps: '(0016,0071)', tag_name: "GPS Latitude Ref", tag_key: 'GPSLatitudeRef', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0016,0071)', tag_sym: :gps_latitude_ref, tag_ndm: '00160071', tag_ary: [0x0016,0x0071], tag_multiple: false, tag_note: ''},
|
714
|
+
{ tag_ps: '(0016,0072)', tag_name: "GPS Latitude", tag_key: 'GPSLatitude', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(0016,0072)', tag_sym: :gps_latitude, tag_ndm: '00160072', tag_ary: [0x0016,0x0072], tag_multiple: false, tag_note: ''},
|
715
|
+
{ tag_ps: '(0016,0073)', tag_name: "GPS Longitude Ref", tag_key: 'GPSLongitudeRef', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0016,0073)', tag_sym: :gps_longitude_ref, tag_ndm: '00160073', tag_ary: [0x0016,0x0073], tag_multiple: false, tag_note: ''},
|
716
|
+
{ tag_ps: '(0016,0074)', tag_name: "GPS Longitude", tag_key: 'GPSLongitude', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(0016,0074)', tag_sym: :gps_longitude, tag_ndm: '00160074', tag_ary: [0x0016,0x0074], tag_multiple: false, tag_note: ''},
|
717
|
+
{ tag_ps: '(0016,0075)', tag_name: "GPS Altitude Ref", tag_key: 'GPSAltitudeRef', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0016,0075)', tag_sym: :gps_altitude_ref, tag_ndm: '00160075', tag_ary: [0x0016,0x0075], tag_multiple: false, tag_note: ''},
|
718
|
+
{ tag_ps: '(0016,0076)', tag_name: "GPS Altitude", tag_key: 'GPSAltitude', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0076)', tag_sym: :gps_altitude, tag_ndm: '00160076', tag_ary: [0x0016,0x0076], tag_multiple: false, tag_note: ''},
|
719
|
+
{ tag_ps: '(0016,0077)', tag_name: "GPS Time Stamp", tag_key: 'GPSTimeStamp', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0016,0077)', tag_sym: :gps_time_stamp, tag_ndm: '00160077', tag_ary: [0x0016,0x0077], tag_multiple: false, tag_note: ''},
|
720
|
+
{ tag_ps: '(0016,0078)', tag_name: "GPS Satellites", tag_key: 'GPSSatellites', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(0016,0078)', tag_sym: :gps_satellites, tag_ndm: '00160078', tag_ary: [0x0016,0x0078], tag_multiple: false, tag_note: ''},
|
721
|
+
{ tag_ps: '(0016,0079)', tag_name: "GPS Status", tag_key: 'GPSStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0016,0079)', tag_sym: :gps_status, tag_ndm: '00160079', tag_ary: [0x0016,0x0079], tag_multiple: false, tag_note: ''},
|
722
|
+
{ tag_ps: '(0016,007A)', tag_name: "GPS Measure Mode", tag_key: 'GPSMeasureMode', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0016,007A)', tag_sym: :gps_measure_mode, tag_ndm: '0016007A', tag_ary: [0x0016,0x007A], tag_multiple: false, tag_note: ''},
|
723
|
+
{ tag_ps: '(0016,007B)', tag_name: "GPS DOP", tag_key: 'GPSDOP', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,007B)', tag_sym: :gpsdop, tag_ndm: '0016007B', tag_ary: [0x0016,0x007B], tag_multiple: false, tag_note: ''},
|
724
|
+
{ tag_ps: '(0016,007C)', tag_name: "GPS Speed Ref", tag_key: 'GPSSpeedRef', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0016,007C)', tag_sym: :gps_speed_ref, tag_ndm: '0016007C', tag_ary: [0x0016,0x007C], tag_multiple: false, tag_note: ''},
|
725
|
+
{ tag_ps: '(0016,007D)', tag_name: "GPS Speed", tag_key: 'GPSSpeed', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,007D)', tag_sym: :gps_speed, tag_ndm: '0016007D', tag_ary: [0x0016,0x007D], tag_multiple: false, tag_note: ''},
|
726
|
+
{ tag_ps: '(0016,007E)', tag_name: "GPS Track Ref", tag_key: 'GPSTrackRef', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0016,007E)', tag_sym: :gps_track_ref, tag_ndm: '0016007E', tag_ary: [0x0016,0x007E], tag_multiple: false, tag_note: ''},
|
727
|
+
{ tag_ps: '(0016,007F)', tag_name: "GPS Track", tag_key: 'GPSTrack', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,007F)', tag_sym: :gps_track, tag_ndm: '0016007F', tag_ary: [0x0016,0x007F], tag_multiple: false, tag_note: ''},
|
728
|
+
{ tag_ps: '(0016,0080)', tag_name: "GPS Img Direction Ref", tag_key: 'GPSImgDirectionRef', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0016,0080)', tag_sym: :gps_img_direction_ref, tag_ndm: '00160080', tag_ary: [0x0016,0x0080], tag_multiple: false, tag_note: ''},
|
729
|
+
{ tag_ps: '(0016,0081)', tag_name: "GPS Img Direction", tag_key: 'GPSImgDirection', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0081)', tag_sym: :gps_img_direction, tag_ndm: '00160081', tag_ary: [0x0016,0x0081], tag_multiple: false, tag_note: ''},
|
730
|
+
{ tag_ps: '(0016,0082)', tag_name: "GPS Map Datum", tag_key: 'GPSMapDatum', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(0016,0082)', tag_sym: :gps_map_datum, tag_ndm: '00160082', tag_ary: [0x0016,0x0082], tag_multiple: false, tag_note: ''},
|
731
|
+
{ tag_ps: '(0016,0083)', tag_name: "GPS Dest Latitude Ref", tag_key: 'GPSDestLatitudeRef', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0016,0083)', tag_sym: :gps_dest_latitude_ref, tag_ndm: '00160083', tag_ary: [0x0016,0x0083], tag_multiple: false, tag_note: ''},
|
732
|
+
{ tag_ps: '(0016,0084)', tag_name: "GPS Dest Latitude", tag_key: 'GPSDestLatitude', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(0016,0084)', tag_sym: :gps_dest_latitude, tag_ndm: '00160084', tag_ary: [0x0016,0x0084], tag_multiple: false, tag_note: ''},
|
733
|
+
{ tag_ps: '(0016,0085)', tag_name: "GPS Dest Longitude Ref", tag_key: 'GPSDestLongitudeRef', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0016,0085)', tag_sym: :gps_dest_longitude_ref, tag_ndm: '00160085', tag_ary: [0x0016,0x0085], tag_multiple: false, tag_note: ''},
|
734
|
+
{ tag_ps: '(0016,0086)', tag_name: "GPS Dest Longitude", tag_key: 'GPSDestLongitude', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(0016,0086)', tag_sym: :gps_dest_longitude, tag_ndm: '00160086', tag_ary: [0x0016,0x0086], tag_multiple: false, tag_note: ''},
|
735
|
+
{ tag_ps: '(0016,0087)', tag_name: "GPS Dest Bearing Ref", tag_key: 'GPSDestBearingRef', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0016,0087)', tag_sym: :gps_dest_bearing_ref, tag_ndm: '00160087', tag_ary: [0x0016,0x0087], tag_multiple: false, tag_note: ''},
|
736
|
+
{ tag_ps: '(0016,0088)', tag_name: "GPS Dest Bearing", tag_key: 'GPSDestBearing', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,0088)', tag_sym: :gps_dest_bearing, tag_ndm: '00160088', tag_ary: [0x0016,0x0088], tag_multiple: false, tag_note: ''},
|
737
|
+
{ tag_ps: '(0016,0089)', tag_name: "GPS Dest Distance Ref", tag_key: 'GPSDestDistanceRef', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0016,0089)', tag_sym: :gps_dest_distance_ref, tag_ndm: '00160089', tag_ary: [0x0016,0x0089], tag_multiple: false, tag_note: ''},
|
738
|
+
{ tag_ps: '(0016,008A)', tag_name: "GPS Dest Distance", tag_key: 'GPSDestDistance', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0016,008A)', tag_sym: :gps_dest_distance, tag_ndm: '0016008A', tag_ary: [0x0016,0x008A], tag_multiple: false, tag_note: ''},
|
739
|
+
{ tag_ps: '(0016,008B)', tag_name: "GPS Processing Method", tag_key: 'GPSProcessingMethod', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0016,008B)', tag_sym: :gps_processing_method, tag_ndm: '0016008B', tag_ary: [0x0016,0x008B], tag_multiple: false, tag_note: ''},
|
740
|
+
{ tag_ps: '(0016,008C)', tag_name: "GPS Area Information", tag_key: 'GPSAreaInformation', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0016,008C)', tag_sym: :gps_area_information, tag_ndm: '0016008C', tag_ary: [0x0016,0x008C], tag_multiple: false, tag_note: ''},
|
741
|
+
{ tag_ps: '(0016,008D)', tag_name: "GPS Date Stamp", tag_key: 'GPSDateStamp', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0016,008D)', tag_sym: :gps_date_stamp, tag_ndm: '0016008D', tag_ary: [0x0016,0x008D], tag_multiple: false, tag_note: ''},
|
742
|
+
{ tag_ps: '(0016,008E)', tag_name: "GPS Differential", tag_key: 'GPSDifferential', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0016,008E)', tag_sym: :gps_differential, tag_ndm: '0016008E', tag_ary: [0x0016,0x008E], tag_multiple: false, tag_note: ''},
|
638
743
|
{ tag_ps: '(0018,0010)', tag_name: "Contrast/Bolus Agent", tag_key: 'ContrastBolusAgent', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,0010)', tag_sym: :contrast_bolus_agent, tag_ndm: '00180010', tag_ary: [0x0018,0x0010], tag_multiple: false, tag_note: ''},
|
639
744
|
{ tag_ps: '(0018,0012)', tag_name: "Contrast/Bolus Agent Sequence", tag_key: 'ContrastBolusAgentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0018,0012)', tag_sym: :contrast_bolus_agent_sequence, tag_ndm: '00180012', tag_ary: [0x0018,0x0012], tag_multiple: false, tag_note: ''},
|
640
745
|
{ tag_ps: '(0018,0013)', tag_name: "Contrast/Bolus T1 Relaxivity", tag_key: 'ContrastBolusT1Relaxivity', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0018,0013)', tag_sym: :contrast_bolus_t1_relaxivity, tag_ndm: '00180013', tag_ary: [0x0018,0x0013], tag_multiple: false, tag_note: ''},
|
@@ -651,22 +756,22 @@ HIGH = 0001H'},
|
|
651
756
|
{ tag_ps: '(0018,0028)', tag_name: "Intervention Drug Dose", tag_key: 'InterventionDrugDose', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,0028)', tag_sym: :intervention_drug_dose, tag_ndm: '00180028', tag_ary: [0x0018,0x0028], tag_multiple: false, tag_note: ''},
|
652
757
|
{ tag_ps: '(0018,0029)', tag_name: "Intervention Drug Code Sequence", tag_key: 'InterventionDrugCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0018,0029)', tag_sym: :intervention_drug_code_sequence, tag_ndm: '00180029', tag_ary: [0x0018,0x0029], tag_multiple: false, tag_note: ''},
|
653
758
|
{ tag_ps: '(0018,002A)', tag_name: "Additional Drug Sequence", tag_key: 'AdditionalDrugSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0018,002A)', tag_sym: :additional_drug_sequence, tag_ndm: '0018002A', tag_ary: [0x0018,0x002A], tag_multiple: false, tag_note: ''},
|
654
|
-
{ tag_ps: '(0018,0030)', tag_name: "Radionuclide", tag_key: 'Radionuclide', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0018,0030)', tag_sym: :radionuclide, tag_ndm: '00180030', tag_ary: [0x0018,0x0030], tag_multiple: false, tag_note: 'RET'},
|
759
|
+
{ tag_ps: '(0018,0030)', tag_name: "Radionuclide", tag_key: 'Radionuclide', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0018,0030)', tag_sym: :radionuclide, tag_ndm: '00180030', tag_ary: [0x0018,0x0030], tag_multiple: false, tag_note: 'RET (1993)'},
|
655
760
|
{ tag_ps: '(0018,0031)', tag_name: "Radiopharmaceutical", tag_key: 'Radiopharmaceutical', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,0031)', tag_sym: :radiopharmaceutical, tag_ndm: '00180031', tag_ary: [0x0018,0x0031], tag_multiple: false, tag_note: ''},
|
656
|
-
{ tag_ps: '(0018,0032)', tag_name: "Energy Window Centerline", tag_key: 'EnergyWindowCenterline', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,0032)', tag_sym: :energy_window_centerline, tag_ndm: '00180032', tag_ary: [0x0018,0x0032], tag_multiple: false, tag_note: 'RET'},
|
657
|
-
{ tag_ps: '(0018,0033)', tag_name: "Energy Window Total Width", tag_key: 'EnergyWindowTotalWidth', tag_vr: [:DS], tag_vm: ["1-n"], tag_str: '(0018,0033)', tag_sym: :energy_window_total_width, tag_ndm: '00180033', tag_ary: [0x0018,0x0033], tag_multiple: false, tag_note: 'RET'},
|
761
|
+
{ tag_ps: '(0018,0032)', tag_name: "Energy Window Centerline", tag_key: 'EnergyWindowCenterline', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,0032)', tag_sym: :energy_window_centerline, tag_ndm: '00180032', tag_ary: [0x0018,0x0032], tag_multiple: false, tag_note: 'RET (1993)'},
|
762
|
+
{ tag_ps: '(0018,0033)', tag_name: "Energy Window Total Width", tag_key: 'EnergyWindowTotalWidth', tag_vr: [:DS], tag_vm: ["1-n"], tag_str: '(0018,0033)', tag_sym: :energy_window_total_width, tag_ndm: '00180033', tag_ary: [0x0018,0x0033], tag_multiple: false, tag_note: 'RET (1993)'},
|
658
763
|
{ tag_ps: '(0018,0034)', tag_name: "Intervention Drug Name", tag_key: 'InterventionDrugName', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,0034)', tag_sym: :intervention_drug_name, tag_ndm: '00180034', tag_ary: [0x0018,0x0034], tag_multiple: false, tag_note: ''},
|
659
764
|
{ tag_ps: '(0018,0035)', tag_name: "Intervention Drug Start Time", tag_key: 'InterventionDrugStartTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0018,0035)', tag_sym: :intervention_drug_start_time, tag_ndm: '00180035', tag_ary: [0x0018,0x0035], tag_multiple: false, tag_note: ''},
|
660
765
|
{ tag_ps: '(0018,0036)', tag_name: "Intervention Sequence", tag_key: 'InterventionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0018,0036)', tag_sym: :intervention_sequence, tag_ndm: '00180036', tag_ary: [0x0018,0x0036], tag_multiple: false, tag_note: ''},
|
661
|
-
{ tag_ps: '(0018,0037)', tag_name: "Therapy Type", tag_key: 'TherapyType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,0037)', tag_sym: :therapy_type, tag_ndm: '00180037', tag_ary: [0x0018,0x0037], tag_multiple: false, tag_note: 'RET'},
|
766
|
+
{ tag_ps: '(0018,0037)', tag_name: "Therapy Type", tag_key: 'TherapyType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,0037)', tag_sym: :therapy_type, tag_ndm: '00180037', tag_ary: [0x0018,0x0037], tag_multiple: false, tag_note: 'RET (2001)'},
|
662
767
|
{ tag_ps: '(0018,0038)', tag_name: "Intervention Status", tag_key: 'InterventionStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,0038)', tag_sym: :intervention_status, tag_ndm: '00180038', tag_ary: [0x0018,0x0038], tag_multiple: false, tag_note: ''},
|
663
|
-
{ tag_ps: '(0018,0039)', tag_name: "Therapy Description", tag_key: 'TherapyDescription', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,0039)', tag_sym: :therapy_description, tag_ndm: '00180039', tag_ary: [0x0018,0x0039], tag_multiple: false, tag_note: 'RET'},
|
768
|
+
{ tag_ps: '(0018,0039)', tag_name: "Therapy Description", tag_key: 'TherapyDescription', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,0039)', tag_sym: :therapy_description, tag_ndm: '00180039', tag_ary: [0x0018,0x0039], tag_multiple: false, tag_note: 'RET (2003)'},
|
664
769
|
{ tag_ps: '(0018,003A)', tag_name: "Intervention Description", tag_key: 'InterventionDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0018,003A)', tag_sym: :intervention_description, tag_ndm: '0018003A', tag_ary: [0x0018,0x003A], tag_multiple: false, tag_note: ''},
|
665
770
|
{ tag_ps: '(0018,0040)', tag_name: "Cine Rate", tag_key: 'CineRate', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0018,0040)', tag_sym: :cine_rate, tag_ndm: '00180040', tag_ary: [0x0018,0x0040], tag_multiple: false, tag_note: ''},
|
666
771
|
{ tag_ps: '(0018,0042)', tag_name: "Initial Cine Run State", tag_key: 'InitialCineRunState', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,0042)', tag_sym: :initial_cine_run_state, tag_ndm: '00180042', tag_ary: [0x0018,0x0042], tag_multiple: false, tag_note: ''},
|
667
772
|
{ tag_ps: '(0018,0050)', tag_name: "Slice Thickness", tag_key: 'SliceThickness', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,0050)', tag_sym: :slice_thickness, tag_ndm: '00180050', tag_ary: [0x0018,0x0050], tag_multiple: false, tag_note: ''},
|
668
773
|
{ tag_ps: '(0018,0060)', tag_name: "KVP", tag_key: 'KVP', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,0060)', tag_sym: :kvp, tag_ndm: '00180060', tag_ary: [0x0018,0x0060], tag_multiple: false, tag_note: ''},
|
669
|
-
{ tag_ps: '(0018,0061)', tag_name: "Placeholder (0018,0061)", tag_key: 'Placeholder_0018_0061', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,0061)', tag_sym: :placeholder_0018_0061, tag_ndm: '00180061', tag_ary: [0x0018,0x0061], tag_multiple: false, tag_note: 'RET'},
|
774
|
+
{ tag_ps: '(0018,0061)', tag_name: "Placeholder (0018,0061)", tag_key: 'Placeholder_0018_0061', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,0061)', tag_sym: :placeholder_0018_0061, tag_ndm: '00180061', tag_ary: [0x0018,0x0061], tag_multiple: false, tag_note: 'RET (2015c)'},
|
670
775
|
{ tag_ps: '(0018,0070)', tag_name: "Counts Accumulated", tag_key: 'CountsAccumulated', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0018,0070)', tag_sym: :counts_accumulated, tag_ndm: '00180070', tag_ary: [0x0018,0x0070], tag_multiple: false, tag_note: ''},
|
671
776
|
{ tag_ps: '(0018,0071)', tag_name: "Acquisition Termination Condition", tag_key: 'AcquisitionTerminationCondition', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,0071)', tag_sym: :acquisition_termination_condition, tag_ndm: '00180071', tag_ary: [0x0018,0x0071], tag_multiple: false, tag_note: ''},
|
672
777
|
{ tag_ps: '(0018,0072)', tag_name: "Effective Duration", tag_key: 'EffectiveDuration', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,0072)', tag_sym: :effective_duration, tag_ndm: '00180072', tag_ary: [0x0018,0x0072], tag_multiple: false, tag_note: ''},
|
@@ -699,16 +804,16 @@ HIGH = 0001H'},
|
|
699
804
|
{ tag_ps: '(0018,1009)', tag_name: "Unique Device Identifier", tag_key: 'UniqueDeviceIdentifier', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(0018,1009)', tag_sym: :unique_device_identifier, tag_ndm: '00181009', tag_ary: [0x0018,0x1009], tag_multiple: false, tag_note: ''},
|
700
805
|
{ tag_ps: '(0018,100A)', tag_name: "UDI Sequence", tag_key: 'UDISequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0018,100A)', tag_sym: :udi_sequence, tag_ndm: '0018100A', tag_ary: [0x0018,0x100A], tag_multiple: false, tag_note: ''},
|
701
806
|
{ tag_ps: '(0018,1010)', tag_name: "Secondary Capture Device ID", tag_key: 'SecondaryCaptureDeviceID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,1010)', tag_sym: :secondary_capture_device_id, tag_ndm: '00181010', tag_ary: [0x0018,0x1010], tag_multiple: false, tag_note: ''},
|
702
|
-
{ tag_ps: '(0018,1011)', tag_name: "Hardcopy Creation Device ID", tag_key: 'HardcopyCreationDeviceID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,1011)', tag_sym: :hardcopy_creation_device_id, tag_ndm: '00181011', tag_ary: [0x0018,0x1011], tag_multiple: false, tag_note: 'RET'},
|
807
|
+
{ tag_ps: '(0018,1011)', tag_name: "Hardcopy Creation Device ID", tag_key: 'HardcopyCreationDeviceID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,1011)', tag_sym: :hardcopy_creation_device_id, tag_ndm: '00181011', tag_ary: [0x0018,0x1011], tag_multiple: false, tag_note: 'RET (2007)'},
|
703
808
|
{ tag_ps: '(0018,1012)', tag_name: "Date of Secondary Capture", tag_key: 'DateOfSecondaryCapture', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0018,1012)', tag_sym: :date_of_secondary_capture, tag_ndm: '00181012', tag_ary: [0x0018,0x1012], tag_multiple: false, tag_note: ''},
|
704
809
|
{ tag_ps: '(0018,1014)', tag_name: "Time of Secondary Capture", tag_key: 'TimeOfSecondaryCapture', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0018,1014)', tag_sym: :time_of_secondary_capture, tag_ndm: '00181014', tag_ary: [0x0018,0x1014], tag_multiple: false, tag_note: ''},
|
705
810
|
{ tag_ps: '(0018,1016)', tag_name: "Secondary Capture Device Manufacturer", tag_key: 'SecondaryCaptureDeviceManufacturer', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,1016)', tag_sym: :secondary_capture_device_manufacturer, tag_ndm: '00181016', tag_ary: [0x0018,0x1016], tag_multiple: false, tag_note: ''},
|
706
|
-
{ tag_ps: '(0018,1017)', tag_name: "Hardcopy Device Manufacturer", tag_key: 'HardcopyDeviceManufacturer', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,1017)', tag_sym: :hardcopy_device_manufacturer, tag_ndm: '00181017', tag_ary: [0x0018,0x1017], tag_multiple: false, tag_note: 'RET'},
|
811
|
+
{ tag_ps: '(0018,1017)', tag_name: "Hardcopy Device Manufacturer", tag_key: 'HardcopyDeviceManufacturer', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,1017)', tag_sym: :hardcopy_device_manufacturer, tag_ndm: '00181017', tag_ary: [0x0018,0x1017], tag_multiple: false, tag_note: 'RET (2007)'},
|
707
812
|
{ tag_ps: '(0018,1018)', tag_name: "Secondary Capture Device Manufacturer's Model Name", tag_key: 'SecondaryCaptureDeviceManufacturerModelName', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,1018)', tag_sym: :secondary_capture_device_manufacturer_model_name, tag_ndm: '00181018', tag_ary: [0x0018,0x1018], tag_multiple: false, tag_note: ''},
|
708
813
|
{ tag_ps: '(0018,1019)', tag_name: "Secondary Capture Device Software Versions", tag_key: 'SecondaryCaptureDeviceSoftwareVersions', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0018,1019)', tag_sym: :secondary_capture_device_software_versions, tag_ndm: '00181019', tag_ary: [0x0018,0x1019], tag_multiple: false, tag_note: ''},
|
709
|
-
{ tag_ps: '(0018,101A)', tag_name: "Hardcopy Device Software Version", tag_key: 'HardcopyDeviceSoftwareVersion', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0018,101A)', tag_sym: :hardcopy_device_software_version, tag_ndm: '0018101A', tag_ary: [0x0018,0x101A], tag_multiple: false, tag_note: 'RET'},
|
710
|
-
{ tag_ps: '(0018,101B)', tag_name: "Hardcopy Device Manufacturer's Model Name", tag_key: 'HardcopyDeviceManufacturerModelName', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,101B)', tag_sym: :hardcopy_device_manufacturer_model_name, tag_ndm: '0018101B', tag_ary: [0x0018,0x101B], tag_multiple: false, tag_note: 'RET'},
|
711
|
-
{ tag_ps: '(0018,1020)', tag_name: "Software
|
814
|
+
{ tag_ps: '(0018,101A)', tag_name: "Hardcopy Device Software Version", tag_key: 'HardcopyDeviceSoftwareVersion', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0018,101A)', tag_sym: :hardcopy_device_software_version, tag_ndm: '0018101A', tag_ary: [0x0018,0x101A], tag_multiple: false, tag_note: 'RET (2007)'},
|
815
|
+
{ tag_ps: '(0018,101B)', tag_name: "Hardcopy Device Manufacturer's Model Name", tag_key: 'HardcopyDeviceManufacturerModelName', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,101B)', tag_sym: :hardcopy_device_manufacturer_model_name, tag_ndm: '0018101B', tag_ary: [0x0018,0x101B], tag_multiple: false, tag_note: 'RET (2007)'},
|
816
|
+
{ tag_ps: '(0018,1020)', tag_name: "Software Versions", tag_key: 'SoftwareVersions', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0018,1020)', tag_sym: :software_versions, tag_ndm: '00181020', tag_ary: [0x0018,0x1020], tag_multiple: false, tag_note: ''},
|
712
817
|
{ tag_ps: '(0018,1022)', tag_name: "Video Image Format Acquired", tag_key: 'VideoImageFormatAcquired', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0018,1022)', tag_sym: :video_image_format_acquired, tag_ndm: '00181022', tag_ary: [0x0018,0x1022], tag_multiple: false, tag_note: ''},
|
713
818
|
{ tag_ps: '(0018,1023)', tag_name: "Digital Image Format Acquired", tag_key: 'DigitalImageFormatAcquired', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,1023)', tag_sym: :digital_image_format_acquired, tag_ndm: '00181023', tag_ary: [0x0018,0x1023], tag_multiple: false, tag_note: ''},
|
714
819
|
{ tag_ps: '(0018,1030)', tag_name: "Protocol Name", tag_key: 'ProtocolName', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,1030)', tag_sym: :protocol_name, tag_ndm: '00181030', tag_ary: [0x0018,0x1030], tag_multiple: false, tag_note: ''},
|
@@ -771,12 +876,12 @@ HIGH = 0001H'},
|
|
771
876
|
{ tag_ps: '(0018,1138)', tag_name: "Table Angle", tag_key: 'TableAngle', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,1138)', tag_sym: :table_angle, tag_ndm: '00181138', tag_ary: [0x0018,0x1138], tag_multiple: false, tag_note: ''},
|
772
877
|
{ tag_ps: '(0018,113A)', tag_name: "Table Type", tag_key: 'TableType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,113A)', tag_sym: :table_type, tag_ndm: '0018113A', tag_ary: [0x0018,0x113A], tag_multiple: false, tag_note: ''},
|
773
878
|
{ tag_ps: '(0018,1140)', tag_name: "Rotation Direction", tag_key: 'RotationDirection', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,1140)', tag_sym: :rotation_direction, tag_ndm: '00181140', tag_ary: [0x0018,0x1140], tag_multiple: false, tag_note: ''},
|
774
|
-
{ tag_ps: '(0018,1141)', tag_name: "Angular Position", tag_key: 'AngularPosition', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,1141)', tag_sym: :angular_position, tag_ndm: '00181141', tag_ary: [0x0018,0x1141], tag_multiple: false, tag_note: 'RET'},
|
879
|
+
{ tag_ps: '(0018,1141)', tag_name: "Angular Position", tag_key: 'AngularPosition', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,1141)', tag_sym: :angular_position, tag_ndm: '00181141', tag_ary: [0x0018,0x1141], tag_multiple: false, tag_note: 'RET (2007)'},
|
775
880
|
{ tag_ps: '(0018,1142)', tag_name: "Radial Position", tag_key: 'RadialPosition', tag_vr: [:DS], tag_vm: ["1-n"], tag_str: '(0018,1142)', tag_sym: :radial_position, tag_ndm: '00181142', tag_ary: [0x0018,0x1142], tag_multiple: false, tag_note: ''},
|
776
881
|
{ tag_ps: '(0018,1143)', tag_name: "Scan Arc", tag_key: 'ScanArc', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,1143)', tag_sym: :scan_arc, tag_ndm: '00181143', tag_ary: [0x0018,0x1143], tag_multiple: false, tag_note: ''},
|
777
882
|
{ tag_ps: '(0018,1144)', tag_name: "Angular Step", tag_key: 'AngularStep', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,1144)', tag_sym: :angular_step, tag_ndm: '00181144', tag_ary: [0x0018,0x1144], tag_multiple: false, tag_note: ''},
|
778
883
|
{ tag_ps: '(0018,1145)', tag_name: "Center of Rotation Offset", tag_key: 'CenterOfRotationOffset', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,1145)', tag_sym: :center_of_rotation_offset, tag_ndm: '00181145', tag_ary: [0x0018,0x1145], tag_multiple: false, tag_note: ''},
|
779
|
-
{ tag_ps: '(0018,1146)', tag_name: "Rotation Offset", tag_key: 'RotationOffset', tag_vr: [:DS], tag_vm: ["1-n"], tag_str: '(0018,1146)', tag_sym: :rotation_offset, tag_ndm: '00181146', tag_ary: [0x0018,0x1146], tag_multiple: false, tag_note: 'RET'},
|
884
|
+
{ tag_ps: '(0018,1146)', tag_name: "Rotation Offset", tag_key: 'RotationOffset', tag_vr: [:DS], tag_vm: ["1-n"], tag_str: '(0018,1146)', tag_sym: :rotation_offset, tag_ndm: '00181146', tag_ary: [0x0018,0x1146], tag_multiple: false, tag_note: 'RET (1993)'},
|
780
885
|
{ tag_ps: '(0018,1147)', tag_name: "Field of View Shape", tag_key: 'FieldOfViewShape', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,1147)', tag_sym: :field_of_view_shape, tag_ndm: '00181147', tag_ary: [0x0018,0x1147], tag_multiple: false, tag_note: ''},
|
781
886
|
{ tag_ps: '(0018,1149)', tag_name: "Field of View Dimension(s)", tag_key: 'FieldOfViewDimensions', tag_vr: [:IS], tag_vm: ["1-2"], tag_str: '(0018,1149)', tag_sym: :field_of_view_dimensions, tag_ndm: '00181149', tag_ary: [0x0018,0x1149], tag_multiple: false, tag_note: ''},
|
782
887
|
{ tag_ps: '(0018,1150)', tag_name: "Exposure Time", tag_key: 'ExposureTime', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0018,1150)', tag_sym: :exposure_time, tag_ndm: '00181150', tag_ary: [0x0018,0x1150], tag_multiple: false, tag_note: ''},
|
@@ -903,7 +1008,7 @@ HIGH = 0001H'},
|
|
903
1008
|
{ tag_ps: '(0018,5010)', tag_name: "Transducer Data", tag_key: 'TransducerData', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0018,5010)', tag_sym: :transducer_data, tag_ndm: '00185010', tag_ary: [0x0018,0x5010], tag_multiple: false, tag_note: ''},
|
904
1009
|
{ tag_ps: '(0018,5012)', tag_name: "Focus Depth", tag_key: 'FocusDepth', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,5012)', tag_sym: :focus_depth, tag_ndm: '00185012', tag_ary: [0x0018,0x5012], tag_multiple: false, tag_note: ''},
|
905
1010
|
{ tag_ps: '(0018,5020)', tag_name: "Processing Function", tag_key: 'ProcessingFunction', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,5020)', tag_sym: :processing_function, tag_ndm: '00185020', tag_ary: [0x0018,0x5020], tag_multiple: false, tag_note: ''},
|
906
|
-
{ tag_ps: '(0018,5021)', tag_name: "Postprocessing Function", tag_key: 'PostprocessingFunction', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,5021)', tag_sym: :postprocessing_function, tag_ndm: '00185021', tag_ary: [0x0018,0x5021], tag_multiple: false, tag_note: 'RET'},
|
1011
|
+
{ tag_ps: '(0018,5021)', tag_name: "Postprocessing Function", tag_key: 'PostprocessingFunction', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0018,5021)', tag_sym: :postprocessing_function, tag_ndm: '00185021', tag_ary: [0x0018,0x5021], tag_multiple: false, tag_note: 'RET (2007)'},
|
907
1012
|
{ tag_ps: '(0018,5022)', tag_name: "Mechanical Index", tag_key: 'MechanicalIndex', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,5022)', tag_sym: :mechanical_index, tag_ndm: '00185022', tag_ary: [0x0018,0x5022], tag_multiple: false, tag_note: ''},
|
908
1013
|
{ tag_ps: '(0018,5024)', tag_name: "Bone Thermal Index", tag_key: 'BoneThermalIndex', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,5024)', tag_sym: :bone_thermal_index, tag_ndm: '00185024', tag_ary: [0x0018,0x5024], tag_multiple: false, tag_note: ''},
|
909
1014
|
{ tag_ps: '(0018,5026)', tag_name: "Cranial Thermal Index", tag_key: 'CranialThermalIndex', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,5026)', tag_sym: :cranial_thermal_index, tag_ndm: '00185026', tag_ary: [0x0018,0x5026], tag_multiple: false, tag_note: ''},
|
@@ -916,8 +1021,8 @@ HIGH = 0001H'},
|
|
916
1021
|
{ tag_ps: '(0018,5100)', tag_name: "Patient Position", tag_key: 'PatientPosition', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,5100)', tag_sym: :patient_position, tag_ndm: '00185100', tag_ary: [0x0018,0x5100], tag_multiple: false, tag_note: ''},
|
917
1022
|
{ tag_ps: '(0018,5101)', tag_name: "View Position", tag_key: 'ViewPosition', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,5101)', tag_sym: :view_position, tag_ndm: '00185101', tag_ary: [0x0018,0x5101], tag_multiple: false, tag_note: ''},
|
918
1023
|
{ tag_ps: '(0018,5104)', tag_name: "Projection Eponymous Name Code Sequence", tag_key: 'ProjectionEponymousNameCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0018,5104)', tag_sym: :projection_eponymous_name_code_sequence, tag_ndm: '00185104', tag_ary: [0x0018,0x5104], tag_multiple: false, tag_note: ''},
|
919
|
-
{ tag_ps: '(0018,5210)', tag_name: "Image Transformation Matrix", tag_key: 'ImageTransformationMatrix', tag_vr: [:DS], tag_vm: ["6"], tag_str: '(0018,5210)', tag_sym: :image_transformation_matrix, tag_ndm: '00185210', tag_ary: [0x0018,0x5210], tag_multiple: false, tag_note: 'RET'},
|
920
|
-
{ tag_ps: '(0018,5212)', tag_name: "Image Translation Vector", tag_key: 'ImageTranslationVector', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(0018,5212)', tag_sym: :image_translation_vector, tag_ndm: '00185212', tag_ary: [0x0018,0x5212], tag_multiple: false, tag_note: 'RET'},
|
1024
|
+
{ tag_ps: '(0018,5210)', tag_name: "Image Transformation Matrix", tag_key: 'ImageTransformationMatrix', tag_vr: [:DS], tag_vm: ["6"], tag_str: '(0018,5210)', tag_sym: :image_transformation_matrix, tag_ndm: '00185210', tag_ary: [0x0018,0x5210], tag_multiple: false, tag_note: 'RET (2003)'},
|
1025
|
+
{ tag_ps: '(0018,5212)', tag_name: "Image Translation Vector", tag_key: 'ImageTranslationVector', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(0018,5212)', tag_sym: :image_translation_vector, tag_ndm: '00185212', tag_ary: [0x0018,0x5212], tag_multiple: false, tag_note: 'RET (2003)'},
|
921
1026
|
{ tag_ps: '(0018,6000)', tag_name: "Sensitivity", tag_key: 'Sensitivity', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0018,6000)', tag_sym: :sensitivity, tag_ndm: '00186000', tag_ary: [0x0018,0x6000], tag_multiple: false, tag_note: ''},
|
922
1027
|
{ tag_ps: '(0018,6011)', tag_name: "Sequence of Ultrasound Regions", tag_key: 'SequenceOfUltrasoundRegions', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0018,6011)', tag_sym: :sequence_of_ultrasound_regions, tag_ndm: '00186011', tag_ary: [0x0018,0x6011], tag_multiple: false, tag_note: ''},
|
923
1028
|
{ tag_ps: '(0018,6012)', tag_name: "Region Spatial Format", tag_key: 'RegionSpatialFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0018,6012)', tag_sym: :region_spatial_format, tag_ndm: '00186012', tag_ary: [0x0018,0x6012], tag_multiple: false, tag_note: ''},
|
@@ -940,17 +1045,17 @@ HIGH = 0001H'},
|
|
940
1045
|
{ tag_ps: '(0018,6032)', tag_name: "Pulse Repetition Frequency", tag_key: 'PulseRepetitionFrequency', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,6032)', tag_sym: :pulse_repetition_frequency, tag_ndm: '00186032', tag_ary: [0x0018,0x6032], tag_multiple: false, tag_note: ''},
|
941
1046
|
{ tag_ps: '(0018,6034)', tag_name: "Doppler Correction Angle", tag_key: 'DopplerCorrectionAngle', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,6034)', tag_sym: :doppler_correction_angle, tag_ndm: '00186034', tag_ary: [0x0018,0x6034], tag_multiple: false, tag_note: ''},
|
942
1047
|
{ tag_ps: '(0018,6036)', tag_name: "Steering Angle", tag_key: 'SteeringAngle', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,6036)', tag_sym: :steering_angle, tag_ndm: '00186036', tag_ary: [0x0018,0x6036], tag_multiple: false, tag_note: ''},
|
943
|
-
{ tag_ps: '(0018,6038)', tag_name: "Doppler Sample Volume X Position (Retired)", tag_key: 'DopplerSampleVolumeXPositionRetired', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,6038)', tag_sym: :doppler_sample_volume_x_position_retired, tag_ndm: '00186038', tag_ary: [0x0018,0x6038], tag_multiple: false, tag_note: 'RET'},
|
1048
|
+
{ tag_ps: '(0018,6038)', tag_name: "Doppler Sample Volume X Position (Retired)", tag_key: 'DopplerSampleVolumeXPositionRetired', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,6038)', tag_sym: :doppler_sample_volume_x_position_retired, tag_ndm: '00186038', tag_ary: [0x0018,0x6038], tag_multiple: false, tag_note: 'RET (2001)'},
|
944
1049
|
{ tag_ps: '(0018,6039)', tag_name: "Doppler Sample Volume X Position", tag_key: 'DopplerSampleVolumeXPosition', tag_vr: [:SL], tag_vm: ["1"], tag_str: '(0018,6039)', tag_sym: :doppler_sample_volume_x_position, tag_ndm: '00186039', tag_ary: [0x0018,0x6039], tag_multiple: false, tag_note: ''},
|
945
|
-
{ tag_ps: '(0018,603A)', tag_name: "Doppler Sample Volume Y Position (Retired)", tag_key: 'DopplerSampleVolumeYPositionRetired', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,603A)', tag_sym: :doppler_sample_volume_y_position_retired, tag_ndm: '0018603A', tag_ary: [0x0018,0x603A], tag_multiple: false, tag_note: 'RET'},
|
1050
|
+
{ tag_ps: '(0018,603A)', tag_name: "Doppler Sample Volume Y Position (Retired)", tag_key: 'DopplerSampleVolumeYPositionRetired', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,603A)', tag_sym: :doppler_sample_volume_y_position_retired, tag_ndm: '0018603A', tag_ary: [0x0018,0x603A], tag_multiple: false, tag_note: 'RET (2001)'},
|
946
1051
|
{ tag_ps: '(0018,603B)', tag_name: "Doppler Sample Volume Y Position", tag_key: 'DopplerSampleVolumeYPosition', tag_vr: [:SL], tag_vm: ["1"], tag_str: '(0018,603B)', tag_sym: :doppler_sample_volume_y_position, tag_ndm: '0018603B', tag_ary: [0x0018,0x603B], tag_multiple: false, tag_note: ''},
|
947
|
-
{ tag_ps: '(0018,603C)', tag_name: "TM-Line Position X0 (Retired)", tag_key: 'TMLinePositionX0Retired', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,603C)', tag_sym: :tm_line_position_x0_retired, tag_ndm: '0018603C', tag_ary: [0x0018,0x603C], tag_multiple: false, tag_note: 'RET'},
|
1052
|
+
{ tag_ps: '(0018,603C)', tag_name: "TM-Line Position X0 (Retired)", tag_key: 'TMLinePositionX0Retired', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,603C)', tag_sym: :tm_line_position_x0_retired, tag_ndm: '0018603C', tag_ary: [0x0018,0x603C], tag_multiple: false, tag_note: 'RET (2001)'},
|
948
1053
|
{ tag_ps: '(0018,603D)', tag_name: "TM-Line Position X0", tag_key: 'TMLinePositionX0', tag_vr: [:SL], tag_vm: ["1"], tag_str: '(0018,603D)', tag_sym: :tm_line_position_x0, tag_ndm: '0018603D', tag_ary: [0x0018,0x603D], tag_multiple: false, tag_note: ''},
|
949
|
-
{ tag_ps: '(0018,603E)', tag_name: "TM-Line Position Y0 (Retired)", tag_key: 'TMLinePositionY0Retired', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,603E)', tag_sym: :tm_line_position_y0_retired, tag_ndm: '0018603E', tag_ary: [0x0018,0x603E], tag_multiple: false, tag_note: 'RET'},
|
1054
|
+
{ tag_ps: '(0018,603E)', tag_name: "TM-Line Position Y0 (Retired)", tag_key: 'TMLinePositionY0Retired', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,603E)', tag_sym: :tm_line_position_y0_retired, tag_ndm: '0018603E', tag_ary: [0x0018,0x603E], tag_multiple: false, tag_note: 'RET (2001)'},
|
950
1055
|
{ tag_ps: '(0018,603F)', tag_name: "TM-Line Position Y0", tag_key: 'TMLinePositionY0', tag_vr: [:SL], tag_vm: ["1"], tag_str: '(0018,603F)', tag_sym: :tm_line_position_y0, tag_ndm: '0018603F', tag_ary: [0x0018,0x603F], tag_multiple: false, tag_note: ''},
|
951
|
-
{ tag_ps: '(0018,6040)', tag_name: "TM-Line Position X1 (Retired)", tag_key: 'TMLinePositionX1Retired', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,6040)', tag_sym: :tm_line_position_x1_retired, tag_ndm: '00186040', tag_ary: [0x0018,0x6040], tag_multiple: false, tag_note: 'RET'},
|
1056
|
+
{ tag_ps: '(0018,6040)', tag_name: "TM-Line Position X1 (Retired)", tag_key: 'TMLinePositionX1Retired', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,6040)', tag_sym: :tm_line_position_x1_retired, tag_ndm: '00186040', tag_ary: [0x0018,0x6040], tag_multiple: false, tag_note: 'RET (2001)'},
|
952
1057
|
{ tag_ps: '(0018,6041)', tag_name: "TM-Line Position X1", tag_key: 'TMLinePositionX1', tag_vr: [:SL], tag_vm: ["1"], tag_str: '(0018,6041)', tag_sym: :tm_line_position_x1, tag_ndm: '00186041', tag_ary: [0x0018,0x6041], tag_multiple: false, tag_note: ''},
|
953
|
-
{ tag_ps: '(0018,6042)', tag_name: "TM-Line Position Y1 (Retired)", tag_key: 'TMLinePositionY1Retired', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,6042)', tag_sym: :tm_line_position_y1_retired, tag_ndm: '00186042', tag_ary: [0x0018,0x6042], tag_multiple: false, tag_note: 'RET'},
|
1058
|
+
{ tag_ps: '(0018,6042)', tag_name: "TM-Line Position Y1 (Retired)", tag_key: 'TMLinePositionY1Retired', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,6042)', tag_sym: :tm_line_position_y1_retired, tag_ndm: '00186042', tag_ary: [0x0018,0x6042], tag_multiple: false, tag_note: 'RET (2001)'},
|
954
1059
|
{ tag_ps: '(0018,6043)', tag_name: "TM-Line Position Y1", tag_key: 'TMLinePositionY1', tag_vr: [:SL], tag_vm: ["1"], tag_str: '(0018,6043)', tag_sym: :tm_line_position_y1, tag_ndm: '00186043', tag_ary: [0x0018,0x6043], tag_multiple: false, tag_note: ''},
|
955
1060
|
{ tag_ps: '(0018,6044)', tag_name: "Pixel Component Organization", tag_key: 'PixelComponentOrganization', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0018,6044)', tag_sym: :pixel_component_organization, tag_ndm: '00186044', tag_ary: [0x0018,0x6044], tag_multiple: false, tag_note: ''},
|
956
1061
|
{ tag_ps: '(0018,6046)', tag_name: "Pixel Component Mask", tag_key: 'PixelComponentMask', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,6046)', tag_sym: :pixel_component_mask, tag_ndm: '00186046', tag_ary: [0x0018,0x6046], tag_multiple: false, tag_note: ''},
|
@@ -1087,7 +1192,7 @@ HIGH = 0001H'},
|
|
1087
1192
|
{ tag_ps: '(0018,9093)', tag_name: "Number of k-Space Trajectories", tag_key: 'NumberOfKSpaceTrajectories', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0018,9093)', tag_sym: :number_of_k_space_trajectories, tag_ndm: '00189093', tag_ary: [0x0018,0x9093], tag_multiple: false, tag_note: ''},
|
1088
1193
|
{ tag_ps: '(0018,9094)', tag_name: "Coverage of k-Space", tag_key: 'CoverageOfKSpace', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,9094)', tag_sym: :coverage_of_k_space, tag_ndm: '00189094', tag_ary: [0x0018,0x9094], tag_multiple: false, tag_note: ''},
|
1089
1194
|
{ tag_ps: '(0018,9095)', tag_name: "Spectroscopy Acquisition Phase Rows", tag_key: 'SpectroscopyAcquisitionPhaseRows', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,9095)', tag_sym: :spectroscopy_acquisition_phase_rows, tag_ndm: '00189095', tag_ary: [0x0018,0x9095], tag_multiple: false, tag_note: ''},
|
1090
|
-
{ tag_ps: '(0018,9096)', tag_name: "Parallel Reduction Factor In-plane (Retired)", tag_key: 'ParallelReductionFactorInPlaneRetired', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,9096)', tag_sym: :parallel_reduction_factor_in_plane_retired, tag_ndm: '00189096', tag_ary: [0x0018,0x9096], tag_multiple: false, tag_note: 'RET'},
|
1195
|
+
{ tag_ps: '(0018,9096)', tag_name: "Parallel Reduction Factor In-plane (Retired)", tag_key: 'ParallelReductionFactorInPlaneRetired', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,9096)', tag_sym: :parallel_reduction_factor_in_plane_retired, tag_ndm: '00189096', tag_ary: [0x0018,0x9096], tag_multiple: false, tag_note: 'RET (2007)'},
|
1091
1196
|
{ tag_ps: '(0018,9098)', tag_name: "Transmitter Frequency", tag_key: 'TransmitterFrequency', tag_vr: [:FD], tag_vm: ["1-2"], tag_str: '(0018,9098)', tag_sym: :transmitter_frequency, tag_ndm: '00189098', tag_ary: [0x0018,0x9098], tag_multiple: false, tag_note: ''},
|
1092
1197
|
{ tag_ps: '(0018,9100)', tag_name: "Resonant Nucleus", tag_key: 'ResonantNucleus', tag_vr: [:CS], tag_vm: ["1-2"], tag_str: '(0018,9100)', tag_sym: :resonant_nucleus, tag_ndm: '00189100', tag_ary: [0x0018,0x9100], tag_multiple: false, tag_note: ''},
|
1093
1198
|
{ tag_ps: '(0018,9101)', tag_name: "Frequency Correction", tag_key: 'FrequencyCorrection', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,9101)', tag_sym: :frequency_correction, tag_ndm: '00189101', tag_ary: [0x0018,0x9101], tag_multiple: false, tag_note: ''},
|
@@ -1110,7 +1215,7 @@ HIGH = 0001H'},
|
|
1110
1215
|
{ tag_ps: '(0018,9152)', tag_name: "MR Metabolite Map Sequence", tag_key: 'MRMetaboliteMapSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0018,9152)', tag_sym: :mr_metabolite_map_sequence, tag_ndm: '00189152', tag_ary: [0x0018,0x9152], tag_multiple: false, tag_note: ''},
|
1111
1216
|
{ tag_ps: '(0018,9155)', tag_name: "Parallel Reduction Factor out-of-plane", tag_key: 'ParallelReductionFactorOutOfPlane', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,9155)', tag_sym: :parallel_reduction_factor_out_of_plane, tag_ndm: '00189155', tag_ary: [0x0018,0x9155], tag_multiple: false, tag_note: ''},
|
1112
1217
|
{ tag_ps: '(0018,9159)', tag_name: "Spectroscopy Acquisition Out-of-plane Phase Steps", tag_key: 'SpectroscopyAcquisitionOutOfPlanePhaseSteps', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0018,9159)', tag_sym: :spectroscopy_acquisition_out_of_plane_phase_steps, tag_ndm: '00189159', tag_ary: [0x0018,0x9159], tag_multiple: false, tag_note: ''},
|
1113
|
-
{ tag_ps: '(0018,9166)', tag_name: "Bulk Motion Status", tag_key: 'BulkMotionStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,9166)', tag_sym: :bulk_motion_status, tag_ndm: '00189166', tag_ary: [0x0018,0x9166], tag_multiple: false, tag_note: 'RET'},
|
1218
|
+
{ tag_ps: '(0018,9166)', tag_name: "Bulk Motion Status", tag_key: 'BulkMotionStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,9166)', tag_sym: :bulk_motion_status, tag_ndm: '00189166', tag_ary: [0x0018,0x9166], tag_multiple: false, tag_note: 'RET (2007)'},
|
1114
1219
|
{ tag_ps: '(0018,9168)', tag_name: "Parallel Reduction Factor Second In-plane", tag_key: 'ParallelReductionFactorSecondInPlane', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,9168)', tag_sym: :parallel_reduction_factor_second_in_plane, tag_ndm: '00189168', tag_ary: [0x0018,0x9168], tag_multiple: false, tag_note: ''},
|
1115
1220
|
{ tag_ps: '(0018,9169)', tag_name: "Cardiac Beat Rejection Technique", tag_key: 'CardiacBeatRejectionTechnique', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,9169)', tag_sym: :cardiac_beat_rejection_technique, tag_ndm: '00189169', tag_ary: [0x0018,0x9169], tag_multiple: false, tag_note: ''},
|
1116
1221
|
{ tag_ps: '(0018,9170)', tag_name: "Respiratory Motion Compensation Technique", tag_key: 'RespiratoryMotionCompensationTechnique', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,9170)', tag_sym: :respiratory_motion_compensation_technique, tag_ndm: '00189170', tag_ary: [0x0018,0x9170], tag_multiple: false, tag_note: ''},
|
@@ -1130,8 +1235,8 @@ HIGH = 0001H'},
|
|
1130
1235
|
{ tag_ps: '(0018,9184)', tag_name: "Tagging Delay", tag_key: 'TaggingDelay', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,9184)', tag_sym: :tagging_delay, tag_ndm: '00189184', tag_ary: [0x0018,0x9184], tag_multiple: false, tag_note: ''},
|
1131
1236
|
{ tag_ps: '(0018,9185)', tag_name: "Respiratory Motion Compensation Technique Description", tag_key: 'RespiratoryMotionCompensationTechniqueDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0018,9185)', tag_sym: :respiratory_motion_compensation_technique_description, tag_ndm: '00189185', tag_ary: [0x0018,0x9185], tag_multiple: false, tag_note: ''},
|
1132
1237
|
{ tag_ps: '(0018,9186)', tag_name: "Respiratory Signal Source ID", tag_key: 'RespiratorySignalSourceID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0018,9186)', tag_sym: :respiratory_signal_source_id, tag_ndm: '00189186', tag_ary: [0x0018,0x9186], tag_multiple: false, tag_note: ''},
|
1133
|
-
{ tag_ps: '(0018,9195)', tag_name: "Chemical Shift Minimum Integration Limit in Hz", tag_key: 'ChemicalShiftMinimumIntegrationLimitInHz', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,9195)', tag_sym: :chemical_shift_minimum_integration_limit_in_hz, tag_ndm: '00189195', tag_ary: [0x0018,0x9195], tag_multiple: false, tag_note: 'RET'},
|
1134
|
-
{ tag_ps: '(0018,9196)', tag_name: "Chemical Shift Maximum Integration Limit in Hz", tag_key: 'ChemicalShiftMaximumIntegrationLimitInHz', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,9196)', tag_sym: :chemical_shift_maximum_integration_limit_in_hz, tag_ndm: '00189196', tag_ary: [0x0018,0x9196], tag_multiple: false, tag_note: 'RET'},
|
1238
|
+
{ tag_ps: '(0018,9195)', tag_name: "Chemical Shift Minimum Integration Limit in Hz", tag_key: 'ChemicalShiftMinimumIntegrationLimitInHz', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,9195)', tag_sym: :chemical_shift_minimum_integration_limit_in_hz, tag_ndm: '00189195', tag_ary: [0x0018,0x9195], tag_multiple: false, tag_note: 'RET (2003)'},
|
1239
|
+
{ tag_ps: '(0018,9196)', tag_name: "Chemical Shift Maximum Integration Limit in Hz", tag_key: 'ChemicalShiftMaximumIntegrationLimitInHz', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0018,9196)', tag_sym: :chemical_shift_maximum_integration_limit_in_hz, tag_ndm: '00189196', tag_ary: [0x0018,0x9196], tag_multiple: false, tag_note: 'RET (2003)'},
|
1135
1240
|
{ tag_ps: '(0018,9197)', tag_name: "MR Velocity Encoding Sequence", tag_key: 'MRVelocityEncodingSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0018,9197)', tag_sym: :mr_velocity_encoding_sequence, tag_ndm: '00189197', tag_ary: [0x0018,0x9197], tag_multiple: false, tag_note: ''},
|
1136
1241
|
{ tag_ps: '(0018,9198)', tag_name: "First Order Phase Correction", tag_key: 'FirstOrderPhaseCorrection', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,9198)', tag_sym: :first_order_phase_correction, tag_ndm: '00189198', tag_ary: [0x0018,0x9198], tag_multiple: false, tag_note: ''},
|
1137
1242
|
{ tag_ps: '(0018,9199)', tag_name: "Water Referenced Phase Correction", tag_key: 'WaterReferencedPhaseCorrection', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0018,9199)', tag_sym: :water_referenced_phase_correction, tag_ndm: '00189199', tag_ary: [0x0018,0x9199], tag_multiple: false, tag_note: ''},
|
@@ -1284,7 +1389,7 @@ HIGH = 0001H'},
|
|
1284
1389
|
{ tag_ps: '(0018,9440)', tag_name: "Center of Circular Exposure Control Sensing Region", tag_key: 'CenterOfCircularExposureControlSensingRegion', tag_vr: [:SS], tag_vm: ["2"], tag_str: '(0018,9440)', tag_sym: :center_of_circular_exposure_control_sensing_region, tag_ndm: '00189440', tag_ary: [0x0018,0x9440], tag_multiple: false, tag_note: ''},
|
1285
1390
|
{ tag_ps: '(0018,9441)', tag_name: "Radius of Circular Exposure Control Sensing Region", tag_key: 'RadiusOfCircularExposureControlSensingRegion', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0018,9441)', tag_sym: :radius_of_circular_exposure_control_sensing_region, tag_ndm: '00189441', tag_ary: [0x0018,0x9441], tag_multiple: false, tag_note: ''},
|
1286
1391
|
{ tag_ps: '(0018,9442)', tag_name: "Vertices of the Polygonal Exposure Control Sensing Region", tag_key: 'VerticesOfThePolygonalExposureControlSensingRegion', tag_vr: [:SS], tag_vm: ["2-n"], tag_str: '(0018,9442)', tag_sym: :vertices_of_the_polygonal_exposure_control_sensing_region, tag_ndm: '00189442', tag_ary: [0x0018,0x9442], tag_multiple: false, tag_note: ''},
|
1287
|
-
{ tag_ps: '(0018,9445)', tag_name: "Placeholder (0018,9445)", tag_key: 'Placeholder_0018_9445', tag_vr: [:UN], tag_vm: ["1"], tag_str: '(0018,9445)', tag_sym: :placeholder_0018_9445, tag_ndm: '00189445', tag_ary: [0x0018,0x9445], tag_multiple: false, tag_note: 'RET - See Note'},
|
1392
|
+
{ tag_ps: '(0018,9445)', tag_name: "Placeholder (0018,9445)", tag_key: 'Placeholder_0018_9445', tag_vr: [:UN], tag_vm: ["1"], tag_str: '(0018,9445)', tag_sym: :placeholder_0018_9445, tag_ndm: '00189445', tag_ary: [0x0018,0x9445], tag_multiple: false, tag_note: 'RET (2004) - See Note'},
|
1288
1393
|
{ tag_ps: '(0018,9447)', tag_name: "Column Angulation (Patient)", tag_key: 'ColumnAngulationPatient', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0018,9447)', tag_sym: :column_angulation_patient, tag_ndm: '00189447', tag_ary: [0x0018,0x9447], tag_multiple: false, tag_note: ''},
|
1289
1394
|
{ tag_ps: '(0018,9449)', tag_name: "Beam Angle", tag_key: 'BeamAngle', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0018,9449)', tag_sym: :beam_angle, tag_ndm: '00189449', tag_ary: [0x0018,0x9449], tag_multiple: false, tag_note: ''},
|
1290
1395
|
{ tag_ps: '(0018,9451)', tag_name: "Frame Detector Parameters Sequence", tag_key: 'FrameDetectorParametersSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0018,9451)', tag_sym: :frame_detector_parameters_sequence, tag_ndm: '00189451', tag_ary: [0x0018,0x9451], tag_multiple: false, tag_note: ''},
|
@@ -1484,16 +1589,16 @@ HIGH = 0001H'},
|
|
1484
1589
|
{ tag_ps: '(0020,0011)', tag_name: "Series Number", tag_key: 'SeriesNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0011)', tag_sym: :series_number, tag_ndm: '00200011', tag_ary: [0x0020,0x0011], tag_multiple: false, tag_note: ''},
|
1485
1590
|
{ tag_ps: '(0020,0012)', tag_name: "Acquisition Number", tag_key: 'AcquisitionNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0012)', tag_sym: :acquisition_number, tag_ndm: '00200012', tag_ary: [0x0020,0x0012], tag_multiple: false, tag_note: ''},
|
1486
1591
|
{ tag_ps: '(0020,0013)', tag_name: "Instance Number", tag_key: 'InstanceNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0013)', tag_sym: :instance_number, tag_ndm: '00200013', tag_ary: [0x0020,0x0013], tag_multiple: false, tag_note: ''},
|
1487
|
-
{ tag_ps: '(0020,0014)', tag_name: "Isotope Number", tag_key: 'IsotopeNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0014)', tag_sym: :isotope_number, tag_ndm: '00200014', tag_ary: [0x0020,0x0014], tag_multiple: false, tag_note: 'RET'},
|
1488
|
-
{ tag_ps: '(0020,0015)', tag_name: "Phase Number", tag_key: 'PhaseNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0015)', tag_sym: :phase_number, tag_ndm: '00200015', tag_ary: [0x0020,0x0015], tag_multiple: false, tag_note: 'RET'},
|
1489
|
-
{ tag_ps: '(0020,0016)', tag_name: "Interval Number", tag_key: 'IntervalNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0016)', tag_sym: :interval_number, tag_ndm: '00200016', tag_ary: [0x0020,0x0016], tag_multiple: false, tag_note: 'RET'},
|
1490
|
-
{ tag_ps: '(0020,0017)', tag_name: "Time Slot Number", tag_key: 'TimeSlotNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0017)', tag_sym: :time_slot_number, tag_ndm: '00200017', tag_ary: [0x0020,0x0017], tag_multiple: false, tag_note: 'RET'},
|
1491
|
-
{ tag_ps: '(0020,0018)', tag_name: "Angle Number", tag_key: 'AngleNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0018)', tag_sym: :angle_number, tag_ndm: '00200018', tag_ary: [0x0020,0x0018], tag_multiple: false, tag_note: 'RET'},
|
1592
|
+
{ tag_ps: '(0020,0014)', tag_name: "Isotope Number", tag_key: 'IsotopeNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0014)', tag_sym: :isotope_number, tag_ndm: '00200014', tag_ary: [0x0020,0x0014], tag_multiple: false, tag_note: 'RET (1993)'},
|
1593
|
+
{ tag_ps: '(0020,0015)', tag_name: "Phase Number", tag_key: 'PhaseNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0015)', tag_sym: :phase_number, tag_ndm: '00200015', tag_ary: [0x0020,0x0015], tag_multiple: false, tag_note: 'RET (1993)'},
|
1594
|
+
{ tag_ps: '(0020,0016)', tag_name: "Interval Number", tag_key: 'IntervalNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0016)', tag_sym: :interval_number, tag_ndm: '00200016', tag_ary: [0x0020,0x0016], tag_multiple: false, tag_note: 'RET (1993)'},
|
1595
|
+
{ tag_ps: '(0020,0017)', tag_name: "Time Slot Number", tag_key: 'TimeSlotNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0017)', tag_sym: :time_slot_number, tag_ndm: '00200017', tag_ary: [0x0020,0x0017], tag_multiple: false, tag_note: 'RET (1993)'},
|
1596
|
+
{ tag_ps: '(0020,0018)', tag_name: "Angle Number", tag_key: 'AngleNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0018)', tag_sym: :angle_number, tag_ndm: '00200018', tag_ary: [0x0020,0x0018], tag_multiple: false, tag_note: 'RET (1993)'},
|
1492
1597
|
{ tag_ps: '(0020,0019)', tag_name: "Item Number", tag_key: 'ItemNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0019)', tag_sym: :item_number, tag_ndm: '00200019', tag_ary: [0x0020,0x0019], tag_multiple: false, tag_note: ''},
|
1493
1598
|
{ tag_ps: '(0020,0020)', tag_name: "Patient Orientation", tag_key: 'PatientOrientation', tag_vr: [:CS], tag_vm: ["2"], tag_str: '(0020,0020)', tag_sym: :patient_orientation, tag_ndm: '00200020', tag_ary: [0x0020,0x0020], tag_multiple: false, tag_note: ''},
|
1494
|
-
{ tag_ps: '(0020,0022)', tag_name: "Overlay Number", tag_key: 'OverlayNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0022)', tag_sym: :overlay_number, tag_ndm: '00200022', tag_ary: [0x0020,0x0022], tag_multiple: false, tag_note: 'RET'},
|
1495
|
-
{ tag_ps: '(0020,0024)', tag_name: "Curve Number", tag_key: 'CurveNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0024)', tag_sym: :curve_number, tag_ndm: '00200024', tag_ary: [0x0020,0x0024], tag_multiple: false, tag_note: 'RET'},
|
1496
|
-
{ tag_ps: '(0020,0026)', tag_name: "LUT Number", tag_key: 'LUTNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0026)', tag_sym: :lut_number, tag_ndm: '00200026', tag_ary: [0x0020,0x0026], tag_multiple: false, tag_note: 'RET'},
|
1599
|
+
{ tag_ps: '(0020,0022)', tag_name: "Overlay Number", tag_key: 'OverlayNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0022)', tag_sym: :overlay_number, tag_ndm: '00200022', tag_ary: [0x0020,0x0022], tag_multiple: false, tag_note: 'RET (2004)'},
|
1600
|
+
{ tag_ps: '(0020,0024)', tag_name: "Curve Number", tag_key: 'CurveNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0024)', tag_sym: :curve_number, tag_ndm: '00200024', tag_ary: [0x0020,0x0024], tag_multiple: false, tag_note: 'RET (2004)'},
|
1601
|
+
{ tag_ps: '(0020,0026)', tag_name: "LUT Number", tag_key: 'LUTNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0026)', tag_sym: :lut_number, tag_ndm: '00200026', tag_ary: [0x0020,0x0026], tag_multiple: false, tag_note: 'RET (2004)'},
|
1497
1602
|
{ tag_ps: '(0020,0030)', tag_name: "Image Position", tag_key: 'ImagePosition', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(0020,0030)', tag_sym: :image_position, tag_ndm: '00200030', tag_ary: [0x0020,0x0030], tag_multiple: false, tag_note: 'RET'},
|
1498
1603
|
{ tag_ps: '(0020,0032)', tag_name: "Image Position (Patient)", tag_key: 'ImagePositionPatient', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(0020,0032)', tag_sym: :image_position_patient, tag_ndm: '00200032', tag_ary: [0x0020,0x0032], tag_multiple: false, tag_note: ''},
|
1499
1604
|
{ tag_ps: '(0020,0035)', tag_name: "Image Orientation", tag_key: 'ImageOrientation', tag_vr: [:DS], tag_vm: ["6"], tag_str: '(0020,0035)', tag_sym: :image_orientation, tag_ndm: '00200035', tag_ary: [0x0020,0x0035], tag_multiple: false, tag_note: 'RET'},
|
@@ -1504,23 +1609,23 @@ HIGH = 0001H'},
|
|
1504
1609
|
{ tag_ps: '(0020,0062)', tag_name: "Image Laterality", tag_key: 'ImageLaterality', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0020,0062)', tag_sym: :image_laterality, tag_ndm: '00200062', tag_ary: [0x0020,0x0062], tag_multiple: false, tag_note: ''},
|
1505
1610
|
{ tag_ps: '(0020,0070)', tag_name: "Image Geometry Type", tag_key: 'ImageGeometryType', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0020,0070)', tag_sym: :image_geometry_type, tag_ndm: '00200070', tag_ary: [0x0020,0x0070], tag_multiple: false, tag_note: 'RET'},
|
1506
1611
|
{ tag_ps: '(0020,0080)', tag_name: "Masking Image", tag_key: 'MaskingImage', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0020,0080)', tag_sym: :masking_image, tag_ndm: '00200080', tag_ary: [0x0020,0x0080], tag_multiple: false, tag_note: 'RET'},
|
1507
|
-
{ tag_ps: '(0020,00AA)', tag_name: "Report Number", tag_key: 'ReportNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,00AA)', tag_sym: :report_number, tag_ndm: '002000AA', tag_ary: [0x0020,0x00AA], tag_multiple: false, tag_note: 'RET'},
|
1612
|
+
{ tag_ps: '(0020,00AA)', tag_name: "Report Number", tag_key: 'ReportNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,00AA)', tag_sym: :report_number, tag_ndm: '002000AA', tag_ary: [0x0020,0x00AA], tag_multiple: false, tag_note: 'RET (2009)'},
|
1508
1613
|
{ tag_ps: '(0020,0100)', tag_name: "Temporal Position Identifier", tag_key: 'TemporalPositionIdentifier', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0100)', tag_sym: :temporal_position_identifier, tag_ndm: '00200100', tag_ary: [0x0020,0x0100], tag_multiple: false, tag_note: ''},
|
1509
1614
|
{ tag_ps: '(0020,0105)', tag_name: "Number of Temporal Positions", tag_key: 'NumberOfTemporalPositions', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,0105)', tag_sym: :number_of_temporal_positions, tag_ndm: '00200105', tag_ary: [0x0020,0x0105], tag_multiple: false, tag_note: ''},
|
1510
1615
|
{ tag_ps: '(0020,0110)', tag_name: "Temporal Resolution", tag_key: 'TemporalResolution', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0020,0110)', tag_sym: :temporal_resolution, tag_ndm: '00200110', tag_ary: [0x0020,0x0110], tag_multiple: false, tag_note: ''},
|
1511
1616
|
{ tag_ps: '(0020,0200)', tag_name: "Synchronization Frame of Reference UID", tag_key: 'SynchronizationFrameOfReferenceUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0020,0200)', tag_sym: :synchronization_frame_of_reference_uid, tag_ndm: '00200200', tag_ary: [0x0020,0x0200], tag_multiple: false, tag_note: ''},
|
1512
1617
|
{ tag_ps: '(0020,0242)', tag_name: "SOP Instance UID of Concatenation Source", tag_key: 'SOPInstanceUIDOfConcatenationSource', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0020,0242)', tag_sym: :sop_instance_uid_of_concatenation_source, tag_ndm: '00200242', tag_ary: [0x0020,0x0242], tag_multiple: false, tag_note: ''},
|
1513
|
-
{ tag_ps: '(0020,1000)', tag_name: "Series in Study", tag_key: 'SeriesInStudy', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1000)', tag_sym: :series_in_study, tag_ndm: '00201000', tag_ary: [0x0020,0x1000], tag_multiple: false, tag_note: 'RET'},
|
1618
|
+
{ tag_ps: '(0020,1000)', tag_name: "Series in Study", tag_key: 'SeriesInStudy', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1000)', tag_sym: :series_in_study, tag_ndm: '00201000', tag_ary: [0x0020,0x1000], tag_multiple: false, tag_note: 'RET (2004)'},
|
1514
1619
|
{ tag_ps: '(0020,1001)', tag_name: "Acquisitions in Series", tag_key: 'AcquisitionsInSeries', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1001)', tag_sym: :acquisitions_in_series, tag_ndm: '00201001', tag_ary: [0x0020,0x1001], tag_multiple: false, tag_note: 'RET'},
|
1515
1620
|
{ tag_ps: '(0020,1002)', tag_name: "Images in Acquisition", tag_key: 'ImagesInAcquisition', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1002)', tag_sym: :images_in_acquisition, tag_ndm: '00201002', tag_ary: [0x0020,0x1002], tag_multiple: false, tag_note: ''},
|
1516
|
-
{ tag_ps: '(0020,1003)', tag_name: "Images in Series", tag_key: 'ImagesInSeries', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1003)', tag_sym: :images_in_series, tag_ndm: '00201003', tag_ary: [0x0020,0x1003], tag_multiple: false, tag_note: 'RET'},
|
1517
|
-
{ tag_ps: '(0020,1004)', tag_name: "Acquisitions in Study", tag_key: 'AcquisitionsInStudy', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1004)', tag_sym: :acquisitions_in_study, tag_ndm: '00201004', tag_ary: [0x0020,0x1004], tag_multiple: false, tag_note: 'RET'},
|
1518
|
-
{ tag_ps: '(0020,1005)', tag_name: "Images in Study", tag_key: 'ImagesInStudy', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1005)', tag_sym: :images_in_study, tag_ndm: '00201005', tag_ary: [0x0020,0x1005], tag_multiple: false, tag_note: 'RET'},
|
1621
|
+
{ tag_ps: '(0020,1003)', tag_name: "Images in Series", tag_key: 'ImagesInSeries', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1003)', tag_sym: :images_in_series, tag_ndm: '00201003', tag_ary: [0x0020,0x1003], tag_multiple: false, tag_note: 'RET (2006)'},
|
1622
|
+
{ tag_ps: '(0020,1004)', tag_name: "Acquisitions in Study", tag_key: 'AcquisitionsInStudy', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1004)', tag_sym: :acquisitions_in_study, tag_ndm: '00201004', tag_ary: [0x0020,0x1004], tag_multiple: false, tag_note: 'RET (2004)'},
|
1623
|
+
{ tag_ps: '(0020,1005)', tag_name: "Images in Study", tag_key: 'ImagesInStudy', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1005)', tag_sym: :images_in_study, tag_ndm: '00201005', tag_ary: [0x0020,0x1005], tag_multiple: false, tag_note: 'RET (2006)'},
|
1519
1624
|
{ tag_ps: '(0020,1020)', tag_name: "Reference", tag_key: 'Reference', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0020,1020)', tag_sym: :reference, tag_ndm: '00201020', tag_ary: [0x0020,0x1020], tag_multiple: false, tag_note: 'RET'},
|
1520
1625
|
{ tag_ps: '(0020,103F)', tag_name: "Target Position Reference Indicator", tag_key: 'TargetPositionReferenceIndicator', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0020,103F)', tag_sym: :target_position_reference_indicator, tag_ndm: '0020103F', tag_ary: [0x0020,0x103F], tag_multiple: false, tag_note: ''},
|
1521
1626
|
{ tag_ps: '(0020,1040)', tag_name: "Position Reference Indicator", tag_key: 'PositionReferenceIndicator', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0020,1040)', tag_sym: :position_reference_indicator, tag_ndm: '00201040', tag_ary: [0x0020,0x1040], tag_multiple: false, tag_note: ''},
|
1522
1627
|
{ tag_ps: '(0020,1041)', tag_name: "Slice Location", tag_key: 'SliceLocation', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0020,1041)', tag_sym: :slice_location, tag_ndm: '00201041', tag_ary: [0x0020,0x1041], tag_multiple: false, tag_note: ''},
|
1523
|
-
{ tag_ps: '(0020,1070)', tag_name: "Other Study Numbers", tag_key: 'OtherStudyNumbers', tag_vr: [:IS], tag_vm: ["1-n"], tag_str: '(0020,1070)', tag_sym: :other_study_numbers, tag_ndm: '00201070', tag_ary: [0x0020,0x1070], tag_multiple: false, tag_note: 'RET'},
|
1628
|
+
{ tag_ps: '(0020,1070)', tag_name: "Other Study Numbers", tag_key: 'OtherStudyNumbers', tag_vr: [:IS], tag_vm: ["1-n"], tag_str: '(0020,1070)', tag_sym: :other_study_numbers, tag_ndm: '00201070', tag_ary: [0x0020,0x1070], tag_multiple: false, tag_note: 'RET (2004)'},
|
1524
1629
|
{ tag_ps: '(0020,1200)', tag_name: "Number of Patient Related Studies", tag_key: 'NumberOfPatientRelatedStudies', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1200)', tag_sym: :number_of_patient_related_studies, tag_ndm: '00201200', tag_ary: [0x0020,0x1200], tag_multiple: false, tag_note: ''},
|
1525
1630
|
{ tag_ps: '(0020,1202)', tag_name: "Number of Patient Related Series", tag_key: 'NumberOfPatientRelatedSeries', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1202)', tag_sym: :number_of_patient_related_series, tag_ndm: '00201202', tag_ary: [0x0020,0x1202], tag_multiple: false, tag_note: ''},
|
1526
1631
|
{ tag_ps: '(0020,1204)', tag_name: "Number of Patient Related Instances", tag_key: 'NumberOfPatientRelatedInstances', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0020,1204)', tag_sym: :number_of_patient_related_instances, tag_ndm: '00201204', tag_ary: [0x0020,0x1204], tag_multiple: false, tag_note: ''},
|
@@ -1667,6 +1772,13 @@ HIGH = 0001H'},
|
|
1667
1772
|
{ tag_ps: '(0022,1039)', tag_name: "Refractive Procedure Occurred", tag_key: 'RefractiveProcedureOccurred', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0022,1039)', tag_sym: :refractive_procedure_occurred, tag_ndm: '00221039', tag_ary: [0x0022,0x1039], tag_multiple: false, tag_note: ''},
|
1668
1773
|
{ tag_ps: '(0022,1040)', tag_name: "Refractive Surgery Type Code Sequence", tag_key: 'RefractiveSurgeryTypeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1040)', tag_sym: :refractive_surgery_type_code_sequence, tag_ndm: '00221040', tag_ary: [0x0022,0x1040], tag_multiple: false, tag_note: ''},
|
1669
1774
|
{ tag_ps: '(0022,1044)', tag_name: "Ophthalmic Ultrasound Method Code Sequence", tag_key: 'OphthalmicUltrasoundMethodCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1044)', tag_sym: :ophthalmic_ultrasound_method_code_sequence, tag_ndm: '00221044', tag_ary: [0x0022,0x1044], tag_multiple: false, tag_note: ''},
|
1775
|
+
{ tag_ps: '(0022,1045)', tag_name: "Surgically Induced Astigmatism Sequence", tag_key: 'SurgicallyInducedAstigmatismSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1045)', tag_sym: :surgically_induced_astigmatism_sequence, tag_ndm: '00221045', tag_ary: [0x0022,0x1045], tag_multiple: false, tag_note: ''},
|
1776
|
+
{ tag_ps: '(0022,1046)', tag_name: "Type of Optical Correction", tag_key: 'TypeOfOpticalCorrection', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0022,1046)', tag_sym: :type_of_optical_correction, tag_ndm: '00221046', tag_ary: [0x0022,0x1046], tag_multiple: false, tag_note: ''},
|
1777
|
+
{ tag_ps: '(0022,1047)', tag_name: "Toric IOL Power Sequence", tag_key: 'ToricIOLPowerSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1047)', tag_sym: :toric_iol_power_sequence, tag_ndm: '00221047', tag_ary: [0x0022,0x1047], tag_multiple: false, tag_note: ''},
|
1778
|
+
{ tag_ps: '(0022,1048)', tag_name: "Predicted Toric Error Sequence", tag_key: 'PredictedToricErrorSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1048)', tag_sym: :predicted_toric_error_sequence, tag_ndm: '00221048', tag_ary: [0x0022,0x1048], tag_multiple: false, tag_note: ''},
|
1779
|
+
{ tag_ps: '(0022,1049)', tag_name: "Pre-Selected for Implantation", tag_key: 'PreSelectedForImplantation', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0022,1049)', tag_sym: :pre_selected_for_implantation, tag_ndm: '00221049', tag_ary: [0x0022,0x1049], tag_multiple: false, tag_note: ''},
|
1780
|
+
{ tag_ps: '(0022,104A)', tag_name: "Toric IOL Power for Exact Emmetropia Sequence", tag_key: 'ToricIOLPowerForExactEmmetropiaSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,104A)', tag_sym: :toric_iol_power_for_exact_emmetropia_sequence, tag_ndm: '0022104A', tag_ary: [0x0022,0x104A], tag_multiple: false, tag_note: ''},
|
1781
|
+
{ tag_ps: '(0022,104B)', tag_name: "Toric IOL Power for Exact Target Refraction Sequence", tag_key: 'ToricIOLPowerForExactTargetRefractionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,104B)', tag_sym: :toric_iol_power_for_exact_target_refraction_sequence, tag_ndm: '0022104B', tag_ary: [0x0022,0x104B], tag_multiple: false, tag_note: ''},
|
1670
1782
|
{ tag_ps: '(0022,1050)', tag_name: "Ophthalmic Axial Length Measurements Sequence", tag_key: 'OphthalmicAxialLengthMeasurementsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1050)', tag_sym: :ophthalmic_axial_length_measurements_sequence, tag_ndm: '00221050', tag_ary: [0x0022,0x1050], tag_multiple: false, tag_note: ''},
|
1671
1783
|
{ tag_ps: '(0022,1053)', tag_name: "IOL Power", tag_key: 'IOLPower', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0022,1053)', tag_sym: :iol_power, tag_ndm: '00221053', tag_ary: [0x0022,0x1053], tag_multiple: false, tag_note: ''},
|
1672
1784
|
{ tag_ps: '(0022,1054)', tag_name: "Predicted Refractive Error", tag_key: 'PredictedRefractiveError', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0022,1054)', tag_sym: :predicted_refractive_error, tag_ndm: '00221054', tag_ary: [0x0022,0x1054], tag_multiple: false, tag_note: ''},
|
@@ -1676,7 +1788,7 @@ HIGH = 0001H'},
|
|
1676
1788
|
{ tag_ps: '(0022,1090)', tag_name: "IOL Power Sequence", tag_key: 'IOLPowerSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1090)', tag_sym: :iol_power_sequence, tag_ndm: '00221090', tag_ary: [0x0022,0x1090], tag_multiple: false, tag_note: ''},
|
1677
1789
|
{ tag_ps: '(0022,1092)', tag_name: "Lens Constant Sequence", tag_key: 'LensConstantSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1092)', tag_sym: :lens_constant_sequence, tag_ndm: '00221092', tag_ary: [0x0022,0x1092], tag_multiple: false, tag_note: ''},
|
1678
1790
|
{ tag_ps: '(0022,1093)', tag_name: "IOL Manufacturer", tag_key: 'IOLManufacturer', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0022,1093)', tag_sym: :iol_manufacturer, tag_ndm: '00221093', tag_ary: [0x0022,0x1093], tag_multiple: false, tag_note: ''},
|
1679
|
-
{ tag_ps: '(0022,1094)', tag_name: "Lens Constant Description", tag_key: 'LensConstantDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0022,1094)', tag_sym: :lens_constant_description, tag_ndm: '00221094', tag_ary: [0x0022,0x1094], tag_multiple: false, tag_note: 'RET'},
|
1791
|
+
{ tag_ps: '(0022,1094)', tag_name: "Lens Constant Description", tag_key: 'LensConstantDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0022,1094)', tag_sym: :lens_constant_description, tag_ndm: '00221094', tag_ary: [0x0022,0x1094], tag_multiple: false, tag_note: 'RET (2011)'},
|
1680
1792
|
{ tag_ps: '(0022,1095)', tag_name: "Implant Name", tag_key: 'ImplantName', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0022,1095)', tag_sym: :implant_name, tag_ndm: '00221095', tag_ary: [0x0022,0x1095], tag_multiple: false, tag_note: ''},
|
1681
1793
|
{ tag_ps: '(0022,1096)', tag_name: "Keratometry Measurement Type Code Sequence", tag_key: 'KeratometryMeasurementTypeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1096)', tag_sym: :keratometry_measurement_type_code_sequence, tag_ndm: '00221096', tag_ary: [0x0022,0x1096], tag_multiple: false, tag_note: ''},
|
1682
1794
|
{ tag_ps: '(0022,1097)', tag_name: "Implant Part Number", tag_key: 'ImplantPartNumber', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0022,1097)', tag_sym: :implant_part_number, tag_ndm: '00221097', tag_ary: [0x0022,0x1097], tag_multiple: false, tag_note: ''},
|
@@ -1688,6 +1800,9 @@ HIGH = 0001H'},
|
|
1688
1800
|
{ tag_ps: '(0022,1125)', tag_name: "Anterior Chamber Depth Definition Code Sequence", tag_key: 'AnteriorChamberDepthDefinitionCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1125)', tag_sym: :anterior_chamber_depth_definition_code_sequence, tag_ndm: '00221125', tag_ary: [0x0022,0x1125], tag_multiple: false, tag_note: ''},
|
1689
1801
|
{ tag_ps: '(0022,1127)', tag_name: "Lens Thickness Sequence", tag_key: 'LensThicknessSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1127)', tag_sym: :lens_thickness_sequence, tag_ndm: '00221127', tag_ary: [0x0022,0x1127], tag_multiple: false, tag_note: ''},
|
1690
1802
|
{ tag_ps: '(0022,1128)', tag_name: "Anterior Chamber Depth Sequence", tag_key: 'AnteriorChamberDepthSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1128)', tag_sym: :anterior_chamber_depth_sequence, tag_ndm: '00221128', tag_ary: [0x0022,0x1128], tag_multiple: false, tag_note: ''},
|
1803
|
+
{ tag_ps: '(0022,112A)', tag_name: "Calculation Comment Sequence", tag_key: 'CalculationCommentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,112A)', tag_sym: :calculation_comment_sequence, tag_ndm: '0022112A', tag_ary: [0x0022,0x112A], tag_multiple: false, tag_note: ''},
|
1804
|
+
{ tag_ps: '(0022,112B)', tag_name: "Calculation Comment Type", tag_key: 'CalculationCommentType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0022,112B)', tag_sym: :calculation_comment_type, tag_ndm: '0022112B', tag_ary: [0x0022,0x112B], tag_multiple: false, tag_note: ''},
|
1805
|
+
{ tag_ps: '(0022,112C)', tag_name: "Calculation Comment", tag_key: 'CalculationComment', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0022,112C)', tag_sym: :calculation_comment, tag_ndm: '0022112C', tag_ary: [0x0022,0x112C], tag_multiple: false, tag_note: ''},
|
1691
1806
|
{ tag_ps: '(0022,1130)', tag_name: "Lens Thickness", tag_key: 'LensThickness', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0022,1130)', tag_sym: :lens_thickness, tag_ndm: '00221130', tag_ary: [0x0022,0x1130], tag_multiple: false, tag_note: ''},
|
1692
1807
|
{ tag_ps: '(0022,1131)', tag_name: "Anterior Chamber Depth", tag_key: 'AnteriorChamberDepth', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0022,1131)', tag_sym: :anterior_chamber_depth, tag_ndm: '00221131', tag_ary: [0x0022,0x1131], tag_multiple: false, tag_note: ''},
|
1693
1808
|
{ tag_ps: '(0022,1132)', tag_name: "Source of Lens Thickness Data Code Sequence", tag_key: 'SourceOfLensThicknessDataCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1132)', tag_sym: :source_of_lens_thickness_data_code_sequence, tag_ndm: '00221132', tag_ary: [0x0022,0x1132], tag_multiple: false, tag_note: ''},
|
@@ -1696,7 +1811,7 @@ HIGH = 0001H'},
|
|
1696
1811
|
{ tag_ps: '(0022,1135)', tag_name: "Source of Refractive Measurements Code Sequence", tag_key: 'SourceOfRefractiveMeasurementsCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1135)', tag_sym: :source_of_refractive_measurements_code_sequence, tag_ndm: '00221135', tag_ary: [0x0022,0x1135], tag_multiple: false, tag_note: ''},
|
1697
1812
|
{ tag_ps: '(0022,1140)', tag_name: "Ophthalmic Axial Length Measurement Modified", tag_key: 'OphthalmicAxialLengthMeasurementModified', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0022,1140)', tag_sym: :ophthalmic_axial_length_measurement_modified, tag_ndm: '00221140', tag_ary: [0x0022,0x1140], tag_multiple: false, tag_note: ''},
|
1698
1813
|
{ tag_ps: '(0022,1150)', tag_name: "Ophthalmic Axial Length Data Source Code Sequence", tag_key: 'OphthalmicAxialLengthDataSourceCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1150)', tag_sym: :ophthalmic_axial_length_data_source_code_sequence, tag_ndm: '00221150', tag_ary: [0x0022,0x1150], tag_multiple: false, tag_note: ''},
|
1699
|
-
{ tag_ps: '(0022,1153)', tag_name: "Ophthalmic Axial Length Acquisition Method Code Sequence", tag_key: 'OphthalmicAxialLengthAcquisitionMethodCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1153)', tag_sym: :ophthalmic_axial_length_acquisition_method_code_sequence, tag_ndm: '00221153', tag_ary: [0x0022,0x1153], tag_multiple: false, tag_note: 'RET'},
|
1814
|
+
{ tag_ps: '(0022,1153)', tag_name: "Ophthalmic Axial Length Acquisition Method Code Sequence", tag_key: 'OphthalmicAxialLengthAcquisitionMethodCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1153)', tag_sym: :ophthalmic_axial_length_acquisition_method_code_sequence, tag_ndm: '00221153', tag_ary: [0x0022,0x1153], tag_multiple: false, tag_note: 'RET (2011)'},
|
1700
1815
|
{ tag_ps: '(0022,1155)', tag_name: "Signal to Noise Ratio", tag_key: 'SignalToNoiseRatio', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0022,1155)', tag_sym: :signal_to_noise_ratio, tag_ndm: '00221155', tag_ary: [0x0022,0x1155], tag_multiple: false, tag_note: ''},
|
1701
1816
|
{ tag_ps: '(0022,1159)', tag_name: "Ophthalmic Axial Length Data Source Description", tag_key: 'OphthalmicAxialLengthDataSourceDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0022,1159)', tag_sym: :ophthalmic_axial_length_data_source_description, tag_ndm: '00221159', tag_ary: [0x0022,0x1159], tag_multiple: false, tag_note: ''},
|
1702
1817
|
{ tag_ps: '(0022,1210)', tag_name: "Ophthalmic Axial Length Measurements Total Length Sequence", tag_key: 'OphthalmicAxialLengthMeasurementsTotalLengthSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1210)', tag_sym: :ophthalmic_axial_length_measurements_total_length_sequence, tag_ndm: '00221210', tag_ary: [0x0022,0x1210], tag_multiple: false, tag_note: ''},
|
@@ -1711,7 +1826,7 @@ HIGH = 0001H'},
|
|
1711
1826
|
{ tag_ps: '(0022,1260)', tag_name: "Selected Total Ophthalmic Axial Length Sequence", tag_key: 'SelectedTotalOphthalmicAxialLengthSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1260)', tag_sym: :selected_total_ophthalmic_axial_length_sequence, tag_ndm: '00221260', tag_ary: [0x0022,0x1260], tag_multiple: false, tag_note: ''},
|
1712
1827
|
{ tag_ps: '(0022,1262)', tag_name: "Ophthalmic Axial Length Quality Metric Sequence", tag_key: 'OphthalmicAxialLengthQualityMetricSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1262)', tag_sym: :ophthalmic_axial_length_quality_metric_sequence, tag_ndm: '00221262', tag_ary: [0x0022,0x1262], tag_multiple: false, tag_note: ''},
|
1713
1828
|
{ tag_ps: '(0022,1265)', tag_name: "Ophthalmic Axial Length Quality Metric Type Code Sequence", tag_key: 'OphthalmicAxialLengthQualityMetricTypeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1265)', tag_sym: :ophthalmic_axial_length_quality_metric_type_code_sequence, tag_ndm: '00221265', tag_ary: [0x0022,0x1265], tag_multiple: false, tag_note: 'RET'},
|
1714
|
-
{ tag_ps: '(0022,1273)', tag_name: "Ophthalmic Axial Length Quality Metric Type Description", tag_key: 'OphthalmicAxialLengthQualityMetricTypeDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0022,1273)', tag_sym: :ophthalmic_axial_length_quality_metric_type_description, tag_ndm: '00221273', tag_ary: [0x0022,0x1273], tag_multiple: false, tag_note: 'RET'},
|
1829
|
+
{ tag_ps: '(0022,1273)', tag_name: "Ophthalmic Axial Length Quality Metric Type Description", tag_key: 'OphthalmicAxialLengthQualityMetricTypeDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0022,1273)', tag_sym: :ophthalmic_axial_length_quality_metric_type_description, tag_ndm: '00221273', tag_ary: [0x0022,0x1273], tag_multiple: false, tag_note: 'RET (2011)'},
|
1715
1830
|
{ tag_ps: '(0022,1300)', tag_name: "Intraocular Lens Calculations Right Eye Sequence", tag_key: 'IntraocularLensCalculationsRightEyeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1300)', tag_sym: :intraocular_lens_calculations_right_eye_sequence, tag_ndm: '00221300', tag_ary: [0x0022,0x1300], tag_multiple: false, tag_note: ''},
|
1716
1831
|
{ tag_ps: '(0022,1310)', tag_name: "Intraocular Lens Calculations Left Eye Sequence", tag_key: 'IntraocularLensCalculationsLeftEyeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1310)', tag_sym: :intraocular_lens_calculations_left_eye_sequence, tag_ndm: '00221310', tag_ary: [0x0022,0x1310], tag_multiple: false, tag_note: ''},
|
1717
1832
|
{ tag_ps: '(0022,1330)', tag_name: "Referenced Ophthalmic Axial Length Measurement QC Image Sequence", tag_key: 'ReferencedOphthalmicAxialLengthMeasurementQCImageSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0022,1330)', tag_sym: :referenced_ophthalmic_axial_length_measurement_qc_image_sequence, tag_ndm: '00221330', tag_ary: [0x0022,0x1330], tag_multiple: false, tag_note: ''},
|
@@ -1875,9 +1990,9 @@ HIGH = 0001H'},
|
|
1875
1990
|
{ tag_ps: '(0028,000A)', tag_name: "Frame Dimension Pointer", tag_key: 'FrameDimensionPointer', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,000A)', tag_sym: :frame_dimension_pointer, tag_ndm: '0028000A', tag_ary: [0x0028,0x000A], tag_multiple: false, tag_note: ''},
|
1876
1991
|
{ tag_ps: '(0028,0010)', tag_name: "Rows", tag_key: 'Rows', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0010)', tag_sym: :rows, tag_ndm: '00280010', tag_ary: [0x0028,0x0010], tag_multiple: false, tag_note: ''},
|
1877
1992
|
{ tag_ps: '(0028,0011)', tag_name: "Columns", tag_key: 'Columns', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0011)', tag_sym: :columns, tag_ndm: '00280011', tag_ary: [0x0028,0x0011], tag_multiple: false, tag_note: ''},
|
1878
|
-
{ tag_ps: '(0028,0012)', tag_name: "Planes", tag_key: 'Planes', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0012)', tag_sym: :planes, tag_ndm: '00280012', tag_ary: [0x0028,0x0012], tag_multiple: false, tag_note: 'RET'},
|
1993
|
+
{ tag_ps: '(0028,0012)', tag_name: "Planes", tag_key: 'Planes', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0012)', tag_sym: :planes, tag_ndm: '00280012', tag_ary: [0x0028,0x0012], tag_multiple: false, tag_note: 'RET (2007)'},
|
1879
1994
|
{ tag_ps: '(0028,0014)', tag_name: "Ultrasound Color Data Present", tag_key: 'UltrasoundColorDataPresent', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0014)', tag_sym: :ultrasound_color_data_present, tag_ndm: '00280014', tag_ary: [0x0028,0x0014], tag_multiple: false, tag_note: ''},
|
1880
|
-
{ tag_ps: '(0028,0020)', tag_name: "Placeholder (0028,0020)", tag_key: 'Placeholder_0028_0020', tag_vr: [:UN], tag_vm: ["1"], tag_str: '(0028,0020)', tag_sym: :placeholder_0028_0020, tag_ndm: '00280020', tag_ary: [0x0028,0x0020], tag_multiple: false, tag_note: 'RET - See Note'},
|
1995
|
+
{ tag_ps: '(0028,0020)', tag_name: "Placeholder (0028,0020)", tag_key: 'Placeholder_0028_0020', tag_vr: [:UN], tag_vm: ["1"], tag_str: '(0028,0020)', tag_sym: :placeholder_0028_0020, tag_ndm: '00280020', tag_ary: [0x0028,0x0020], tag_multiple: false, tag_note: 'RET (2007) - See Note'},
|
1881
1996
|
{ tag_ps: '(0028,0030)', tag_name: "Pixel Spacing", tag_key: 'PixelSpacing', tag_vr: [:DS], tag_vm: ["2"], tag_str: '(0028,0030)', tag_sym: :pixel_spacing, tag_ndm: '00280030', tag_ary: [0x0028,0x0030], tag_multiple: false, tag_note: ''},
|
1882
1997
|
{ tag_ps: '(0028,0031)', tag_name: "Zoom Factor", tag_key: 'ZoomFactor', tag_vr: [:DS], tag_vm: ["2"], tag_str: '(0028,0031)', tag_sym: :zoom_factor, tag_ndm: '00280031', tag_ary: [0x0028,0x0031], tag_multiple: false, tag_note: ''},
|
1883
1998
|
{ tag_ps: '(0028,0032)', tag_name: "Zoom Center", tag_key: 'ZoomCenter', tag_vr: [:DS], tag_vm: ["2"], tag_str: '(0028,0032)', tag_sym: :zoom_center, tag_ndm: '00280032', tag_ary: [0x0028,0x0032], tag_multiple: false, tag_note: ''},
|
@@ -1885,25 +2000,25 @@ HIGH = 0001H'},
|
|
1885
2000
|
{ tag_ps: '(0028,0040)', tag_name: "Image Format", tag_key: 'ImageFormat', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0028,0040)', tag_sym: :image_format, tag_ndm: '00280040', tag_ary: [0x0028,0x0040], tag_multiple: false, tag_note: 'RET'},
|
1886
2001
|
{ tag_ps: '(0028,0050)', tag_name: "Manipulated Image", tag_key: 'ManipulatedImage', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0028,0050)', tag_sym: :manipulated_image, tag_ndm: '00280050', tag_ary: [0x0028,0x0050], tag_multiple: false, tag_note: 'RET'},
|
1887
2002
|
{ tag_ps: '(0028,0051)', tag_name: "Corrected Image", tag_key: 'CorrectedImage', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0028,0051)', tag_sym: :corrected_image, tag_ndm: '00280051', tag_ary: [0x0028,0x0051], tag_multiple: false, tag_note: ''},
|
1888
|
-
{ tag_ps: '(0028,005F)', tag_name: "Compression Recognition Code", tag_key: 'CompressionRecognitionCode', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0028,005F)', tag_sym: :compression_recognition_code, tag_ndm: '0028005F', tag_ary: [0x0028,0x005F], tag_multiple: false, tag_note: 'RET'},
|
2003
|
+
{ tag_ps: '(0028,005F)', tag_name: "Compression Recognition Code", tag_key: 'CompressionRecognitionCode', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0028,005F)', tag_sym: :compression_recognition_code, tag_ndm: '0028005F', tag_ary: [0x0028,0x005F], tag_multiple: false, tag_note: 'RET (2007)'},
|
1889
2004
|
{ tag_ps: '(0028,0060)', tag_name: "Compression Code", tag_key: 'CompressionCode', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0028,0060)', tag_sym: :compression_code, tag_ndm: '00280060', tag_ary: [0x0028,0x0060], tag_multiple: false, tag_note: 'RET'},
|
1890
|
-
{ tag_ps: '(0028,0061)', tag_name: "Compression Originator", tag_key: 'CompressionOriginator', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0028,0061)', tag_sym: :compression_originator, tag_ndm: '00280061', tag_ary: [0x0028,0x0061], tag_multiple: false, tag_note: 'RET'},
|
1891
|
-
{ tag_ps: '(0028,0062)', tag_name: "Compression Label", tag_key: 'CompressionLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0028,0062)', tag_sym: :compression_label, tag_ndm: '00280062', tag_ary: [0x0028,0x0062], tag_multiple: false, tag_note: 'RET'},
|
1892
|
-
{ tag_ps: '(0028,0063)', tag_name: "Compression Description", tag_key: 'CompressionDescription', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0028,0063)', tag_sym: :compression_description, tag_ndm: '00280063', tag_ary: [0x0028,0x0063], tag_multiple: false, tag_note: 'RET'},
|
1893
|
-
{ tag_ps: '(0028,0065)', tag_name: "Compression Sequence", tag_key: 'CompressionSequence', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0028,0065)', tag_sym: :compression_sequence, tag_ndm: '00280065', tag_ary: [0x0028,0x0065], tag_multiple: false, tag_note: 'RET'},
|
1894
|
-
{ tag_ps: '(0028,0066)', tag_name: "Compression Step Pointers", tag_key: 'CompressionStepPointers', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0066)', tag_sym: :compression_step_pointers, tag_ndm: '00280066', tag_ary: [0x0028,0x0066], tag_multiple: false, tag_note: 'RET'},
|
1895
|
-
{ tag_ps: '(0028,0068)', tag_name: "Repeat Interval", tag_key: 'RepeatInterval', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0068)', tag_sym: :repeat_interval, tag_ndm: '00280068', tag_ary: [0x0028,0x0068], tag_multiple: false, tag_note: 'RET'},
|
1896
|
-
{ tag_ps: '(0028,0069)', tag_name: "Bits Grouped", tag_key: 'BitsGrouped', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0069)', tag_sym: :bits_grouped, tag_ndm: '00280069', tag_ary: [0x0028,0x0069], tag_multiple: false, tag_note: 'RET'},
|
1897
|
-
{ tag_ps: '(0028,0070)', tag_name: "Perimeter Table", tag_key: 'PerimeterTable', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(0028,0070)', tag_sym: :perimeter_table, tag_ndm: '00280070', tag_ary: [0x0028,0x0070], tag_multiple: false, tag_note: 'RET'},
|
1898
|
-
{ tag_ps: '(0028,0071)', tag_name: "Perimeter Value", tag_key: 'PerimeterValue', tag_vr: [:US, :SS], tag_vm: ["1"], tag_str: '(0028,0071)', tag_sym: :perimeter_value, tag_ndm: '00280071', tag_ary: [0x0028,0x0071], tag_multiple: false, tag_note: 'RET'},
|
1899
|
-
{ tag_ps: '(0028,0080)', tag_name: "Predictor Rows", tag_key: 'PredictorRows', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0080)', tag_sym: :predictor_rows, tag_ndm: '00280080', tag_ary: [0x0028,0x0080], tag_multiple: false, tag_note: 'RET'},
|
1900
|
-
{ tag_ps: '(0028,0081)', tag_name: "Predictor Columns", tag_key: 'PredictorColumns', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0081)', tag_sym: :predictor_columns, tag_ndm: '00280081', tag_ary: [0x0028,0x0081], tag_multiple: false, tag_note: 'RET'},
|
1901
|
-
{ tag_ps: '(0028,0082)', tag_name: "Predictor Constants", tag_key: 'PredictorConstants', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(0028,0082)', tag_sym: :predictor_constants, tag_ndm: '00280082', tag_ary: [0x0028,0x0082], tag_multiple: false, tag_note: 'RET'},
|
1902
|
-
{ tag_ps: '(0028,0090)', tag_name: "Blocked Pixels", tag_key: 'BlockedPixels', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0028,0090)', tag_sym: :blocked_pixels, tag_ndm: '00280090', tag_ary: [0x0028,0x0090], tag_multiple: false, tag_note: 'RET'},
|
1903
|
-
{ tag_ps: '(0028,0091)', tag_name: "Block Rows", tag_key: 'BlockRows', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0091)', tag_sym: :block_rows, tag_ndm: '00280091', tag_ary: [0x0028,0x0091], tag_multiple: false, tag_note: 'RET'},
|
1904
|
-
{ tag_ps: '(0028,0092)', tag_name: "Block Columns", tag_key: 'BlockColumns', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0092)', tag_sym: :block_columns, tag_ndm: '00280092', tag_ary: [0x0028,0x0092], tag_multiple: false, tag_note: 'RET'},
|
1905
|
-
{ tag_ps: '(0028,0093)', tag_name: "Row Overlap", tag_key: 'RowOverlap', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0093)', tag_sym: :row_overlap, tag_ndm: '00280093', tag_ary: [0x0028,0x0093], tag_multiple: false, tag_note: 'RET'},
|
1906
|
-
{ tag_ps: '(0028,0094)', tag_name: "Column Overlap", tag_key: 'ColumnOverlap', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0094)', tag_sym: :column_overlap, tag_ndm: '00280094', tag_ary: [0x0028,0x0094], tag_multiple: false, tag_note: 'RET'},
|
2005
|
+
{ tag_ps: '(0028,0061)', tag_name: "Compression Originator", tag_key: 'CompressionOriginator', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0028,0061)', tag_sym: :compression_originator, tag_ndm: '00280061', tag_ary: [0x0028,0x0061], tag_multiple: false, tag_note: 'RET (2007)'},
|
2006
|
+
{ tag_ps: '(0028,0062)', tag_name: "Compression Label", tag_key: 'CompressionLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0028,0062)', tag_sym: :compression_label, tag_ndm: '00280062', tag_ary: [0x0028,0x0062], tag_multiple: false, tag_note: 'RET (2007)'},
|
2007
|
+
{ tag_ps: '(0028,0063)', tag_name: "Compression Description", tag_key: 'CompressionDescription', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0028,0063)', tag_sym: :compression_description, tag_ndm: '00280063', tag_ary: [0x0028,0x0063], tag_multiple: false, tag_note: 'RET (2007)'},
|
2008
|
+
{ tag_ps: '(0028,0065)', tag_name: "Compression Sequence", tag_key: 'CompressionSequence', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0028,0065)', tag_sym: :compression_sequence, tag_ndm: '00280065', tag_ary: [0x0028,0x0065], tag_multiple: false, tag_note: 'RET (2007)'},
|
2009
|
+
{ tag_ps: '(0028,0066)', tag_name: "Compression Step Pointers", tag_key: 'CompressionStepPointers', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0066)', tag_sym: :compression_step_pointers, tag_ndm: '00280066', tag_ary: [0x0028,0x0066], tag_multiple: false, tag_note: 'RET (2007)'},
|
2010
|
+
{ tag_ps: '(0028,0068)', tag_name: "Repeat Interval", tag_key: 'RepeatInterval', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0068)', tag_sym: :repeat_interval, tag_ndm: '00280068', tag_ary: [0x0028,0x0068], tag_multiple: false, tag_note: 'RET (2007)'},
|
2011
|
+
{ tag_ps: '(0028,0069)', tag_name: "Bits Grouped", tag_key: 'BitsGrouped', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0069)', tag_sym: :bits_grouped, tag_ndm: '00280069', tag_ary: [0x0028,0x0069], tag_multiple: false, tag_note: 'RET (2007)'},
|
2012
|
+
{ tag_ps: '(0028,0070)', tag_name: "Perimeter Table", tag_key: 'PerimeterTable', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(0028,0070)', tag_sym: :perimeter_table, tag_ndm: '00280070', tag_ary: [0x0028,0x0070], tag_multiple: false, tag_note: 'RET (2007)'},
|
2013
|
+
{ tag_ps: '(0028,0071)', tag_name: "Perimeter Value", tag_key: 'PerimeterValue', tag_vr: [:US, :SS], tag_vm: ["1"], tag_str: '(0028,0071)', tag_sym: :perimeter_value, tag_ndm: '00280071', tag_ary: [0x0028,0x0071], tag_multiple: false, tag_note: 'RET (2007)'},
|
2014
|
+
{ tag_ps: '(0028,0080)', tag_name: "Predictor Rows", tag_key: 'PredictorRows', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0080)', tag_sym: :predictor_rows, tag_ndm: '00280080', tag_ary: [0x0028,0x0080], tag_multiple: false, tag_note: 'RET (2007)'},
|
2015
|
+
{ tag_ps: '(0028,0081)', tag_name: "Predictor Columns", tag_key: 'PredictorColumns', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0081)', tag_sym: :predictor_columns, tag_ndm: '00280081', tag_ary: [0x0028,0x0081], tag_multiple: false, tag_note: 'RET (2007)'},
|
2016
|
+
{ tag_ps: '(0028,0082)', tag_name: "Predictor Constants", tag_key: 'PredictorConstants', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(0028,0082)', tag_sym: :predictor_constants, tag_ndm: '00280082', tag_ary: [0x0028,0x0082], tag_multiple: false, tag_note: 'RET (2007)'},
|
2017
|
+
{ tag_ps: '(0028,0090)', tag_name: "Blocked Pixels", tag_key: 'BlockedPixels', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0028,0090)', tag_sym: :blocked_pixels, tag_ndm: '00280090', tag_ary: [0x0028,0x0090], tag_multiple: false, tag_note: 'RET (2007)'},
|
2018
|
+
{ tag_ps: '(0028,0091)', tag_name: "Block Rows", tag_key: 'BlockRows', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0091)', tag_sym: :block_rows, tag_ndm: '00280091', tag_ary: [0x0028,0x0091], tag_multiple: false, tag_note: 'RET (2007)'},
|
2019
|
+
{ tag_ps: '(0028,0092)', tag_name: "Block Columns", tag_key: 'BlockColumns', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0092)', tag_sym: :block_columns, tag_ndm: '00280092', tag_ary: [0x0028,0x0092], tag_multiple: false, tag_note: 'RET (2007)'},
|
2020
|
+
{ tag_ps: '(0028,0093)', tag_name: "Row Overlap", tag_key: 'RowOverlap', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0093)', tag_sym: :row_overlap, tag_ndm: '00280093', tag_ary: [0x0028,0x0093], tag_multiple: false, tag_note: 'RET (2007)'},
|
2021
|
+
{ tag_ps: '(0028,0094)', tag_name: "Column Overlap", tag_key: 'ColumnOverlap', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0094)', tag_sym: :column_overlap, tag_ndm: '00280094', tag_ary: [0x0028,0x0094], tag_multiple: false, tag_note: 'RET (2007)'},
|
1907
2022
|
{ tag_ps: '(0028,0100)', tag_name: "Bits Allocated", tag_key: 'BitsAllocated', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0100)', tag_sym: :bits_allocated, tag_ndm: '00280100', tag_ary: [0x0028,0x0100], tag_multiple: false, tag_note: ''},
|
1908
2023
|
{ tag_ps: '(0028,0101)', tag_name: "Bits Stored", tag_key: 'BitsStored', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0101)', tag_sym: :bits_stored, tag_ndm: '00280101', tag_ary: [0x0028,0x0101], tag_multiple: false, tag_note: ''},
|
1909
2024
|
{ tag_ps: '(0028,0102)', tag_name: "High Bit", tag_key: 'HighBit', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0102)', tag_sym: :high_bit, tag_ndm: '00280102', tag_ary: [0x0028,0x0102], tag_multiple: false, tag_note: ''},
|
@@ -1914,8 +2029,8 @@ HIGH = 0001H'},
|
|
1914
2029
|
{ tag_ps: '(0028,0107)', tag_name: "Largest Image Pixel Value", tag_key: 'LargestImagePixelValue', tag_vr: [:US, :SS], tag_vm: ["1"], tag_str: '(0028,0107)', tag_sym: :largest_image_pixel_value, tag_ndm: '00280107', tag_ary: [0x0028,0x0107], tag_multiple: false, tag_note: ''},
|
1915
2030
|
{ tag_ps: '(0028,0108)', tag_name: "Smallest Pixel Value in Series", tag_key: 'SmallestPixelValueInSeries', tag_vr: [:US, :SS], tag_vm: ["1"], tag_str: '(0028,0108)', tag_sym: :smallest_pixel_value_in_series, tag_ndm: '00280108', tag_ary: [0x0028,0x0108], tag_multiple: false, tag_note: ''},
|
1916
2031
|
{ tag_ps: '(0028,0109)', tag_name: "Largest Pixel Value in Series", tag_key: 'LargestPixelValueInSeries', tag_vr: [:US, :SS], tag_vm: ["1"], tag_str: '(0028,0109)', tag_sym: :largest_pixel_value_in_series, tag_ndm: '00280109', tag_ary: [0x0028,0x0109], tag_multiple: false, tag_note: ''},
|
1917
|
-
{ tag_ps: '(0028,0110)', tag_name: "Smallest Image Pixel Value in Plane", tag_key: 'SmallestImagePixelValueInPlane', tag_vr: [:US, :SS], tag_vm: ["1"], tag_str: '(0028,0110)', tag_sym: :smallest_image_pixel_value_in_plane, tag_ndm: '00280110', tag_ary: [0x0028,0x0110], tag_multiple: false, tag_note: 'RET'},
|
1918
|
-
{ tag_ps: '(0028,0111)', tag_name: "Largest Image Pixel Value in Plane", tag_key: 'LargestImagePixelValueInPlane', tag_vr: [:US, :SS], tag_vm: ["1"], tag_str: '(0028,0111)', tag_sym: :largest_image_pixel_value_in_plane, tag_ndm: '00280111', tag_ary: [0x0028,0x0111], tag_multiple: false, tag_note: 'RET'},
|
2032
|
+
{ tag_ps: '(0028,0110)', tag_name: "Smallest Image Pixel Value in Plane", tag_key: 'SmallestImagePixelValueInPlane', tag_vr: [:US, :SS], tag_vm: ["1"], tag_str: '(0028,0110)', tag_sym: :smallest_image_pixel_value_in_plane, tag_ndm: '00280110', tag_ary: [0x0028,0x0110], tag_multiple: false, tag_note: 'RET (2007)'},
|
2033
|
+
{ tag_ps: '(0028,0111)', tag_name: "Largest Image Pixel Value in Plane", tag_key: 'LargestImagePixelValueInPlane', tag_vr: [:US, :SS], tag_vm: ["1"], tag_str: '(0028,0111)', tag_sym: :largest_image_pixel_value_in_plane, tag_ndm: '00280111', tag_ary: [0x0028,0x0111], tag_multiple: false, tag_note: 'RET (2007)'},
|
1919
2034
|
{ tag_ps: '(0028,0120)', tag_name: "Pixel Padding Value", tag_key: 'PixelPaddingValue', tag_vr: [:US, :SS], tag_vm: ["1"], tag_str: '(0028,0120)', tag_sym: :pixel_padding_value, tag_ndm: '00280120', tag_ary: [0x0028,0x0120], tag_multiple: false, tag_note: ''},
|
1920
2035
|
{ tag_ps: '(0028,0121)', tag_name: "Pixel Padding Range Limit", tag_key: 'PixelPaddingRangeLimit', tag_vr: [:US, :SS], tag_vm: ["1"], tag_str: '(0028,0121)', tag_sym: :pixel_padding_range_limit, tag_ndm: '00280121', tag_ary: [0x0028,0x0121], tag_multiple: false, tag_note: ''},
|
1921
2036
|
{ tag_ps: '(0028,0122)', tag_name: "Float Pixel Padding Value", tag_key: 'FloatPixelPaddingValue', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0028,0122)', tag_sym: :float_pixel_padding_value, tag_ndm: '00280122', tag_ary: [0x0028,0x0122], tag_multiple: false, tag_note: ''},
|
@@ -1928,29 +2043,29 @@ HIGH = 0001H'},
|
|
1928
2043
|
{ tag_ps: '(0028,0302)', tag_name: "Recognizable Visual Features", tag_key: 'RecognizableVisualFeatures', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0028,0302)', tag_sym: :recognizable_visual_features, tag_ndm: '00280302', tag_ary: [0x0028,0x0302], tag_multiple: false, tag_note: ''},
|
1929
2044
|
{ tag_ps: '(0028,0303)', tag_name: "Longitudinal Temporal Information Modified", tag_key: 'LongitudinalTemporalInformationModified', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0028,0303)', tag_sym: :longitudinal_temporal_information_modified, tag_ndm: '00280303', tag_ary: [0x0028,0x0303], tag_multiple: false, tag_note: ''},
|
1930
2045
|
{ tag_ps: '(0028,0304)', tag_name: "Referenced Color Palette Instance UID", tag_key: 'ReferencedColorPaletteInstanceUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0028,0304)', tag_sym: :referenced_color_palette_instance_uid, tag_ndm: '00280304', tag_ary: [0x0028,0x0304], tag_multiple: false, tag_note: ''},
|
1931
|
-
{ tag_ps: '(0028,0400)', tag_name: "Transform Label", tag_key: 'TransformLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0028,0400)', tag_sym: :transform_label, tag_ndm: '00280400', tag_ary: [0x0028,0x0400], tag_multiple: false, tag_note: 'RET'},
|
1932
|
-
{ tag_ps: '(0028,0401)', tag_name: "Transform Version Number", tag_key: 'TransformVersionNumber', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0028,0401)', tag_sym: :transform_version_number, tag_ndm: '00280401', tag_ary: [0x0028,0x0401], tag_multiple: false, tag_note: 'RET'},
|
1933
|
-
{ tag_ps: '(0028,0402)', tag_name: "Number of Transform Steps", tag_key: 'NumberOfTransformSteps', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0402)', tag_sym: :number_of_transform_steps, tag_ndm: '00280402', tag_ary: [0x0028,0x0402], tag_multiple: false, tag_note: 'RET'},
|
1934
|
-
{ tag_ps: '(0028,0403)', tag_name: "Sequence of Compressed Data", tag_key: 'SequenceOfCompressedData', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0028,0403)', tag_sym: :sequence_of_compressed_data, tag_ndm: '00280403', tag_ary: [0x0028,0x0403], tag_multiple: false, tag_note: 'RET'},
|
1935
|
-
{ tag_ps: '(0028,0404)', tag_name: "Details of Coefficients", tag_key: 'DetailsOfCoefficients', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0404)', tag_sym: :details_of_coefficients, tag_ndm: '00280404', tag_ary: [0x0028,0x0404], tag_multiple: false, tag_note: 'RET'},
|
1936
|
-
{ tag_ps: '(0028,04X0)', tag_name: "Rows For Nth Order Coefficients", tag_key: 'RowsForNthOrderCoefficients', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0420)', tag_sym: :rows_for_nth_order_coefficients, tag_ndm: '00280420', tag_ary: [0x0028,0x0420], tag_multiple: true, tag_note: 'RET'},
|
1937
|
-
{ tag_ps: '(0028,04X1)', tag_name: "Columns For Nth Order Coefficients", tag_key: 'ColumnsForNthOrderCoefficients', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0421)', tag_sym: :columns_for_nth_order_coefficients, tag_ndm: '00280421', tag_ary: [0x0028,0x0421], tag_multiple: true, tag_note: 'RET'},
|
1938
|
-
{ tag_ps: '(0028,04X2)', tag_name: "Coefficient Coding", tag_key: 'CoefficientCoding', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0028,0422)', tag_sym: :coefficient_coding, tag_ndm: '00280422', tag_ary: [0x0028,0x0422], tag_multiple: true, tag_note: 'RET'},
|
1939
|
-
{ tag_ps: '(0028,04X3)', tag_name: "Coefficient Coding Pointers", tag_key: 'CoefficientCodingPointers', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0423)', tag_sym: :coefficient_coding_pointers, tag_ndm: '00280423', tag_ary: [0x0028,0x0423], tag_multiple: true, tag_note: 'RET'},
|
1940
|
-
{ tag_ps: '(0028,0700)', tag_name: "DCT Label", tag_key: 'DCTLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0028,0700)', tag_sym: :dct_label, tag_ndm: '00280700', tag_ary: [0x0028,0x0700], tag_multiple: false, tag_note: 'RET'},
|
1941
|
-
{ tag_ps: '(0028,0701)', tag_name: "Data Block Description", tag_key: 'DataBlockDescription', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0028,0701)', tag_sym: :data_block_description, tag_ndm: '00280701', tag_ary: [0x0028,0x0701], tag_multiple: false, tag_note: 'RET'},
|
1942
|
-
{ tag_ps: '(0028,0702)', tag_name: "Data Block", tag_key: 'DataBlock', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0702)', tag_sym: :data_block, tag_ndm: '00280702', tag_ary: [0x0028,0x0702], tag_multiple: false, tag_note: 'RET'},
|
1943
|
-
{ tag_ps: '(0028,0710)', tag_name: "Normalization Factor Format", tag_key: 'NormalizationFactorFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0710)', tag_sym: :normalization_factor_format, tag_ndm: '00280710', tag_ary: [0x0028,0x0710], tag_multiple: false, tag_note: 'RET'},
|
1944
|
-
{ tag_ps: '(0028,0720)', tag_name: "Zonal Map Number Format", tag_key: 'ZonalMapNumberFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0720)', tag_sym: :zonal_map_number_format, tag_ndm: '00280720', tag_ary: [0x0028,0x0720], tag_multiple: false, tag_note: 'RET'},
|
1945
|
-
{ tag_ps: '(0028,0721)', tag_name: "Zonal Map Location", tag_key: 'ZonalMapLocation', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0721)', tag_sym: :zonal_map_location, tag_ndm: '00280721', tag_ary: [0x0028,0x0721], tag_multiple: false, tag_note: 'RET'},
|
1946
|
-
{ tag_ps: '(0028,0722)', tag_name: "Zonal Map Format", tag_key: 'ZonalMapFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0722)', tag_sym: :zonal_map_format, tag_ndm: '00280722', tag_ary: [0x0028,0x0722], tag_multiple: false, tag_note: 'RET'},
|
1947
|
-
{ tag_ps: '(0028,0730)', tag_name: "Adaptive Map Format", tag_key: 'AdaptiveMapFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0730)', tag_sym: :adaptive_map_format, tag_ndm: '00280730', tag_ary: [0x0028,0x0730], tag_multiple: false, tag_note: 'RET'},
|
1948
|
-
{ tag_ps: '(0028,0740)', tag_name: "Code Number Format", tag_key: 'CodeNumberFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0740)', tag_sym: :code_number_format, tag_ndm: '00280740', tag_ary: [0x0028,0x0740], tag_multiple: false, tag_note: 'RET'},
|
1949
|
-
{ tag_ps: '(0028,08X0)', tag_name: "Code Label", tag_key: 'CodeLabel', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0028,0820)', tag_sym: :code_label, tag_ndm: '00280820', tag_ary: [0x0028,0x0820], tag_multiple: true, tag_note: 'RET'},
|
1950
|
-
{ tag_ps: '(0028,08X2)', tag_name: "Number of Tables", tag_key: 'NumberOfTables', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0822)', tag_sym: :number_of_tables, tag_ndm: '00280822', tag_ary: [0x0028,0x0822], tag_multiple: true, tag_note: 'RET'},
|
1951
|
-
{ tag_ps: '(0028,08X3)', tag_name: "Code Table Location", tag_key: 'CodeTableLocation', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0823)', tag_sym: :code_table_location, tag_ndm: '00280823', tag_ary: [0x0028,0x0823], tag_multiple: true, tag_note: 'RET'},
|
1952
|
-
{ tag_ps: '(0028,08X4)', tag_name: "Bits For Code Word", tag_key: 'BitsForCodeWord', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0824)', tag_sym: :bits_for_code_word, tag_ndm: '00280824', tag_ary: [0x0028,0x0824], tag_multiple: true, tag_note: 'RET'},
|
1953
|
-
{ tag_ps: '(0028,08X8)', tag_name: "Image Data Location", tag_key: 'ImageDataLocation', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0828)', tag_sym: :image_data_location, tag_ndm: '00280828', tag_ary: [0x0028,0x0828], tag_multiple: true, tag_note: 'RET'},
|
2046
|
+
{ tag_ps: '(0028,0400)', tag_name: "Transform Label", tag_key: 'TransformLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0028,0400)', tag_sym: :transform_label, tag_ndm: '00280400', tag_ary: [0x0028,0x0400], tag_multiple: false, tag_note: 'RET (2007)'},
|
2047
|
+
{ tag_ps: '(0028,0401)', tag_name: "Transform Version Number", tag_key: 'TransformVersionNumber', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0028,0401)', tag_sym: :transform_version_number, tag_ndm: '00280401', tag_ary: [0x0028,0x0401], tag_multiple: false, tag_note: 'RET (2007)'},
|
2048
|
+
{ tag_ps: '(0028,0402)', tag_name: "Number of Transform Steps", tag_key: 'NumberOfTransformSteps', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0402)', tag_sym: :number_of_transform_steps, tag_ndm: '00280402', tag_ary: [0x0028,0x0402], tag_multiple: false, tag_note: 'RET (2007)'},
|
2049
|
+
{ tag_ps: '(0028,0403)', tag_name: "Sequence of Compressed Data", tag_key: 'SequenceOfCompressedData', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0028,0403)', tag_sym: :sequence_of_compressed_data, tag_ndm: '00280403', tag_ary: [0x0028,0x0403], tag_multiple: false, tag_note: 'RET (2007)'},
|
2050
|
+
{ tag_ps: '(0028,0404)', tag_name: "Details of Coefficients", tag_key: 'DetailsOfCoefficients', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0404)', tag_sym: :details_of_coefficients, tag_ndm: '00280404', tag_ary: [0x0028,0x0404], tag_multiple: false, tag_note: 'RET (2007)'},
|
2051
|
+
{ tag_ps: '(0028,04X0)', tag_name: "Rows For Nth Order Coefficients", tag_key: 'RowsForNthOrderCoefficients', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0420)', tag_sym: :rows_for_nth_order_coefficients, tag_ndm: '00280420', tag_ary: [0x0028,0x0420], tag_multiple: true, tag_note: 'RET (2007)'},
|
2052
|
+
{ tag_ps: '(0028,04X1)', tag_name: "Columns For Nth Order Coefficients", tag_key: 'ColumnsForNthOrderCoefficients', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0421)', tag_sym: :columns_for_nth_order_coefficients, tag_ndm: '00280421', tag_ary: [0x0028,0x0421], tag_multiple: true, tag_note: 'RET (2007)'},
|
2053
|
+
{ tag_ps: '(0028,04X2)', tag_name: "Coefficient Coding", tag_key: 'CoefficientCoding', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0028,0422)', tag_sym: :coefficient_coding, tag_ndm: '00280422', tag_ary: [0x0028,0x0422], tag_multiple: true, tag_note: 'RET (2007)'},
|
2054
|
+
{ tag_ps: '(0028,04X3)', tag_name: "Coefficient Coding Pointers", tag_key: 'CoefficientCodingPointers', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0423)', tag_sym: :coefficient_coding_pointers, tag_ndm: '00280423', tag_ary: [0x0028,0x0423], tag_multiple: true, tag_note: 'RET (2007)'},
|
2055
|
+
{ tag_ps: '(0028,0700)', tag_name: "DCT Label", tag_key: 'DCTLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0028,0700)', tag_sym: :dct_label, tag_ndm: '00280700', tag_ary: [0x0028,0x0700], tag_multiple: false, tag_note: 'RET (2007)'},
|
2056
|
+
{ tag_ps: '(0028,0701)', tag_name: "Data Block Description", tag_key: 'DataBlockDescription', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0028,0701)', tag_sym: :data_block_description, tag_ndm: '00280701', tag_ary: [0x0028,0x0701], tag_multiple: false, tag_note: 'RET (2007)'},
|
2057
|
+
{ tag_ps: '(0028,0702)', tag_name: "Data Block", tag_key: 'DataBlock', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0702)', tag_sym: :data_block, tag_ndm: '00280702', tag_ary: [0x0028,0x0702], tag_multiple: false, tag_note: 'RET (2007)'},
|
2058
|
+
{ tag_ps: '(0028,0710)', tag_name: "Normalization Factor Format", tag_key: 'NormalizationFactorFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0710)', tag_sym: :normalization_factor_format, tag_ndm: '00280710', tag_ary: [0x0028,0x0710], tag_multiple: false, tag_note: 'RET (2007)'},
|
2059
|
+
{ tag_ps: '(0028,0720)', tag_name: "Zonal Map Number Format", tag_key: 'ZonalMapNumberFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0720)', tag_sym: :zonal_map_number_format, tag_ndm: '00280720', tag_ary: [0x0028,0x0720], tag_multiple: false, tag_note: 'RET (2007)'},
|
2060
|
+
{ tag_ps: '(0028,0721)', tag_name: "Zonal Map Location", tag_key: 'ZonalMapLocation', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0721)', tag_sym: :zonal_map_location, tag_ndm: '00280721', tag_ary: [0x0028,0x0721], tag_multiple: false, tag_note: 'RET (2007)'},
|
2061
|
+
{ tag_ps: '(0028,0722)', tag_name: "Zonal Map Format", tag_key: 'ZonalMapFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0722)', tag_sym: :zonal_map_format, tag_ndm: '00280722', tag_ary: [0x0028,0x0722], tag_multiple: false, tag_note: 'RET (2007)'},
|
2062
|
+
{ tag_ps: '(0028,0730)', tag_name: "Adaptive Map Format", tag_key: 'AdaptiveMapFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0730)', tag_sym: :adaptive_map_format, tag_ndm: '00280730', tag_ary: [0x0028,0x0730], tag_multiple: false, tag_note: 'RET (2007)'},
|
2063
|
+
{ tag_ps: '(0028,0740)', tag_name: "Code Number Format", tag_key: 'CodeNumberFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0740)', tag_sym: :code_number_format, tag_ndm: '00280740', tag_ary: [0x0028,0x0740], tag_multiple: false, tag_note: 'RET (2007)'},
|
2064
|
+
{ tag_ps: '(0028,08X0)', tag_name: "Code Label", tag_key: 'CodeLabel', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0028,0820)', tag_sym: :code_label, tag_ndm: '00280820', tag_ary: [0x0028,0x0820], tag_multiple: true, tag_note: 'RET (2007)'},
|
2065
|
+
{ tag_ps: '(0028,08X2)', tag_name: "Number of Tables", tag_key: 'NumberOfTables', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0822)', tag_sym: :number_of_tables, tag_ndm: '00280822', tag_ary: [0x0028,0x0822], tag_multiple: true, tag_note: 'RET (2007)'},
|
2066
|
+
{ tag_ps: '(0028,08X3)', tag_name: "Code Table Location", tag_key: 'CodeTableLocation', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0823)', tag_sym: :code_table_location, tag_ndm: '00280823', tag_ary: [0x0028,0x0823], tag_multiple: true, tag_note: 'RET (2007)'},
|
2067
|
+
{ tag_ps: '(0028,08X4)', tag_name: "Bits For Code Word", tag_key: 'BitsForCodeWord', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,0824)', tag_sym: :bits_for_code_word, tag_ndm: '00280824', tag_ary: [0x0028,0x0824], tag_multiple: true, tag_note: 'RET (2007)'},
|
2068
|
+
{ tag_ps: '(0028,08X8)', tag_name: "Image Data Location", tag_key: 'ImageDataLocation', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(0028,0828)', tag_sym: :image_data_location, tag_ndm: '00280828', tag_ary: [0x0028,0x0828], tag_multiple: true, tag_note: 'RET (2007)'},
|
1954
2069
|
{ tag_ps: '(0028,0A02)', tag_name: "Pixel Spacing Calibration Type", tag_key: 'PixelSpacingCalibrationType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0028,0A02)', tag_sym: :pixel_spacing_calibration_type, tag_ndm: '00280A02', tag_ary: [0x0028,0x0A02], tag_multiple: false, tag_note: ''},
|
1955
2070
|
{ tag_ps: '(0028,0A04)', tag_name: "Pixel Spacing Calibration Description", tag_key: 'PixelSpacingCalibrationDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0028,0A04)', tag_sym: :pixel_spacing_calibration_description, tag_ndm: '00280A04', tag_ary: [0x0028,0x0A04], tag_multiple: false, tag_note: ''},
|
1956
2071
|
{ tag_ps: '(0028,1040)', tag_name: "Pixel Intensity Relationship", tag_key: 'PixelIntensityRelationship', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0028,1040)', tag_sym: :pixel_intensity_relationship, tag_ndm: '00281040', tag_ary: [0x0028,0x1040], tag_multiple: false, tag_note: ''},
|
@@ -1969,19 +2084,19 @@ HIGH = 0001H'},
|
|
1969
2084
|
{ tag_ps: '(0028,1102)', tag_name: "Green Palette Color Lookup Table Descriptor", tag_key: 'GreenPaletteColorLookupTableDescriptor', tag_vr: [:US, :SS], tag_vm: ["3"], tag_str: '(0028,1102)', tag_sym: :green_palette_color_lookup_table_descriptor, tag_ndm: '00281102', tag_ary: [0x0028,0x1102], tag_multiple: false, tag_note: ''},
|
1970
2085
|
{ tag_ps: '(0028,1103)', tag_name: "Blue Palette Color Lookup Table Descriptor", tag_key: 'BluePaletteColorLookupTableDescriptor', tag_vr: [:US, :SS], tag_vm: ["3"], tag_str: '(0028,1103)', tag_sym: :blue_palette_color_lookup_table_descriptor, tag_ndm: '00281103', tag_ary: [0x0028,0x1103], tag_multiple: false, tag_note: ''},
|
1971
2086
|
{ tag_ps: '(0028,1104)', tag_name: "Alpha Palette Color Lookup Table Descriptor", tag_key: 'AlphaPaletteColorLookupTableDescriptor', tag_vr: [:US], tag_vm: ["3"], tag_str: '(0028,1104)', tag_sym: :alpha_palette_color_lookup_table_descriptor, tag_ndm: '00281104', tag_ary: [0x0028,0x1104], tag_multiple: false, tag_note: ''},
|
1972
|
-
{ tag_ps: '(0028,1111)', tag_name: "Large Red Palette Color Lookup Table Descriptor", tag_key: 'LargeRedPaletteColorLookupTableDescriptor', tag_vr: [:US, :SS], tag_vm: ["4"], tag_str: '(0028,1111)', tag_sym: :large_red_palette_color_lookup_table_descriptor, tag_ndm: '00281111', tag_ary: [0x0028,0x1111], tag_multiple: false, tag_note: 'RET'},
|
1973
|
-
{ tag_ps: '(0028,1112)', tag_name: "Large Green Palette Color Lookup Table Descriptor", tag_key: 'LargeGreenPaletteColorLookupTableDescriptor', tag_vr: [:US, :SS], tag_vm: ["4"], tag_str: '(0028,1112)', tag_sym: :large_green_palette_color_lookup_table_descriptor, tag_ndm: '00281112', tag_ary: [0x0028,0x1112], tag_multiple: false, tag_note: 'RET'},
|
1974
|
-
{ tag_ps: '(0028,1113)', tag_name: "Large Blue Palette Color Lookup Table Descriptor", tag_key: 'LargeBluePaletteColorLookupTableDescriptor', tag_vr: [:US, :SS], tag_vm: ["4"], tag_str: '(0028,1113)', tag_sym: :large_blue_palette_color_lookup_table_descriptor, tag_ndm: '00281113', tag_ary: [0x0028,0x1113], tag_multiple: false, tag_note: 'RET'},
|
2087
|
+
{ tag_ps: '(0028,1111)', tag_name: "Large Red Palette Color Lookup Table Descriptor", tag_key: 'LargeRedPaletteColorLookupTableDescriptor', tag_vr: [:US, :SS], tag_vm: ["4"], tag_str: '(0028,1111)', tag_sym: :large_red_palette_color_lookup_table_descriptor, tag_ndm: '00281111', tag_ary: [0x0028,0x1111], tag_multiple: false, tag_note: 'RET (2007)'},
|
2088
|
+
{ tag_ps: '(0028,1112)', tag_name: "Large Green Palette Color Lookup Table Descriptor", tag_key: 'LargeGreenPaletteColorLookupTableDescriptor', tag_vr: [:US, :SS], tag_vm: ["4"], tag_str: '(0028,1112)', tag_sym: :large_green_palette_color_lookup_table_descriptor, tag_ndm: '00281112', tag_ary: [0x0028,0x1112], tag_multiple: false, tag_note: 'RET (2007)'},
|
2089
|
+
{ tag_ps: '(0028,1113)', tag_name: "Large Blue Palette Color Lookup Table Descriptor", tag_key: 'LargeBluePaletteColorLookupTableDescriptor', tag_vr: [:US, :SS], tag_vm: ["4"], tag_str: '(0028,1113)', tag_sym: :large_blue_palette_color_lookup_table_descriptor, tag_ndm: '00281113', tag_ary: [0x0028,0x1113], tag_multiple: false, tag_note: 'RET (2007)'},
|
1975
2090
|
{ tag_ps: '(0028,1199)', tag_name: "Palette Color Lookup Table UID", tag_key: 'PaletteColorLookupTableUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0028,1199)', tag_sym: :palette_color_lookup_table_uid, tag_ndm: '00281199', tag_ary: [0x0028,0x1199], tag_multiple: false, tag_note: ''},
|
1976
2091
|
{ tag_ps: '(0028,1200)', tag_name: "Gray Lookup Table Data", tag_key: 'GrayLookupTableData', tag_vr: [:US, :SS, :OW], tag_vm: ["1-n", "1"], tag_str: '(0028,1200)', tag_sym: :gray_lookup_table_data, tag_ndm: '00281200', tag_ary: [0x0028,0x1200], tag_multiple: false, tag_note: 'RET'},
|
1977
2092
|
{ tag_ps: '(0028,1201)', tag_name: "Red Palette Color Lookup Table Data", tag_key: 'RedPaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1201)', tag_sym: :red_palette_color_lookup_table_data, tag_ndm: '00281201', tag_ary: [0x0028,0x1201], tag_multiple: false, tag_note: ''},
|
1978
2093
|
{ tag_ps: '(0028,1202)', tag_name: "Green Palette Color Lookup Table Data", tag_key: 'GreenPaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1202)', tag_sym: :green_palette_color_lookup_table_data, tag_ndm: '00281202', tag_ary: [0x0028,0x1202], tag_multiple: false, tag_note: ''},
|
1979
2094
|
{ tag_ps: '(0028,1203)', tag_name: "Blue Palette Color Lookup Table Data", tag_key: 'BluePaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1203)', tag_sym: :blue_palette_color_lookup_table_data, tag_ndm: '00281203', tag_ary: [0x0028,0x1203], tag_multiple: false, tag_note: ''},
|
1980
2095
|
{ tag_ps: '(0028,1204)', tag_name: "Alpha Palette Color Lookup Table Data", tag_key: 'AlphaPaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1204)', tag_sym: :alpha_palette_color_lookup_table_data, tag_ndm: '00281204', tag_ary: [0x0028,0x1204], tag_multiple: false, tag_note: ''},
|
1981
|
-
{ tag_ps: '(0028,1211)', tag_name: "Large Red Palette Color Lookup Table Data", tag_key: 'LargeRedPaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1211)', tag_sym: :large_red_palette_color_lookup_table_data, tag_ndm: '00281211', tag_ary: [0x0028,0x1211], tag_multiple: false, tag_note: 'RET'},
|
1982
|
-
{ tag_ps: '(0028,1212)', tag_name: "Large Green Palette Color Lookup Table Data", tag_key: 'LargeGreenPaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1212)', tag_sym: :large_green_palette_color_lookup_table_data, tag_ndm: '00281212', tag_ary: [0x0028,0x1212], tag_multiple: false, tag_note: 'RET'},
|
1983
|
-
{ tag_ps: '(0028,1213)', tag_name: "Large Blue Palette Color Lookup Table Data", tag_key: 'LargeBluePaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1213)', tag_sym: :large_blue_palette_color_lookup_table_data, tag_ndm: '00281213', tag_ary: [0x0028,0x1213], tag_multiple: false, tag_note: 'RET'},
|
1984
|
-
{ tag_ps: '(0028,1214)', tag_name: "Large Palette Color Lookup Table UID", tag_key: 'LargePaletteColorLookupTableUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0028,1214)', tag_sym: :large_palette_color_lookup_table_uid, tag_ndm: '00281214', tag_ary: [0x0028,0x1214], tag_multiple: false, tag_note: 'RET'},
|
2096
|
+
{ tag_ps: '(0028,1211)', tag_name: "Large Red Palette Color Lookup Table Data", tag_key: 'LargeRedPaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1211)', tag_sym: :large_red_palette_color_lookup_table_data, tag_ndm: '00281211', tag_ary: [0x0028,0x1211], tag_multiple: false, tag_note: 'RET (2007)'},
|
2097
|
+
{ tag_ps: '(0028,1212)', tag_name: "Large Green Palette Color Lookup Table Data", tag_key: 'LargeGreenPaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1212)', tag_sym: :large_green_palette_color_lookup_table_data, tag_ndm: '00281212', tag_ary: [0x0028,0x1212], tag_multiple: false, tag_note: 'RET (2007)'},
|
2098
|
+
{ tag_ps: '(0028,1213)', tag_name: "Large Blue Palette Color Lookup Table Data", tag_key: 'LargeBluePaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1213)', tag_sym: :large_blue_palette_color_lookup_table_data, tag_ndm: '00281213', tag_ary: [0x0028,0x1213], tag_multiple: false, tag_note: 'RET (2007)'},
|
2099
|
+
{ tag_ps: '(0028,1214)', tag_name: "Large Palette Color Lookup Table UID", tag_key: 'LargePaletteColorLookupTableUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0028,1214)', tag_sym: :large_palette_color_lookup_table_uid, tag_ndm: '00281214', tag_ary: [0x0028,0x1214], tag_multiple: false, tag_note: 'RET (2007)'},
|
1985
2100
|
{ tag_ps: '(0028,1221)', tag_name: "Segmented Red Palette Color Lookup Table Data", tag_key: 'SegmentedRedPaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1221)', tag_sym: :segmented_red_palette_color_lookup_table_data, tag_ndm: '00281221', tag_ary: [0x0028,0x1221], tag_multiple: false, tag_note: ''},
|
1986
2101
|
{ tag_ps: '(0028,1222)', tag_name: "Segmented Green Palette Color Lookup Table Data", tag_key: 'SegmentedGreenPaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1222)', tag_sym: :segmented_green_palette_color_lookup_table_data, tag_ndm: '00281222', tag_ary: [0x0028,0x1222], tag_multiple: false, tag_note: ''},
|
1987
2102
|
{ tag_ps: '(0028,1223)', tag_name: "Segmented Blue Palette Color Lookup Table Data", tag_key: 'SegmentedBluePaletteColorLookupTableData', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0028,1223)', tag_sym: :segmented_blue_palette_color_lookup_table_data, tag_ndm: '00281223', tag_ary: [0x0028,0x1223], tag_multiple: false, tag_note: ''},
|
@@ -2021,12 +2136,12 @@ HIGH = 0001H'},
|
|
2021
2136
|
{ tag_ps: '(0028,3010)', tag_name: "VOI LUT Sequence", tag_key: 'VOILUTSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0028,3010)', tag_sym: :voi_lut_sequence, tag_ndm: '00283010', tag_ary: [0x0028,0x3010], tag_multiple: false, tag_note: ''},
|
2022
2137
|
{ tag_ps: '(0028,3110)', tag_name: "Softcopy VOI LUT Sequence", tag_key: 'SoftcopyVOILUTSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0028,3110)', tag_sym: :softcopy_voi_lut_sequence, tag_ndm: '00283110', tag_ary: [0x0028,0x3110], tag_multiple: false, tag_note: ''},
|
2023
2138
|
{ tag_ps: '(0028,4000)', tag_name: "Image Presentation Comments", tag_key: 'ImagePresentationComments', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0028,4000)', tag_sym: :image_presentation_comments, tag_ndm: '00284000', tag_ary: [0x0028,0x4000], tag_multiple: false, tag_note: 'RET'},
|
2024
|
-
{ tag_ps: '(0028,5000)', tag_name: "Bi-Plane Acquisition Sequence", tag_key: 'BiPlaneAcquisitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0028,5000)', tag_sym: :bi_plane_acquisition_sequence, tag_ndm: '00285000', tag_ary: [0x0028,0x5000], tag_multiple: false, tag_note: 'RET'},
|
2139
|
+
{ tag_ps: '(0028,5000)', tag_name: "Bi-Plane Acquisition Sequence", tag_key: 'BiPlaneAcquisitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0028,5000)', tag_sym: :bi_plane_acquisition_sequence, tag_ndm: '00285000', tag_ary: [0x0028,0x5000], tag_multiple: false, tag_note: 'RET (2007)'},
|
2025
2140
|
{ tag_ps: '(0028,6010)', tag_name: "Representative Frame Number", tag_key: 'RepresentativeFrameNumber', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,6010)', tag_sym: :representative_frame_number, tag_ndm: '00286010', tag_ary: [0x0028,0x6010], tag_multiple: false, tag_note: ''},
|
2026
2141
|
{ tag_ps: '(0028,6020)', tag_name: "Frame Numbers of Interest (FOI)", tag_key: 'FrameNumbersOfInterest', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(0028,6020)', tag_sym: :frame_numbers_of_interest, tag_ndm: '00286020', tag_ary: [0x0028,0x6020], tag_multiple: false, tag_note: ''},
|
2027
2142
|
{ tag_ps: '(0028,6022)', tag_name: "Frame of Interest Description", tag_key: 'FrameOfInterestDescription', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0028,6022)', tag_sym: :frame_of_interest_description, tag_ndm: '00286022', tag_ary: [0x0028,0x6022], tag_multiple: false, tag_note: ''},
|
2028
2143
|
{ tag_ps: '(0028,6023)', tag_name: "Frame of Interest Type", tag_key: 'FrameOfInterestType', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0028,6023)', tag_sym: :frame_of_interest_type, tag_ndm: '00286023', tag_ary: [0x0028,0x6023], tag_multiple: false, tag_note: ''},
|
2029
|
-
{ tag_ps: '(0028,6030)', tag_name: "Mask Pointer(s)", tag_key: 'MaskPointers', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(0028,6030)', tag_sym: :mask_pointers, tag_ndm: '00286030', tag_ary: [0x0028,0x6030], tag_multiple: false, tag_note: 'RET'},
|
2144
|
+
{ tag_ps: '(0028,6030)', tag_name: "Mask Pointer(s)", tag_key: 'MaskPointers', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(0028,6030)', tag_sym: :mask_pointers, tag_ndm: '00286030', tag_ary: [0x0028,0x6030], tag_multiple: false, tag_note: 'RET (2001)'},
|
2030
2145
|
{ tag_ps: '(0028,6040)', tag_name: "R Wave Pointer", tag_key: 'RWavePointer', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(0028,6040)', tag_sym: :r_wave_pointer, tag_ndm: '00286040', tag_ary: [0x0028,0x6040], tag_multiple: false, tag_note: ''},
|
2031
2146
|
{ tag_ps: '(0028,6100)', tag_name: "Mask Subtraction Sequence", tag_key: 'MaskSubtractionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0028,6100)', tag_sym: :mask_subtraction_sequence, tag_ndm: '00286100', tag_ary: [0x0028,0x6100], tag_multiple: false, tag_note: ''},
|
2032
2147
|
{ tag_ps: '(0028,6101)', tag_name: "Mask Operation", tag_key: 'MaskOperation', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0028,6101)', tag_sym: :mask_operation, tag_ndm: '00286101', tag_ary: [0x0028,0x6101], tag_multiple: false, tag_note: ''},
|
@@ -2087,7 +2202,7 @@ HIGH = 0001H'},
|
|
2087
2202
|
{ tag_ps: '(0028,9001)', tag_name: "Data Point Rows", tag_key: 'DataPointRows', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0028,9001)', tag_sym: :data_point_rows, tag_ndm: '00289001', tag_ary: [0x0028,0x9001], tag_multiple: false, tag_note: ''},
|
2088
2203
|
{ tag_ps: '(0028,9002)', tag_name: "Data Point Columns", tag_key: 'DataPointColumns', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0028,9002)', tag_sym: :data_point_columns, tag_ndm: '00289002', tag_ary: [0x0028,0x9002], tag_multiple: false, tag_note: ''},
|
2089
2204
|
{ tag_ps: '(0028,9003)', tag_name: "Signal Domain Columns", tag_key: 'SignalDomainColumns', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0028,9003)', tag_sym: :signal_domain_columns, tag_ndm: '00289003', tag_ary: [0x0028,0x9003], tag_multiple: false, tag_note: ''},
|
2090
|
-
{ tag_ps: '(0028,9099)', tag_name: "Largest Monochrome Pixel Value", tag_key: 'LargestMonochromePixelValue', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,9099)', tag_sym: :largest_monochrome_pixel_value, tag_ndm: '00289099', tag_ary: [0x0028,0x9099], tag_multiple: false, tag_note: 'RET'},
|
2205
|
+
{ tag_ps: '(0028,9099)', tag_name: "Largest Monochrome Pixel Value", tag_key: 'LargestMonochromePixelValue', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0028,9099)', tag_sym: :largest_monochrome_pixel_value, tag_ndm: '00289099', tag_ary: [0x0028,0x9099], tag_multiple: false, tag_note: 'RET (2003)'},
|
2091
2206
|
{ tag_ps: '(0028,9108)', tag_name: "Data Representation", tag_key: 'DataRepresentation', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0028,9108)', tag_sym: :data_representation, tag_ndm: '00289108', tag_ary: [0x0028,0x9108], tag_multiple: false, tag_note: ''},
|
2092
2207
|
{ tag_ps: '(0028,9110)', tag_name: "Pixel Measures Sequence", tag_key: 'PixelMeasuresSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0028,9110)', tag_sym: :pixel_measures_sequence, tag_ndm: '00289110', tag_ary: [0x0028,0x9110], tag_multiple: false, tag_note: ''},
|
2093
2208
|
{ tag_ps: '(0028,9132)', tag_name: "Frame VOI LUT Sequence", tag_key: 'FrameVOILUTSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0028,9132)', tag_sym: :frame_voi_lut_sequence, tag_ndm: '00289132', tag_ary: [0x0028,0x9132], tag_multiple: false, tag_note: ''},
|
@@ -2112,53 +2227,55 @@ HIGH = 0001H'},
|
|
2112
2227
|
{ tag_ps: '(0028,9507)', tag_name: "LUT Frame Range", tag_key: 'LUTFrameRange', tag_vr: [:US], tag_vm: ["2-2n"], tag_str: '(0028,9507)', tag_sym: :lut_frame_range, tag_ndm: '00289507', tag_ary: [0x0028,0x9507], tag_multiple: false, tag_note: ''},
|
2113
2228
|
{ tag_ps: '(0028,9520)', tag_name: "Image to Equipment Mapping Matrix", tag_key: 'ImageToEquipmentMappingMatrix', tag_vr: [:DS], tag_vm: ["16"], tag_str: '(0028,9520)', tag_sym: :image_to_equipment_mapping_matrix, tag_ndm: '00289520', tag_ary: [0x0028,0x9520], tag_multiple: false, tag_note: ''},
|
2114
2229
|
{ tag_ps: '(0028,9537)', tag_name: "Equipment Coordinate System Identification", tag_key: 'EquipmentCoordinateSystemIdentification', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0028,9537)', tag_sym: :equipment_coordinate_system_identification, tag_ndm: '00289537', tag_ary: [0x0028,0x9537], tag_multiple: false, tag_note: ''},
|
2115
|
-
{ tag_ps: '(0032,000A)', tag_name: "Study Status ID", tag_key: 'StudyStatusID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0032,000A)', tag_sym: :study_status_id, tag_ndm: '0032000A', tag_ary: [0x0032,0x000A], tag_multiple: false, tag_note: 'RET'},
|
2116
|
-
{ tag_ps: '(0032,000C)', tag_name: "Study Priority ID", tag_key: 'StudyPriorityID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0032,000C)', tag_sym: :study_priority_id, tag_ndm: '0032000C', tag_ary: [0x0032,0x000C], tag_multiple: false, tag_note: 'RET'},
|
2117
|
-
{ tag_ps: '(0032,0012)', tag_name: "Study ID Issuer", tag_key: 'StudyIDIssuer', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0032,0012)', tag_sym: :study_id_issuer, tag_ndm: '00320012', tag_ary: [0x0032,0x0012], tag_multiple: false, tag_note: 'RET'},
|
2118
|
-
{ tag_ps: '(0032,0032)', tag_name: "Study Verified Date", tag_key: 'StudyVerifiedDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0032,0032)', tag_sym: :study_verified_date, tag_ndm: '00320032', tag_ary: [0x0032,0x0032], tag_multiple: false, tag_note: 'RET'},
|
2119
|
-
{ tag_ps: '(0032,0033)', tag_name: "Study Verified Time", tag_key: 'StudyVerifiedTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0032,0033)', tag_sym: :study_verified_time, tag_ndm: '00320033', tag_ary: [0x0032,0x0033], tag_multiple: false, tag_note: 'RET'},
|
2120
|
-
{ tag_ps: '(0032,0034)', tag_name: "Study Read Date", tag_key: 'StudyReadDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0032,0034)', tag_sym: :study_read_date, tag_ndm: '00320034', tag_ary: [0x0032,0x0034], tag_multiple: false, tag_note: 'RET'},
|
2121
|
-
{ tag_ps: '(0032,0035)', tag_name: "Study Read Time", tag_key: 'StudyReadTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0032,0035)', tag_sym: :study_read_time, tag_ndm: '00320035', tag_ary: [0x0032,0x0035], tag_multiple: false, tag_note: 'RET'},
|
2122
|
-
{ tag_ps: '(0032,1000)', tag_name: "Scheduled Study Start Date", tag_key: 'ScheduledStudyStartDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0032,1000)', tag_sym: :scheduled_study_start_date, tag_ndm: '00321000', tag_ary: [0x0032,0x1000], tag_multiple: false, tag_note: 'RET'},
|
2123
|
-
{ tag_ps: '(0032,1001)', tag_name: "Scheduled Study Start Time", tag_key: 'ScheduledStudyStartTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0032,1001)', tag_sym: :scheduled_study_start_time, tag_ndm: '00321001', tag_ary: [0x0032,0x1001], tag_multiple: false, tag_note: 'RET'},
|
2124
|
-
{ tag_ps: '(0032,1010)', tag_name: "Scheduled Study Stop Date", tag_key: 'ScheduledStudyStopDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0032,1010)', tag_sym: :scheduled_study_stop_date, tag_ndm: '00321010', tag_ary: [0x0032,0x1010], tag_multiple: false, tag_note: 'RET'},
|
2125
|
-
{ tag_ps: '(0032,1011)', tag_name: "Scheduled Study Stop Time", tag_key: 'ScheduledStudyStopTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0032,1011)', tag_sym: :scheduled_study_stop_time, tag_ndm: '00321011', tag_ary: [0x0032,0x1011], tag_multiple: false, tag_note: 'RET'},
|
2126
|
-
{ tag_ps: '(0032,1020)', tag_name: "Scheduled Study Location", tag_key: 'ScheduledStudyLocation', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0032,1020)', tag_sym: :scheduled_study_location, tag_ndm: '00321020', tag_ary: [0x0032,0x1020], tag_multiple: false, tag_note: 'RET'},
|
2127
|
-
{ tag_ps: '(0032,1021)', tag_name: "Scheduled Study Location AE Title", tag_key: 'ScheduledStudyLocationAETitle', tag_vr: [:AE], tag_vm: ["1-n"], tag_str: '(0032,1021)', tag_sym: :scheduled_study_location_ae_title, tag_ndm: '00321021', tag_ary: [0x0032,0x1021], tag_multiple: false, tag_note: 'RET'},
|
2128
|
-
{ tag_ps: '(0032,1030)', tag_name: "Reason for Study", tag_key: 'ReasonForStudy', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0032,1030)', tag_sym: :reason_for_study, tag_ndm: '00321030', tag_ary: [0x0032,0x1030], tag_multiple: false, tag_note: 'RET'},
|
2230
|
+
{ tag_ps: '(0032,000A)', tag_name: "Study Status ID", tag_key: 'StudyStatusID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0032,000A)', tag_sym: :study_status_id, tag_ndm: '0032000A', tag_ary: [0x0032,0x000A], tag_multiple: false, tag_note: 'RET (2004)'},
|
2231
|
+
{ tag_ps: '(0032,000C)', tag_name: "Study Priority ID", tag_key: 'StudyPriorityID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0032,000C)', tag_sym: :study_priority_id, tag_ndm: '0032000C', tag_ary: [0x0032,0x000C], tag_multiple: false, tag_note: 'RET (2004)'},
|
2232
|
+
{ tag_ps: '(0032,0012)', tag_name: "Study ID Issuer", tag_key: 'StudyIDIssuer', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0032,0012)', tag_sym: :study_id_issuer, tag_ndm: '00320012', tag_ary: [0x0032,0x0012], tag_multiple: false, tag_note: 'RET (2004)'},
|
2233
|
+
{ tag_ps: '(0032,0032)', tag_name: "Study Verified Date", tag_key: 'StudyVerifiedDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0032,0032)', tag_sym: :study_verified_date, tag_ndm: '00320032', tag_ary: [0x0032,0x0032], tag_multiple: false, tag_note: 'RET (2004)'},
|
2234
|
+
{ tag_ps: '(0032,0033)', tag_name: "Study Verified Time", tag_key: 'StudyVerifiedTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0032,0033)', tag_sym: :study_verified_time, tag_ndm: '00320033', tag_ary: [0x0032,0x0033], tag_multiple: false, tag_note: 'RET (2004)'},
|
2235
|
+
{ tag_ps: '(0032,0034)', tag_name: "Study Read Date", tag_key: 'StudyReadDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0032,0034)', tag_sym: :study_read_date, tag_ndm: '00320034', tag_ary: [0x0032,0x0034], tag_multiple: false, tag_note: 'RET (2004)'},
|
2236
|
+
{ tag_ps: '(0032,0035)', tag_name: "Study Read Time", tag_key: 'StudyReadTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0032,0035)', tag_sym: :study_read_time, tag_ndm: '00320035', tag_ary: [0x0032,0x0035], tag_multiple: false, tag_note: 'RET (2004)'},
|
2237
|
+
{ tag_ps: '(0032,1000)', tag_name: "Scheduled Study Start Date", tag_key: 'ScheduledStudyStartDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0032,1000)', tag_sym: :scheduled_study_start_date, tag_ndm: '00321000', tag_ary: [0x0032,0x1000], tag_multiple: false, tag_note: 'RET (2004)'},
|
2238
|
+
{ tag_ps: '(0032,1001)', tag_name: "Scheduled Study Start Time", tag_key: 'ScheduledStudyStartTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0032,1001)', tag_sym: :scheduled_study_start_time, tag_ndm: '00321001', tag_ary: [0x0032,0x1001], tag_multiple: false, tag_note: 'RET (2004)'},
|
2239
|
+
{ tag_ps: '(0032,1010)', tag_name: "Scheduled Study Stop Date", tag_key: 'ScheduledStudyStopDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0032,1010)', tag_sym: :scheduled_study_stop_date, tag_ndm: '00321010', tag_ary: [0x0032,0x1010], tag_multiple: false, tag_note: 'RET (2004)'},
|
2240
|
+
{ tag_ps: '(0032,1011)', tag_name: "Scheduled Study Stop Time", tag_key: 'ScheduledStudyStopTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0032,1011)', tag_sym: :scheduled_study_stop_time, tag_ndm: '00321011', tag_ary: [0x0032,0x1011], tag_multiple: false, tag_note: 'RET (2004)'},
|
2241
|
+
{ tag_ps: '(0032,1020)', tag_name: "Scheduled Study Location", tag_key: 'ScheduledStudyLocation', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0032,1020)', tag_sym: :scheduled_study_location, tag_ndm: '00321020', tag_ary: [0x0032,0x1020], tag_multiple: false, tag_note: 'RET (2004)'},
|
2242
|
+
{ tag_ps: '(0032,1021)', tag_name: "Scheduled Study Location AE Title", tag_key: 'ScheduledStudyLocationAETitle', tag_vr: [:AE], tag_vm: ["1-n"], tag_str: '(0032,1021)', tag_sym: :scheduled_study_location_ae_title, tag_ndm: '00321021', tag_ary: [0x0032,0x1021], tag_multiple: false, tag_note: 'RET (2004)'},
|
2243
|
+
{ tag_ps: '(0032,1030)', tag_name: "Reason for Study", tag_key: 'ReasonForStudy', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0032,1030)', tag_sym: :reason_for_study, tag_ndm: '00321030', tag_ary: [0x0032,0x1030], tag_multiple: false, tag_note: 'RET (2004)'},
|
2129
2244
|
{ tag_ps: '(0032,1031)', tag_name: "Requesting Physician Identification Sequence", tag_key: 'RequestingPhysicianIdentificationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0032,1031)', tag_sym: :requesting_physician_identification_sequence, tag_ndm: '00321031', tag_ary: [0x0032,0x1031], tag_multiple: false, tag_note: ''},
|
2130
2245
|
{ tag_ps: '(0032,1032)', tag_name: "Requesting Physician", tag_key: 'RequestingPhysician', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(0032,1032)', tag_sym: :requesting_physician, tag_ndm: '00321032', tag_ary: [0x0032,0x1032], tag_multiple: false, tag_note: ''},
|
2131
2246
|
{ tag_ps: '(0032,1033)', tag_name: "Requesting Service", tag_key: 'RequestingService', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0032,1033)', tag_sym: :requesting_service, tag_ndm: '00321033', tag_ary: [0x0032,0x1033], tag_multiple: false, tag_note: ''},
|
2132
2247
|
{ tag_ps: '(0032,1034)', tag_name: "Requesting Service Code Sequence", tag_key: 'RequestingServiceCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0032,1034)', tag_sym: :requesting_service_code_sequence, tag_ndm: '00321034', tag_ary: [0x0032,0x1034], tag_multiple: false, tag_note: ''},
|
2133
|
-
{ tag_ps: '(0032,1040)', tag_name: "Study Arrival Date", tag_key: 'StudyArrivalDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0032,1040)', tag_sym: :study_arrival_date, tag_ndm: '00321040', tag_ary: [0x0032,0x1040], tag_multiple: false, tag_note: 'RET'},
|
2134
|
-
{ tag_ps: '(0032,1041)', tag_name: "Study Arrival Time", tag_key: 'StudyArrivalTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0032,1041)', tag_sym: :study_arrival_time, tag_ndm: '00321041', tag_ary: [0x0032,0x1041], tag_multiple: false, tag_note: 'RET'},
|
2135
|
-
{ tag_ps: '(0032,1050)', tag_name: "Study Completion Date", tag_key: 'StudyCompletionDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0032,1050)', tag_sym: :study_completion_date, tag_ndm: '00321050', tag_ary: [0x0032,0x1050], tag_multiple: false, tag_note: 'RET'},
|
2136
|
-
{ tag_ps: '(0032,1051)', tag_name: "Study Completion Time", tag_key: 'StudyCompletionTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0032,1051)', tag_sym: :study_completion_time, tag_ndm: '00321051', tag_ary: [0x0032,0x1051], tag_multiple: false, tag_note: 'RET'},
|
2137
|
-
{ tag_ps: '(0032,1055)', tag_name: "Study Component Status ID", tag_key: 'StudyComponentStatusID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0032,1055)', tag_sym: :study_component_status_id, tag_ndm: '00321055', tag_ary: [0x0032,0x1055], tag_multiple: false, tag_note: 'RET'},
|
2248
|
+
{ tag_ps: '(0032,1040)', tag_name: "Study Arrival Date", tag_key: 'StudyArrivalDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0032,1040)', tag_sym: :study_arrival_date, tag_ndm: '00321040', tag_ary: [0x0032,0x1040], tag_multiple: false, tag_note: 'RET (2004)'},
|
2249
|
+
{ tag_ps: '(0032,1041)', tag_name: "Study Arrival Time", tag_key: 'StudyArrivalTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0032,1041)', tag_sym: :study_arrival_time, tag_ndm: '00321041', tag_ary: [0x0032,0x1041], tag_multiple: false, tag_note: 'RET (2004)'},
|
2250
|
+
{ tag_ps: '(0032,1050)', tag_name: "Study Completion Date", tag_key: 'StudyCompletionDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0032,1050)', tag_sym: :study_completion_date, tag_ndm: '00321050', tag_ary: [0x0032,0x1050], tag_multiple: false, tag_note: 'RET (2004)'},
|
2251
|
+
{ tag_ps: '(0032,1051)', tag_name: "Study Completion Time", tag_key: 'StudyCompletionTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0032,1051)', tag_sym: :study_completion_time, tag_ndm: '00321051', tag_ary: [0x0032,0x1051], tag_multiple: false, tag_note: 'RET (2004)'},
|
2252
|
+
{ tag_ps: '(0032,1055)', tag_name: "Study Component Status ID", tag_key: 'StudyComponentStatusID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0032,1055)', tag_sym: :study_component_status_id, tag_ndm: '00321055', tag_ary: [0x0032,0x1055], tag_multiple: false, tag_note: 'RET (2004)'},
|
2138
2253
|
{ tag_ps: '(0032,1060)', tag_name: "Requested Procedure Description", tag_key: 'RequestedProcedureDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0032,1060)', tag_sym: :requested_procedure_description, tag_ndm: '00321060', tag_ary: [0x0032,0x1060], tag_multiple: false, tag_note: ''},
|
2139
2254
|
{ tag_ps: '(0032,1064)', tag_name: "Requested Procedure Code Sequence", tag_key: 'RequestedProcedureCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0032,1064)', tag_sym: :requested_procedure_code_sequence, tag_ndm: '00321064', tag_ary: [0x0032,0x1064], tag_multiple: false, tag_note: ''},
|
2255
|
+
{ tag_ps: '(0032,1066)', tag_name: "Reason for Visit", tag_key: 'ReasonForVisit', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(0032,1066)', tag_sym: :reason_for_visit, tag_ndm: '00321066', tag_ary: [0x0032,0x1066], tag_multiple: false, tag_note: ''},
|
2256
|
+
{ tag_ps: '(0032,1067)', tag_name: "Reason for Visit Code Sequence", tag_key: 'ReasonForVisitCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0032,1067)', tag_sym: :reason_for_visit_code_sequence, tag_ndm: '00321067', tag_ary: [0x0032,0x1067], tag_multiple: false, tag_note: ''},
|
2140
2257
|
{ tag_ps: '(0032,1070)', tag_name: "Requested Contrast Agent", tag_key: 'RequestedContrastAgent', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0032,1070)', tag_sym: :requested_contrast_agent, tag_ndm: '00321070', tag_ary: [0x0032,0x1070], tag_multiple: false, tag_note: ''},
|
2141
|
-
{ tag_ps: '(0032,4000)', tag_name: "Study Comments", tag_key: 'StudyComments', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0032,4000)', tag_sym: :study_comments, tag_ndm: '00324000', tag_ary: [0x0032,0x4000], tag_multiple: false, tag_note: 'RET'},
|
2258
|
+
{ tag_ps: '(0032,4000)', tag_name: "Study Comments", tag_key: 'StudyComments', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0032,4000)', tag_sym: :study_comments, tag_ndm: '00324000', tag_ary: [0x0032,0x4000], tag_multiple: false, tag_note: 'RET (2007)'},
|
2142
2259
|
{ tag_ps: '(0038,0004)', tag_name: "Referenced Patient Alias Sequence", tag_key: 'ReferencedPatientAliasSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0038,0004)', tag_sym: :referenced_patient_alias_sequence, tag_ndm: '00380004', tag_ary: [0x0038,0x0004], tag_multiple: false, tag_note: ''},
|
2143
2260
|
{ tag_ps: '(0038,0008)', tag_name: "Visit Status ID", tag_key: 'VisitStatusID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0038,0008)', tag_sym: :visit_status_id, tag_ndm: '00380008', tag_ary: [0x0038,0x0008], tag_multiple: false, tag_note: ''},
|
2144
2261
|
{ tag_ps: '(0038,0010)', tag_name: "Admission ID", tag_key: 'AdmissionID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,0010)', tag_sym: :admission_id, tag_ndm: '00380010', tag_ary: [0x0038,0x0010], tag_multiple: false, tag_note: ''},
|
2145
|
-
{ tag_ps: '(0038,0011)', tag_name: "Issuer of Admission ID", tag_key: 'IssuerOfAdmissionID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,0011)', tag_sym: :issuer_of_admission_id, tag_ndm: '00380011', tag_ary: [0x0038,0x0011], tag_multiple: false, tag_note: 'RET'},
|
2262
|
+
{ tag_ps: '(0038,0011)', tag_name: "Issuer of Admission ID", tag_key: 'IssuerOfAdmissionID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,0011)', tag_sym: :issuer_of_admission_id, tag_ndm: '00380011', tag_ary: [0x0038,0x0011], tag_multiple: false, tag_note: 'RET (2008)'},
|
2146
2263
|
{ tag_ps: '(0038,0014)', tag_name: "Issuer of Admission ID Sequence", tag_key: 'IssuerOfAdmissionIDSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0038,0014)', tag_sym: :issuer_of_admission_id_sequence, tag_ndm: '00380014', tag_ary: [0x0038,0x0014], tag_multiple: false, tag_note: ''},
|
2147
2264
|
{ tag_ps: '(0038,0016)', tag_name: "Route of Admissions", tag_key: 'RouteOfAdmissions', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,0016)', tag_sym: :route_of_admissions, tag_ndm: '00380016', tag_ary: [0x0038,0x0016], tag_multiple: false, tag_note: ''},
|
2148
|
-
{ tag_ps: '(0038,001A)', tag_name: "Scheduled Admission Date", tag_key: 'ScheduledAdmissionDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0038,001A)', tag_sym: :scheduled_admission_date, tag_ndm: '0038001A', tag_ary: [0x0038,0x001A], tag_multiple: false, tag_note: 'RET'},
|
2149
|
-
{ tag_ps: '(0038,001B)', tag_name: "Scheduled Admission Time", tag_key: 'ScheduledAdmissionTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0038,001B)', tag_sym: :scheduled_admission_time, tag_ndm: '0038001B', tag_ary: [0x0038,0x001B], tag_multiple: false, tag_note: 'RET'},
|
2150
|
-
{ tag_ps: '(0038,001C)', tag_name: "Scheduled Discharge Date", tag_key: 'ScheduledDischargeDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0038,001C)', tag_sym: :scheduled_discharge_date, tag_ndm: '0038001C', tag_ary: [0x0038,0x001C], tag_multiple: false, tag_note: 'RET'},
|
2151
|
-
{ tag_ps: '(0038,001D)', tag_name: "Scheduled Discharge Time", tag_key: 'ScheduledDischargeTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0038,001D)', tag_sym: :scheduled_discharge_time, tag_ndm: '0038001D', tag_ary: [0x0038,0x001D], tag_multiple: false, tag_note: 'RET'},
|
2152
|
-
{ tag_ps: '(0038,001E)', tag_name: "Scheduled Patient Institution Residence", tag_key: 'ScheduledPatientInstitutionResidence', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,001E)', tag_sym: :scheduled_patient_institution_residence, tag_ndm: '0038001E', tag_ary: [0x0038,0x001E], tag_multiple: false, tag_note: 'RET'},
|
2265
|
+
{ tag_ps: '(0038,001A)', tag_name: "Scheduled Admission Date", tag_key: 'ScheduledAdmissionDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0038,001A)', tag_sym: :scheduled_admission_date, tag_ndm: '0038001A', tag_ary: [0x0038,0x001A], tag_multiple: false, tag_note: 'RET (2004)'},
|
2266
|
+
{ tag_ps: '(0038,001B)', tag_name: "Scheduled Admission Time", tag_key: 'ScheduledAdmissionTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0038,001B)', tag_sym: :scheduled_admission_time, tag_ndm: '0038001B', tag_ary: [0x0038,0x001B], tag_multiple: false, tag_note: 'RET (2004)'},
|
2267
|
+
{ tag_ps: '(0038,001C)', tag_name: "Scheduled Discharge Date", tag_key: 'ScheduledDischargeDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0038,001C)', tag_sym: :scheduled_discharge_date, tag_ndm: '0038001C', tag_ary: [0x0038,0x001C], tag_multiple: false, tag_note: 'RET (2004)'},
|
2268
|
+
{ tag_ps: '(0038,001D)', tag_name: "Scheduled Discharge Time", tag_key: 'ScheduledDischargeTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0038,001D)', tag_sym: :scheduled_discharge_time, tag_ndm: '0038001D', tag_ary: [0x0038,0x001D], tag_multiple: false, tag_note: 'RET (2004)'},
|
2269
|
+
{ tag_ps: '(0038,001E)', tag_name: "Scheduled Patient Institution Residence", tag_key: 'ScheduledPatientInstitutionResidence', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,001E)', tag_sym: :scheduled_patient_institution_residence, tag_ndm: '0038001E', tag_ary: [0x0038,0x001E], tag_multiple: false, tag_note: 'RET (2004)'},
|
2153
2270
|
{ tag_ps: '(0038,0020)', tag_name: "Admitting Date", tag_key: 'AdmittingDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0038,0020)', tag_sym: :admitting_date, tag_ndm: '00380020', tag_ary: [0x0038,0x0020], tag_multiple: false, tag_note: ''},
|
2154
2271
|
{ tag_ps: '(0038,0021)', tag_name: "Admitting Time", tag_key: 'AdmittingTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0038,0021)', tag_sym: :admitting_time, tag_ndm: '00380021', tag_ary: [0x0038,0x0021], tag_multiple: false, tag_note: ''},
|
2155
|
-
{ tag_ps: '(0038,0030)', tag_name: "Discharge Date", tag_key: 'DischargeDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0038,0030)', tag_sym: :discharge_date, tag_ndm: '00380030', tag_ary: [0x0038,0x0030], tag_multiple: false, tag_note: 'RET'},
|
2156
|
-
{ tag_ps: '(0038,0032)', tag_name: "Discharge Time", tag_key: 'DischargeTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0038,0032)', tag_sym: :discharge_time, tag_ndm: '00380032', tag_ary: [0x0038,0x0032], tag_multiple: false, tag_note: 'RET'},
|
2157
|
-
{ tag_ps: '(0038,0040)', tag_name: "Discharge Diagnosis Description", tag_key: 'DischargeDiagnosisDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,0040)', tag_sym: :discharge_diagnosis_description, tag_ndm: '00380040', tag_ary: [0x0038,0x0040], tag_multiple: false, tag_note: 'RET'},
|
2158
|
-
{ tag_ps: '(0038,0044)', tag_name: "Discharge Diagnosis Code Sequence", tag_key: 'DischargeDiagnosisCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0038,0044)', tag_sym: :discharge_diagnosis_code_sequence, tag_ndm: '00380044', tag_ary: [0x0038,0x0044], tag_multiple: false, tag_note: 'RET'},
|
2272
|
+
{ tag_ps: '(0038,0030)', tag_name: "Discharge Date", tag_key: 'DischargeDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0038,0030)', tag_sym: :discharge_date, tag_ndm: '00380030', tag_ary: [0x0038,0x0030], tag_multiple: false, tag_note: 'RET (2004)'},
|
2273
|
+
{ tag_ps: '(0038,0032)', tag_name: "Discharge Time", tag_key: 'DischargeTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0038,0032)', tag_sym: :discharge_time, tag_ndm: '00380032', tag_ary: [0x0038,0x0032], tag_multiple: false, tag_note: 'RET (2004)'},
|
2274
|
+
{ tag_ps: '(0038,0040)', tag_name: "Discharge Diagnosis Description", tag_key: 'DischargeDiagnosisDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,0040)', tag_sym: :discharge_diagnosis_description, tag_ndm: '00380040', tag_ary: [0x0038,0x0040], tag_multiple: false, tag_note: 'RET (2004)'},
|
2275
|
+
{ tag_ps: '(0038,0044)', tag_name: "Discharge Diagnosis Code Sequence", tag_key: 'DischargeDiagnosisCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0038,0044)', tag_sym: :discharge_diagnosis_code_sequence, tag_ndm: '00380044', tag_ary: [0x0038,0x0044], tag_multiple: false, tag_note: 'RET (2004)'},
|
2159
2276
|
{ tag_ps: '(0038,0050)', tag_name: "Special Needs", tag_key: 'SpecialNeeds', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,0050)', tag_sym: :special_needs, tag_ndm: '00380050', tag_ary: [0x0038,0x0050], tag_multiple: false, tag_note: ''},
|
2160
2277
|
{ tag_ps: '(0038,0060)', tag_name: "Service Episode ID", tag_key: 'ServiceEpisodeID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,0060)', tag_sym: :service_episode_id, tag_ndm: '00380060', tag_ary: [0x0038,0x0060], tag_multiple: false, tag_note: ''},
|
2161
|
-
{ tag_ps: '(0038,0061)', tag_name: "Issuer of Service Episode ID", tag_key: 'IssuerOfServiceEpisodeID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,0061)', tag_sym: :issuer_of_service_episode_id, tag_ndm: '00380061', tag_ary: [0x0038,0x0061], tag_multiple: false, tag_note: 'RET'},
|
2278
|
+
{ tag_ps: '(0038,0061)', tag_name: "Issuer of Service Episode ID", tag_key: 'IssuerOfServiceEpisodeID', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,0061)', tag_sym: :issuer_of_service_episode_id, tag_ndm: '00380061', tag_ary: [0x0038,0x0061], tag_multiple: false, tag_note: 'RET (2008)'},
|
2162
2279
|
{ tag_ps: '(0038,0062)', tag_name: "Service Episode Description", tag_key: 'ServiceEpisodeDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0038,0062)', tag_sym: :service_episode_description, tag_ndm: '00380062', tag_ary: [0x0038,0x0062], tag_multiple: false, tag_note: ''},
|
2163
2280
|
{ tag_ps: '(0038,0064)', tag_name: "Issuer of Service Episode ID Sequence", tag_key: 'IssuerOfServiceEpisodeIDSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0038,0064)', tag_sym: :issuer_of_service_episode_id_sequence, tag_ndm: '00380064', tag_ary: [0x0038,0x0064], tag_multiple: false, tag_note: ''},
|
2164
2281
|
{ tag_ps: '(0038,0100)', tag_name: "Pertinent Documents Sequence", tag_key: 'PertinentDocumentsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0038,0100)', tag_sym: :pertinent_documents_sequence, tag_ndm: '00380100', tag_ary: [0x0038,0x0100], tag_multiple: false, tag_note: ''},
|
@@ -2254,13 +2371,13 @@ HIGH = 0001H'},
|
|
2254
2371
|
{ tag_ps: '(0040,0294)', tag_name: "Quantity", tag_key: 'Quantity', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0040,0294)', tag_sym: :quantity, tag_ndm: '00400294', tag_ary: [0x0040,0x0294], tag_multiple: false, tag_note: ''},
|
2255
2372
|
{ tag_ps: '(0040,0295)', tag_name: "Measuring Units Sequence", tag_key: 'MeasuringUnitsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0295)', tag_sym: :measuring_units_sequence, tag_ndm: '00400295', tag_ary: [0x0040,0x0295], tag_multiple: false, tag_note: ''},
|
2256
2373
|
{ tag_ps: '(0040,0296)', tag_name: "Billing Item Sequence", tag_key: 'BillingItemSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0296)', tag_sym: :billing_item_sequence, tag_ndm: '00400296', tag_ary: [0x0040,0x0296], tag_multiple: false, tag_note: ''},
|
2257
|
-
{ tag_ps: '(0040,0300)', tag_name: "Total Time of Fluoroscopy", tag_key: 'TotalTimeOfFluoroscopy', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0040,0300)', tag_sym: :total_time_of_fluoroscopy, tag_ndm: '00400300', tag_ary: [0x0040,0x0300], tag_multiple: false, tag_note: 'RET'},
|
2258
|
-
{ tag_ps: '(0040,0301)', tag_name: "Total Number of Exposures", tag_key: 'TotalNumberOfExposures', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0040,0301)', tag_sym: :total_number_of_exposures, tag_ndm: '00400301', tag_ary: [0x0040,0x0301], tag_multiple: false, tag_note: 'RET'},
|
2374
|
+
{ tag_ps: '(0040,0300)', tag_name: "Total Time of Fluoroscopy", tag_key: 'TotalTimeOfFluoroscopy', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0040,0300)', tag_sym: :total_time_of_fluoroscopy, tag_ndm: '00400300', tag_ary: [0x0040,0x0300], tag_multiple: false, tag_note: 'RET (2017c)'},
|
2375
|
+
{ tag_ps: '(0040,0301)', tag_name: "Total Number of Exposures", tag_key: 'TotalNumberOfExposures', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0040,0301)', tag_sym: :total_number_of_exposures, tag_ndm: '00400301', tag_ary: [0x0040,0x0301], tag_multiple: false, tag_note: 'RET (2017c)'},
|
2259
2376
|
{ tag_ps: '(0040,0302)', tag_name: "Entrance Dose", tag_key: 'EntranceDose', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0040,0302)', tag_sym: :entrance_dose, tag_ndm: '00400302', tag_ary: [0x0040,0x0302], tag_multiple: false, tag_note: ''},
|
2260
2377
|
{ tag_ps: '(0040,0303)', tag_name: "Exposed Area", tag_key: 'ExposedArea', tag_vr: [:US], tag_vm: ["1-2"], tag_str: '(0040,0303)', tag_sym: :exposed_area, tag_ndm: '00400303', tag_ary: [0x0040,0x0303], tag_multiple: false, tag_note: ''},
|
2261
2378
|
{ tag_ps: '(0040,0306)', tag_name: "Distance Source to Entrance", tag_key: 'DistanceSourceToEntrance', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0040,0306)', tag_sym: :distance_source_to_entrance, tag_ndm: '00400306', tag_ary: [0x0040,0x0306], tag_multiple: false, tag_note: ''},
|
2262
|
-
{ tag_ps: '(0040,0307)', tag_name: "Distance Source to Support", tag_key: 'DistanceSourceToSupport', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0040,0307)', tag_sym: :distance_source_to_support, tag_ndm: '00400307', tag_ary: [0x0040,0x0307], tag_multiple: false, tag_note: 'RET'},
|
2263
|
-
{ tag_ps: '(0040,030E)', tag_name: "Exposure Dose Sequence", tag_key: 'ExposureDoseSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,030E)', tag_sym: :exposure_dose_sequence, tag_ndm: '0040030E', tag_ary: [0x0040,0x030E], tag_multiple: false, tag_note: 'RET'},
|
2379
|
+
{ tag_ps: '(0040,0307)', tag_name: "Distance Source to Support", tag_key: 'DistanceSourceToSupport', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0040,0307)', tag_sym: :distance_source_to_support, tag_ndm: '00400307', tag_ary: [0x0040,0x0307], tag_multiple: false, tag_note: 'RET (2001)'},
|
2380
|
+
{ tag_ps: '(0040,030E)', tag_name: "Exposure Dose Sequence", tag_key: 'ExposureDoseSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,030E)', tag_sym: :exposure_dose_sequence, tag_ndm: '0040030E', tag_ary: [0x0040,0x030E], tag_multiple: false, tag_note: 'RET (2017c)'},
|
2264
2381
|
{ tag_ps: '(0040,0310)', tag_name: "Comments on Radiation Dose", tag_key: 'CommentsOnRadiationDose', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,0310)', tag_sym: :comments_on_radiation_dose, tag_ndm: '00400310', tag_ary: [0x0040,0x0310], tag_multiple: false, tag_note: ''},
|
2265
2382
|
{ tag_ps: '(0040,0312)', tag_name: "X-Ray Output", tag_key: 'XRayOutput', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0040,0312)', tag_sym: :x_ray_output, tag_ndm: '00400312', tag_ary: [0x0040,0x0312], tag_multiple: false, tag_note: ''},
|
2266
2383
|
{ tag_ps: '(0040,0314)', tag_name: "Half Value Layer", tag_key: 'HalfValueLayer', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0040,0314)', tag_sym: :half_value_layer, tag_ndm: '00400314', tag_ary: [0x0040,0x0314], tag_multiple: false, tag_note: ''},
|
@@ -2269,23 +2386,23 @@ HIGH = 0001H'},
|
|
2269
2386
|
{ tag_ps: '(0040,0320)', tag_name: "Billing Procedure Step Sequence", tag_key: 'BillingProcedureStepSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0320)', tag_sym: :billing_procedure_step_sequence, tag_ndm: '00400320', tag_ary: [0x0040,0x0320], tag_multiple: false, tag_note: ''},
|
2270
2387
|
{ tag_ps: '(0040,0321)', tag_name: "Film Consumption Sequence", tag_key: 'FilmConsumptionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0321)', tag_sym: :film_consumption_sequence, tag_ndm: '00400321', tag_ary: [0x0040,0x0321], tag_multiple: false, tag_note: ''},
|
2271
2388
|
{ tag_ps: '(0040,0324)', tag_name: "Billing Supplies and Devices Sequence", tag_key: 'BillingSuppliesAndDevicesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0324)', tag_sym: :billing_supplies_and_devices_sequence, tag_ndm: '00400324', tag_ary: [0x0040,0x0324], tag_multiple: false, tag_note: ''},
|
2272
|
-
{ tag_ps: '(0040,0330)', tag_name: "Referenced Procedure Step Sequence", tag_key: 'ReferencedProcedureStepSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0330)', tag_sym: :referenced_procedure_step_sequence, tag_ndm: '00400330', tag_ary: [0x0040,0x0330], tag_multiple: false, tag_note: 'RET'},
|
2389
|
+
{ tag_ps: '(0040,0330)', tag_name: "Referenced Procedure Step Sequence", tag_key: 'ReferencedProcedureStepSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0330)', tag_sym: :referenced_procedure_step_sequence, tag_ndm: '00400330', tag_ary: [0x0040,0x0330], tag_multiple: false, tag_note: 'RET (2001)'},
|
2273
2390
|
{ tag_ps: '(0040,0340)', tag_name: "Performed Series Sequence", tag_key: 'PerformedSeriesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0340)', tag_sym: :performed_series_sequence, tag_ndm: '00400340', tag_ary: [0x0040,0x0340], tag_multiple: false, tag_note: ''},
|
2274
2391
|
{ tag_ps: '(0040,0400)', tag_name: "Comments on the Scheduled Procedure Step", tag_key: 'CommentsOnTheScheduledProcedureStep', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0040,0400)', tag_sym: :comments_on_the_scheduled_procedure_step, tag_ndm: '00400400', tag_ary: [0x0040,0x0400], tag_multiple: false, tag_note: ''},
|
2275
2392
|
{ tag_ps: '(0040,0440)', tag_name: "Protocol Context Sequence", tag_key: 'ProtocolContextSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0440)', tag_sym: :protocol_context_sequence, tag_ndm: '00400440', tag_ary: [0x0040,0x0440], tag_multiple: false, tag_note: ''},
|
2276
2393
|
{ tag_ps: '(0040,0441)', tag_name: "Content Item Modifier Sequence", tag_key: 'ContentItemModifierSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0441)', tag_sym: :content_item_modifier_sequence, tag_ndm: '00400441', tag_ary: [0x0040,0x0441], tag_multiple: false, tag_note: ''},
|
2277
2394
|
{ tag_ps: '(0040,0500)', tag_name: "Scheduled Specimen Sequence", tag_key: 'ScheduledSpecimenSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0500)', tag_sym: :scheduled_specimen_sequence, tag_ndm: '00400500', tag_ary: [0x0040,0x0500], tag_multiple: false, tag_note: ''},
|
2278
|
-
{ tag_ps: '(0040,050A)', tag_name: "Specimen Accession Number", tag_key: 'SpecimenAccessionNumber', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,050A)', tag_sym: :specimen_accession_number, tag_ndm: '0040050A', tag_ary: [0x0040,0x050A], tag_multiple: false, tag_note: 'RET'},
|
2395
|
+
{ tag_ps: '(0040,050A)', tag_name: "Specimen Accession Number", tag_key: 'SpecimenAccessionNumber', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,050A)', tag_sym: :specimen_accession_number, tag_ndm: '0040050A', tag_ary: [0x0040,0x050A], tag_multiple: false, tag_note: 'RET (2008)'},
|
2279
2396
|
{ tag_ps: '(0040,0512)', tag_name: "Container Identifier", tag_key: 'ContainerIdentifier', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,0512)', tag_sym: :container_identifier, tag_ndm: '00400512', tag_ary: [0x0040,0x0512], tag_multiple: false, tag_note: ''},
|
2280
2397
|
{ tag_ps: '(0040,0513)', tag_name: "Issuer of the Container Identifier Sequence", tag_key: 'IssuerOfTheContainerIdentifierSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0513)', tag_sym: :issuer_of_the_container_identifier_sequence, tag_ndm: '00400513', tag_ary: [0x0040,0x0513], tag_multiple: false, tag_note: ''},
|
2281
2398
|
{ tag_ps: '(0040,0515)', tag_name: "Alternate Container Identifier Sequence", tag_key: 'AlternateContainerIdentifierSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0515)', tag_sym: :alternate_container_identifier_sequence, tag_ndm: '00400515', tag_ary: [0x0040,0x0515], tag_multiple: false, tag_note: ''},
|
2282
2399
|
{ tag_ps: '(0040,0518)', tag_name: "Container Type Code Sequence", tag_key: 'ContainerTypeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0518)', tag_sym: :container_type_code_sequence, tag_ndm: '00400518', tag_ary: [0x0040,0x0518], tag_multiple: false, tag_note: ''},
|
2283
2400
|
{ tag_ps: '(0040,051A)', tag_name: "Container Description", tag_key: 'ContainerDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,051A)', tag_sym: :container_description, tag_ndm: '0040051A', tag_ary: [0x0040,0x051A], tag_multiple: false, tag_note: ''},
|
2284
2401
|
{ tag_ps: '(0040,0520)', tag_name: "Container Component Sequence", tag_key: 'ContainerComponentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0520)', tag_sym: :container_component_sequence, tag_ndm: '00400520', tag_ary: [0x0040,0x0520], tag_multiple: false, tag_note: ''},
|
2285
|
-
{ tag_ps: '(0040,0550)', tag_name: "Specimen Sequence", tag_key: 'SpecimenSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0550)', tag_sym: :specimen_sequence, tag_ndm: '00400550', tag_ary: [0x0040,0x0550], tag_multiple: false, tag_note: 'RET'},
|
2402
|
+
{ tag_ps: '(0040,0550)', tag_name: "Specimen Sequence", tag_key: 'SpecimenSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0550)', tag_sym: :specimen_sequence, tag_ndm: '00400550', tag_ary: [0x0040,0x0550], tag_multiple: false, tag_note: 'RET (2008)'},
|
2286
2403
|
{ tag_ps: '(0040,0551)', tag_name: "Specimen Identifier", tag_key: 'SpecimenIdentifier', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,0551)', tag_sym: :specimen_identifier, tag_ndm: '00400551', tag_ary: [0x0040,0x0551], tag_multiple: false, tag_note: ''},
|
2287
|
-
{ tag_ps: '(0040,0552)', tag_name: "Specimen Description Sequence (Trial)", tag_key: 'SpecimenDescriptionSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0552)', tag_sym: :specimen_description_sequence_trial, tag_ndm: '00400552', tag_ary: [0x0040,0x0552], tag_multiple: false, tag_note: 'RET'},
|
2288
|
-
{ tag_ps: '(0040,0553)', tag_name: "Specimen Description (Trial)", tag_key: 'SpecimenDescriptionTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,0553)', tag_sym: :specimen_description_trial, tag_ndm: '00400553', tag_ary: [0x0040,0x0553], tag_multiple: false, tag_note: 'RET'},
|
2404
|
+
{ tag_ps: '(0040,0552)', tag_name: "Specimen Description Sequence (Trial)", tag_key: 'SpecimenDescriptionSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0552)', tag_sym: :specimen_description_sequence_trial, tag_ndm: '00400552', tag_ary: [0x0040,0x0552], tag_multiple: false, tag_note: 'RET (2007)'},
|
2405
|
+
{ tag_ps: '(0040,0553)', tag_name: "Specimen Description (Trial)", tag_key: 'SpecimenDescriptionTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,0553)', tag_sym: :specimen_description_trial, tag_ndm: '00400553', tag_ary: [0x0040,0x0553], tag_multiple: false, tag_note: 'RET (2007)'},
|
2289
2406
|
{ tag_ps: '(0040,0554)', tag_name: "Specimen UID", tag_key: 'SpecimenUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,0554)', tag_sym: :specimen_uid, tag_ndm: '00400554', tag_ary: [0x0040,0x0554], tag_multiple: false, tag_note: ''},
|
2290
2407
|
{ tag_ps: '(0040,0555)', tag_name: "Acquisition Context Sequence", tag_key: 'AcquisitionContextSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0555)', tag_sym: :acquisition_context_sequence, tag_ndm: '00400555', tag_ary: [0x0040,0x0555], tag_multiple: false, tag_note: ''},
|
2291
2408
|
{ tag_ps: '(0040,0556)', tag_name: "Acquisition Context Description", tag_key: 'AcquisitionContextDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,0556)', tag_sym: :acquisition_context_description, tag_ndm: '00400556', tag_ary: [0x0040,0x0556], tag_multiple: false, tag_note: ''},
|
@@ -2297,40 +2414,40 @@ HIGH = 0001H'},
|
|
2297
2414
|
{ tag_ps: '(0040,0610)', tag_name: "Specimen Preparation Sequence", tag_key: 'SpecimenPreparationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0610)', tag_sym: :specimen_preparation_sequence, tag_ndm: '00400610', tag_ary: [0x0040,0x0610], tag_multiple: false, tag_note: ''},
|
2298
2415
|
{ tag_ps: '(0040,0612)', tag_name: "Specimen Preparation Step Content Item Sequence", tag_key: 'SpecimenPreparationStepContentItemSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0612)', tag_sym: :specimen_preparation_step_content_item_sequence, tag_ndm: '00400612', tag_ary: [0x0040,0x0612], tag_multiple: false, tag_note: ''},
|
2299
2416
|
{ tag_ps: '(0040,0620)', tag_name: "Specimen Localization Content Item Sequence", tag_key: 'SpecimenLocalizationContentItemSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0620)', tag_sym: :specimen_localization_content_item_sequence, tag_ndm: '00400620', tag_ary: [0x0040,0x0620], tag_multiple: false, tag_note: ''},
|
2300
|
-
{ tag_ps: '(0040,06FA)', tag_name: "Slide Identifier", tag_key: 'SlideIdentifier', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,06FA)', tag_sym: :slide_identifier, tag_ndm: '004006FA', tag_ary: [0x0040,0x06FA], tag_multiple: false, tag_note: 'RET'},
|
2417
|
+
{ tag_ps: '(0040,06FA)', tag_name: "Slide Identifier", tag_key: 'SlideIdentifier', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,06FA)', tag_sym: :slide_identifier, tag_ndm: '004006FA', tag_ary: [0x0040,0x06FA], tag_multiple: false, tag_note: 'RET (2008)'},
|
2301
2418
|
{ tag_ps: '(0040,0710)', tag_name: "Whole Slide Microscopy Image Frame Type Sequence", tag_key: 'WholeSlideMicroscopyImageFrameTypeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,0710)', tag_sym: :whole_slide_microscopy_image_frame_type_sequence, tag_ndm: '00400710', tag_ary: [0x0040,0x0710], tag_multiple: false, tag_note: ''},
|
2302
2419
|
{ tag_ps: '(0040,071A)', tag_name: "Image Center Point Coordinates Sequence", tag_key: 'ImageCenterPointCoordinatesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,071A)', tag_sym: :image_center_point_coordinates_sequence, tag_ndm: '0040071A', tag_ary: [0x0040,0x071A], tag_multiple: false, tag_note: ''},
|
2303
2420
|
{ tag_ps: '(0040,072A)', tag_name: "X Offset in Slide Coordinate System", tag_key: 'XOffsetInSlideCoordinateSystem', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0040,072A)', tag_sym: :x_offset_in_slide_coordinate_system, tag_ndm: '0040072A', tag_ary: [0x0040,0x072A], tag_multiple: false, tag_note: ''},
|
2304
2421
|
{ tag_ps: '(0040,073A)', tag_name: "Y Offset in Slide Coordinate System", tag_key: 'YOffsetInSlideCoordinateSystem', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0040,073A)', tag_sym: :y_offset_in_slide_coordinate_system, tag_ndm: '0040073A', tag_ary: [0x0040,0x073A], tag_multiple: false, tag_note: ''},
|
2305
2422
|
{ tag_ps: '(0040,074A)', tag_name: "Z Offset in Slide Coordinate System", tag_key: 'ZOffsetInSlideCoordinateSystem', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0040,074A)', tag_sym: :z_offset_in_slide_coordinate_system, tag_ndm: '0040074A', tag_ary: [0x0040,0x074A], tag_multiple: false, tag_note: ''},
|
2306
|
-
{ tag_ps: '(0040,08D8)', tag_name: "Pixel Spacing Sequence", tag_key: 'PixelSpacingSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,08D8)', tag_sym: :pixel_spacing_sequence, tag_ndm: '004008D8', tag_ary: [0x0040,0x08D8], tag_multiple: false, tag_note: 'RET'},
|
2307
|
-
{ tag_ps: '(0040,08DA)', tag_name: "Coordinate System Axis Code Sequence", tag_key: 'CoordinateSystemAxisCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,08DA)', tag_sym: :coordinate_system_axis_code_sequence, tag_ndm: '004008DA', tag_ary: [0x0040,0x08DA], tag_multiple: false, tag_note: 'RET'},
|
2423
|
+
{ tag_ps: '(0040,08D8)', tag_name: "Pixel Spacing Sequence", tag_key: 'PixelSpacingSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,08D8)', tag_sym: :pixel_spacing_sequence, tag_ndm: '004008D8', tag_ary: [0x0040,0x08D8], tag_multiple: false, tag_note: 'RET (2009)'},
|
2424
|
+
{ tag_ps: '(0040,08DA)', tag_name: "Coordinate System Axis Code Sequence", tag_key: 'CoordinateSystemAxisCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,08DA)', tag_sym: :coordinate_system_axis_code_sequence, tag_ndm: '004008DA', tag_ary: [0x0040,0x08DA], tag_multiple: false, tag_note: 'RET (2009)'},
|
2308
2425
|
{ tag_ps: '(0040,08EA)', tag_name: "Measurement Units Code Sequence", tag_key: 'MeasurementUnitsCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,08EA)', tag_sym: :measurement_units_code_sequence, tag_ndm: '004008EA', tag_ary: [0x0040,0x08EA], tag_multiple: false, tag_note: ''},
|
2309
|
-
{ tag_ps: '(0040,09F8)', tag_name: "Vital Stain Code Sequence (Trial)", tag_key: 'VitalStainCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,09F8)', tag_sym: :vital_stain_code_sequence_trial, tag_ndm: '004009F8', tag_ary: [0x0040,0x09F8], tag_multiple: false, tag_note: 'RET'},
|
2426
|
+
{ tag_ps: '(0040,09F8)', tag_name: "Vital Stain Code Sequence (Trial)", tag_key: 'VitalStainCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,09F8)', tag_sym: :vital_stain_code_sequence_trial, tag_ndm: '004009F8', tag_ary: [0x0040,0x09F8], tag_multiple: false, tag_note: 'RET (2007)'},
|
2310
2427
|
{ tag_ps: '(0040,1001)', tag_name: "Requested Procedure ID", tag_key: 'RequestedProcedureID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,1001)', tag_sym: :requested_procedure_id, tag_ndm: '00401001', tag_ary: [0x0040,0x1001], tag_multiple: false, tag_note: ''},
|
2311
2428
|
{ tag_ps: '(0040,1002)', tag_name: "Reason for the Requested Procedure", tag_key: 'ReasonForTheRequestedProcedure', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,1002)', tag_sym: :reason_for_the_requested_procedure, tag_ndm: '00401002', tag_ary: [0x0040,0x1002], tag_multiple: false, tag_note: ''},
|
2312
2429
|
{ tag_ps: '(0040,1003)', tag_name: "Requested Procedure Priority", tag_key: 'RequestedProcedurePriority', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,1003)', tag_sym: :requested_procedure_priority, tag_ndm: '00401003', tag_ary: [0x0040,0x1003], tag_multiple: false, tag_note: ''},
|
2313
2430
|
{ tag_ps: '(0040,1004)', tag_name: "Patient Transport Arrangements", tag_key: 'PatientTransportArrangements', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,1004)', tag_sym: :patient_transport_arrangements, tag_ndm: '00401004', tag_ary: [0x0040,0x1004], tag_multiple: false, tag_note: ''},
|
2314
2431
|
{ tag_ps: '(0040,1005)', tag_name: "Requested Procedure Location", tag_key: 'RequestedProcedureLocation', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,1005)', tag_sym: :requested_procedure_location, tag_ndm: '00401005', tag_ary: [0x0040,0x1005], tag_multiple: false, tag_note: ''},
|
2315
|
-
{ tag_ps: '(0040,1006)', tag_name: "Placer Order Number / Procedure", tag_key: 'PlacerOrderNumberProcedure', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,1006)', tag_sym: :placer_order_number_procedure, tag_ndm: '00401006', tag_ary: [0x0040,0x1006], tag_multiple: false, tag_note: 'RET'},
|
2316
|
-
{ tag_ps: '(0040,1007)', tag_name: "Filler Order Number / Procedure", tag_key: 'FillerOrderNumberProcedure', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,1007)', tag_sym: :filler_order_number_procedure, tag_ndm: '00401007', tag_ary: [0x0040,0x1007], tag_multiple: false, tag_note: 'RET'},
|
2432
|
+
{ tag_ps: '(0040,1006)', tag_name: "Placer Order Number / Procedure", tag_key: 'PlacerOrderNumberProcedure', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,1006)', tag_sym: :placer_order_number_procedure, tag_ndm: '00401006', tag_ary: [0x0040,0x1006], tag_multiple: false, tag_note: 'RET (1998)'},
|
2433
|
+
{ tag_ps: '(0040,1007)', tag_name: "Filler Order Number / Procedure", tag_key: 'FillerOrderNumberProcedure', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,1007)', tag_sym: :filler_order_number_procedure, tag_ndm: '00401007', tag_ary: [0x0040,0x1007], tag_multiple: false, tag_note: 'RET (1998)'},
|
2317
2434
|
{ tag_ps: '(0040,1008)', tag_name: "Confidentiality Code", tag_key: 'ConfidentialityCode', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,1008)', tag_sym: :confidentiality_code, tag_ndm: '00401008', tag_ary: [0x0040,0x1008], tag_multiple: false, tag_note: ''},
|
2318
2435
|
{ tag_ps: '(0040,1009)', tag_name: "Reporting Priority", tag_key: 'ReportingPriority', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,1009)', tag_sym: :reporting_priority, tag_ndm: '00401009', tag_ary: [0x0040,0x1009], tag_multiple: false, tag_note: ''},
|
2319
2436
|
{ tag_ps: '(0040,100A)', tag_name: "Reason for Requested Procedure Code Sequence", tag_key: 'ReasonForRequestedProcedureCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,100A)', tag_sym: :reason_for_requested_procedure_code_sequence, tag_ndm: '0040100A', tag_ary: [0x0040,0x100A], tag_multiple: false, tag_note: ''},
|
2320
2437
|
{ tag_ps: '(0040,1010)', tag_name: "Names of Intended Recipients of Results", tag_key: 'NamesOfIntendedRecipientsOfResults', tag_vr: [:PN], tag_vm: ["1-n"], tag_str: '(0040,1010)', tag_sym: :names_of_intended_recipients_of_results, tag_ndm: '00401010', tag_ary: [0x0040,0x1010], tag_multiple: false, tag_note: ''},
|
2321
2438
|
{ tag_ps: '(0040,1011)', tag_name: "Intended Recipients of Results Identification Sequence", tag_key: 'IntendedRecipientsOfResultsIdentificationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,1011)', tag_sym: :intended_recipients_of_results_identification_sequence, tag_ndm: '00401011', tag_ary: [0x0040,0x1011], tag_multiple: false, tag_note: ''},
|
2322
2439
|
{ tag_ps: '(0040,1012)', tag_name: "Reason For Performed Procedure Code Sequence", tag_key: 'ReasonForPerformedProcedureCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,1012)', tag_sym: :reason_for_performed_procedure_code_sequence, tag_ndm: '00401012', tag_ary: [0x0040,0x1012], tag_multiple: false, tag_note: ''},
|
2323
|
-
{ tag_ps: '(0040,1060)', tag_name: "Requested Procedure Description (Trial)", tag_key: 'RequestedProcedureDescriptionTrial', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,1060)', tag_sym: :requested_procedure_description_trial, tag_ndm: '00401060', tag_ary: [0x0040,0x1060], tag_multiple: false, tag_note: 'RET'},
|
2440
|
+
{ tag_ps: '(0040,1060)', tag_name: "Requested Procedure Description (Trial)", tag_key: 'RequestedProcedureDescriptionTrial', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,1060)', tag_sym: :requested_procedure_description_trial, tag_ndm: '00401060', tag_ary: [0x0040,0x1060], tag_multiple: false, tag_note: 'RET (2009)'},
|
2324
2441
|
{ tag_ps: '(0040,1101)', tag_name: "Person Identification Code Sequence", tag_key: 'PersonIdentificationCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,1101)', tag_sym: :person_identification_code_sequence, tag_ndm: '00401101', tag_ary: [0x0040,0x1101], tag_multiple: false, tag_note: ''},
|
2325
2442
|
{ tag_ps: '(0040,1102)', tag_name: "Person's Address", tag_key: 'PersonAddress', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,1102)', tag_sym: :person_address, tag_ndm: '00401102', tag_ary: [0x0040,0x1102], tag_multiple: false, tag_note: ''},
|
2326
2443
|
{ tag_ps: '(0040,1103)', tag_name: "Person's Telephone Numbers", tag_key: 'PersonTelephoneNumbers', tag_vr: [:LO], tag_vm: ["1-n"], tag_str: '(0040,1103)', tag_sym: :person_telephone_numbers, tag_ndm: '00401103', tag_ary: [0x0040,0x1103], tag_multiple: false, tag_note: ''},
|
2327
2444
|
{ tag_ps: '(0040,1104)', tag_name: "Person's Telecom Information", tag_key: 'PersonTelecomInformation', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0040,1104)', tag_sym: :person_telecom_information, tag_ndm: '00401104', tag_ary: [0x0040,0x1104], tag_multiple: false, tag_note: ''},
|
2328
2445
|
{ tag_ps: '(0040,1400)', tag_name: "Requested Procedure Comments", tag_key: 'RequestedProcedureComments', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0040,1400)', tag_sym: :requested_procedure_comments, tag_ndm: '00401400', tag_ary: [0x0040,0x1400], tag_multiple: false, tag_note: ''},
|
2329
|
-
{ tag_ps: '(0040,2001)', tag_name: "Reason for the Imaging Service Request", tag_key: 'ReasonForTheImagingServiceRequest', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,2001)', tag_sym: :reason_for_the_imaging_service_request, tag_ndm: '00402001', tag_ary: [0x0040,0x2001], tag_multiple: false, tag_note: 'RET'},
|
2446
|
+
{ tag_ps: '(0040,2001)', tag_name: "Reason for the Imaging Service Request", tag_key: 'ReasonForTheImagingServiceRequest', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,2001)', tag_sym: :reason_for_the_imaging_service_request, tag_ndm: '00402001', tag_ary: [0x0040,0x2001], tag_multiple: false, tag_note: 'RET (2003)'},
|
2330
2447
|
{ tag_ps: '(0040,2004)', tag_name: "Issue Date of Imaging Service Request", tag_key: 'IssueDateOfImagingServiceRequest', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0040,2004)', tag_sym: :issue_date_of_imaging_service_request, tag_ndm: '00402004', tag_ary: [0x0040,0x2004], tag_multiple: false, tag_note: ''},
|
2331
2448
|
{ tag_ps: '(0040,2005)', tag_name: "Issue Time of Imaging Service Request", tag_key: 'IssueTimeOfImagingServiceRequest', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0040,2005)', tag_sym: :issue_time_of_imaging_service_request, tag_ndm: '00402005', tag_ary: [0x0040,0x2005], tag_multiple: false, tag_note: ''},
|
2332
|
-
{ tag_ps: '(0040,2006)', tag_name: "Placer Order Number / Imaging Service Request (Retired)", tag_key: 'PlacerOrderNumberImagingServiceRequestRetired', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,2006)', tag_sym: :placer_order_number_imaging_service_request_retired, tag_ndm: '00402006', tag_ary: [0x0040,0x2006], tag_multiple: false, tag_note: 'RET'},
|
2333
|
-
{ tag_ps: '(0040,2007)', tag_name: "Filler Order Number / Imaging Service Request (Retired)", tag_key: 'FillerOrderNumberImagingServiceRequestRetired', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,2007)', tag_sym: :filler_order_number_imaging_service_request_retired, tag_ndm: '00402007', tag_ary: [0x0040,0x2007], tag_multiple: false, tag_note: 'RET'},
|
2449
|
+
{ tag_ps: '(0040,2006)', tag_name: "Placer Order Number / Imaging Service Request (Retired)", tag_key: 'PlacerOrderNumberImagingServiceRequestRetired', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,2006)', tag_sym: :placer_order_number_imaging_service_request_retired, tag_ndm: '00402006', tag_ary: [0x0040,0x2006], tag_multiple: false, tag_note: 'RET (1998)'},
|
2450
|
+
{ tag_ps: '(0040,2007)', tag_name: "Filler Order Number / Imaging Service Request (Retired)", tag_key: 'FillerOrderNumberImagingServiceRequestRetired', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,2007)', tag_sym: :filler_order_number_imaging_service_request_retired, tag_ndm: '00402007', tag_ary: [0x0040,0x2007], tag_multiple: false, tag_note: 'RET (1998)'},
|
2334
2451
|
{ tag_ps: '(0040,2008)', tag_name: "Order Entered By", tag_key: 'OrderEnteredBy', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(0040,2008)', tag_sym: :order_entered_by, tag_ndm: '00402008', tag_ary: [0x0040,0x2008], tag_multiple: false, tag_note: ''},
|
2335
2452
|
{ tag_ps: '(0040,2009)', tag_name: "Order Enterer's Location", tag_key: 'OrderEntererLocation', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,2009)', tag_sym: :order_enterer_location, tag_ndm: '00402009', tag_ary: [0x0040,0x2009], tag_multiple: false, tag_note: ''},
|
2336
2453
|
{ tag_ps: '(0040,2010)', tag_name: "Order Callback Phone Number", tag_key: 'OrderCallbackPhoneNumber', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0040,2010)', tag_sym: :order_callback_phone_number, tag_ndm: '00402010', tag_ary: [0x0040,0x2010], tag_multiple: false, tag_note: ''},
|
@@ -2339,33 +2456,33 @@ HIGH = 0001H'},
|
|
2339
2456
|
{ tag_ps: '(0040,2017)', tag_name: "Filler Order Number / Imaging Service Request", tag_key: 'FillerOrderNumberImagingServiceRequest', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,2017)', tag_sym: :filler_order_number_imaging_service_request, tag_ndm: '00402017', tag_ary: [0x0040,0x2017], tag_multiple: false, tag_note: ''},
|
2340
2457
|
{ tag_ps: '(0040,2400)', tag_name: "Imaging Service Request Comments", tag_key: 'ImagingServiceRequestComments', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0040,2400)', tag_sym: :imaging_service_request_comments, tag_ndm: '00402400', tag_ary: [0x0040,0x2400], tag_multiple: false, tag_note: ''},
|
2341
2458
|
{ tag_ps: '(0040,3001)', tag_name: "Confidentiality Constraint on Patient Data Description", tag_key: 'ConfidentialityConstraintOnPatientDataDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,3001)', tag_sym: :confidentiality_constraint_on_patient_data_description, tag_ndm: '00403001', tag_ary: [0x0040,0x3001], tag_multiple: false, tag_note: ''},
|
2342
|
-
{ tag_ps: '(0040,4001)', tag_name: "General Purpose Scheduled Procedure Step Status", tag_key: 'GeneralPurposeScheduledProcedureStepStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,4001)', tag_sym: :general_purpose_scheduled_procedure_step_status, tag_ndm: '00404001', tag_ary: [0x0040,0x4001], tag_multiple: false, tag_note: 'RET'},
|
2343
|
-
{ tag_ps: '(0040,4002)', tag_name: "General Purpose Performed Procedure Step Status", tag_key: 'GeneralPurposePerformedProcedureStepStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,4002)', tag_sym: :general_purpose_performed_procedure_step_status, tag_ndm: '00404002', tag_ary: [0x0040,0x4002], tag_multiple: false, tag_note: 'RET'},
|
2344
|
-
{ tag_ps: '(0040,4003)', tag_name: "General Purpose Scheduled Procedure Step Priority", tag_key: 'GeneralPurposeScheduledProcedureStepPriority', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,4003)', tag_sym: :general_purpose_scheduled_procedure_step_priority, tag_ndm: '00404003', tag_ary: [0x0040,0x4003], tag_multiple: false, tag_note: 'RET'},
|
2345
|
-
{ tag_ps: '(0040,4004)', tag_name: "Scheduled Processing Applications Code Sequence", tag_key: 'ScheduledProcessingApplicationsCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4004)', tag_sym: :scheduled_processing_applications_code_sequence, tag_ndm: '00404004', tag_ary: [0x0040,0x4004], tag_multiple: false, tag_note: 'RET'},
|
2459
|
+
{ tag_ps: '(0040,4001)', tag_name: "General Purpose Scheduled Procedure Step Status", tag_key: 'GeneralPurposeScheduledProcedureStepStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,4001)', tag_sym: :general_purpose_scheduled_procedure_step_status, tag_ndm: '00404001', tag_ary: [0x0040,0x4001], tag_multiple: false, tag_note: 'RET (2011)'},
|
2460
|
+
{ tag_ps: '(0040,4002)', tag_name: "General Purpose Performed Procedure Step Status", tag_key: 'GeneralPurposePerformedProcedureStepStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,4002)', tag_sym: :general_purpose_performed_procedure_step_status, tag_ndm: '00404002', tag_ary: [0x0040,0x4002], tag_multiple: false, tag_note: 'RET (2011)'},
|
2461
|
+
{ tag_ps: '(0040,4003)', tag_name: "General Purpose Scheduled Procedure Step Priority", tag_key: 'GeneralPurposeScheduledProcedureStepPriority', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,4003)', tag_sym: :general_purpose_scheduled_procedure_step_priority, tag_ndm: '00404003', tag_ary: [0x0040,0x4003], tag_multiple: false, tag_note: 'RET (2011)'},
|
2462
|
+
{ tag_ps: '(0040,4004)', tag_name: "Scheduled Processing Applications Code Sequence", tag_key: 'ScheduledProcessingApplicationsCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4004)', tag_sym: :scheduled_processing_applications_code_sequence, tag_ndm: '00404004', tag_ary: [0x0040,0x4004], tag_multiple: false, tag_note: 'RET (2011)'},
|
2346
2463
|
{ tag_ps: '(0040,4005)', tag_name: "Scheduled Procedure Step Start DateTime", tag_key: 'ScheduledProcedureStepStartDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,4005)', tag_sym: :scheduled_procedure_step_start_date_time, tag_ndm: '00404005', tag_ary: [0x0040,0x4005], tag_multiple: false, tag_note: ''},
|
2347
|
-
{ tag_ps: '(0040,4006)', tag_name: "Multiple Copies Flag", tag_key: 'MultipleCopiesFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,4006)', tag_sym: :multiple_copies_flag, tag_ndm: '00404006', tag_ary: [0x0040,0x4006], tag_multiple: false, tag_note: 'RET'},
|
2348
|
-
{ tag_ps: '(0040,4007)', tag_name: "Performed Processing Applications Code Sequence", tag_key: 'PerformedProcessingApplicationsCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4007)', tag_sym: :performed_processing_applications_code_sequence, tag_ndm: '00404007', tag_ary: [0x0040,0x4007], tag_multiple: false, tag_note: 'RET'},
|
2464
|
+
{ tag_ps: '(0040,4006)', tag_name: "Multiple Copies Flag", tag_key: 'MultipleCopiesFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,4006)', tag_sym: :multiple_copies_flag, tag_ndm: '00404006', tag_ary: [0x0040,0x4006], tag_multiple: false, tag_note: 'RET (2011)'},
|
2465
|
+
{ tag_ps: '(0040,4007)', tag_name: "Performed Processing Applications Code Sequence", tag_key: 'PerformedProcessingApplicationsCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4007)', tag_sym: :performed_processing_applications_code_sequence, tag_ndm: '00404007', tag_ary: [0x0040,0x4007], tag_multiple: false, tag_note: 'RET (2017e)'},
|
2349
2466
|
{ tag_ps: '(0040,4008)', tag_name: "Scheduled Procedure Step Expiration DateTime", tag_key: 'ScheduledProcedureStepExpirationDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,4008)', tag_sym: :scheduled_procedure_step_expiration_date_time, tag_ndm: '00404008', tag_ary: [0x0040,0x4008], tag_multiple: false, tag_note: ''},
|
2350
2467
|
{ tag_ps: '(0040,4009)', tag_name: "Human Performer Code Sequence", tag_key: 'HumanPerformerCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4009)', tag_sym: :human_performer_code_sequence, tag_ndm: '00404009', tag_ary: [0x0040,0x4009], tag_multiple: false, tag_note: ''},
|
2351
2468
|
{ tag_ps: '(0040,4010)', tag_name: "Scheduled Procedure Step Modification DateTime", tag_key: 'ScheduledProcedureStepModificationDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,4010)', tag_sym: :scheduled_procedure_step_modification_date_time, tag_ndm: '00404010', tag_ary: [0x0040,0x4010], tag_multiple: false, tag_note: ''},
|
2352
2469
|
{ tag_ps: '(0040,4011)', tag_name: "Expected Completion DateTime", tag_key: 'ExpectedCompletionDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,4011)', tag_sym: :expected_completion_date_time, tag_ndm: '00404011', tag_ary: [0x0040,0x4011], tag_multiple: false, tag_note: ''},
|
2353
|
-
{ tag_ps: '(0040,4015)', tag_name: "Resulting General Purpose Performed Procedure Steps Sequence", tag_key: 'ResultingGeneralPurposePerformedProcedureStepsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4015)', tag_sym: :resulting_general_purpose_performed_procedure_steps_sequence, tag_ndm: '00404015', tag_ary: [0x0040,0x4015], tag_multiple: false, tag_note: 'RET'},
|
2354
|
-
{ tag_ps: '(0040,4016)', tag_name: "Referenced General Purpose Scheduled Procedure Step Sequence", tag_key: 'ReferencedGeneralPurposeScheduledProcedureStepSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4016)', tag_sym: :referenced_general_purpose_scheduled_procedure_step_sequence, tag_ndm: '00404016', tag_ary: [0x0040,0x4016], tag_multiple: false, tag_note: 'RET'},
|
2470
|
+
{ tag_ps: '(0040,4015)', tag_name: "Resulting General Purpose Performed Procedure Steps Sequence", tag_key: 'ResultingGeneralPurposePerformedProcedureStepsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4015)', tag_sym: :resulting_general_purpose_performed_procedure_steps_sequence, tag_ndm: '00404015', tag_ary: [0x0040,0x4015], tag_multiple: false, tag_note: 'RET (2011)'},
|
2471
|
+
{ tag_ps: '(0040,4016)', tag_name: "Referenced General Purpose Scheduled Procedure Step Sequence", tag_key: 'ReferencedGeneralPurposeScheduledProcedureStepSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4016)', tag_sym: :referenced_general_purpose_scheduled_procedure_step_sequence, tag_ndm: '00404016', tag_ary: [0x0040,0x4016], tag_multiple: false, tag_note: 'RET (2011)'},
|
2355
2472
|
{ tag_ps: '(0040,4018)', tag_name: "Scheduled Workitem Code Sequence", tag_key: 'ScheduledWorkitemCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4018)', tag_sym: :scheduled_workitem_code_sequence, tag_ndm: '00404018', tag_ary: [0x0040,0x4018], tag_multiple: false, tag_note: ''},
|
2356
2473
|
{ tag_ps: '(0040,4019)', tag_name: "Performed Workitem Code Sequence", tag_key: 'PerformedWorkitemCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4019)', tag_sym: :performed_workitem_code_sequence, tag_ndm: '00404019', tag_ary: [0x0040,0x4019], tag_multiple: false, tag_note: ''},
|
2357
|
-
{ tag_ps: '(0040,4020)', tag_name: "Input Availability Flag", tag_key: 'InputAvailabilityFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,4020)', tag_sym: :input_availability_flag, tag_ndm: '00404020', tag_ary: [0x0040,0x4020], tag_multiple: false, tag_note: 'RET'},
|
2474
|
+
{ tag_ps: '(0040,4020)', tag_name: "Input Availability Flag", tag_key: 'InputAvailabilityFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,4020)', tag_sym: :input_availability_flag, tag_ndm: '00404020', tag_ary: [0x0040,0x4020], tag_multiple: false, tag_note: 'RET (2017b)'},
|
2358
2475
|
{ tag_ps: '(0040,4021)', tag_name: "Input Information Sequence", tag_key: 'InputInformationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4021)', tag_sym: :input_information_sequence, tag_ndm: '00404021', tag_ary: [0x0040,0x4021], tag_multiple: false, tag_note: ''},
|
2359
|
-
{ tag_ps: '(0040,4022)', tag_name: "Relevant Information Sequence", tag_key: 'RelevantInformationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4022)', tag_sym: :relevant_information_sequence, tag_ndm: '00404022', tag_ary: [0x0040,0x4022], tag_multiple: false, tag_note: 'RET'},
|
2360
|
-
{ tag_ps: '(0040,4023)', tag_name: "Referenced General Purpose Scheduled Procedure Step Transaction UID", tag_key: 'ReferencedGeneralPurposeScheduledProcedureStepTransactionUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,4023)', tag_sym: :referenced_general_purpose_scheduled_procedure_step_transaction_uid, tag_ndm: '00404023', tag_ary: [0x0040,0x4023], tag_multiple: false, tag_note: 'RET'},
|
2476
|
+
{ tag_ps: '(0040,4022)', tag_name: "Relevant Information Sequence", tag_key: 'RelevantInformationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4022)', tag_sym: :relevant_information_sequence, tag_ndm: '00404022', tag_ary: [0x0040,0x4022], tag_multiple: false, tag_note: 'RET (2011)'},
|
2477
|
+
{ tag_ps: '(0040,4023)', tag_name: "Referenced General Purpose Scheduled Procedure Step Transaction UID", tag_key: 'ReferencedGeneralPurposeScheduledProcedureStepTransactionUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,4023)', tag_sym: :referenced_general_purpose_scheduled_procedure_step_transaction_uid, tag_ndm: '00404023', tag_ary: [0x0040,0x4023], tag_multiple: false, tag_note: 'RET (2011)'},
|
2361
2478
|
{ tag_ps: '(0040,4025)', tag_name: "Scheduled Station Name Code Sequence", tag_key: 'ScheduledStationNameCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4025)', tag_sym: :scheduled_station_name_code_sequence, tag_ndm: '00404025', tag_ary: [0x0040,0x4025], tag_multiple: false, tag_note: ''},
|
2362
2479
|
{ tag_ps: '(0040,4026)', tag_name: "Scheduled Station Class Code Sequence", tag_key: 'ScheduledStationClassCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4026)', tag_sym: :scheduled_station_class_code_sequence, tag_ndm: '00404026', tag_ary: [0x0040,0x4026], tag_multiple: false, tag_note: ''},
|
2363
2480
|
{ tag_ps: '(0040,4027)', tag_name: "Scheduled Station Geographic Location Code Sequence", tag_key: 'ScheduledStationGeographicLocationCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4027)', tag_sym: :scheduled_station_geographic_location_code_sequence, tag_ndm: '00404027', tag_ary: [0x0040,0x4027], tag_multiple: false, tag_note: ''},
|
2364
2481
|
{ tag_ps: '(0040,4028)', tag_name: "Performed Station Name Code Sequence", tag_key: 'PerformedStationNameCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4028)', tag_sym: :performed_station_name_code_sequence, tag_ndm: '00404028', tag_ary: [0x0040,0x4028], tag_multiple: false, tag_note: ''},
|
2365
2482
|
{ tag_ps: '(0040,4029)', tag_name: "Performed Station Class Code Sequence", tag_key: 'PerformedStationClassCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4029)', tag_sym: :performed_station_class_code_sequence, tag_ndm: '00404029', tag_ary: [0x0040,0x4029], tag_multiple: false, tag_note: ''},
|
2366
2483
|
{ tag_ps: '(0040,4030)', tag_name: "Performed Station Geographic Location Code Sequence", tag_key: 'PerformedStationGeographicLocationCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4030)', tag_sym: :performed_station_geographic_location_code_sequence, tag_ndm: '00404030', tag_ary: [0x0040,0x4030], tag_multiple: false, tag_note: ''},
|
2367
|
-
{ tag_ps: '(0040,4031)', tag_name: "Requested Subsequent Workitem Code Sequence", tag_key: 'RequestedSubsequentWorkitemCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4031)', tag_sym: :requested_subsequent_workitem_code_sequence, tag_ndm: '00404031', tag_ary: [0x0040,0x4031], tag_multiple: false, tag_note: 'RET'},
|
2368
|
-
{ tag_ps: '(0040,4032)', tag_name: "Non-DICOM Output Code Sequence", tag_key: 'NonDICOMOutputCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4032)', tag_sym: :non_dicom_output_code_sequence, tag_ndm: '00404032', tag_ary: [0x0040,0x4032], tag_multiple: false, tag_note: 'RET'},
|
2484
|
+
{ tag_ps: '(0040,4031)', tag_name: "Requested Subsequent Workitem Code Sequence", tag_key: 'RequestedSubsequentWorkitemCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4031)', tag_sym: :requested_subsequent_workitem_code_sequence, tag_ndm: '00404031', tag_ary: [0x0040,0x4031], tag_multiple: false, tag_note: 'RET (2011)'},
|
2485
|
+
{ tag_ps: '(0040,4032)', tag_name: "Non-DICOM Output Code Sequence", tag_key: 'NonDICOMOutputCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4032)', tag_sym: :non_dicom_output_code_sequence, tag_ndm: '00404032', tag_ary: [0x0040,0x4032], tag_multiple: false, tag_note: 'RET (2011)'},
|
2369
2486
|
{ tag_ps: '(0040,4033)', tag_name: "Output Information Sequence", tag_key: 'OutputInformationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4033)', tag_sym: :output_information_sequence, tag_ndm: '00404033', tag_ary: [0x0040,0x4033], tag_multiple: false, tag_note: ''},
|
2370
2487
|
{ tag_ps: '(0040,4034)', tag_name: "Scheduled Human Performers Sequence", tag_key: 'ScheduledHumanPerformersSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4034)', tag_sym: :scheduled_human_performers_sequence, tag_ndm: '00404034', tag_ary: [0x0040,0x4034], tag_multiple: false, tag_note: ''},
|
2371
2488
|
{ tag_ps: '(0040,4035)', tag_name: "Actual Human Performers Sequence", tag_key: 'ActualHumanPerformersSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,4035)', tag_sym: :actual_human_performers_sequence, tag_ndm: '00404035', tag_ary: [0x0040,0x4035], tag_multiple: false, tag_note: ''},
|
@@ -2396,51 +2513,51 @@ HIGH = 0001H'},
|
|
2396
2513
|
{ tag_ps: '(0040,9220)', tag_name: "Quantity Definition Sequence", tag_key: 'QuantityDefinitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,9220)', tag_sym: :quantity_definition_sequence, tag_ndm: '00409220', tag_ary: [0x0040,0x9220], tag_multiple: false, tag_note: ''},
|
2397
2514
|
{ tag_ps: '(0040,9224)', tag_name: "Real World Value Intercept", tag_key: 'RealWorldValueIntercept', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0040,9224)', tag_sym: :real_world_value_intercept, tag_ndm: '00409224', tag_ary: [0x0040,0x9224], tag_multiple: false, tag_note: ''},
|
2398
2515
|
{ tag_ps: '(0040,9225)', tag_name: "Real World Value Slope", tag_key: 'RealWorldValueSlope', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0040,9225)', tag_sym: :real_world_value_slope, tag_ndm: '00409225', tag_ary: [0x0040,0x9225], tag_multiple: false, tag_note: ''},
|
2399
|
-
{ tag_ps: '(0040,A007)', tag_name: "Findings Flag (Trial)", tag_key: 'FindingsFlagTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A007)', tag_sym: :findings_flag_trial, tag_ndm: '0040A007', tag_ary: [0x0040,0xA007], tag_multiple: false, tag_note: 'RET'},
|
2516
|
+
{ tag_ps: '(0040,A007)', tag_name: "Findings Flag (Trial)", tag_key: 'FindingsFlagTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A007)', tag_sym: :findings_flag_trial, tag_ndm: '0040A007', tag_ary: [0x0040,0xA007], tag_multiple: false, tag_note: 'RET (2009)'},
|
2400
2517
|
{ tag_ps: '(0040,A010)', tag_name: "Relationship Type", tag_key: 'RelationshipType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A010)', tag_sym: :relationship_type, tag_ndm: '0040A010', tag_ary: [0x0040,0xA010], tag_multiple: false, tag_note: ''},
|
2401
|
-
{ tag_ps: '(0040,A020)', tag_name: "Findings Sequence (Trial)", tag_key: 'FindingsSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A020)', tag_sym: :findings_sequence_trial, tag_ndm: '0040A020', tag_ary: [0x0040,0xA020], tag_multiple: false, tag_note: 'RET'},
|
2402
|
-
{ tag_ps: '(0040,A021)', tag_name: "Findings Group UID (Trial)", tag_key: 'FindingsGroupUIDTrial', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,A021)', tag_sym: :findings_group_uid_trial, tag_ndm: '0040A021', tag_ary: [0x0040,0xA021], tag_multiple: false, tag_note: 'RET'},
|
2403
|
-
{ tag_ps: '(0040,A022)', tag_name: "Referenced Findings Group UID (Trial)", tag_key: 'ReferencedFindingsGroupUIDTrial', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,A022)', tag_sym: :referenced_findings_group_uid_trial, tag_ndm: '0040A022', tag_ary: [0x0040,0xA022], tag_multiple: false, tag_note: 'RET'},
|
2404
|
-
{ tag_ps: '(0040,A023)', tag_name: "Findings Group Recording Date (Trial)", tag_key: 'FindingsGroupRecordingDateTrial', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0040,A023)', tag_sym: :findings_group_recording_date_trial, tag_ndm: '0040A023', tag_ary: [0x0040,0xA023], tag_multiple: false, tag_note: 'RET'},
|
2405
|
-
{ tag_ps: '(0040,A024)', tag_name: "Findings Group Recording Time (Trial)", tag_key: 'FindingsGroupRecordingTimeTrial', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0040,A024)', tag_sym: :findings_group_recording_time_trial, tag_ndm: '0040A024', tag_ary: [0x0040,0xA024], tag_multiple: false, tag_note: 'RET'},
|
2406
|
-
{ tag_ps: '(0040,A026)', tag_name: "Findings Source Category Code Sequence (Trial)", tag_key: 'FindingsSourceCategoryCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A026)', tag_sym: :findings_source_category_code_sequence_trial, tag_ndm: '0040A026', tag_ary: [0x0040,0xA026], tag_multiple: false, tag_note: 'RET'},
|
2518
|
+
{ tag_ps: '(0040,A020)', tag_name: "Findings Sequence (Trial)", tag_key: 'FindingsSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A020)', tag_sym: :findings_sequence_trial, tag_ndm: '0040A020', tag_ary: [0x0040,0xA020], tag_multiple: false, tag_note: 'RET (2009)'},
|
2519
|
+
{ tag_ps: '(0040,A021)', tag_name: "Findings Group UID (Trial)", tag_key: 'FindingsGroupUIDTrial', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,A021)', tag_sym: :findings_group_uid_trial, tag_ndm: '0040A021', tag_ary: [0x0040,0xA021], tag_multiple: false, tag_note: 'RET (2009)'},
|
2520
|
+
{ tag_ps: '(0040,A022)', tag_name: "Referenced Findings Group UID (Trial)", tag_key: 'ReferencedFindingsGroupUIDTrial', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,A022)', tag_sym: :referenced_findings_group_uid_trial, tag_ndm: '0040A022', tag_ary: [0x0040,0xA022], tag_multiple: false, tag_note: 'RET (2009)'},
|
2521
|
+
{ tag_ps: '(0040,A023)', tag_name: "Findings Group Recording Date (Trial)", tag_key: 'FindingsGroupRecordingDateTrial', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0040,A023)', tag_sym: :findings_group_recording_date_trial, tag_ndm: '0040A023', tag_ary: [0x0040,0xA023], tag_multiple: false, tag_note: 'RET (2009)'},
|
2522
|
+
{ tag_ps: '(0040,A024)', tag_name: "Findings Group Recording Time (Trial)", tag_key: 'FindingsGroupRecordingTimeTrial', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0040,A024)', tag_sym: :findings_group_recording_time_trial, tag_ndm: '0040A024', tag_ary: [0x0040,0xA024], tag_multiple: false, tag_note: 'RET (2009)'},
|
2523
|
+
{ tag_ps: '(0040,A026)', tag_name: "Findings Source Category Code Sequence (Trial)", tag_key: 'FindingsSourceCategoryCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A026)', tag_sym: :findings_source_category_code_sequence_trial, tag_ndm: '0040A026', tag_ary: [0x0040,0xA026], tag_multiple: false, tag_note: 'RET (2009)'},
|
2407
2524
|
{ tag_ps: '(0040,A027)', tag_name: "Verifying Organization", tag_key: 'VerifyingOrganization', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,A027)', tag_sym: :verifying_organization, tag_ndm: '0040A027', tag_ary: [0x0040,0xA027], tag_multiple: false, tag_note: ''},
|
2408
|
-
{ tag_ps: '(0040,A028)', tag_name: "Documenting Organization Identifier Code Sequence (Trial)", tag_key: 'DocumentingOrganizationIdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A028)', tag_sym: :documenting_organization_identifier_code_sequence_trial, tag_ndm: '0040A028', tag_ary: [0x0040,0xA028], tag_multiple: false, tag_note: 'RET'},
|
2525
|
+
{ tag_ps: '(0040,A028)', tag_name: "Documenting Organization Identifier Code Sequence (Trial)", tag_key: 'DocumentingOrganizationIdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A028)', tag_sym: :documenting_organization_identifier_code_sequence_trial, tag_ndm: '0040A028', tag_ary: [0x0040,0xA028], tag_multiple: false, tag_note: 'RET (2009)'},
|
2409
2526
|
{ tag_ps: '(0040,A030)', tag_name: "Verification DateTime", tag_key: 'VerificationDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,A030)', tag_sym: :verification_date_time, tag_ndm: '0040A030', tag_ary: [0x0040,0xA030], tag_multiple: false, tag_note: ''},
|
2410
2527
|
{ tag_ps: '(0040,A032)', tag_name: "Observation DateTime", tag_key: 'ObservationDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,A032)', tag_sym: :observation_date_time, tag_ndm: '0040A032', tag_ary: [0x0040,0xA032], tag_multiple: false, tag_note: ''},
|
2411
2528
|
{ tag_ps: '(0040,A040)', tag_name: "Value Type", tag_key: 'ValueType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A040)', tag_sym: :value_type, tag_ndm: '0040A040', tag_ary: [0x0040,0xA040], tag_multiple: false, tag_note: ''},
|
2412
2529
|
{ tag_ps: '(0040,A043)', tag_name: "Concept Name Code Sequence", tag_key: 'ConceptNameCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A043)', tag_sym: :concept_name_code_sequence, tag_ndm: '0040A043', tag_ary: [0x0040,0xA043], tag_multiple: false, tag_note: ''},
|
2413
|
-
{ tag_ps: '(0040,A047)', tag_name: "Measurement Precision Description (Trial)", tag_key: 'MeasurementPrecisionDescriptionTrial', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,A047)', tag_sym: :measurement_precision_description_trial, tag_ndm: '0040A047', tag_ary: [0x0040,0xA047], tag_multiple: false, tag_note: 'RET'},
|
2530
|
+
{ tag_ps: '(0040,A047)', tag_name: "Measurement Precision Description (Trial)", tag_key: 'MeasurementPrecisionDescriptionTrial', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,A047)', tag_sym: :measurement_precision_description_trial, tag_ndm: '0040A047', tag_ary: [0x0040,0xA047], tag_multiple: false, tag_note: 'RET (2009)'},
|
2414
2531
|
{ tag_ps: '(0040,A050)', tag_name: "Continuity Of Content", tag_key: 'ContinuityOfContent', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A050)', tag_sym: :continuity_of_content, tag_ndm: '0040A050', tag_ary: [0x0040,0xA050], tag_multiple: false, tag_note: ''},
|
2415
|
-
{ tag_ps: '(0040,A057)', tag_name: "Urgency or Priority Alerts (Trial)", tag_key: 'UrgencyOrPriorityAlertsTrial', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0040,A057)', tag_sym: :urgency_or_priority_alerts_trial, tag_ndm: '0040A057', tag_ary: [0x0040,0xA057], tag_multiple: false, tag_note: 'RET'},
|
2416
|
-
{ tag_ps: '(0040,A060)', tag_name: "Sequencing Indicator (Trial)", tag_key: 'SequencingIndicatorTrial', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,A060)', tag_sym: :sequencing_indicator_trial, tag_ndm: '0040A060', tag_ary: [0x0040,0xA060], tag_multiple: false, tag_note: 'RET'},
|
2417
|
-
{ tag_ps: '(0040,A066)', tag_name: "Document Identifier Code Sequence (Trial)", tag_key: 'DocumentIdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A066)', tag_sym: :document_identifier_code_sequence_trial, tag_ndm: '0040A066', tag_ary: [0x0040,0xA066], tag_multiple: false, tag_note: 'RET'},
|
2418
|
-
{ tag_ps: '(0040,A067)', tag_name: "Document Author (Trial)", tag_key: 'DocumentAuthorTrial', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(0040,A067)', tag_sym: :document_author_trial, tag_ndm: '0040A067', tag_ary: [0x0040,0xA067], tag_multiple: false, tag_note: 'RET'},
|
2419
|
-
{ tag_ps: '(0040,A068)', tag_name: "Document Author Identifier Code Sequence (Trial)", tag_key: 'DocumentAuthorIdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A068)', tag_sym: :document_author_identifier_code_sequence_trial, tag_ndm: '0040A068', tag_ary: [0x0040,0xA068], tag_multiple: false, tag_note: 'RET'},
|
2420
|
-
{ tag_ps: '(0040,A070)', tag_name: "Identifier Code Sequence (Trial)", tag_key: 'IdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A070)', tag_sym: :identifier_code_sequence_trial, tag_ndm: '0040A070', tag_ary: [0x0040,0xA070], tag_multiple: false, tag_note: 'RET'},
|
2532
|
+
{ tag_ps: '(0040,A057)', tag_name: "Urgency or Priority Alerts (Trial)", tag_key: 'UrgencyOrPriorityAlertsTrial', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0040,A057)', tag_sym: :urgency_or_priority_alerts_trial, tag_ndm: '0040A057', tag_ary: [0x0040,0xA057], tag_multiple: false, tag_note: 'RET (2009)'},
|
2533
|
+
{ tag_ps: '(0040,A060)', tag_name: "Sequencing Indicator (Trial)", tag_key: 'SequencingIndicatorTrial', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,A060)', tag_sym: :sequencing_indicator_trial, tag_ndm: '0040A060', tag_ary: [0x0040,0xA060], tag_multiple: false, tag_note: 'RET (2009)'},
|
2534
|
+
{ tag_ps: '(0040,A066)', tag_name: "Document Identifier Code Sequence (Trial)", tag_key: 'DocumentIdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A066)', tag_sym: :document_identifier_code_sequence_trial, tag_ndm: '0040A066', tag_ary: [0x0040,0xA066], tag_multiple: false, tag_note: 'RET (2009)'},
|
2535
|
+
{ tag_ps: '(0040,A067)', tag_name: "Document Author (Trial)", tag_key: 'DocumentAuthorTrial', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(0040,A067)', tag_sym: :document_author_trial, tag_ndm: '0040A067', tag_ary: [0x0040,0xA067], tag_multiple: false, tag_note: 'RET (2009)'},
|
2536
|
+
{ tag_ps: '(0040,A068)', tag_name: "Document Author Identifier Code Sequence (Trial)", tag_key: 'DocumentAuthorIdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A068)', tag_sym: :document_author_identifier_code_sequence_trial, tag_ndm: '0040A068', tag_ary: [0x0040,0xA068], tag_multiple: false, tag_note: 'RET (2009)'},
|
2537
|
+
{ tag_ps: '(0040,A070)', tag_name: "Identifier Code Sequence (Trial)", tag_key: 'IdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A070)', tag_sym: :identifier_code_sequence_trial, tag_ndm: '0040A070', tag_ary: [0x0040,0xA070], tag_multiple: false, tag_note: 'RET (2009)'},
|
2421
2538
|
{ tag_ps: '(0040,A073)', tag_name: "Verifying Observer Sequence", tag_key: 'VerifyingObserverSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A073)', tag_sym: :verifying_observer_sequence, tag_ndm: '0040A073', tag_ary: [0x0040,0xA073], tag_multiple: false, tag_note: ''},
|
2422
|
-
{ tag_ps: '(0040,A074)', tag_name: "Object Binary Identifier (Trial)", tag_key: 'ObjectBinaryIdentifierTrial', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0040,A074)', tag_sym: :object_binary_identifier_trial, tag_ndm: '0040A074', tag_ary: [0x0040,0xA074], tag_multiple: false, tag_note: 'RET'},
|
2539
|
+
{ tag_ps: '(0040,A074)', tag_name: "Object Binary Identifier (Trial)", tag_key: 'ObjectBinaryIdentifierTrial', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0040,A074)', tag_sym: :object_binary_identifier_trial, tag_ndm: '0040A074', tag_ary: [0x0040,0xA074], tag_multiple: false, tag_note: 'RET (2009)'},
|
2423
2540
|
{ tag_ps: '(0040,A075)', tag_name: "Verifying Observer Name", tag_key: 'VerifyingObserverName', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(0040,A075)', tag_sym: :verifying_observer_name, tag_ndm: '0040A075', tag_ary: [0x0040,0xA075], tag_multiple: false, tag_note: ''},
|
2424
|
-
{ tag_ps: '(0040,A076)', tag_name: "Documenting Observer Identifier Code Sequence (Trial)", tag_key: 'DocumentingObserverIdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A076)', tag_sym: :documenting_observer_identifier_code_sequence_trial, tag_ndm: '0040A076', tag_ary: [0x0040,0xA076], tag_multiple: false, tag_note: 'RET'},
|
2541
|
+
{ tag_ps: '(0040,A076)', tag_name: "Documenting Observer Identifier Code Sequence (Trial)", tag_key: 'DocumentingObserverIdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A076)', tag_sym: :documenting_observer_identifier_code_sequence_trial, tag_ndm: '0040A076', tag_ary: [0x0040,0xA076], tag_multiple: false, tag_note: 'RET (2009)'},
|
2425
2542
|
{ tag_ps: '(0040,A078)', tag_name: "Author Observer Sequence", tag_key: 'AuthorObserverSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A078)', tag_sym: :author_observer_sequence, tag_ndm: '0040A078', tag_ary: [0x0040,0xA078], tag_multiple: false, tag_note: ''},
|
2426
2543
|
{ tag_ps: '(0040,A07A)', tag_name: "Participant Sequence", tag_key: 'ParticipantSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A07A)', tag_sym: :participant_sequence, tag_ndm: '0040A07A', tag_ary: [0x0040,0xA07A], tag_multiple: false, tag_note: ''},
|
2427
2544
|
{ tag_ps: '(0040,A07C)', tag_name: "Custodial Organization Sequence", tag_key: 'CustodialOrganizationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A07C)', tag_sym: :custodial_organization_sequence, tag_ndm: '0040A07C', tag_ary: [0x0040,0xA07C], tag_multiple: false, tag_note: ''},
|
2428
2545
|
{ tag_ps: '(0040,A080)', tag_name: "Participation Type", tag_key: 'ParticipationType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A080)', tag_sym: :participation_type, tag_ndm: '0040A080', tag_ary: [0x0040,0xA080], tag_multiple: false, tag_note: ''},
|
2429
2546
|
{ tag_ps: '(0040,A082)', tag_name: "Participation DateTime", tag_key: 'ParticipationDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,A082)', tag_sym: :participation_date_time, tag_ndm: '0040A082', tag_ary: [0x0040,0xA082], tag_multiple: false, tag_note: ''},
|
2430
2547
|
{ tag_ps: '(0040,A084)', tag_name: "Observer Type", tag_key: 'ObserverType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A084)', tag_sym: :observer_type, tag_ndm: '0040A084', tag_ary: [0x0040,0xA084], tag_multiple: false, tag_note: ''},
|
2431
|
-
{ tag_ps: '(0040,A085)', tag_name: "Procedure Identifier Code Sequence (Trial)", tag_key: 'ProcedureIdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A085)', tag_sym: :procedure_identifier_code_sequence_trial, tag_ndm: '0040A085', tag_ary: [0x0040,0xA085], tag_multiple: false, tag_note: 'RET'},
|
2548
|
+
{ tag_ps: '(0040,A085)', tag_name: "Procedure Identifier Code Sequence (Trial)", tag_key: 'ProcedureIdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A085)', tag_sym: :procedure_identifier_code_sequence_trial, tag_ndm: '0040A085', tag_ary: [0x0040,0xA085], tag_multiple: false, tag_note: 'RET (2009)'},
|
2432
2549
|
{ tag_ps: '(0040,A088)', tag_name: "Verifying Observer Identification Code Sequence", tag_key: 'VerifyingObserverIdentificationCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A088)', tag_sym: :verifying_observer_identification_code_sequence, tag_ndm: '0040A088', tag_ary: [0x0040,0xA088], tag_multiple: false, tag_note: ''},
|
2433
|
-
{ tag_ps: '(0040,A089)', tag_name: "Object Directory Binary Identifier (Trial)", tag_key: 'ObjectDirectoryBinaryIdentifierTrial', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0040,A089)', tag_sym: :object_directory_binary_identifier_trial, tag_ndm: '0040A089', tag_ary: [0x0040,0xA089], tag_multiple: false, tag_note: 'RET'},
|
2434
|
-
{ tag_ps: '(0040,A090)', tag_name: "Equivalent CDA Document Sequence", tag_key: 'EquivalentCDADocumentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A090)', tag_sym: :equivalent_cda_document_sequence, tag_ndm: '0040A090', tag_ary: [0x0040,0xA090], tag_multiple: false, tag_note: 'RET'},
|
2550
|
+
{ tag_ps: '(0040,A089)', tag_name: "Object Directory Binary Identifier (Trial)", tag_key: 'ObjectDirectoryBinaryIdentifierTrial', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0040,A089)', tag_sym: :object_directory_binary_identifier_trial, tag_ndm: '0040A089', tag_ary: [0x0040,0xA089], tag_multiple: false, tag_note: 'RET (2009)'},
|
2551
|
+
{ tag_ps: '(0040,A090)', tag_name: "Equivalent CDA Document Sequence", tag_key: 'EquivalentCDADocumentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A090)', tag_sym: :equivalent_cda_document_sequence, tag_ndm: '0040A090', tag_ary: [0x0040,0xA090], tag_multiple: false, tag_note: 'RET (2006)'},
|
2435
2552
|
{ tag_ps: '(0040,A0B0)', tag_name: "Referenced Waveform Channels", tag_key: 'ReferencedWaveformChannels', tag_vr: [:US], tag_vm: ["2-2n"], tag_str: '(0040,A0B0)', tag_sym: :referenced_waveform_channels, tag_ndm: '0040A0B0', tag_ary: [0x0040,0xA0B0], tag_multiple: false, tag_note: ''},
|
2436
|
-
{ tag_ps: '(0040,A110)', tag_name: "Date of Document or Verbal Transaction (Trial)", tag_key: 'DateOfDocumentOrVerbalTransactionTrial', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0040,A110)', tag_sym: :date_of_document_or_verbal_transaction_trial, tag_ndm: '0040A110', tag_ary: [0x0040,0xA110], tag_multiple: false, tag_note: 'RET'},
|
2437
|
-
{ tag_ps: '(0040,A112)', tag_name: "Time of Document Creation or Verbal Transaction (Trial)", tag_key: 'TimeOfDocumentCreationOrVerbalTransactionTrial', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0040,A112)', tag_sym: :time_of_document_creation_or_verbal_transaction_trial, tag_ndm: '0040A112', tag_ary: [0x0040,0xA112], tag_multiple: false, tag_note: 'RET'},
|
2553
|
+
{ tag_ps: '(0040,A110)', tag_name: "Date of Document or Verbal Transaction (Trial)", tag_key: 'DateOfDocumentOrVerbalTransactionTrial', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0040,A110)', tag_sym: :date_of_document_or_verbal_transaction_trial, tag_ndm: '0040A110', tag_ary: [0x0040,0xA110], tag_multiple: false, tag_note: 'RET (2009)'},
|
2554
|
+
{ tag_ps: '(0040,A112)', tag_name: "Time of Document Creation or Verbal Transaction (Trial)", tag_key: 'TimeOfDocumentCreationOrVerbalTransactionTrial', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0040,A112)', tag_sym: :time_of_document_creation_or_verbal_transaction_trial, tag_ndm: '0040A112', tag_ary: [0x0040,0xA112], tag_multiple: false, tag_note: 'RET (2009)'},
|
2438
2555
|
{ tag_ps: '(0040,A120)', tag_name: "DateTime", tag_key: 'DateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,A120)', tag_sym: :date_time, tag_ndm: '0040A120', tag_ary: [0x0040,0xA120], tag_multiple: false, tag_note: ''},
|
2439
2556
|
{ tag_ps: '(0040,A121)', tag_name: "Date", tag_key: 'Date', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0040,A121)', tag_sym: :date, tag_ndm: '0040A121', tag_ary: [0x0040,0xA121], tag_multiple: false, tag_note: ''},
|
2440
2557
|
{ tag_ps: '(0040,A122)', tag_name: "Time", tag_key: 'Time', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0040,A122)', tag_sym: :time, tag_ndm: '0040A122', tag_ary: [0x0040,0xA122], tag_multiple: false, tag_note: ''},
|
2441
2558
|
{ tag_ps: '(0040,A123)', tag_name: "Person Name", tag_key: 'PersonName', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(0040,A123)', tag_sym: :person_name, tag_ndm: '0040A123', tag_ary: [0x0040,0xA123], tag_multiple: false, tag_note: ''},
|
2442
2559
|
{ tag_ps: '(0040,A124)', tag_name: "UID", tag_key: 'UID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,A124)', tag_sym: :uid, tag_ndm: '0040A124', tag_ary: [0x0040,0xA124], tag_multiple: false, tag_note: ''},
|
2443
|
-
{ tag_ps: '(0040,A125)', tag_name: "Report Status ID (Trial)", tag_key: 'ReportStatusIDTrial', tag_vr: [:CS], tag_vm: ["2"], tag_str: '(0040,A125)', tag_sym: :report_status_id_trial, tag_ndm: '0040A125', tag_ary: [0x0040,0xA125], tag_multiple: false, tag_note: 'RET'},
|
2560
|
+
{ tag_ps: '(0040,A125)', tag_name: "Report Status ID (Trial)", tag_key: 'ReportStatusIDTrial', tag_vr: [:CS], tag_vm: ["2"], tag_str: '(0040,A125)', tag_sym: :report_status_id_trial, tag_ndm: '0040A125', tag_ary: [0x0040,0xA125], tag_multiple: false, tag_note: 'RET (2009)'},
|
2444
2561
|
{ tag_ps: '(0040,A130)', tag_name: "Temporal Range Type", tag_key: 'TemporalRangeType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A130)', tag_sym: :temporal_range_type, tag_ndm: '0040A130', tag_ary: [0x0040,0xA130], tag_multiple: false, tag_note: ''},
|
2445
2562
|
{ tag_ps: '(0040,A132)', tag_name: "Referenced Sample Positions", tag_key: 'ReferencedSamplePositions', tag_vr: [:UL], tag_vm: ["1-n"], tag_str: '(0040,A132)', tag_sym: :referenced_sample_positions, tag_ndm: '0040A132', tag_ary: [0x0040,0xA132], tag_multiple: false, tag_note: ''},
|
2446
2563
|
{ tag_ps: '(0040,A136)', tag_name: "Referenced Frame Numbers", tag_key: 'ReferencedFrameNumbers', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(0040,A136)', tag_sym: :referenced_frame_numbers, tag_ndm: '0040A136', tag_ary: [0x0040,0xA136], tag_multiple: false, tag_note: ''},
|
@@ -2450,45 +2567,45 @@ HIGH = 0001H'},
|
|
2450
2567
|
{ tag_ps: '(0040,A161)', tag_name: "Floating Point Value", tag_key: 'FloatingPointValue', tag_vr: [:FD], tag_vm: ["1-n"], tag_str: '(0040,A161)', tag_sym: :floating_point_value, tag_ndm: '0040A161', tag_ary: [0x0040,0xA161], tag_multiple: false, tag_note: ''},
|
2451
2568
|
{ tag_ps: '(0040,A162)', tag_name: "Rational Numerator Value", tag_key: 'RationalNumeratorValue', tag_vr: [:SL], tag_vm: ["1-n"], tag_str: '(0040,A162)', tag_sym: :rational_numerator_value, tag_ndm: '0040A162', tag_ary: [0x0040,0xA162], tag_multiple: false, tag_note: ''},
|
2452
2569
|
{ tag_ps: '(0040,A163)', tag_name: "Rational Denominator Value", tag_key: 'RationalDenominatorValue', tag_vr: [:UL], tag_vm: ["1-n"], tag_str: '(0040,A163)', tag_sym: :rational_denominator_value, tag_ndm: '0040A163', tag_ary: [0x0040,0xA163], tag_multiple: false, tag_note: ''},
|
2453
|
-
{ tag_ps: '(0040,A167)', tag_name: "Observation Category Code Sequence (Trial)", tag_key: 'ObservationCategoryCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A167)', tag_sym: :observation_category_code_sequence_trial, tag_ndm: '0040A167', tag_ary: [0x0040,0xA167], tag_multiple: false, tag_note: 'RET'},
|
2570
|
+
{ tag_ps: '(0040,A167)', tag_name: "Observation Category Code Sequence (Trial)", tag_key: 'ObservationCategoryCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A167)', tag_sym: :observation_category_code_sequence_trial, tag_ndm: '0040A167', tag_ary: [0x0040,0xA167], tag_multiple: false, tag_note: 'RET (2009)'},
|
2454
2571
|
{ tag_ps: '(0040,A168)', tag_name: "Concept Code Sequence", tag_key: 'ConceptCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A168)', tag_sym: :concept_code_sequence, tag_ndm: '0040A168', tag_ary: [0x0040,0xA168], tag_multiple: false, tag_note: ''},
|
2455
|
-
{ tag_ps: '(0040,A16A)', tag_name: "Bibliographic Citation (Trial)", tag_key: 'BibliographicCitationTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,A16A)', tag_sym: :bibliographic_citation_trial, tag_ndm: '0040A16A', tag_ary: [0x0040,0xA16A], tag_multiple: false, tag_note: 'RET'},
|
2572
|
+
{ tag_ps: '(0040,A16A)', tag_name: "Bibliographic Citation (Trial)", tag_key: 'BibliographicCitationTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,A16A)', tag_sym: :bibliographic_citation_trial, tag_ndm: '0040A16A', tag_ary: [0x0040,0xA16A], tag_multiple: false, tag_note: 'RET (2009)'},
|
2456
2573
|
{ tag_ps: '(0040,A170)', tag_name: "Purpose of Reference Code Sequence", tag_key: 'PurposeOfReferenceCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A170)', tag_sym: :purpose_of_reference_code_sequence, tag_ndm: '0040A170', tag_ary: [0x0040,0xA170], tag_multiple: false, tag_note: 'See Note'},
|
2457
2574
|
{ tag_ps: '(0040,A171)', tag_name: "Observation UID", tag_key: 'ObservationUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,A171)', tag_sym: :observation_uid, tag_ndm: '0040A171', tag_ary: [0x0040,0xA171], tag_multiple: false, tag_note: ''},
|
2458
|
-
{ tag_ps: '(0040,A172)', tag_name: "Referenced Observation UID (Trial)", tag_key: 'ReferencedObservationUIDTrial', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,A172)', tag_sym: :referenced_observation_uid_trial, tag_ndm: '0040A172', tag_ary: [0x0040,0xA172], tag_multiple: false, tag_note: 'RET'},
|
2459
|
-
{ tag_ps: '(0040,A173)', tag_name: "Referenced Observation Class (Trial)", tag_key: 'ReferencedObservationClassTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A173)', tag_sym: :referenced_observation_class_trial, tag_ndm: '0040A173', tag_ary: [0x0040,0xA173], tag_multiple: false, tag_note: 'RET'},
|
2460
|
-
{ tag_ps: '(0040,A174)', tag_name: "Referenced Object Observation Class (Trial)", tag_key: 'ReferencedObjectObservationClassTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A174)', tag_sym: :referenced_object_observation_class_trial, tag_ndm: '0040A174', tag_ary: [0x0040,0xA174], tag_multiple: false, tag_note: 'RET'},
|
2575
|
+
{ tag_ps: '(0040,A172)', tag_name: "Referenced Observation UID (Trial)", tag_key: 'ReferencedObservationUIDTrial', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,A172)', tag_sym: :referenced_observation_uid_trial, tag_ndm: '0040A172', tag_ary: [0x0040,0xA172], tag_multiple: false, tag_note: 'RET (2009)'},
|
2576
|
+
{ tag_ps: '(0040,A173)', tag_name: "Referenced Observation Class (Trial)", tag_key: 'ReferencedObservationClassTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A173)', tag_sym: :referenced_observation_class_trial, tag_ndm: '0040A173', tag_ary: [0x0040,0xA173], tag_multiple: false, tag_note: 'RET (2009)'},
|
2577
|
+
{ tag_ps: '(0040,A174)', tag_name: "Referenced Object Observation Class (Trial)", tag_key: 'ReferencedObjectObservationClassTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A174)', tag_sym: :referenced_object_observation_class_trial, tag_ndm: '0040A174', tag_ary: [0x0040,0xA174], tag_multiple: false, tag_note: 'RET (2009)'},
|
2461
2578
|
{ tag_ps: '(0040,A180)', tag_name: "Annotation Group Number", tag_key: 'AnnotationGroupNumber', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0040,A180)', tag_sym: :annotation_group_number, tag_ndm: '0040A180', tag_ary: [0x0040,0xA180], tag_multiple: false, tag_note: ''},
|
2462
|
-
{ tag_ps: '(0040,A192)', tag_name: "Observation Date (Trial)", tag_key: 'ObservationDateTrial', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0040,A192)', tag_sym: :observation_date_trial, tag_ndm: '0040A192', tag_ary: [0x0040,0xA192], tag_multiple: false, tag_note: 'RET'},
|
2463
|
-
{ tag_ps: '(0040,A193)', tag_name: "Observation Time (Trial)", tag_key: 'ObservationTimeTrial', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0040,A193)', tag_sym: :observation_time_trial, tag_ndm: '0040A193', tag_ary: [0x0040,0xA193], tag_multiple: false, tag_note: 'RET'},
|
2464
|
-
{ tag_ps: '(0040,A194)', tag_name: "Measurement Automation (Trial)", tag_key: 'MeasurementAutomationTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A194)', tag_sym: :measurement_automation_trial, tag_ndm: '0040A194', tag_ary: [0x0040,0xA194], tag_multiple: false, tag_note: 'RET'},
|
2579
|
+
{ tag_ps: '(0040,A192)', tag_name: "Observation Date (Trial)", tag_key: 'ObservationDateTrial', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0040,A192)', tag_sym: :observation_date_trial, tag_ndm: '0040A192', tag_ary: [0x0040,0xA192], tag_multiple: false, tag_note: 'RET (2009)'},
|
2580
|
+
{ tag_ps: '(0040,A193)', tag_name: "Observation Time (Trial)", tag_key: 'ObservationTimeTrial', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(0040,A193)', tag_sym: :observation_time_trial, tag_ndm: '0040A193', tag_ary: [0x0040,0xA193], tag_multiple: false, tag_note: 'RET (2009)'},
|
2581
|
+
{ tag_ps: '(0040,A194)', tag_name: "Measurement Automation (Trial)", tag_key: 'MeasurementAutomationTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A194)', tag_sym: :measurement_automation_trial, tag_ndm: '0040A194', tag_ary: [0x0040,0xA194], tag_multiple: false, tag_note: 'RET (2009)'},
|
2465
2582
|
{ tag_ps: '(0040,A195)', tag_name: "Modifier Code Sequence", tag_key: 'ModifierCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A195)', tag_sym: :modifier_code_sequence, tag_ndm: '0040A195', tag_ary: [0x0040,0xA195], tag_multiple: false, tag_note: ''},
|
2466
|
-
{ tag_ps: '(0040,A224)', tag_name: "Identification Description (Trial)", tag_key: 'IdentificationDescriptionTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,A224)', tag_sym: :identification_description_trial, tag_ndm: '0040A224', tag_ary: [0x0040,0xA224], tag_multiple: false, tag_note: 'RET'},
|
2467
|
-
{ tag_ps: '(0040,A290)', tag_name: "Coordinates Set Geometric Type (Trial)", tag_key: 'CoordinatesSetGeometricTypeTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A290)', tag_sym: :coordinates_set_geometric_type_trial, tag_ndm: '0040A290', tag_ary: [0x0040,0xA290], tag_multiple: false, tag_note: 'RET'},
|
2468
|
-
{ tag_ps: '(0040,A296)', tag_name: "Algorithm Code Sequence (Trial)", tag_key: 'AlgorithmCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A296)', tag_sym: :algorithm_code_sequence_trial, tag_ndm: '0040A296', tag_ary: [0x0040,0xA296], tag_multiple: false, tag_note: 'RET'},
|
2469
|
-
{ tag_ps: '(0040,A297)', tag_name: "Algorithm Description (Trial)", tag_key: 'AlgorithmDescriptionTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,A297)', tag_sym: :algorithm_description_trial, tag_ndm: '0040A297', tag_ary: [0x0040,0xA297], tag_multiple: false, tag_note: 'RET'},
|
2470
|
-
{ tag_ps: '(0040,A29A)', tag_name: "Pixel Coordinates Set (Trial)", tag_key: 'PixelCoordinatesSetTrial', tag_vr: [:SL], tag_vm: ["2-2n"], tag_str: '(0040,A29A)', tag_sym: :pixel_coordinates_set_trial, tag_ndm: '0040A29A', tag_ary: [0x0040,0xA29A], tag_multiple: false, tag_note: 'RET'},
|
2583
|
+
{ tag_ps: '(0040,A224)', tag_name: "Identification Description (Trial)", tag_key: 'IdentificationDescriptionTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,A224)', tag_sym: :identification_description_trial, tag_ndm: '0040A224', tag_ary: [0x0040,0xA224], tag_multiple: false, tag_note: 'RET (2009)'},
|
2584
|
+
{ tag_ps: '(0040,A290)', tag_name: "Coordinates Set Geometric Type (Trial)", tag_key: 'CoordinatesSetGeometricTypeTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A290)', tag_sym: :coordinates_set_geometric_type_trial, tag_ndm: '0040A290', tag_ary: [0x0040,0xA290], tag_multiple: false, tag_note: 'RET (2009)'},
|
2585
|
+
{ tag_ps: '(0040,A296)', tag_name: "Algorithm Code Sequence (Trial)", tag_key: 'AlgorithmCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A296)', tag_sym: :algorithm_code_sequence_trial, tag_ndm: '0040A296', tag_ary: [0x0040,0xA296], tag_multiple: false, tag_note: 'RET (2009)'},
|
2586
|
+
{ tag_ps: '(0040,A297)', tag_name: "Algorithm Description (Trial)", tag_key: 'AlgorithmDescriptionTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,A297)', tag_sym: :algorithm_description_trial, tag_ndm: '0040A297', tag_ary: [0x0040,0xA297], tag_multiple: false, tag_note: 'RET (2009)'},
|
2587
|
+
{ tag_ps: '(0040,A29A)', tag_name: "Pixel Coordinates Set (Trial)", tag_key: 'PixelCoordinatesSetTrial', tag_vr: [:SL], tag_vm: ["2-2n"], tag_str: '(0040,A29A)', tag_sym: :pixel_coordinates_set_trial, tag_ndm: '0040A29A', tag_ary: [0x0040,0xA29A], tag_multiple: false, tag_note: 'RET (2009)'},
|
2471
2588
|
{ tag_ps: '(0040,A300)', tag_name: "Measured Value Sequence", tag_key: 'MeasuredValueSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A300)', tag_sym: :measured_value_sequence, tag_ndm: '0040A300', tag_ary: [0x0040,0xA300], tag_multiple: false, tag_note: ''},
|
2472
2589
|
{ tag_ps: '(0040,A301)', tag_name: "Numeric Value Qualifier Code Sequence", tag_key: 'NumericValueQualifierCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A301)', tag_sym: :numeric_value_qualifier_code_sequence, tag_ndm: '0040A301', tag_ary: [0x0040,0xA301], tag_multiple: false, tag_note: ''},
|
2473
|
-
{ tag_ps: '(0040,A307)', tag_name: "Current Observer (Trial)", tag_key: 'CurrentObserverTrial', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(0040,A307)', tag_sym: :current_observer_trial, tag_ndm: '0040A307', tag_ary: [0x0040,0xA307], tag_multiple: false, tag_note: 'RET'},
|
2590
|
+
{ tag_ps: '(0040,A307)', tag_name: "Current Observer (Trial)", tag_key: 'CurrentObserverTrial', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(0040,A307)', tag_sym: :current_observer_trial, tag_ndm: '0040A307', tag_ary: [0x0040,0xA307], tag_multiple: false, tag_note: 'RET (2009)'},
|
2474
2591
|
{ tag_ps: '(0040,A30A)', tag_name: "Numeric Value", tag_key: 'NumericValue', tag_vr: [:DS], tag_vm: ["1-n"], tag_str: '(0040,A30A)', tag_sym: :numeric_value, tag_ndm: '0040A30A', tag_ary: [0x0040,0xA30A], tag_multiple: false, tag_note: ''},
|
2475
|
-
{ tag_ps: '(0040,A313)', tag_name: "Referenced Accession Sequence (Trial)", tag_key: 'ReferencedAccessionSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A313)', tag_sym: :referenced_accession_sequence_trial, tag_ndm: '0040A313', tag_ary: [0x0040,0xA313], tag_multiple: false, tag_note: 'RET'},
|
2476
|
-
{ tag_ps: '(0040,A33A)', tag_name: "Report Status Comment (Trial)", tag_key: 'ReportStatusCommentTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,A33A)', tag_sym: :report_status_comment_trial, tag_ndm: '0040A33A', tag_ary: [0x0040,0xA33A], tag_multiple: false, tag_note: 'RET'},
|
2477
|
-
{ tag_ps: '(0040,A340)', tag_name: "Procedure Context Sequence (Trial)", tag_key: 'ProcedureContextSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A340)', tag_sym: :procedure_context_sequence_trial, tag_ndm: '0040A340', tag_ary: [0x0040,0xA340], tag_multiple: false, tag_note: 'RET'},
|
2478
|
-
{ tag_ps: '(0040,A352)', tag_name: "Verbal Source (Trial)", tag_key: 'VerbalSourceTrial', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(0040,A352)', tag_sym: :verbal_source_trial, tag_ndm: '0040A352', tag_ary: [0x0040,0xA352], tag_multiple: false, tag_note: 'RET'},
|
2479
|
-
{ tag_ps: '(0040,A353)', tag_name: "Address (Trial)", tag_key: 'AddressTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,A353)', tag_sym: :address_trial, tag_ndm: '0040A353', tag_ary: [0x0040,0xA353], tag_multiple: false, tag_note: 'RET'},
|
2480
|
-
{ tag_ps: '(0040,A354)', tag_name: "Telephone Number (Trial)", tag_key: 'TelephoneNumberTrial', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,A354)', tag_sym: :telephone_number_trial, tag_ndm: '0040A354', tag_ary: [0x0040,0xA354], tag_multiple: false, tag_note: 'RET'},
|
2481
|
-
{ tag_ps: '(0040,A358)', tag_name: "Verbal Source Identifier Code Sequence (Trial)", tag_key: 'VerbalSourceIdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A358)', tag_sym: :verbal_source_identifier_code_sequence_trial, tag_ndm: '0040A358', tag_ary: [0x0040,0xA358], tag_multiple: false, tag_note: 'RET'},
|
2592
|
+
{ tag_ps: '(0040,A313)', tag_name: "Referenced Accession Sequence (Trial)", tag_key: 'ReferencedAccessionSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A313)', tag_sym: :referenced_accession_sequence_trial, tag_ndm: '0040A313', tag_ary: [0x0040,0xA313], tag_multiple: false, tag_note: 'RET (2009)'},
|
2593
|
+
{ tag_ps: '(0040,A33A)', tag_name: "Report Status Comment (Trial)", tag_key: 'ReportStatusCommentTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,A33A)', tag_sym: :report_status_comment_trial, tag_ndm: '0040A33A', tag_ary: [0x0040,0xA33A], tag_multiple: false, tag_note: 'RET (2009)'},
|
2594
|
+
{ tag_ps: '(0040,A340)', tag_name: "Procedure Context Sequence (Trial)", tag_key: 'ProcedureContextSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A340)', tag_sym: :procedure_context_sequence_trial, tag_ndm: '0040A340', tag_ary: [0x0040,0xA340], tag_multiple: false, tag_note: 'RET (2009)'},
|
2595
|
+
{ tag_ps: '(0040,A352)', tag_name: "Verbal Source (Trial)", tag_key: 'VerbalSourceTrial', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(0040,A352)', tag_sym: :verbal_source_trial, tag_ndm: '0040A352', tag_ary: [0x0040,0xA352], tag_multiple: false, tag_note: 'RET (2009)'},
|
2596
|
+
{ tag_ps: '(0040,A353)', tag_name: "Address (Trial)", tag_key: 'AddressTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,A353)', tag_sym: :address_trial, tag_ndm: '0040A353', tag_ary: [0x0040,0xA353], tag_multiple: false, tag_note: 'RET (2009)'},
|
2597
|
+
{ tag_ps: '(0040,A354)', tag_name: "Telephone Number (Trial)", tag_key: 'TelephoneNumberTrial', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,A354)', tag_sym: :telephone_number_trial, tag_ndm: '0040A354', tag_ary: [0x0040,0xA354], tag_multiple: false, tag_note: 'RET (2009)'},
|
2598
|
+
{ tag_ps: '(0040,A358)', tag_name: "Verbal Source Identifier Code Sequence (Trial)", tag_key: 'VerbalSourceIdentifierCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A358)', tag_sym: :verbal_source_identifier_code_sequence_trial, tag_ndm: '0040A358', tag_ary: [0x0040,0xA358], tag_multiple: false, tag_note: 'RET (2009)'},
|
2482
2599
|
{ tag_ps: '(0040,A360)', tag_name: "Predecessor Documents Sequence", tag_key: 'PredecessorDocumentsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A360)', tag_sym: :predecessor_documents_sequence, tag_ndm: '0040A360', tag_ary: [0x0040,0xA360], tag_multiple: false, tag_note: ''},
|
2483
2600
|
{ tag_ps: '(0040,A370)', tag_name: "Referenced Request Sequence", tag_key: 'ReferencedRequestSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A370)', tag_sym: :referenced_request_sequence, tag_ndm: '0040A370', tag_ary: [0x0040,0xA370], tag_multiple: false, tag_note: ''},
|
2484
2601
|
{ tag_ps: '(0040,A372)', tag_name: "Performed Procedure Code Sequence", tag_key: 'PerformedProcedureCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A372)', tag_sym: :performed_procedure_code_sequence, tag_ndm: '0040A372', tag_ary: [0x0040,0xA372], tag_multiple: false, tag_note: ''},
|
2485
2602
|
{ tag_ps: '(0040,A375)', tag_name: "Current Requested Procedure Evidence Sequence", tag_key: 'CurrentRequestedProcedureEvidenceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A375)', tag_sym: :current_requested_procedure_evidence_sequence, tag_ndm: '0040A375', tag_ary: [0x0040,0xA375], tag_multiple: false, tag_note: ''},
|
2486
|
-
{ tag_ps: '(0040,A380)', tag_name: "Report Detail Sequence (Trial)", tag_key: 'ReportDetailSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A380)', tag_sym: :report_detail_sequence_trial, tag_ndm: '0040A380', tag_ary: [0x0040,0xA380], tag_multiple: false, tag_note: 'RET'},
|
2603
|
+
{ tag_ps: '(0040,A380)', tag_name: "Report Detail Sequence (Trial)", tag_key: 'ReportDetailSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A380)', tag_sym: :report_detail_sequence_trial, tag_ndm: '0040A380', tag_ary: [0x0040,0xA380], tag_multiple: false, tag_note: 'RET (2009)'},
|
2487
2604
|
{ tag_ps: '(0040,A385)', tag_name: "Pertinent Other Evidence Sequence", tag_key: 'PertinentOtherEvidenceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A385)', tag_sym: :pertinent_other_evidence_sequence, tag_ndm: '0040A385', tag_ary: [0x0040,0xA385], tag_multiple: false, tag_note: ''},
|
2488
2605
|
{ tag_ps: '(0040,A390)', tag_name: "HL7 Structured Document Reference Sequence", tag_key: 'HL7StructuredDocumentReferenceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A390)', tag_sym: :hl7_structured_document_reference_sequence, tag_ndm: '0040A390', tag_ary: [0x0040,0xA390], tag_multiple: false, tag_note: ''},
|
2489
|
-
{ tag_ps: '(0040,A402)', tag_name: "Observation Subject UID (Trial)", tag_key: 'ObservationSubjectUIDTrial', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,A402)', tag_sym: :observation_subject_uid_trial, tag_ndm: '0040A402', tag_ary: [0x0040,0xA402], tag_multiple: false, tag_note: 'RET'},
|
2490
|
-
{ tag_ps: '(0040,A403)', tag_name: "Observation Subject Class (Trial)", tag_key: 'ObservationSubjectClassTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A403)', tag_sym: :observation_subject_class_trial, tag_ndm: '0040A403', tag_ary: [0x0040,0xA403], tag_multiple: false, tag_note: 'RET'},
|
2491
|
-
{ tag_ps: '(0040,A404)', tag_name: "Observation Subject Type Code Sequence (Trial)", tag_key: 'ObservationSubjectTypeCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A404)', tag_sym: :observation_subject_type_code_sequence_trial, tag_ndm: '0040A404', tag_ary: [0x0040,0xA404], tag_multiple: false, tag_note: 'RET'},
|
2606
|
+
{ tag_ps: '(0040,A402)', tag_name: "Observation Subject UID (Trial)", tag_key: 'ObservationSubjectUIDTrial', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,A402)', tag_sym: :observation_subject_uid_trial, tag_ndm: '0040A402', tag_ary: [0x0040,0xA402], tag_multiple: false, tag_note: 'RET (2009)'},
|
2607
|
+
{ tag_ps: '(0040,A403)', tag_name: "Observation Subject Class (Trial)", tag_key: 'ObservationSubjectClassTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A403)', tag_sym: :observation_subject_class_trial, tag_ndm: '0040A403', tag_ary: [0x0040,0xA403], tag_multiple: false, tag_note: 'RET (2009)'},
|
2608
|
+
{ tag_ps: '(0040,A404)', tag_name: "Observation Subject Type Code Sequence (Trial)", tag_key: 'ObservationSubjectTypeCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A404)', tag_sym: :observation_subject_type_code_sequence_trial, tag_ndm: '0040A404', tag_ary: [0x0040,0xA404], tag_multiple: false, tag_note: 'RET (2009)'},
|
2492
2609
|
{ tag_ps: '(0040,A491)', tag_name: "Completion Flag", tag_key: 'CompletionFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A491)', tag_sym: :completion_flag, tag_ndm: '0040A491', tag_ary: [0x0040,0xA491], tag_multiple: false, tag_note: ''},
|
2493
2610
|
{ tag_ps: '(0040,A492)', tag_name: "Completion Flag Description", tag_key: 'CompletionFlagDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,A492)', tag_sym: :completion_flag_description, tag_ndm: '0040A492', tag_ary: [0x0040,0xA492], tag_multiple: false, tag_note: ''},
|
2494
2611
|
{ tag_ps: '(0040,A493)', tag_name: "Verification Flag", tag_key: 'VerificationFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A493)', tag_sym: :verification_flag, tag_ndm: '0040A493', tag_ary: [0x0040,0xA493], tag_multiple: false, tag_note: ''},
|
@@ -2496,21 +2613,21 @@ HIGH = 0001H'},
|
|
2496
2613
|
{ tag_ps: '(0040,A496)', tag_name: "Preliminary Flag", tag_key: 'PreliminaryFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A496)', tag_sym: :preliminary_flag, tag_ndm: '0040A496', tag_ary: [0x0040,0xA496], tag_multiple: false, tag_note: ''},
|
2497
2614
|
{ tag_ps: '(0040,A504)', tag_name: "Content Template Sequence", tag_key: 'ContentTemplateSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A504)', tag_sym: :content_template_sequence, tag_ndm: '0040A504', tag_ary: [0x0040,0xA504], tag_multiple: false, tag_note: ''},
|
2498
2615
|
{ tag_ps: '(0040,A525)', tag_name: "Identical Documents Sequence", tag_key: 'IdenticalDocumentsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A525)', tag_sym: :identical_documents_sequence, tag_ndm: '0040A525', tag_ary: [0x0040,0xA525], tag_multiple: false, tag_note: ''},
|
2499
|
-
{ tag_ps: '(0040,A600)', tag_name: "Observation Subject Context Flag (Trial)", tag_key: 'ObservationSubjectContextFlagTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A600)', tag_sym: :observation_subject_context_flag_trial, tag_ndm: '0040A600', tag_ary: [0x0040,0xA600], tag_multiple: false, tag_note: 'RET'},
|
2500
|
-
{ tag_ps: '(0040,A601)', tag_name: "Observer Context Flag (Trial)", tag_key: 'ObserverContextFlagTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A601)', tag_sym: :observer_context_flag_trial, tag_ndm: '0040A601', tag_ary: [0x0040,0xA601], tag_multiple: false, tag_note: 'RET'},
|
2501
|
-
{ tag_ps: '(0040,A603)', tag_name: "Procedure Context Flag (Trial)", tag_key: 'ProcedureContextFlagTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A603)', tag_sym: :procedure_context_flag_trial, tag_ndm: '0040A603', tag_ary: [0x0040,0xA603], tag_multiple: false, tag_note: 'RET'},
|
2616
|
+
{ tag_ps: '(0040,A600)', tag_name: "Observation Subject Context Flag (Trial)", tag_key: 'ObservationSubjectContextFlagTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A600)', tag_sym: :observation_subject_context_flag_trial, tag_ndm: '0040A600', tag_ary: [0x0040,0xA600], tag_multiple: false, tag_note: 'RET (2009)'},
|
2617
|
+
{ tag_ps: '(0040,A601)', tag_name: "Observer Context Flag (Trial)", tag_key: 'ObserverContextFlagTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A601)', tag_sym: :observer_context_flag_trial, tag_ndm: '0040A601', tag_ary: [0x0040,0xA601], tag_multiple: false, tag_note: 'RET (2009)'},
|
2618
|
+
{ tag_ps: '(0040,A603)', tag_name: "Procedure Context Flag (Trial)", tag_key: 'ProcedureContextFlagTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,A603)', tag_sym: :procedure_context_flag_trial, tag_ndm: '0040A603', tag_ary: [0x0040,0xA603], tag_multiple: false, tag_note: 'RET (2009)'},
|
2502
2619
|
{ tag_ps: '(0040,A730)', tag_name: "Content Sequence", tag_key: 'ContentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A730)', tag_sym: :content_sequence, tag_ndm: '0040A730', tag_ary: [0x0040,0xA730], tag_multiple: false, tag_note: ''},
|
2503
|
-
{ tag_ps: '(0040,A731)', tag_name: "Relationship Sequence (Trial)", tag_key: 'RelationshipSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A731)', tag_sym: :relationship_sequence_trial, tag_ndm: '0040A731', tag_ary: [0x0040,0xA731], tag_multiple: false, tag_note: 'RET'},
|
2504
|
-
{ tag_ps: '(0040,A732)', tag_name: "Relationship Type Code Sequence (Trial)", tag_key: 'RelationshipTypeCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A732)', tag_sym: :relationship_type_code_sequence_trial, tag_ndm: '0040A732', tag_ary: [0x0040,0xA732], tag_multiple: false, tag_note: 'RET'},
|
2505
|
-
{ tag_ps: '(0040,A744)', tag_name: "Language Code Sequence (Trial)", tag_key: 'LanguageCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A744)', tag_sym: :language_code_sequence_trial, tag_ndm: '0040A744', tag_ary: [0x0040,0xA744], tag_multiple: false, tag_note: 'RET'},
|
2506
|
-
{ tag_ps: '(0040,A992)', tag_name: "Uniform Resource Locator (Trial)", tag_key: 'UniformResourceLocatorTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,A992)', tag_sym: :uniform_resource_locator_trial, tag_ndm: '0040A992', tag_ary: [0x0040,0xA992], tag_multiple: false, tag_note: 'RET'},
|
2620
|
+
{ tag_ps: '(0040,A731)', tag_name: "Relationship Sequence (Trial)", tag_key: 'RelationshipSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A731)', tag_sym: :relationship_sequence_trial, tag_ndm: '0040A731', tag_ary: [0x0040,0xA731], tag_multiple: false, tag_note: 'RET (2009)'},
|
2621
|
+
{ tag_ps: '(0040,A732)', tag_name: "Relationship Type Code Sequence (Trial)", tag_key: 'RelationshipTypeCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A732)', tag_sym: :relationship_type_code_sequence_trial, tag_ndm: '0040A732', tag_ary: [0x0040,0xA732], tag_multiple: false, tag_note: 'RET (2009)'},
|
2622
|
+
{ tag_ps: '(0040,A744)', tag_name: "Language Code Sequence (Trial)", tag_key: 'LanguageCodeSequenceTrial', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A744)', tag_sym: :language_code_sequence_trial, tag_ndm: '0040A744', tag_ary: [0x0040,0xA744], tag_multiple: false, tag_note: 'RET (2009)'},
|
2623
|
+
{ tag_ps: '(0040,A992)', tag_name: "Uniform Resource Locator (Trial)", tag_key: 'UniformResourceLocatorTrial', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,A992)', tag_sym: :uniform_resource_locator_trial, tag_ndm: '0040A992', tag_ary: [0x0040,0xA992], tag_multiple: false, tag_note: 'RET (2009)'},
|
2507
2624
|
{ tag_ps: '(0040,B020)', tag_name: "Waveform Annotation Sequence", tag_key: 'WaveformAnnotationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,B020)', tag_sym: :waveform_annotation_sequence, tag_ndm: '0040B020', tag_ary: [0x0040,0xB020], tag_multiple: false, tag_note: ''},
|
2508
2625
|
{ tag_ps: '(0040,DB00)', tag_name: "Template Identifier", tag_key: 'TemplateIdentifier', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,DB00)', tag_sym: :template_identifier, tag_ndm: '0040DB00', tag_ary: [0x0040,0xDB00], tag_multiple: false, tag_note: ''},
|
2509
|
-
{ tag_ps: '(0040,DB06)', tag_name: "Template Version", tag_key: 'TemplateVersion', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,DB06)', tag_sym: :template_version, tag_ndm: '0040DB06', tag_ary: [0x0040,0xDB06], tag_multiple: false, tag_note: 'RET'},
|
2510
|
-
{ tag_ps: '(0040,DB07)', tag_name: "Template Local Version", tag_key: 'TemplateLocalVersion', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,DB07)', tag_sym: :template_local_version, tag_ndm: '0040DB07', tag_ary: [0x0040,0xDB07], tag_multiple: false, tag_note: 'RET'},
|
2511
|
-
{ tag_ps: '(0040,DB0B)', tag_name: "Template Extension Flag", tag_key: 'TemplateExtensionFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,DB0B)', tag_sym: :template_extension_flag, tag_ndm: '0040DB0B', tag_ary: [0x0040,0xDB0B], tag_multiple: false, tag_note: 'RET'},
|
2512
|
-
{ tag_ps: '(0040,DB0C)', tag_name: "Template Extension Organization UID", tag_key: 'TemplateExtensionOrganizationUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,DB0C)', tag_sym: :template_extension_organization_uid, tag_ndm: '0040DB0C', tag_ary: [0x0040,0xDB0C], tag_multiple: false, tag_note: 'RET'},
|
2513
|
-
{ tag_ps: '(0040,DB0D)', tag_name: "Template Extension Creator UID", tag_key: 'TemplateExtensionCreatorUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,DB0D)', tag_sym: :template_extension_creator_uid, tag_ndm: '0040DB0D', tag_ary: [0x0040,0xDB0D], tag_multiple: false, tag_note: 'RET'},
|
2626
|
+
{ tag_ps: '(0040,DB06)', tag_name: "Template Version", tag_key: 'TemplateVersion', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,DB06)', tag_sym: :template_version, tag_ndm: '0040DB06', tag_ary: [0x0040,0xDB06], tag_multiple: false, tag_note: 'RET (2001)'},
|
2627
|
+
{ tag_ps: '(0040,DB07)', tag_name: "Template Local Version", tag_key: 'TemplateLocalVersion', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,DB07)', tag_sym: :template_local_version, tag_ndm: '0040DB07', tag_ary: [0x0040,0xDB07], tag_multiple: false, tag_note: 'RET (2001)'},
|
2628
|
+
{ tag_ps: '(0040,DB0B)', tag_name: "Template Extension Flag", tag_key: 'TemplateExtensionFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0040,DB0B)', tag_sym: :template_extension_flag, tag_ndm: '0040DB0B', tag_ary: [0x0040,0xDB0B], tag_multiple: false, tag_note: 'RET (2001)'},
|
2629
|
+
{ tag_ps: '(0040,DB0C)', tag_name: "Template Extension Organization UID", tag_key: 'TemplateExtensionOrganizationUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,DB0C)', tag_sym: :template_extension_organization_uid, tag_ndm: '0040DB0C', tag_ary: [0x0040,0xDB0C], tag_multiple: false, tag_note: 'RET (2001)'},
|
2630
|
+
{ tag_ps: '(0040,DB0D)', tag_name: "Template Extension Creator UID", tag_key: 'TemplateExtensionCreatorUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0040,DB0D)', tag_sym: :template_extension_creator_uid, tag_ndm: '0040DB0D', tag_ary: [0x0040,0xDB0D], tag_multiple: false, tag_note: 'RET (2001)'},
|
2514
2631
|
{ tag_ps: '(0040,DB73)', tag_name: "Referenced Content Item Identifier", tag_key: 'ReferencedContentItemIdentifier', tag_vr: [:UL], tag_vm: ["1-n"], tag_str: '(0040,DB73)', tag_sym: :referenced_content_item_identifier, tag_ndm: '0040DB73', tag_ary: [0x0040,0xDB73], tag_multiple: false, tag_note: ''},
|
2515
2632
|
{ tag_ps: '(0040,E001)', tag_name: "HL7 Instance Identifier", tag_key: 'HL7InstanceIdentifier', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0040,E001)', tag_sym: :hl7_instance_identifier, tag_ndm: '0040E001', tag_ary: [0x0040,0xE001], tag_multiple: false, tag_note: ''},
|
2516
2633
|
{ tag_ps: '(0040,E004)', tag_name: "HL7 Document Effective Time", tag_key: 'HL7DocumentEffectiveTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,E004)', tag_sym: :hl7_document_effective_time, tag_ndm: '0040E004', tag_ary: [0x0040,0xE004], tag_multiple: false, tag_note: ''},
|
@@ -2595,6 +2712,15 @@ HIGH = 0001H'},
|
|
2595
2712
|
{ tag_ps: '(0046,0102)', tag_name: "Add Other Sequence", tag_key: 'AddOtherSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0046,0102)', tag_sym: :add_other_sequence, tag_ndm: '00460102', tag_ary: [0x0046,0x0102], tag_multiple: false, tag_note: ''},
|
2596
2713
|
{ tag_ps: '(0046,0104)', tag_name: "Add Power", tag_key: 'AddPower', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0046,0104)', tag_sym: :add_power, tag_ndm: '00460104', tag_ary: [0x0046,0x0104], tag_multiple: false, tag_note: ''},
|
2597
2714
|
{ tag_ps: '(0046,0106)', tag_name: "Viewing Distance", tag_key: 'ViewingDistance', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0046,0106)', tag_sym: :viewing_distance, tag_ndm: '00460106', tag_ary: [0x0046,0x0106], tag_multiple: false, tag_note: ''},
|
2715
|
+
{ tag_ps: '(0046,0110)', tag_name: "Cornea Measurements Sequence", tag_key: 'CorneaMeasurementsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0046,0110)', tag_sym: :cornea_measurements_sequence, tag_ndm: '00460110', tag_ary: [0x0046,0x0110], tag_multiple: false, tag_note: ''},
|
2716
|
+
{ tag_ps: '(0046,0111)', tag_name: "Source of Cornea Measurement Data Code Sequence", tag_key: 'SourceOfCorneaMeasurementDataCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0046,0111)', tag_sym: :source_of_cornea_measurement_data_code_sequence, tag_ndm: '00460111', tag_ary: [0x0046,0x0111], tag_multiple: false, tag_note: ''},
|
2717
|
+
{ tag_ps: '(0046,0112)', tag_name: "Steep Corneal Axis Sequence", tag_key: 'SteepCornealAxisSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0046,0112)', tag_sym: :steep_corneal_axis_sequence, tag_ndm: '00460112', tag_ary: [0x0046,0x0112], tag_multiple: false, tag_note: ''},
|
2718
|
+
{ tag_ps: '(0046,0113)', tag_name: "Flat Corneal Axis Sequence", tag_key: 'FlatCornealAxisSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0046,0113)', tag_sym: :flat_corneal_axis_sequence, tag_ndm: '00460113', tag_ary: [0x0046,0x0113], tag_multiple: false, tag_note: ''},
|
2719
|
+
{ tag_ps: '(0046,0114)', tag_name: "Corneal Power", tag_key: 'CornealPower', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0046,0114)', tag_sym: :corneal_power, tag_ndm: '00460114', tag_ary: [0x0046,0x0114], tag_multiple: false, tag_note: ''},
|
2720
|
+
{ tag_ps: '(0046,0115)', tag_name: "Corneal Axis", tag_key: 'CornealAxis', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0046,0115)', tag_sym: :corneal_axis, tag_ndm: '00460115', tag_ary: [0x0046,0x0115], tag_multiple: false, tag_note: ''},
|
2721
|
+
{ tag_ps: '(0046,0116)', tag_name: "Cornea Measurement Method Code Sequence", tag_key: 'CorneaMeasurementMethodCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0046,0116)', tag_sym: :cornea_measurement_method_code_sequence, tag_ndm: '00460116', tag_ary: [0x0046,0x0116], tag_multiple: false, tag_note: ''},
|
2722
|
+
{ tag_ps: '(0046,0117)', tag_name: "Refractive Index of Cornea", tag_key: 'RefractiveIndexOfCornea', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0046,0117)', tag_sym: :refractive_index_of_cornea, tag_ndm: '00460117', tag_ary: [0x0046,0x0117], tag_multiple: false, tag_note: ''},
|
2723
|
+
{ tag_ps: '(0046,0118)', tag_name: "Refractive Index of Aqueous Humor", tag_key: 'RefractiveIndexOfAqueousHumor', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0046,0118)', tag_sym: :refractive_index_of_aqueous_humor, tag_ndm: '00460118', tag_ary: [0x0046,0x0118], tag_multiple: false, tag_note: ''},
|
2598
2724
|
{ tag_ps: '(0046,0121)', tag_name: "Visual Acuity Type Code Sequence", tag_key: 'VisualAcuityTypeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0046,0121)', tag_sym: :visual_acuity_type_code_sequence, tag_ndm: '00460121', tag_ary: [0x0046,0x0121], tag_multiple: false, tag_note: ''},
|
2599
2725
|
{ tag_ps: '(0046,0122)', tag_name: "Visual Acuity Right Eye Sequence", tag_key: 'VisualAcuityRightEyeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0046,0122)', tag_sym: :visual_acuity_right_eye_sequence, tag_ndm: '00460122', tag_ary: [0x0046,0x0122], tag_multiple: false, tag_note: ''},
|
2600
2726
|
{ tag_ps: '(0046,0123)', tag_name: "Visual Acuity Left Eye Sequence", tag_key: 'VisualAcuityLeftEyeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0046,0123)', tag_sym: :visual_acuity_left_eye_sequence, tag_ndm: '00460123', tag_ary: [0x0046,0x0123], tag_multiple: false, tag_note: ''},
|
@@ -2791,8 +2917,8 @@ HIGH = 0001H'},
|
|
2791
2917
|
{ tag_ps: '(0054,1323)', tag_name: "Scatter Fraction Factor", tag_key: 'ScatterFractionFactor', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0054,1323)', tag_sym: :scatter_fraction_factor, tag_ndm: '00541323', tag_ary: [0x0054,0x1323], tag_multiple: false, tag_note: ''},
|
2792
2918
|
{ tag_ps: '(0054,1324)', tag_name: "Dead Time Factor", tag_key: 'DeadTimeFactor', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0054,1324)', tag_sym: :dead_time_factor, tag_ndm: '00541324', tag_ary: [0x0054,0x1324], tag_multiple: false, tag_note: ''},
|
2793
2919
|
{ tag_ps: '(0054,1330)', tag_name: "Image Index", tag_key: 'ImageIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0054,1330)', tag_sym: :image_index, tag_ndm: '00541330', tag_ary: [0x0054,0x1330], tag_multiple: false, tag_note: ''},
|
2794
|
-
{ tag_ps: '(0054,1400)', tag_name: "Counts Included", tag_key: 'CountsIncluded', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0054,1400)', tag_sym: :counts_included, tag_ndm: '00541400', tag_ary: [0x0054,0x1400], tag_multiple: false, tag_note: 'RET'},
|
2795
|
-
{ tag_ps: '(0054,1401)', tag_name: "Dead Time Correction Flag", tag_key: 'DeadTimeCorrectionFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0054,1401)', tag_sym: :dead_time_correction_flag, tag_ndm: '00541401', tag_ary: [0x0054,0x1401], tag_multiple: false, tag_note: 'RET'},
|
2920
|
+
{ tag_ps: '(0054,1400)', tag_name: "Counts Included", tag_key: 'CountsIncluded', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0054,1400)', tag_sym: :counts_included, tag_ndm: '00541400', tag_ary: [0x0054,0x1400], tag_multiple: false, tag_note: 'RET (2007)'},
|
2921
|
+
{ tag_ps: '(0054,1401)', tag_name: "Dead Time Correction Flag", tag_key: 'DeadTimeCorrectionFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0054,1401)', tag_sym: :dead_time_correction_flag, tag_ndm: '00541401', tag_ary: [0x0054,0x1401], tag_multiple: false, tag_note: 'RET (2007)'},
|
2796
2922
|
{ tag_ps: '(0060,3000)', tag_name: "Histogram Sequence", tag_key: 'HistogramSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0060,3000)', tag_sym: :histogram_sequence, tag_ndm: '00603000', tag_ary: [0x0060,0x3000], tag_multiple: false, tag_note: ''},
|
2797
2923
|
{ tag_ps: '(0060,3002)', tag_name: "Histogram Number of Bins", tag_key: 'HistogramNumberOfBins', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0060,3002)', tag_sym: :histogram_number_of_bins, tag_ndm: '00603002', tag_ary: [0x0060,0x3002], tag_multiple: false, tag_note: ''},
|
2798
2924
|
{ tag_ps: '(0060,3004)', tag_name: "Histogram First Bin Value", tag_key: 'HistogramFirstBinValue', tag_vr: [:US, :SS], tag_vm: ["1"], tag_str: '(0060,3004)', tag_sym: :histogram_first_bin_value, tag_ndm: '00603004', tag_ary: [0x0060,0x3004], tag_multiple: false, tag_note: ''},
|
@@ -2855,13 +2981,13 @@ HIGH = 0001H'},
|
|
2855
2981
|
{ tag_ps: '(0066,001F)', tag_name: "Vector Dimensionality", tag_key: 'VectorDimensionality', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0066,001F)', tag_sym: :vector_dimensionality, tag_ndm: '0066001F', tag_ary: [0x0066,0x001F], tag_multiple: false, tag_note: ''},
|
2856
2982
|
{ tag_ps: '(0066,0020)', tag_name: "Vector Accuracy", tag_key: 'VectorAccuracy', tag_vr: [:FL], tag_vm: ["1-n"], tag_str: '(0066,0020)', tag_sym: :vector_accuracy, tag_ndm: '00660020', tag_ary: [0x0066,0x0020], tag_multiple: false, tag_note: ''},
|
2857
2983
|
{ tag_ps: '(0066,0021)', tag_name: "Vector Coordinate Data", tag_key: 'VectorCoordinateData', tag_vr: [:OF], tag_vm: ["1"], tag_str: '(0066,0021)', tag_sym: :vector_coordinate_data, tag_ndm: '00660021', tag_ary: [0x0066,0x0021], tag_multiple: false, tag_note: ''},
|
2858
|
-
{ tag_ps: '(0066,0023)', tag_name: "Triangle Point Index List", tag_key: 'TrianglePointIndexList', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0066,0023)', tag_sym: :triangle_point_index_list, tag_ndm: '00660023', tag_ary: [0x0066,0x0023], tag_multiple: false, tag_note: 'RET'},
|
2859
|
-
{ tag_ps: '(0066,0024)', tag_name: "Edge Point Index List", tag_key: 'EdgePointIndexList', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0066,0024)', tag_sym: :edge_point_index_list, tag_ndm: '00660024', tag_ary: [0x0066,0x0024], tag_multiple: false, tag_note: 'RET'},
|
2860
|
-
{ tag_ps: '(0066,0025)', tag_name: "Vertex Point Index List", tag_key: 'VertexPointIndexList', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0066,0025)', tag_sym: :vertex_point_index_list, tag_ndm: '00660025', tag_ary: [0x0066,0x0025], tag_multiple: false, tag_note: 'RET'},
|
2984
|
+
{ tag_ps: '(0066,0023)', tag_name: "Triangle Point Index List", tag_key: 'TrianglePointIndexList', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0066,0023)', tag_sym: :triangle_point_index_list, tag_ndm: '00660023', tag_ary: [0x0066,0x0023], tag_multiple: false, tag_note: 'RET (2015c)'},
|
2985
|
+
{ tag_ps: '(0066,0024)', tag_name: "Edge Point Index List", tag_key: 'EdgePointIndexList', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0066,0024)', tag_sym: :edge_point_index_list, tag_ndm: '00660024', tag_ary: [0x0066,0x0024], tag_multiple: false, tag_note: 'RET (2015c)'},
|
2986
|
+
{ tag_ps: '(0066,0025)', tag_name: "Vertex Point Index List", tag_key: 'VertexPointIndexList', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0066,0025)', tag_sym: :vertex_point_index_list, tag_ndm: '00660025', tag_ary: [0x0066,0x0025], tag_multiple: false, tag_note: 'RET (2015c)'},
|
2861
2987
|
{ tag_ps: '(0066,0026)', tag_name: "Triangle Strip Sequence", tag_key: 'TriangleStripSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0066,0026)', tag_sym: :triangle_strip_sequence, tag_ndm: '00660026', tag_ary: [0x0066,0x0026], tag_multiple: false, tag_note: ''},
|
2862
2988
|
{ tag_ps: '(0066,0027)', tag_name: "Triangle Fan Sequence", tag_key: 'TriangleFanSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0066,0027)', tag_sym: :triangle_fan_sequence, tag_ndm: '00660027', tag_ary: [0x0066,0x0027], tag_multiple: false, tag_note: ''},
|
2863
2989
|
{ tag_ps: '(0066,0028)', tag_name: "Line Sequence", tag_key: 'LineSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0066,0028)', tag_sym: :line_sequence, tag_ndm: '00660028', tag_ary: [0x0066,0x0028], tag_multiple: false, tag_note: ''},
|
2864
|
-
{ tag_ps: '(0066,0029)', tag_name: "Primitive Point Index List", tag_key: 'PrimitivePointIndexList', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0066,0029)', tag_sym: :primitive_point_index_list, tag_ndm: '00660029', tag_ary: [0x0066,0x0029], tag_multiple: false, tag_note: 'RET'},
|
2990
|
+
{ tag_ps: '(0066,0029)', tag_name: "Primitive Point Index List", tag_key: 'PrimitivePointIndexList', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(0066,0029)', tag_sym: :primitive_point_index_list, tag_ndm: '00660029', tag_ary: [0x0066,0x0029], tag_multiple: false, tag_note: 'RET (2015c)'},
|
2865
2991
|
{ tag_ps: '(0066,002A)', tag_name: "Surface Count", tag_key: 'SurfaceCount', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0066,002A)', tag_sym: :surface_count, tag_ndm: '0066002A', tag_ary: [0x0066,0x002A], tag_multiple: false, tag_note: ''},
|
2866
2992
|
{ tag_ps: '(0066,002B)', tag_name: "Referenced Surface Sequence", tag_key: 'ReferencedSurfaceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0066,002B)', tag_sym: :referenced_surface_sequence, tag_ndm: '0066002B', tag_ary: [0x0066,0x002B], tag_multiple: false, tag_note: ''},
|
2867
2993
|
{ tag_ps: '(0066,002C)', tag_name: "Referenced Surface Number", tag_key: 'ReferencedSurfaceNumber', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0066,002C)', tag_sym: :referenced_surface_number, tag_ndm: '0066002C', tag_ary: [0x0066,0x002C], tag_multiple: false, tag_note: ''},
|
@@ -2987,18 +3113,18 @@ HIGH = 0001H'},
|
|
2987
3113
|
{ tag_ps: '(0070,0022)', tag_name: "Graphic Data", tag_key: 'GraphicData', tag_vr: [:FL], tag_vm: ["2-n"], tag_str: '(0070,0022)', tag_sym: :graphic_data, tag_ndm: '00700022', tag_ary: [0x0070,0x0022], tag_multiple: false, tag_note: ''},
|
2988
3114
|
{ tag_ps: '(0070,0023)', tag_name: "Graphic Type", tag_key: 'GraphicType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0070,0023)', tag_sym: :graphic_type, tag_ndm: '00700023', tag_ary: [0x0070,0x0023], tag_multiple: false, tag_note: ''},
|
2989
3115
|
{ tag_ps: '(0070,0024)', tag_name: "Graphic Filled", tag_key: 'GraphicFilled', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0070,0024)', tag_sym: :graphic_filled, tag_ndm: '00700024', tag_ary: [0x0070,0x0024], tag_multiple: false, tag_note: ''},
|
2990
|
-
{ tag_ps: '(0070,0040)', tag_name: "Image Rotation (Retired)", tag_key: 'ImageRotationRetired', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0070,0040)', tag_sym: :image_rotation_retired, tag_ndm: '00700040', tag_ary: [0x0070,0x0040], tag_multiple: false, tag_note: 'RET'},
|
3116
|
+
{ tag_ps: '(0070,0040)', tag_name: "Image Rotation (Retired)", tag_key: 'ImageRotationRetired', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0070,0040)', tag_sym: :image_rotation_retired, tag_ndm: '00700040', tag_ary: [0x0070,0x0040], tag_multiple: false, tag_note: 'RET (2007)'},
|
2991
3117
|
{ tag_ps: '(0070,0041)', tag_name: "Image Horizontal Flip", tag_key: 'ImageHorizontalFlip', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0070,0041)', tag_sym: :image_horizontal_flip, tag_ndm: '00700041', tag_ary: [0x0070,0x0041], tag_multiple: false, tag_note: ''},
|
2992
3118
|
{ tag_ps: '(0070,0042)', tag_name: "Image Rotation", tag_key: 'ImageRotation', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0070,0042)', tag_sym: :image_rotation, tag_ndm: '00700042', tag_ary: [0x0070,0x0042], tag_multiple: false, tag_note: ''},
|
2993
|
-
{ tag_ps: '(0070,0050)', tag_name: "Displayed Area Top Left Hand Corner (Trial)", tag_key: 'DisplayedAreaTopLeftHandCornerTrial', tag_vr: [:US], tag_vm: ["2"], tag_str: '(0070,0050)', tag_sym: :displayed_area_top_left_hand_corner_trial, tag_ndm: '00700050', tag_ary: [0x0070,0x0050], tag_multiple: false, tag_note: 'RET'},
|
2994
|
-
{ tag_ps: '(0070,0051)', tag_name: "Displayed Area Bottom Right Hand Corner (Trial)", tag_key: 'DisplayedAreaBottomRightHandCornerTrial', tag_vr: [:US], tag_vm: ["2"], tag_str: '(0070,0051)', tag_sym: :displayed_area_bottom_right_hand_corner_trial, tag_ndm: '00700051', tag_ary: [0x0070,0x0051], tag_multiple: false, tag_note: 'RET'},
|
3119
|
+
{ tag_ps: '(0070,0050)', tag_name: "Displayed Area Top Left Hand Corner (Trial)", tag_key: 'DisplayedAreaTopLeftHandCornerTrial', tag_vr: [:US], tag_vm: ["2"], tag_str: '(0070,0050)', tag_sym: :displayed_area_top_left_hand_corner_trial, tag_ndm: '00700050', tag_ary: [0x0070,0x0050], tag_multiple: false, tag_note: 'RET (2007)'},
|
3120
|
+
{ tag_ps: '(0070,0051)', tag_name: "Displayed Area Bottom Right Hand Corner (Trial)", tag_key: 'DisplayedAreaBottomRightHandCornerTrial', tag_vr: [:US], tag_vm: ["2"], tag_str: '(0070,0051)', tag_sym: :displayed_area_bottom_right_hand_corner_trial, tag_ndm: '00700051', tag_ary: [0x0070,0x0051], tag_multiple: false, tag_note: 'RET (2007)'},
|
2995
3121
|
{ tag_ps: '(0070,0052)', tag_name: "Displayed Area Top Left Hand Corner", tag_key: 'DisplayedAreaTopLeftHandCorner', tag_vr: [:SL], tag_vm: ["2"], tag_str: '(0070,0052)', tag_sym: :displayed_area_top_left_hand_corner, tag_ndm: '00700052', tag_ary: [0x0070,0x0052], tag_multiple: false, tag_note: ''},
|
2996
3122
|
{ tag_ps: '(0070,0053)', tag_name: "Displayed Area Bottom Right Hand Corner", tag_key: 'DisplayedAreaBottomRightHandCorner', tag_vr: [:SL], tag_vm: ["2"], tag_str: '(0070,0053)', tag_sym: :displayed_area_bottom_right_hand_corner, tag_ndm: '00700053', tag_ary: [0x0070,0x0053], tag_multiple: false, tag_note: ''},
|
2997
3123
|
{ tag_ps: '(0070,005A)', tag_name: "Displayed Area Selection Sequence", tag_key: 'DisplayedAreaSelectionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0070,005A)', tag_sym: :displayed_area_selection_sequence, tag_ndm: '0070005A', tag_ary: [0x0070,0x005A], tag_multiple: false, tag_note: ''},
|
2998
3124
|
{ tag_ps: '(0070,0060)', tag_name: "Graphic Layer Sequence", tag_key: 'GraphicLayerSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0070,0060)', tag_sym: :graphic_layer_sequence, tag_ndm: '00700060', tag_ary: [0x0070,0x0060], tag_multiple: false, tag_note: ''},
|
2999
3125
|
{ tag_ps: '(0070,0062)', tag_name: "Graphic Layer Order", tag_key: 'GraphicLayerOrder', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0070,0062)', tag_sym: :graphic_layer_order, tag_ndm: '00700062', tag_ary: [0x0070,0x0062], tag_multiple: false, tag_note: ''},
|
3000
3126
|
{ tag_ps: '(0070,0066)', tag_name: "Graphic Layer Recommended Display Grayscale Value", tag_key: 'GraphicLayerRecommendedDisplayGrayscaleValue', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0070,0066)', tag_sym: :graphic_layer_recommended_display_grayscale_value, tag_ndm: '00700066', tag_ary: [0x0070,0x0066], tag_multiple: false, tag_note: ''},
|
3001
|
-
{ tag_ps: '(0070,0067)', tag_name: "Graphic Layer Recommended Display RGB Value", tag_key: 'GraphicLayerRecommendedDisplayRGBValue', tag_vr: [:US], tag_vm: ["3"], tag_str: '(0070,0067)', tag_sym: :graphic_layer_recommended_display_rgb_value, tag_ndm: '00700067', tag_ary: [0x0070,0x0067], tag_multiple: false, tag_note: 'RET'},
|
3127
|
+
{ tag_ps: '(0070,0067)', tag_name: "Graphic Layer Recommended Display RGB Value", tag_key: 'GraphicLayerRecommendedDisplayRGBValue', tag_vr: [:US], tag_vm: ["3"], tag_str: '(0070,0067)', tag_sym: :graphic_layer_recommended_display_rgb_value, tag_ndm: '00700067', tag_ary: [0x0070,0x0067], tag_multiple: false, tag_note: 'RET (2004)'},
|
3002
3128
|
{ tag_ps: '(0070,0068)', tag_name: "Graphic Layer Description", tag_key: 'GraphicLayerDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0070,0068)', tag_sym: :graphic_layer_description, tag_ndm: '00700068', tag_ary: [0x0070,0x0068], tag_multiple: false, tag_note: ''},
|
3003
3129
|
{ tag_ps: '(0070,0080)', tag_name: "Content Label", tag_key: 'ContentLabel', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0070,0080)', tag_sym: :content_label, tag_ndm: '00700080', tag_ary: [0x0070,0x0080], tag_multiple: false, tag_note: ''},
|
3004
3130
|
{ tag_ps: '(0070,0081)', tag_name: "Content Description", tag_key: 'ContentDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0070,0081)', tag_sym: :content_description, tag_ndm: '00700081', tag_ary: [0x0070,0x0081], tag_multiple: false, tag_note: ''},
|
@@ -3087,7 +3213,7 @@ HIGH = 0001H'},
|
|
3087
3213
|
{ tag_ps: '(0070,1203)', tag_name: "Input Sequence Position Index", tag_key: 'InputSequencePositionIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0070,1203)', tag_sym: :input_sequence_position_index, tag_ndm: '00701203', tag_ary: [0x0070,0x1203], tag_multiple: false, tag_note: ''},
|
3088
3214
|
{ tag_ps: '(0070,1204)', tag_name: "Crop", tag_key: 'Crop', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0070,1204)', tag_sym: :crop, tag_ndm: '00701204', tag_ary: [0x0070,0x1204], tag_multiple: false, tag_note: ''},
|
3089
3215
|
{ tag_ps: '(0070,1205)', tag_name: "Cropping Specification Index", tag_key: 'CroppingSpecificationIndex', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(0070,1205)', tag_sym: :cropping_specification_index, tag_ndm: '00701205', tag_ary: [0x0070,0x1205], tag_multiple: false, tag_note: ''},
|
3090
|
-
{ tag_ps: '(0070,1206)', tag_name: "Compositing Method", tag_key: 'CompositingMethod', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0070,1206)', tag_sym: :compositing_method, tag_ndm: '00701206', tag_ary: [0x0070,0x1206], tag_multiple: false, tag_note: 'RET'},
|
3216
|
+
{ tag_ps: '(0070,1206)', tag_name: "Compositing Method", tag_key: 'CompositingMethod', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0070,1206)', tag_sym: :compositing_method, tag_ndm: '00701206', tag_ary: [0x0070,0x1206], tag_multiple: false, tag_note: 'RET (2017a)'},
|
3091
3217
|
{ tag_ps: '(0070,1207)', tag_name: "Volumetric Presentation Input Number", tag_key: 'VolumetricPresentationInputNumber', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0070,1207)', tag_sym: :volumetric_presentation_input_number, tag_ndm: '00701207', tag_ary: [0x0070,0x1207], tag_multiple: false, tag_note: ''},
|
3092
3218
|
{ tag_ps: '(0070,1208)', tag_name: "Image Volume Geometry", tag_key: 'ImageVolumeGeometry', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0070,1208)', tag_sym: :image_volume_geometry, tag_ndm: '00701208', tag_ary: [0x0070,0x1208], tag_multiple: false, tag_note: ''},
|
3093
3219
|
{ tag_ps: '(0070,1209)', tag_name: "Volumetric Presentation Input Set UID", tag_key: 'VolumetricPresentationInputSetUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0070,1209)', tag_sym: :volumetric_presentation_input_set_uid, tag_ndm: '00701209', tag_ary: [0x0070,0x1209], tag_multiple: false, tag_note: ''},
|
@@ -3290,7 +3416,7 @@ HIGH = 0001H'},
|
|
3290
3416
|
{ tag_ps: '(0074,100E)', tag_name: "Procedure Step Discontinuation Reason Code Sequence", tag_key: 'ProcedureStepDiscontinuationReasonCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0074,100E)', tag_sym: :procedure_step_discontinuation_reason_code_sequence, tag_ndm: '0074100E', tag_ary: [0x0074,0x100E], tag_multiple: false, tag_note: ''},
|
3291
3417
|
{ tag_ps: '(0074,1020)', tag_name: "Beam Task Sequence", tag_key: 'BeamTaskSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0074,1020)', tag_sym: :beam_task_sequence, tag_ndm: '00741020', tag_ary: [0x0074,0x1020], tag_multiple: false, tag_note: ''},
|
3292
3418
|
{ tag_ps: '(0074,1022)', tag_name: "Beam Task Type", tag_key: 'BeamTaskType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0074,1022)', tag_sym: :beam_task_type, tag_ndm: '00741022', tag_ary: [0x0074,0x1022], tag_multiple: false, tag_note: ''},
|
3293
|
-
{ tag_ps: '(0074,1024)', tag_name: "Beam Order Index (Trial)", tag_key: 'BeamOrderIndexTrial', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0074,1024)', tag_sym: :beam_order_index_trial, tag_ndm: '00741024', tag_ary: [0x0074,0x1024], tag_multiple: false, tag_note: 'RET'},
|
3419
|
+
{ tag_ps: '(0074,1024)', tag_name: "Beam Order Index (Trial)", tag_key: 'BeamOrderIndexTrial', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0074,1024)', tag_sym: :beam_order_index_trial, tag_ndm: '00741024', tag_ary: [0x0074,0x1024], tag_multiple: false, tag_note: 'RET (2009)'},
|
3294
3420
|
{ tag_ps: '(0074,1025)', tag_name: "Autosequence Flag", tag_key: 'AutosequenceFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0074,1025)', tag_sym: :autosequence_flag, tag_ndm: '00741025', tag_ary: [0x0074,0x1025], tag_multiple: false, tag_note: ''},
|
3295
3421
|
{ tag_ps: '(0074,1026)', tag_name: "Table Top Vertical Adjusted Position", tag_key: 'TableTopVerticalAdjustedPosition', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0074,1026)', tag_sym: :table_top_vertical_adjusted_position, tag_ndm: '00741026', tag_ary: [0x0074,0x1026], tag_multiple: false, tag_note: ''},
|
3296
3422
|
{ tag_ps: '(0074,1027)', tag_name: "Table Top Longitudinal Adjusted Position", tag_key: 'TableTopLongitudinalAdjustedPosition', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(0074,1027)', tag_sym: :table_top_longitudinal_adjusted_position, tag_ndm: '00741027', tag_ary: [0x0074,0x1027], tag_multiple: false, tag_note: ''},
|
@@ -3303,8 +3429,8 @@ HIGH = 0001H'},
|
|
3303
3429
|
{ tag_ps: '(0074,1032)', tag_name: "Verification Image Timing", tag_key: 'VerificationImageTiming', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0074,1032)', tag_sym: :verification_image_timing, tag_ndm: '00741032', tag_ary: [0x0074,0x1032], tag_multiple: false, tag_note: ''},
|
3304
3430
|
{ tag_ps: '(0074,1034)', tag_name: "Double Exposure Flag", tag_key: 'DoubleExposureFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0074,1034)', tag_sym: :double_exposure_flag, tag_ndm: '00741034', tag_ary: [0x0074,0x1034], tag_multiple: false, tag_note: ''},
|
3305
3431
|
{ tag_ps: '(0074,1036)', tag_name: "Double Exposure Ordering", tag_key: 'DoubleExposureOrdering', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0074,1036)', tag_sym: :double_exposure_ordering, tag_ndm: '00741036', tag_ary: [0x0074,0x1036], tag_multiple: false, tag_note: ''},
|
3306
|
-
{ tag_ps: '(0074,1038)', tag_name: "Double Exposure Meterset (Trial)", tag_key: 'DoubleExposureMetersetTrial', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0074,1038)', tag_sym: :double_exposure_meterset_trial, tag_ndm: '00741038', tag_ary: [0x0074,0x1038], tag_multiple: false, tag_note: 'RET'},
|
3307
|
-
{ tag_ps: '(0074,103A)', tag_name: "Double Exposure Field Delta (Trial)", tag_key: 'DoubleExposureFieldDeltaTrial', tag_vr: [:DS], tag_vm: ["4"], tag_str: '(0074,103A)', tag_sym: :double_exposure_field_delta_trial, tag_ndm: '0074103A', tag_ary: [0x0074,0x103A], tag_multiple: false, tag_note: 'RET'},
|
3432
|
+
{ tag_ps: '(0074,1038)', tag_name: "Double Exposure Meterset (Trial)", tag_key: 'DoubleExposureMetersetTrial', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0074,1038)', tag_sym: :double_exposure_meterset_trial, tag_ndm: '00741038', tag_ary: [0x0074,0x1038], tag_multiple: false, tag_note: 'RET (2009)'},
|
3433
|
+
{ tag_ps: '(0074,103A)', tag_name: "Double Exposure Field Delta (Trial)", tag_key: 'DoubleExposureFieldDeltaTrial', tag_vr: [:DS], tag_vm: ["4"], tag_str: '(0074,103A)', tag_sym: :double_exposure_field_delta_trial, tag_ndm: '0074103A', tag_ary: [0x0074,0x103A], tag_multiple: false, tag_note: 'RET (2009)'},
|
3308
3434
|
{ tag_ps: '(0074,1040)', tag_name: "Related Reference RT Image Sequence", tag_key: 'RelatedReferenceRTImageSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0074,1040)', tag_sym: :related_reference_rt_image_sequence, tag_ndm: '00741040', tag_ary: [0x0074,0x1040], tag_multiple: false, tag_note: ''},
|
3309
3435
|
{ tag_ps: '(0074,1042)', tag_name: "General Machine Verification Sequence", tag_key: 'GeneralMachineVerificationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0074,1042)', tag_sym: :general_machine_verification_sequence, tag_ndm: '00741042', tag_ary: [0x0074,0x1042], tag_multiple: false, tag_note: ''},
|
3310
3436
|
{ tag_ps: '(0074,1044)', tag_name: "Conventional Machine Verification Sequence", tag_key: 'ConventionalMachineVerificationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0074,1044)', tag_sym: :conventional_machine_verification_sequence, tag_ndm: '00741044', tag_ary: [0x0074,0x1044], tag_multiple: false, tag_note: ''},
|
@@ -3324,8 +3450,8 @@ HIGH = 0001H'},
|
|
3324
3450
|
{ tag_ps: '(0074,1210)', tag_name: "Scheduled Processing Parameters Sequence", tag_key: 'ScheduledProcessingParametersSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0074,1210)', tag_sym: :scheduled_processing_parameters_sequence, tag_ndm: '00741210', tag_ary: [0x0074,0x1210], tag_multiple: false, tag_note: ''},
|
3325
3451
|
{ tag_ps: '(0074,1212)', tag_name: "Performed Processing Parameters Sequence", tag_key: 'PerformedProcessingParametersSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0074,1212)', tag_sym: :performed_processing_parameters_sequence, tag_ndm: '00741212', tag_ary: [0x0074,0x1212], tag_multiple: false, tag_note: ''},
|
3326
3452
|
{ tag_ps: '(0074,1216)', tag_name: "Unified Procedure Step Performed Procedure Sequence", tag_key: 'UnifiedProcedureStepPerformedProcedureSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0074,1216)', tag_sym: :unified_procedure_step_performed_procedure_sequence, tag_ndm: '00741216', tag_ary: [0x0074,0x1216], tag_multiple: false, tag_note: ''},
|
3327
|
-
{ tag_ps: '(0074,1220)', tag_name: "Related Procedure Step Sequence", tag_key: 'RelatedProcedureStepSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0074,1220)', tag_sym: :related_procedure_step_sequence, tag_ndm: '00741220', tag_ary: [0x0074,0x1220], tag_multiple: false, tag_note: 'RET'},
|
3328
|
-
{ tag_ps: '(0074,1222)', tag_name: "Procedure Step Relationship Type", tag_key: 'ProcedureStepRelationshipType', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0074,1222)', tag_sym: :procedure_step_relationship_type, tag_ndm: '00741222', tag_ary: [0x0074,0x1222], tag_multiple: false, tag_note: 'RET'},
|
3453
|
+
{ tag_ps: '(0074,1220)', tag_name: "Related Procedure Step Sequence", tag_key: 'RelatedProcedureStepSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0074,1220)', tag_sym: :related_procedure_step_sequence, tag_ndm: '00741220', tag_ary: [0x0074,0x1220], tag_multiple: false, tag_note: 'RET (2009)'},
|
3454
|
+
{ tag_ps: '(0074,1222)', tag_name: "Procedure Step Relationship Type", tag_key: 'ProcedureStepRelationshipType', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0074,1222)', tag_sym: :procedure_step_relationship_type, tag_ndm: '00741222', tag_ary: [0x0074,0x1222], tag_multiple: false, tag_note: 'RET (2009)'},
|
3329
3455
|
{ tag_ps: '(0074,1224)', tag_name: "Replaced Procedure Step Sequence", tag_key: 'ReplacedProcedureStepSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0074,1224)', tag_sym: :replaced_procedure_step_sequence, tag_ndm: '00741224', tag_ary: [0x0074,0x1224], tag_multiple: false, tag_note: ''},
|
3330
3456
|
{ tag_ps: '(0074,1230)', tag_name: "Deletion Lock", tag_key: 'DeletionLock', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0074,1230)', tag_sym: :deletion_lock, tag_ndm: '00741230', tag_ary: [0x0074,0x1230], tag_multiple: false, tag_note: ''},
|
3331
3457
|
{ tag_ps: '(0074,1234)', tag_name: "Receiving AE", tag_key: 'ReceivingAE', tag_vr: [:AE], tag_vm: ["1"], tag_str: '(0074,1234)', tag_sym: :receiving_ae, tag_ndm: '00741234', tag_ary: [0x0074,0x1234], tag_multiple: false, tag_note: ''},
|
@@ -3432,10 +3558,10 @@ HIGH = 0001H'},
|
|
3432
3558
|
{ tag_ps: '(0088,0130)', tag_name: "Storage Media File-set ID", tag_key: 'StorageMediaFileSetID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(0088,0130)', tag_sym: :storage_media_file_set_id, tag_ndm: '00880130', tag_ary: [0x0088,0x0130], tag_multiple: false, tag_note: ''},
|
3433
3559
|
{ tag_ps: '(0088,0140)', tag_name: "Storage Media File-set UID", tag_key: 'StorageMediaFileSetUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0088,0140)', tag_sym: :storage_media_file_set_uid, tag_ndm: '00880140', tag_ary: [0x0088,0x0140], tag_multiple: false, tag_note: ''},
|
3434
3560
|
{ tag_ps: '(0088,0200)', tag_name: "Icon Image Sequence", tag_key: 'IconImageSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0088,0200)', tag_sym: :icon_image_sequence, tag_ndm: '00880200', tag_ary: [0x0088,0x0200], tag_multiple: false, tag_note: ''},
|
3435
|
-
{ tag_ps: '(0088,0904)', tag_name: "Topic Title", tag_key: 'TopicTitle', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0088,0904)', tag_sym: :topic_title, tag_ndm: '00880904', tag_ary: [0x0088,0x0904], tag_multiple: false, tag_note: 'RET'},
|
3436
|
-
{ tag_ps: '(0088,0906)', tag_name: "Topic Subject", tag_key: 'TopicSubject', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0088,0906)', tag_sym: :topic_subject, tag_ndm: '00880906', tag_ary: [0x0088,0x0906], tag_multiple: false, tag_note: 'RET'},
|
3437
|
-
{ tag_ps: '(0088,0910)', tag_name: "Topic Author", tag_key: 'TopicAuthor', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0088,0910)', tag_sym: :topic_author, tag_ndm: '00880910', tag_ary: [0x0088,0x0910], tag_multiple: false, tag_note: 'RET'},
|
3438
|
-
{ tag_ps: '(0088,0912)', tag_name: "Topic Keywords", tag_key: 'TopicKeywords', tag_vr: [:LO], tag_vm: ["1-32"], tag_str: '(0088,0912)', tag_sym: :topic_keywords, tag_ndm: '00880912', tag_ary: [0x0088,0x0912], tag_multiple: false, tag_note: 'RET'},
|
3561
|
+
{ tag_ps: '(0088,0904)', tag_name: "Topic Title", tag_key: 'TopicTitle', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0088,0904)', tag_sym: :topic_title, tag_ndm: '00880904', tag_ary: [0x0088,0x0904], tag_multiple: false, tag_note: 'RET (2007)'},
|
3562
|
+
{ tag_ps: '(0088,0906)', tag_name: "Topic Subject", tag_key: 'TopicSubject', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(0088,0906)', tag_sym: :topic_subject, tag_ndm: '00880906', tag_ary: [0x0088,0x0906], tag_multiple: false, tag_note: 'RET (2007)'},
|
3563
|
+
{ tag_ps: '(0088,0910)', tag_name: "Topic Author", tag_key: 'TopicAuthor', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0088,0910)', tag_sym: :topic_author, tag_ndm: '00880910', tag_ary: [0x0088,0x0910], tag_multiple: false, tag_note: 'RET (2007)'},
|
3564
|
+
{ tag_ps: '(0088,0912)', tag_name: "Topic Keywords", tag_key: 'TopicKeywords', tag_vr: [:LO], tag_vm: ["1-32"], tag_str: '(0088,0912)', tag_sym: :topic_keywords, tag_ndm: '00880912', tag_ary: [0x0088,0x0912], tag_multiple: false, tag_note: 'RET (2007)'},
|
3439
3565
|
{ tag_ps: '(0100,0410)', tag_name: "SOP Instance Status", tag_key: 'SOPInstanceStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0100,0410)', tag_sym: :sop_instance_status, tag_ndm: '01000410', tag_ary: [0x0100,0x0410], tag_multiple: false, tag_note: ''},
|
3440
3566
|
{ tag_ps: '(0100,0420)', tag_name: "SOP Authorization DateTime", tag_key: 'SOPAuthorizationDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0100,0420)', tag_sym: :sop_authorization_date_time, tag_ndm: '01000420', tag_ary: [0x0100,0x0420], tag_multiple: false, tag_note: ''},
|
3441
3567
|
{ tag_ps: '(0100,0424)', tag_name: "SOP Authorization Comment", tag_key: 'SOPAuthorizationComment', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0100,0424)', tag_sym: :sop_authorization_comment, tag_ndm: '01000424', tag_ary: [0x0100,0x0424], tag_multiple: false, tag_note: ''},
|
@@ -3451,7 +3577,7 @@ HIGH = 0001H'},
|
|
3451
3577
|
{ tag_ps: '(0400,0120)', tag_name: "Signature", tag_key: 'Signature', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0400,0120)', tag_sym: :signature, tag_ndm: '04000120', tag_ary: [0x0400,0x0120], tag_multiple: false, tag_note: ''},
|
3452
3578
|
{ tag_ps: '(0400,0305)', tag_name: "Certified Timestamp Type", tag_key: 'CertifiedTimestampType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0400,0305)', tag_sym: :certified_timestamp_type, tag_ndm: '04000305', tag_ary: [0x0400,0x0305], tag_multiple: false, tag_note: ''},
|
3453
3579
|
{ tag_ps: '(0400,0310)', tag_name: "Certified Timestamp", tag_key: 'CertifiedTimestamp', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(0400,0310)', tag_sym: :certified_timestamp, tag_ndm: '04000310', tag_ary: [0x0400,0x0310], tag_multiple: false, tag_note: ''},
|
3454
|
-
{ tag_ps: '(0400,0315)', tag_name: "Placeholder (0400,0315)", tag_key: 'Placeholder_0400_0315', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0400,0315)', tag_sym: :placeholder_0400_0315, tag_ndm: '04000315', tag_ary: [0x0400,0x0315], tag_multiple: false, tag_note: 'RET'},
|
3580
|
+
{ tag_ps: '(0400,0315)', tag_name: "Placeholder (0400,0315)", tag_key: 'Placeholder_0400_0315', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0400,0315)', tag_sym: :placeholder_0400_0315, tag_ndm: '04000315', tag_ary: [0x0400,0x0315], tag_multiple: false, tag_note: 'RET (2015c)'},
|
3455
3581
|
{ tag_ps: '(0400,0401)', tag_name: "Digital Signature Purpose Code Sequence", tag_key: 'DigitalSignaturePurposeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0400,0401)', tag_sym: :digital_signature_purpose_code_sequence, tag_ndm: '04000401', tag_ary: [0x0400,0x0401], tag_multiple: false, tag_note: ''},
|
3456
3582
|
{ tag_ps: '(0400,0402)', tag_name: "Referenced Digital Signature Sequence", tag_key: 'ReferencedDigitalSignatureSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0400,0402)', tag_sym: :referenced_digital_signature_sequence, tag_ndm: '04000402', tag_ary: [0x0400,0x0402], tag_multiple: false, tag_note: ''},
|
3457
3583
|
{ tag_ps: '(0400,0403)', tag_name: "Referenced SOP Instance MAC Sequence", tag_key: 'ReferencedSOPInstanceMACSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0400,0403)', tag_sym: :referenced_sop_instance_mac_sequence, tag_ndm: '04000403', tag_ary: [0x0400,0x0403], tag_multiple: false, tag_note: ''},
|
@@ -3466,13 +3592,13 @@ HIGH = 0001H'},
|
|
3466
3592
|
{ tag_ps: '(0400,0564)', tag_name: "Source of Previous Values", tag_key: 'SourceOfPreviousValues', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0400,0564)', tag_sym: :source_of_previous_values, tag_ndm: '04000564', tag_ary: [0x0400,0x0564], tag_multiple: false, tag_note: ''},
|
3467
3593
|
{ tag_ps: '(0400,0565)', tag_name: "Reason for the Attribute Modification", tag_key: 'ReasonForTheAttributeModification', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0400,0565)', tag_sym: :reason_for_the_attribute_modification, tag_ndm: '04000565', tag_ary: [0x0400,0x0565], tag_multiple: false, tag_note: ''},
|
3468
3594
|
{ tag_ps: '(0400,0600)', tag_name: "Instance Origin Status", tag_key: 'InstanceOriginStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0400,0600)', tag_sym: :instance_origin_status, tag_ndm: '04000600', tag_ary: [0x0400,0x0600], tag_multiple: false, tag_note: ''},
|
3469
|
-
{ tag_ps: '(1000,XXX0)', tag_name: "Escape Triplet", tag_key: 'EscapeTriplet', tag_vr: [:US], tag_vm: ["3"], tag_str: '(1000,2220)', tag_sym: :escape_triplet, tag_ndm: '10002220', tag_ary: [0x1000,0x2220], tag_multiple: true, tag_note: 'RET'},
|
3470
|
-
{ tag_ps: '(1000,XXX1)', tag_name: "Run Length Triplet", tag_key: 'RunLengthTriplet', tag_vr: [:US], tag_vm: ["3"], tag_str: '(1000,2221)', tag_sym: :run_length_triplet, tag_ndm: '10002221', tag_ary: [0x1000,0x2221], tag_multiple: true, tag_note: 'RET'},
|
3471
|
-
{ tag_ps: '(1000,XXX2)', tag_name: "Huffman Table Size", tag_key: 'HuffmanTableSize', tag_vr: [:US], tag_vm: ["1"], tag_str: '(1000,2222)', tag_sym: :huffman_table_size, tag_ndm: '10002222', tag_ary: [0x1000,0x2222], tag_multiple: true, tag_note: 'RET'},
|
3472
|
-
{ tag_ps: '(1000,XXX3)', tag_name: "Huffman Table Triplet", tag_key: 'HuffmanTableTriplet', tag_vr: [:US], tag_vm: ["3"], tag_str: '(1000,2223)', tag_sym: :huffman_table_triplet, tag_ndm: '10002223', tag_ary: [0x1000,0x2223], tag_multiple: true, tag_note: 'RET'},
|
3473
|
-
{ tag_ps: '(1000,XXX4)', tag_name: "Shift Table Size", tag_key: 'ShiftTableSize', tag_vr: [:US], tag_vm: ["1"], tag_str: '(1000,2224)', tag_sym: :shift_table_size, tag_ndm: '10002224', tag_ary: [0x1000,0x2224], tag_multiple: true, tag_note: 'RET'},
|
3474
|
-
{ tag_ps: '(1000,XXX5)', tag_name: "Shift Table Triplet", tag_key: 'ShiftTableTriplet', tag_vr: [:US], tag_vm: ["3"], tag_str: '(1000,2225)', tag_sym: :shift_table_triplet, tag_ndm: '10002225', tag_ary: [0x1000,0x2225], tag_multiple: true, tag_note: 'RET'},
|
3475
|
-
{ tag_ps: '(1010,XXXX)', tag_name: "Zonal Map", tag_key: 'ZonalMap', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(1010,2222)', tag_sym: :zonal_map, tag_ndm: '10102222', tag_ary: [0x1010,0x2222], tag_multiple: true, tag_note: 'RET'},
|
3595
|
+
{ tag_ps: '(1000,XXX0)', tag_name: "Escape Triplet", tag_key: 'EscapeTriplet', tag_vr: [:US], tag_vm: ["3"], tag_str: '(1000,2220)', tag_sym: :escape_triplet, tag_ndm: '10002220', tag_ary: [0x1000,0x2220], tag_multiple: true, tag_note: 'RET (2007)'},
|
3596
|
+
{ tag_ps: '(1000,XXX1)', tag_name: "Run Length Triplet", tag_key: 'RunLengthTriplet', tag_vr: [:US], tag_vm: ["3"], tag_str: '(1000,2221)', tag_sym: :run_length_triplet, tag_ndm: '10002221', tag_ary: [0x1000,0x2221], tag_multiple: true, tag_note: 'RET (2007)'},
|
3597
|
+
{ tag_ps: '(1000,XXX2)', tag_name: "Huffman Table Size", tag_key: 'HuffmanTableSize', tag_vr: [:US], tag_vm: ["1"], tag_str: '(1000,2222)', tag_sym: :huffman_table_size, tag_ndm: '10002222', tag_ary: [0x1000,0x2222], tag_multiple: true, tag_note: 'RET (2007)'},
|
3598
|
+
{ tag_ps: '(1000,XXX3)', tag_name: "Huffman Table Triplet", tag_key: 'HuffmanTableTriplet', tag_vr: [:US], tag_vm: ["3"], tag_str: '(1000,2223)', tag_sym: :huffman_table_triplet, tag_ndm: '10002223', tag_ary: [0x1000,0x2223], tag_multiple: true, tag_note: 'RET (2007)'},
|
3599
|
+
{ tag_ps: '(1000,XXX4)', tag_name: "Shift Table Size", tag_key: 'ShiftTableSize', tag_vr: [:US], tag_vm: ["1"], tag_str: '(1000,2224)', tag_sym: :shift_table_size, tag_ndm: '10002224', tag_ary: [0x1000,0x2224], tag_multiple: true, tag_note: 'RET (2007)'},
|
3600
|
+
{ tag_ps: '(1000,XXX5)', tag_name: "Shift Table Triplet", tag_key: 'ShiftTableTriplet', tag_vr: [:US], tag_vm: ["3"], tag_str: '(1000,2225)', tag_sym: :shift_table_triplet, tag_ndm: '10002225', tag_ary: [0x1000,0x2225], tag_multiple: true, tag_note: 'RET (2007)'},
|
3601
|
+
{ tag_ps: '(1010,XXXX)', tag_name: "Zonal Map", tag_key: 'ZonalMap', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(1010,2222)', tag_sym: :zonal_map, tag_ndm: '10102222', tag_ary: [0x1010,0x2222], tag_multiple: true, tag_note: 'RET (2007)'},
|
3476
3602
|
{ tag_ps: '(2000,0010)', tag_name: "Number of Copies", tag_key: 'NumberOfCopies', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(2000,0010)', tag_sym: :number_of_copies, tag_ndm: '20000010', tag_ary: [0x2000,0x0010], tag_multiple: false, tag_note: ''},
|
3477
3603
|
{ tag_ps: '(2000,001E)', tag_name: "Printer Configuration Sequence", tag_key: 'PrinterConfigurationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2000,001E)', tag_sym: :printer_configuration_sequence, tag_ndm: '2000001E', tag_ary: [0x2000,0x001E], tag_multiple: false, tag_note: ''},
|
3478
3604
|
{ tag_ps: '(2000,0020)', tag_name: "Print Priority", tag_key: 'PrintPriority', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,0020)', tag_sym: :print_priority, tag_ndm: '20000020', tag_ary: [0x2000,0x0020], tag_multiple: false, tag_note: ''},
|
@@ -3481,19 +3607,19 @@ HIGH = 0001H'},
|
|
3481
3607
|
{ tag_ps: '(2000,0050)', tag_name: "Film Session Label", tag_key: 'FilmSessionLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(2000,0050)', tag_sym: :film_session_label, tag_ndm: '20000050', tag_ary: [0x2000,0x0050], tag_multiple: false, tag_note: ''},
|
3482
3608
|
{ tag_ps: '(2000,0060)', tag_name: "Memory Allocation", tag_key: 'MemoryAllocation', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(2000,0060)', tag_sym: :memory_allocation, tag_ndm: '20000060', tag_ary: [0x2000,0x0060], tag_multiple: false, tag_note: ''},
|
3483
3609
|
{ tag_ps: '(2000,0061)', tag_name: "Maximum Memory Allocation", tag_key: 'MaximumMemoryAllocation', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(2000,0061)', tag_sym: :maximum_memory_allocation, tag_ndm: '20000061', tag_ary: [0x2000,0x0061], tag_multiple: false, tag_note: ''},
|
3484
|
-
{ tag_ps: '(2000,0062)', tag_name: "Color Image Printing Flag", tag_key: 'ColorImagePrintingFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,0062)', tag_sym: :color_image_printing_flag, tag_ndm: '20000062', tag_ary: [0x2000,0x0062], tag_multiple: false, tag_note: 'RET'},
|
3485
|
-
{ tag_ps: '(2000,0063)', tag_name: "Collation Flag", tag_key: 'CollationFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,0063)', tag_sym: :collation_flag, tag_ndm: '20000063', tag_ary: [0x2000,0x0063], tag_multiple: false, tag_note: 'RET'},
|
3486
|
-
{ tag_ps: '(2000,0065)', tag_name: "Annotation Flag", tag_key: 'AnnotationFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,0065)', tag_sym: :annotation_flag, tag_ndm: '20000065', tag_ary: [0x2000,0x0065], tag_multiple: false, tag_note: 'RET'},
|
3487
|
-
{ tag_ps: '(2000,0067)', tag_name: "Image Overlay Flag", tag_key: 'ImageOverlayFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,0067)', tag_sym: :image_overlay_flag, tag_ndm: '20000067', tag_ary: [0x2000,0x0067], tag_multiple: false, tag_note: 'RET'},
|
3488
|
-
{ tag_ps: '(2000,0069)', tag_name: "Presentation LUT Flag", tag_key: 'PresentationLUTFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,0069)', tag_sym: :presentation_lut_flag, tag_ndm: '20000069', tag_ary: [0x2000,0x0069], tag_multiple: false, tag_note: 'RET'},
|
3489
|
-
{ tag_ps: '(2000,006A)', tag_name: "Image Box Presentation LUT Flag", tag_key: 'ImageBoxPresentationLUTFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,006A)', tag_sym: :image_box_presentation_lut_flag, tag_ndm: '2000006A', tag_ary: [0x2000,0x006A], tag_multiple: false, tag_note: 'RET'},
|
3610
|
+
{ tag_ps: '(2000,0062)', tag_name: "Color Image Printing Flag", tag_key: 'ColorImagePrintingFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,0062)', tag_sym: :color_image_printing_flag, tag_ndm: '20000062', tag_ary: [0x2000,0x0062], tag_multiple: false, tag_note: 'RET (2004)'},
|
3611
|
+
{ tag_ps: '(2000,0063)', tag_name: "Collation Flag", tag_key: 'CollationFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,0063)', tag_sym: :collation_flag, tag_ndm: '20000063', tag_ary: [0x2000,0x0063], tag_multiple: false, tag_note: 'RET (2004)'},
|
3612
|
+
{ tag_ps: '(2000,0065)', tag_name: "Annotation Flag", tag_key: 'AnnotationFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,0065)', tag_sym: :annotation_flag, tag_ndm: '20000065', tag_ary: [0x2000,0x0065], tag_multiple: false, tag_note: 'RET (2004)'},
|
3613
|
+
{ tag_ps: '(2000,0067)', tag_name: "Image Overlay Flag", tag_key: 'ImageOverlayFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,0067)', tag_sym: :image_overlay_flag, tag_ndm: '20000067', tag_ary: [0x2000,0x0067], tag_multiple: false, tag_note: 'RET (2004)'},
|
3614
|
+
{ tag_ps: '(2000,0069)', tag_name: "Presentation LUT Flag", tag_key: 'PresentationLUTFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,0069)', tag_sym: :presentation_lut_flag, tag_ndm: '20000069', tag_ary: [0x2000,0x0069], tag_multiple: false, tag_note: 'RET (2004)'},
|
3615
|
+
{ tag_ps: '(2000,006A)', tag_name: "Image Box Presentation LUT Flag", tag_key: 'ImageBoxPresentationLUTFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2000,006A)', tag_sym: :image_box_presentation_lut_flag, tag_ndm: '2000006A', tag_ary: [0x2000,0x006A], tag_multiple: false, tag_note: 'RET (2004)'},
|
3490
3616
|
{ tag_ps: '(2000,00A0)', tag_name: "Memory Bit Depth", tag_key: 'MemoryBitDepth', tag_vr: [:US], tag_vm: ["1"], tag_str: '(2000,00A0)', tag_sym: :memory_bit_depth, tag_ndm: '200000A0', tag_ary: [0x2000,0x00A0], tag_multiple: false, tag_note: ''},
|
3491
3617
|
{ tag_ps: '(2000,00A1)', tag_name: "Printing Bit Depth", tag_key: 'PrintingBitDepth', tag_vr: [:US], tag_vm: ["1"], tag_str: '(2000,00A1)', tag_sym: :printing_bit_depth, tag_ndm: '200000A1', tag_ary: [0x2000,0x00A1], tag_multiple: false, tag_note: ''},
|
3492
3618
|
{ tag_ps: '(2000,00A2)', tag_name: "Media Installed Sequence", tag_key: 'MediaInstalledSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2000,00A2)', tag_sym: :media_installed_sequence, tag_ndm: '200000A2', tag_ary: [0x2000,0x00A2], tag_multiple: false, tag_note: ''},
|
3493
3619
|
{ tag_ps: '(2000,00A4)', tag_name: "Other Media Available Sequence", tag_key: 'OtherMediaAvailableSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2000,00A4)', tag_sym: :other_media_available_sequence, tag_ndm: '200000A4', tag_ary: [0x2000,0x00A4], tag_multiple: false, tag_note: ''},
|
3494
3620
|
{ tag_ps: '(2000,00A8)', tag_name: "Supported Image Display Formats Sequence", tag_key: 'SupportedImageDisplayFormatsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2000,00A8)', tag_sym: :supported_image_display_formats_sequence, tag_ndm: '200000A8', tag_ary: [0x2000,0x00A8], tag_multiple: false, tag_note: ''},
|
3495
3621
|
{ tag_ps: '(2000,0500)', tag_name: "Referenced Film Box Sequence", tag_key: 'ReferencedFilmBoxSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2000,0500)', tag_sym: :referenced_film_box_sequence, tag_ndm: '20000500', tag_ary: [0x2000,0x0500], tag_multiple: false, tag_note: ''},
|
3496
|
-
{ tag_ps: '(2000,0510)', tag_name: "Referenced Stored Print Sequence", tag_key: 'ReferencedStoredPrintSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2000,0510)', tag_sym: :referenced_stored_print_sequence, tag_ndm: '20000510', tag_ary: [0x2000,0x0510], tag_multiple: false, tag_note: 'RET'},
|
3622
|
+
{ tag_ps: '(2000,0510)', tag_name: "Referenced Stored Print Sequence", tag_key: 'ReferencedStoredPrintSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2000,0510)', tag_sym: :referenced_stored_print_sequence, tag_ndm: '20000510', tag_ary: [0x2000,0x0510], tag_multiple: false, tag_note: 'RET (2007)'},
|
3497
3623
|
{ tag_ps: '(2010,0010)', tag_name: "Image Display Format", tag_key: 'ImageDisplayFormat', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(2010,0010)', tag_sym: :image_display_format, tag_ndm: '20100010', tag_ary: [0x2010,0x0010], tag_multiple: false, tag_note: ''},
|
3498
3624
|
{ tag_ps: '(2010,0030)', tag_name: "Annotation Display Format ID", tag_key: 'AnnotationDisplayFormatID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2010,0030)', tag_sym: :annotation_display_format_id, tag_ndm: '20100030', tag_ary: [0x2010,0x0030], tag_multiple: false, tag_note: ''},
|
3499
3625
|
{ tag_ps: '(2010,0040)', tag_name: "Film Orientation", tag_key: 'FilmOrientation', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2010,0040)', tag_sym: :film_orientation, tag_ndm: '20100040', tag_ary: [0x2010,0x0040], tag_multiple: false, tag_note: ''},
|
@@ -3529,26 +3655,26 @@ HIGH = 0001H'},
|
|
3529
3655
|
{ tag_ps: '(2020,00A2)', tag_name: "Decimate/Crop Result", tag_key: 'DecimateCropResult', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2020,00A2)', tag_sym: :decimate_crop_result, tag_ndm: '202000A2', tag_ary: [0x2020,0x00A2], tag_multiple: false, tag_note: ''},
|
3530
3656
|
{ tag_ps: '(2020,0110)', tag_name: "Basic Grayscale Image Sequence", tag_key: 'BasicGrayscaleImageSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2020,0110)', tag_sym: :basic_grayscale_image_sequence, tag_ndm: '20200110', tag_ary: [0x2020,0x0110], tag_multiple: false, tag_note: ''},
|
3531
3657
|
{ tag_ps: '(2020,0111)', tag_name: "Basic Color Image Sequence", tag_key: 'BasicColorImageSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2020,0111)', tag_sym: :basic_color_image_sequence, tag_ndm: '20200111', tag_ary: [0x2020,0x0111], tag_multiple: false, tag_note: ''},
|
3532
|
-
{ tag_ps: '(2020,0130)', tag_name: "Referenced Image Overlay Box Sequence", tag_key: 'ReferencedImageOverlayBoxSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2020,0130)', tag_sym: :referenced_image_overlay_box_sequence, tag_ndm: '20200130', tag_ary: [0x2020,0x0130], tag_multiple: false, tag_note: 'RET'},
|
3533
|
-
{ tag_ps: '(2020,0140)', tag_name: "Referenced VOI LUT Box Sequence", tag_key: 'ReferencedVOILUTBoxSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2020,0140)', tag_sym: :referenced_voi_lut_box_sequence, tag_ndm: '20200140', tag_ary: [0x2020,0x0140], tag_multiple: false, tag_note: 'RET'},
|
3658
|
+
{ tag_ps: '(2020,0130)', tag_name: "Referenced Image Overlay Box Sequence", tag_key: 'ReferencedImageOverlayBoxSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2020,0130)', tag_sym: :referenced_image_overlay_box_sequence, tag_ndm: '20200130', tag_ary: [0x2020,0x0130], tag_multiple: false, tag_note: 'RET (1998)'},
|
3659
|
+
{ tag_ps: '(2020,0140)', tag_name: "Referenced VOI LUT Box Sequence", tag_key: 'ReferencedVOILUTBoxSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2020,0140)', tag_sym: :referenced_voi_lut_box_sequence, tag_ndm: '20200140', tag_ary: [0x2020,0x0140], tag_multiple: false, tag_note: 'RET (1998)'},
|
3534
3660
|
{ tag_ps: '(2030,0010)', tag_name: "Annotation Position", tag_key: 'AnnotationPosition', tag_vr: [:US], tag_vm: ["1"], tag_str: '(2030,0010)', tag_sym: :annotation_position, tag_ndm: '20300010', tag_ary: [0x2030,0x0010], tag_multiple: false, tag_note: ''},
|
3535
3661
|
{ tag_ps: '(2030,0020)', tag_name: "Text String", tag_key: 'TextString', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(2030,0020)', tag_sym: :text_string, tag_ndm: '20300020', tag_ary: [0x2030,0x0020], tag_multiple: false, tag_note: ''},
|
3536
|
-
{ tag_ps: '(2040,0010)', tag_name: "Referenced Overlay Plane Sequence", tag_key: 'ReferencedOverlayPlaneSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2040,0010)', tag_sym: :referenced_overlay_plane_sequence, tag_ndm: '20400010', tag_ary: [0x2040,0x0010], tag_multiple: false, tag_note: 'RET'},
|
3537
|
-
{ tag_ps: '(2040,0011)', tag_name: "Referenced Overlay Plane Groups", tag_key: 'ReferencedOverlayPlaneGroups', tag_vr: [:US], tag_vm: ["1-99"], tag_str: '(2040,0011)', tag_sym: :referenced_overlay_plane_groups, tag_ndm: '20400011', tag_ary: [0x2040,0x0011], tag_multiple: false, tag_note: 'RET'},
|
3538
|
-
{ tag_ps: '(2040,0020)', tag_name: "Overlay Pixel Data Sequence", tag_key: 'OverlayPixelDataSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2040,0020)', tag_sym: :overlay_pixel_data_sequence, tag_ndm: '20400020', tag_ary: [0x2040,0x0020], tag_multiple: false, tag_note: 'RET'},
|
3539
|
-
{ tag_ps: '(2040,0060)', tag_name: "Overlay Magnification Type", tag_key: 'OverlayMagnificationType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0060)', tag_sym: :overlay_magnification_type, tag_ndm: '20400060', tag_ary: [0x2040,0x0060], tag_multiple: false, tag_note: 'RET'},
|
3540
|
-
{ tag_ps: '(2040,0070)', tag_name: "Overlay Smoothing Type", tag_key: 'OverlaySmoothingType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0070)', tag_sym: :overlay_smoothing_type, tag_ndm: '20400070', tag_ary: [0x2040,0x0070], tag_multiple: false, tag_note: 'RET'},
|
3541
|
-
{ tag_ps: '(2040,0072)', tag_name: "Overlay or Image Magnification", tag_key: 'OverlayOrImageMagnification', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0072)', tag_sym: :overlay_or_image_magnification, tag_ndm: '20400072', tag_ary: [0x2040,0x0072], tag_multiple: false, tag_note: 'RET'},
|
3542
|
-
{ tag_ps: '(2040,0074)', tag_name: "Magnify to Number of Columns", tag_key: 'MagnifyToNumberOfColumns', tag_vr: [:US], tag_vm: ["1"], tag_str: '(2040,0074)', tag_sym: :magnify_to_number_of_columns, tag_ndm: '20400074', tag_ary: [0x2040,0x0074], tag_multiple: false, tag_note: 'RET'},
|
3543
|
-
{ tag_ps: '(2040,0080)', tag_name: "Overlay Foreground Density", tag_key: 'OverlayForegroundDensity', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0080)', tag_sym: :overlay_foreground_density, tag_ndm: '20400080', tag_ary: [0x2040,0x0080], tag_multiple: false, tag_note: 'RET'},
|
3544
|
-
{ tag_ps: '(2040,0082)', tag_name: "Overlay Background Density", tag_key: 'OverlayBackgroundDensity', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0082)', tag_sym: :overlay_background_density, tag_ndm: '20400082', tag_ary: [0x2040,0x0082], tag_multiple: false, tag_note: 'RET'},
|
3545
|
-
{ tag_ps: '(2040,0090)', tag_name: "Overlay Mode", tag_key: 'OverlayMode', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0090)', tag_sym: :overlay_mode, tag_ndm: '20400090', tag_ary: [0x2040,0x0090], tag_multiple: false, tag_note: 'RET'},
|
3546
|
-
{ tag_ps: '(2040,0100)', tag_name: "Threshold Density", tag_key: 'ThresholdDensity', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0100)', tag_sym: :threshold_density, tag_ndm: '20400100', tag_ary: [0x2040,0x0100], tag_multiple: false, tag_note: 'RET'},
|
3547
|
-
{ tag_ps: '(2040,0500)', tag_name: "Referenced Image Box Sequence (Retired)", tag_key: 'ReferencedImageBoxSequenceRetired', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2040,0500)', tag_sym: :referenced_image_box_sequence_retired, tag_ndm: '20400500', tag_ary: [0x2040,0x0500], tag_multiple: false, tag_note: 'RET'},
|
3662
|
+
{ tag_ps: '(2040,0010)', tag_name: "Referenced Overlay Plane Sequence", tag_key: 'ReferencedOverlayPlaneSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2040,0010)', tag_sym: :referenced_overlay_plane_sequence, tag_ndm: '20400010', tag_ary: [0x2040,0x0010], tag_multiple: false, tag_note: 'RET (2004)'},
|
3663
|
+
{ tag_ps: '(2040,0011)', tag_name: "Referenced Overlay Plane Groups", tag_key: 'ReferencedOverlayPlaneGroups', tag_vr: [:US], tag_vm: ["1-99"], tag_str: '(2040,0011)', tag_sym: :referenced_overlay_plane_groups, tag_ndm: '20400011', tag_ary: [0x2040,0x0011], tag_multiple: false, tag_note: 'RET (2004)'},
|
3664
|
+
{ tag_ps: '(2040,0020)', tag_name: "Overlay Pixel Data Sequence", tag_key: 'OverlayPixelDataSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2040,0020)', tag_sym: :overlay_pixel_data_sequence, tag_ndm: '20400020', tag_ary: [0x2040,0x0020], tag_multiple: false, tag_note: 'RET (2004)'},
|
3665
|
+
{ tag_ps: '(2040,0060)', tag_name: "Overlay Magnification Type", tag_key: 'OverlayMagnificationType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0060)', tag_sym: :overlay_magnification_type, tag_ndm: '20400060', tag_ary: [0x2040,0x0060], tag_multiple: false, tag_note: 'RET (2004)'},
|
3666
|
+
{ tag_ps: '(2040,0070)', tag_name: "Overlay Smoothing Type", tag_key: 'OverlaySmoothingType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0070)', tag_sym: :overlay_smoothing_type, tag_ndm: '20400070', tag_ary: [0x2040,0x0070], tag_multiple: false, tag_note: 'RET (2004)'},
|
3667
|
+
{ tag_ps: '(2040,0072)', tag_name: "Overlay or Image Magnification", tag_key: 'OverlayOrImageMagnification', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0072)', tag_sym: :overlay_or_image_magnification, tag_ndm: '20400072', tag_ary: [0x2040,0x0072], tag_multiple: false, tag_note: 'RET (2004)'},
|
3668
|
+
{ tag_ps: '(2040,0074)', tag_name: "Magnify to Number of Columns", tag_key: 'MagnifyToNumberOfColumns', tag_vr: [:US], tag_vm: ["1"], tag_str: '(2040,0074)', tag_sym: :magnify_to_number_of_columns, tag_ndm: '20400074', tag_ary: [0x2040,0x0074], tag_multiple: false, tag_note: 'RET (2004)'},
|
3669
|
+
{ tag_ps: '(2040,0080)', tag_name: "Overlay Foreground Density", tag_key: 'OverlayForegroundDensity', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0080)', tag_sym: :overlay_foreground_density, tag_ndm: '20400080', tag_ary: [0x2040,0x0080], tag_multiple: false, tag_note: 'RET (2004)'},
|
3670
|
+
{ tag_ps: '(2040,0082)', tag_name: "Overlay Background Density", tag_key: 'OverlayBackgroundDensity', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0082)', tag_sym: :overlay_background_density, tag_ndm: '20400082', tag_ary: [0x2040,0x0082], tag_multiple: false, tag_note: 'RET (2004)'},
|
3671
|
+
{ tag_ps: '(2040,0090)', tag_name: "Overlay Mode", tag_key: 'OverlayMode', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0090)', tag_sym: :overlay_mode, tag_ndm: '20400090', tag_ary: [0x2040,0x0090], tag_multiple: false, tag_note: 'RET (1998)'},
|
3672
|
+
{ tag_ps: '(2040,0100)', tag_name: "Threshold Density", tag_key: 'ThresholdDensity', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2040,0100)', tag_sym: :threshold_density, tag_ndm: '20400100', tag_ary: [0x2040,0x0100], tag_multiple: false, tag_note: 'RET (1998)'},
|
3673
|
+
{ tag_ps: '(2040,0500)', tag_name: "Referenced Image Box Sequence (Retired)", tag_key: 'ReferencedImageBoxSequenceRetired', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2040,0500)', tag_sym: :referenced_image_box_sequence_retired, tag_ndm: '20400500', tag_ary: [0x2040,0x0500], tag_multiple: false, tag_note: 'RET (1993)'},
|
3548
3674
|
{ tag_ps: '(2050,0010)', tag_name: "Presentation LUT Sequence", tag_key: 'PresentationLUTSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2050,0010)', tag_sym: :presentation_lut_sequence, tag_ndm: '20500010', tag_ary: [0x2050,0x0010], tag_multiple: false, tag_note: ''},
|
3549
3675
|
{ tag_ps: '(2050,0020)', tag_name: "Presentation LUT Shape", tag_key: 'PresentationLUTShape', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2050,0020)', tag_sym: :presentation_lut_shape, tag_ndm: '20500020', tag_ary: [0x2050,0x0020], tag_multiple: false, tag_note: ''},
|
3550
3676
|
{ tag_ps: '(2050,0500)', tag_name: "Referenced Presentation LUT Sequence", tag_key: 'ReferencedPresentationLUTSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2050,0500)', tag_sym: :referenced_presentation_lut_sequence, tag_ndm: '20500500', tag_ary: [0x2050,0x0500], tag_multiple: false, tag_note: ''},
|
3551
|
-
{ tag_ps: '(2100,0010)', tag_name: "Print Job ID", tag_key: 'PrintJobID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(2100,0010)', tag_sym: :print_job_id, tag_ndm: '21000010', tag_ary: [0x2100,0x0010], tag_multiple: false, tag_note: 'RET'},
|
3677
|
+
{ tag_ps: '(2100,0010)', tag_name: "Print Job ID", tag_key: 'PrintJobID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(2100,0010)', tag_sym: :print_job_id, tag_ndm: '21000010', tag_ary: [0x2100,0x0010], tag_multiple: false, tag_note: 'RET (2007)'},
|
3552
3678
|
{ tag_ps: '(2100,0020)', tag_name: "Execution Status", tag_key: 'ExecutionStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2100,0020)', tag_sym: :execution_status, tag_ndm: '21000020', tag_ary: [0x2100,0x0020], tag_multiple: false, tag_note: ''},
|
3553
3679
|
{ tag_ps: '(2100,0030)', tag_name: "Execution Status Info", tag_key: 'ExecutionStatusInfo', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2100,0030)', tag_sym: :execution_status_info, tag_ndm: '21000030', tag_ary: [0x2100,0x0030], tag_multiple: false, tag_note: ''},
|
3554
3680
|
{ tag_ps: '(2100,0040)', tag_name: "Creation Date", tag_key: 'CreationDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(2100,0040)', tag_sym: :creation_date, tag_ndm: '21000040', tag_ary: [0x2100,0x0040], tag_multiple: false, tag_note: ''},
|
@@ -3557,23 +3683,23 @@ HIGH = 0001H'},
|
|
3557
3683
|
{ tag_ps: '(2100,0140)', tag_name: "Destination AE", tag_key: 'DestinationAE', tag_vr: [:AE], tag_vm: ["1"], tag_str: '(2100,0140)', tag_sym: :destination_ae, tag_ndm: '21000140', tag_ary: [0x2100,0x0140], tag_multiple: false, tag_note: ''},
|
3558
3684
|
{ tag_ps: '(2100,0160)', tag_name: "Owner ID", tag_key: 'OwnerID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(2100,0160)', tag_sym: :owner_id, tag_ndm: '21000160', tag_ary: [0x2100,0x0160], tag_multiple: false, tag_note: ''},
|
3559
3685
|
{ tag_ps: '(2100,0170)', tag_name: "Number of Films", tag_key: 'NumberOfFilms', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(2100,0170)', tag_sym: :number_of_films, tag_ndm: '21000170', tag_ary: [0x2100,0x0170], tag_multiple: false, tag_note: ''},
|
3560
|
-
{ tag_ps: '(2100,0500)', tag_name: "Referenced Print Job Sequence (Pull Stored Print)", tag_key: 'ReferencedPrintJobSequencePullStoredPrint', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2100,0500)', tag_sym: :referenced_print_job_sequence_pull_stored_print, tag_ndm: '21000500', tag_ary: [0x2100,0x0500], tag_multiple: false, tag_note: 'RET'},
|
3686
|
+
{ tag_ps: '(2100,0500)', tag_name: "Referenced Print Job Sequence (Pull Stored Print)", tag_key: 'ReferencedPrintJobSequencePullStoredPrint', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2100,0500)', tag_sym: :referenced_print_job_sequence_pull_stored_print, tag_ndm: '21000500', tag_ary: [0x2100,0x0500], tag_multiple: false, tag_note: 'RET (2004)'},
|
3561
3687
|
{ tag_ps: '(2110,0010)', tag_name: "Printer Status", tag_key: 'PrinterStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2110,0010)', tag_sym: :printer_status, tag_ndm: '21100010', tag_ary: [0x2110,0x0010], tag_multiple: false, tag_note: ''},
|
3562
3688
|
{ tag_ps: '(2110,0020)', tag_name: "Printer Status Info", tag_key: 'PrinterStatusInfo', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2110,0020)', tag_sym: :printer_status_info, tag_ndm: '21100020', tag_ary: [0x2110,0x0020], tag_multiple: false, tag_note: ''},
|
3563
3689
|
{ tag_ps: '(2110,0030)', tag_name: "Printer Name", tag_key: 'PrinterName', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(2110,0030)', tag_sym: :printer_name, tag_ndm: '21100030', tag_ary: [0x2110,0x0030], tag_multiple: false, tag_note: ''},
|
3564
|
-
{ tag_ps: '(2110,0099)', tag_name: "Print Queue ID", tag_key: 'PrintQueueID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(2110,0099)', tag_sym: :print_queue_id, tag_ndm: '21100099', tag_ary: [0x2110,0x0099], tag_multiple: false, tag_note: 'RET'},
|
3565
|
-
{ tag_ps: '(2120,0010)', tag_name: "Queue Status", tag_key: 'QueueStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2120,0010)', tag_sym: :queue_status, tag_ndm: '21200010', tag_ary: [0x2120,0x0010], tag_multiple: false, tag_note: 'RET'},
|
3566
|
-
{ tag_ps: '(2120,0050)', tag_name: "Print Job Description Sequence", tag_key: 'PrintJobDescriptionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2120,0050)', tag_sym: :print_job_description_sequence, tag_ndm: '21200050', tag_ary: [0x2120,0x0050], tag_multiple: false, tag_note: 'RET'},
|
3567
|
-
{ tag_ps: '(2120,0070)', tag_name: "Referenced Print Job Sequence", tag_key: 'ReferencedPrintJobSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2120,0070)', tag_sym: :referenced_print_job_sequence, tag_ndm: '21200070', tag_ary: [0x2120,0x0070], tag_multiple: false, tag_note: 'RET'},
|
3568
|
-
{ tag_ps: '(2130,0010)', tag_name: "Print Management Capabilities Sequence", tag_key: 'PrintManagementCapabilitiesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0010)', tag_sym: :print_management_capabilities_sequence, tag_ndm: '21300010', tag_ary: [0x2130,0x0010], tag_multiple: false, tag_note: 'RET'},
|
3569
|
-
{ tag_ps: '(2130,0015)', tag_name: "Printer Characteristics Sequence", tag_key: 'PrinterCharacteristicsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0015)', tag_sym: :printer_characteristics_sequence, tag_ndm: '21300015', tag_ary: [0x2130,0x0015], tag_multiple: false, tag_note: 'RET'},
|
3570
|
-
{ tag_ps: '(2130,0030)', tag_name: "Film Box Content Sequence", tag_key: 'FilmBoxContentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0030)', tag_sym: :film_box_content_sequence, tag_ndm: '21300030', tag_ary: [0x2130,0x0030], tag_multiple: false, tag_note: 'RET'},
|
3571
|
-
{ tag_ps: '(2130,0040)', tag_name: "Image Box Content Sequence", tag_key: 'ImageBoxContentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0040)', tag_sym: :image_box_content_sequence, tag_ndm: '21300040', tag_ary: [0x2130,0x0040], tag_multiple: false, tag_note: 'RET'},
|
3572
|
-
{ tag_ps: '(2130,0050)', tag_name: "Annotation Content Sequence", tag_key: 'AnnotationContentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0050)', tag_sym: :annotation_content_sequence, tag_ndm: '21300050', tag_ary: [0x2130,0x0050], tag_multiple: false, tag_note: 'RET'},
|
3573
|
-
{ tag_ps: '(2130,0060)', tag_name: "Image Overlay Box Content Sequence", tag_key: 'ImageOverlayBoxContentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0060)', tag_sym: :image_overlay_box_content_sequence, tag_ndm: '21300060', tag_ary: [0x2130,0x0060], tag_multiple: false, tag_note: 'RET'},
|
3574
|
-
{ tag_ps: '(2130,0080)', tag_name: "Presentation LUT Content Sequence", tag_key: 'PresentationLUTContentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0080)', tag_sym: :presentation_lut_content_sequence, tag_ndm: '21300080', tag_ary: [0x2130,0x0080], tag_multiple: false, tag_note: 'RET'},
|
3575
|
-
{ tag_ps: '(2130,00A0)', tag_name: "Proposed Study Sequence", tag_key: 'ProposedStudySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,00A0)', tag_sym: :proposed_study_sequence, tag_ndm: '213000A0', tag_ary: [0x2130,0x00A0], tag_multiple: false, tag_note: 'RET'},
|
3576
|
-
{ tag_ps: '(2130,00C0)', tag_name: "Original Image Sequence", tag_key: 'OriginalImageSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,00C0)', tag_sym: :original_image_sequence, tag_ndm: '213000C0', tag_ary: [0x2130,0x00C0], tag_multiple: false, tag_note: 'RET'},
|
3690
|
+
{ tag_ps: '(2110,0099)', tag_name: "Print Queue ID", tag_key: 'PrintQueueID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(2110,0099)', tag_sym: :print_queue_id, tag_ndm: '21100099', tag_ary: [0x2110,0x0099], tag_multiple: false, tag_note: 'RET (2004)'},
|
3691
|
+
{ tag_ps: '(2120,0010)', tag_name: "Queue Status", tag_key: 'QueueStatus', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2120,0010)', tag_sym: :queue_status, tag_ndm: '21200010', tag_ary: [0x2120,0x0010], tag_multiple: false, tag_note: 'RET (2004)'},
|
3692
|
+
{ tag_ps: '(2120,0050)', tag_name: "Print Job Description Sequence", tag_key: 'PrintJobDescriptionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2120,0050)', tag_sym: :print_job_description_sequence, tag_ndm: '21200050', tag_ary: [0x2120,0x0050], tag_multiple: false, tag_note: 'RET (2004)'},
|
3693
|
+
{ tag_ps: '(2120,0070)', tag_name: "Referenced Print Job Sequence", tag_key: 'ReferencedPrintJobSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2120,0070)', tag_sym: :referenced_print_job_sequence, tag_ndm: '21200070', tag_ary: [0x2120,0x0070], tag_multiple: false, tag_note: 'RET (2004)'},
|
3694
|
+
{ tag_ps: '(2130,0010)', tag_name: "Print Management Capabilities Sequence", tag_key: 'PrintManagementCapabilitiesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0010)', tag_sym: :print_management_capabilities_sequence, tag_ndm: '21300010', tag_ary: [0x2130,0x0010], tag_multiple: false, tag_note: 'RET (2004)'},
|
3695
|
+
{ tag_ps: '(2130,0015)', tag_name: "Printer Characteristics Sequence", tag_key: 'PrinterCharacteristicsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0015)', tag_sym: :printer_characteristics_sequence, tag_ndm: '21300015', tag_ary: [0x2130,0x0015], tag_multiple: false, tag_note: 'RET (2004)'},
|
3696
|
+
{ tag_ps: '(2130,0030)', tag_name: "Film Box Content Sequence", tag_key: 'FilmBoxContentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0030)', tag_sym: :film_box_content_sequence, tag_ndm: '21300030', tag_ary: [0x2130,0x0030], tag_multiple: false, tag_note: 'RET (2004)'},
|
3697
|
+
{ tag_ps: '(2130,0040)', tag_name: "Image Box Content Sequence", tag_key: 'ImageBoxContentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0040)', tag_sym: :image_box_content_sequence, tag_ndm: '21300040', tag_ary: [0x2130,0x0040], tag_multiple: false, tag_note: 'RET (2004)'},
|
3698
|
+
{ tag_ps: '(2130,0050)', tag_name: "Annotation Content Sequence", tag_key: 'AnnotationContentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0050)', tag_sym: :annotation_content_sequence, tag_ndm: '21300050', tag_ary: [0x2130,0x0050], tag_multiple: false, tag_note: 'RET (2004)'},
|
3699
|
+
{ tag_ps: '(2130,0060)', tag_name: "Image Overlay Box Content Sequence", tag_key: 'ImageOverlayBoxContentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0060)', tag_sym: :image_overlay_box_content_sequence, tag_ndm: '21300060', tag_ary: [0x2130,0x0060], tag_multiple: false, tag_note: 'RET (2004)'},
|
3700
|
+
{ tag_ps: '(2130,0080)', tag_name: "Presentation LUT Content Sequence", tag_key: 'PresentationLUTContentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,0080)', tag_sym: :presentation_lut_content_sequence, tag_ndm: '21300080', tag_ary: [0x2130,0x0080], tag_multiple: false, tag_note: 'RET (2004)'},
|
3701
|
+
{ tag_ps: '(2130,00A0)', tag_name: "Proposed Study Sequence", tag_key: 'ProposedStudySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,00A0)', tag_sym: :proposed_study_sequence, tag_ndm: '213000A0', tag_ary: [0x2130,0x00A0], tag_multiple: false, tag_note: 'RET (2004)'},
|
3702
|
+
{ tag_ps: '(2130,00C0)', tag_name: "Original Image Sequence", tag_key: 'OriginalImageSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(2130,00C0)', tag_sym: :original_image_sequence, tag_ndm: '213000C0', tag_ary: [0x2130,0x00C0], tag_multiple: false, tag_note: 'RET (2004)'},
|
3577
3703
|
{ tag_ps: '(2200,0001)', tag_name: "Label Using Information Extracted From Instances", tag_key: 'LabelUsingInformationExtractedFromInstances', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2200,0001)', tag_sym: :label_using_information_extracted_from_instances, tag_ndm: '22000001', tag_ary: [0x2200,0x0001], tag_multiple: false, tag_note: ''},
|
3578
3704
|
{ tag_ps: '(2200,0002)', tag_name: "Label Text", tag_key: 'LabelText', tag_vr: [:UT], tag_vm: ["1"], tag_str: '(2200,0002)', tag_sym: :label_text, tag_ndm: '22000002', tag_ary: [0x2200,0x0002], tag_multiple: false, tag_note: ''},
|
3579
3705
|
{ tag_ps: '(2200,0003)', tag_name: "Label Style Selection", tag_key: 'LabelStyleSelection', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(2200,0003)', tag_sym: :label_style_selection, tag_ndm: '22000003', tag_ary: [0x2200,0x0003], tag_multiple: false, tag_note: ''},
|
@@ -3685,10 +3811,10 @@ HIGH = 0001H'},
|
|
3685
3811
|
{ tag_ps: '(3006,00B6)', tag_name: "ROI Elemental Composition Sequence", tag_key: 'ROIElementalCompositionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3006,00B6)', tag_sym: :roi_elemental_composition_sequence, tag_ndm: '300600B6', tag_ary: [0x3006,0x00B6], tag_multiple: false, tag_note: ''},
|
3686
3812
|
{ tag_ps: '(3006,00B7)', tag_name: "ROI Elemental Composition Atomic Number", tag_key: 'ROIElementalCompositionAtomicNumber', tag_vr: [:US], tag_vm: ["1"], tag_str: '(3006,00B7)', tag_sym: :roi_elemental_composition_atomic_number, tag_ndm: '300600B7', tag_ary: [0x3006,0x00B7], tag_multiple: false, tag_note: ''},
|
3687
3813
|
{ tag_ps: '(3006,00B8)', tag_name: "ROI Elemental Composition Atomic Mass Fraction", tag_key: 'ROIElementalCompositionAtomicMassFraction', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(3006,00B8)', tag_sym: :roi_elemental_composition_atomic_mass_fraction, tag_ndm: '300600B8', tag_ary: [0x3006,0x00B8], tag_multiple: false, tag_note: ''},
|
3688
|
-
{ tag_ps: '(3006,00B9)', tag_name: "Additional RT ROI Identification Code Sequence", tag_key: 'AdditionalRTROIIdentificationCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3006,00B9)', tag_sym: :additional_rt_roi_identification_code_sequence, tag_ndm: '300600B9', tag_ary: [0x3006,0x00B9], tag_multiple: false, tag_note: 'RET'},
|
3689
|
-
{ tag_ps: '(3006,00C0)', tag_name: "Frame of Reference Relationship Sequence", tag_key: 'FrameOfReferenceRelationshipSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3006,00C0)', tag_sym: :frame_of_reference_relationship_sequence, tag_ndm: '300600C0', tag_ary: [0x3006,0x00C0], tag_multiple: false, tag_note: 'RET'},
|
3690
|
-
{ tag_ps: '(3006,00C2)', tag_name: "Related Frame of Reference UID", tag_key: 'RelatedFrameOfReferenceUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(3006,00C2)', tag_sym: :related_frame_of_reference_uid, tag_ndm: '300600C2', tag_ary: [0x3006,0x00C2], tag_multiple: false, tag_note: 'RET'},
|
3691
|
-
{ tag_ps: '(3006,00C4)', tag_name: "Frame of Reference Transformation Type", tag_key: 'FrameOfReferenceTransformationType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3006,00C4)', tag_sym: :frame_of_reference_transformation_type, tag_ndm: '300600C4', tag_ary: [0x3006,0x00C4], tag_multiple: false, tag_note: 'RET'},
|
3814
|
+
{ tag_ps: '(3006,00B9)', tag_name: "Additional RT ROI Identification Code Sequence", tag_key: 'AdditionalRTROIIdentificationCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3006,00B9)', tag_sym: :additional_rt_roi_identification_code_sequence, tag_ndm: '300600B9', tag_ary: [0x3006,0x00B9], tag_multiple: false, tag_note: 'RET (2016c)'},
|
3815
|
+
{ tag_ps: '(3006,00C0)', tag_name: "Frame of Reference Relationship Sequence", tag_key: 'FrameOfReferenceRelationshipSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3006,00C0)', tag_sym: :frame_of_reference_relationship_sequence, tag_ndm: '300600C0', tag_ary: [0x3006,0x00C0], tag_multiple: false, tag_note: 'RET (2011)'},
|
3816
|
+
{ tag_ps: '(3006,00C2)', tag_name: "Related Frame of Reference UID", tag_key: 'RelatedFrameOfReferenceUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(3006,00C2)', tag_sym: :related_frame_of_reference_uid, tag_ndm: '300600C2', tag_ary: [0x3006,0x00C2], tag_multiple: false, tag_note: 'RET (2011)'},
|
3817
|
+
{ tag_ps: '(3006,00C4)', tag_name: "Frame of Reference Transformation Type", tag_key: 'FrameOfReferenceTransformationType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3006,00C4)', tag_sym: :frame_of_reference_transformation_type, tag_ndm: '300600C4', tag_ary: [0x3006,0x00C4], tag_multiple: false, tag_note: 'RET (2011)'},
|
3692
3818
|
{ tag_ps: '(3006,00C6)', tag_name: "Frame of Reference Transformation Matrix", tag_key: 'FrameOfReferenceTransformationMatrix', tag_vr: [:DS], tag_vm: ["16"], tag_str: '(3006,00C6)', tag_sym: :frame_of_reference_transformation_matrix, tag_ndm: '300600C6', tag_ary: [0x3006,0x00C6], tag_multiple: false, tag_note: ''},
|
3693
3819
|
{ tag_ps: '(3006,00C8)', tag_name: "Frame of Reference Transformation Comment", tag_key: 'FrameOfReferenceTransformationComment', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(3006,00C8)', tag_sym: :frame_of_reference_transformation_comment, tag_ndm: '300600C8', tag_ary: [0x3006,0x00C8], tag_multiple: false, tag_note: ''},
|
3694
3820
|
{ tag_ps: '(3008,0010)', tag_name: "Measured Dose Reference Sequence", tag_key: 'MeasuredDoseReferenceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3008,0010)', tag_sym: :measured_dose_reference_sequence, tag_ndm: '30080010', tag_ary: [0x3008,0x0010], tag_multiple: false, tag_note: ''},
|
@@ -3849,9 +3975,9 @@ HIGH = 0001H'},
|
|
3849
3975
|
{ tag_ps: '(300A,008A)', tag_name: "Beam Dose Point SSD", tag_key: 'BeamDosePointSSD', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(300A,008A)', tag_sym: :beam_dose_point_ssd, tag_ndm: '300A008A', tag_ary: [0x300A,0x008A], tag_multiple: false, tag_note: ''},
|
3850
3976
|
{ tag_ps: '(300A,008B)', tag_name: "Beam Dose Meaning", tag_key: 'BeamDoseMeaning', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,008B)', tag_sym: :beam_dose_meaning, tag_ndm: '300A008B', tag_ary: [0x300A,0x008B], tag_multiple: false, tag_note: ''},
|
3851
3977
|
{ tag_ps: '(300A,008C)', tag_name: "Beam Dose Verification Control Point Sequence", tag_key: 'BeamDoseVerificationControlPointSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(300A,008C)', tag_sym: :beam_dose_verification_control_point_sequence, tag_ndm: '300A008C', tag_ary: [0x300A,0x008C], tag_multiple: false, tag_note: ''},
|
3852
|
-
{ tag_ps: '(300A,008D)', tag_name: "Average Beam Dose Point Depth", tag_key: 'AverageBeamDosePointDepth', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(300A,008D)', tag_sym: :average_beam_dose_point_depth, tag_ndm: '300A008D', tag_ary: [0x300A,0x008D], tag_multiple: false, tag_note: 'RET'},
|
3853
|
-
{ tag_ps: '(300A,008E)', tag_name: "Average Beam Dose Point Equivalent Depth", tag_key: 'AverageBeamDosePointEquivalentDepth', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(300A,008E)', tag_sym: :average_beam_dose_point_equivalent_depth, tag_ndm: '300A008E', tag_ary: [0x300A,0x008E], tag_multiple: false, tag_note: 'RET'},
|
3854
|
-
{ tag_ps: '(300A,008F)', tag_name: "Average Beam Dose Point SSD", tag_key: 'AverageBeamDosePointSSD', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(300A,008F)', tag_sym: :average_beam_dose_point_ssd, tag_ndm: '300A008F', tag_ary: [0x300A,0x008F], tag_multiple: false, tag_note: 'RET'},
|
3978
|
+
{ tag_ps: '(300A,008D)', tag_name: "Average Beam Dose Point Depth", tag_key: 'AverageBeamDosePointDepth', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(300A,008D)', tag_sym: :average_beam_dose_point_depth, tag_ndm: '300A008D', tag_ary: [0x300A,0x008D], tag_multiple: false, tag_note: 'RET (2017c)'},
|
3979
|
+
{ tag_ps: '(300A,008E)', tag_name: "Average Beam Dose Point Equivalent Depth", tag_key: 'AverageBeamDosePointEquivalentDepth', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(300A,008E)', tag_sym: :average_beam_dose_point_equivalent_depth, tag_ndm: '300A008E', tag_ary: [0x300A,0x008E], tag_multiple: false, tag_note: 'RET (2017c)'},
|
3980
|
+
{ tag_ps: '(300A,008F)', tag_name: "Average Beam Dose Point SSD", tag_key: 'AverageBeamDosePointSSD', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(300A,008F)', tag_sym: :average_beam_dose_point_ssd, tag_ndm: '300A008F', tag_ary: [0x300A,0x008F], tag_multiple: false, tag_note: 'RET (2017c)'},
|
3855
3981
|
{ tag_ps: '(300A,0090)', tag_name: "Beam Dose Type", tag_key: 'BeamDoseType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0090)', tag_sym: :beam_dose_type, tag_ndm: '300A0090', tag_ary: [0x300A,0x0090], tag_multiple: false, tag_note: ''},
|
3856
3982
|
{ tag_ps: '(300A,0091)', tag_name: "Alternate Beam Dose", tag_key: 'AlternateBeamDose', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(300A,0091)', tag_sym: :alternate_beam_dose, tag_ndm: '300A0091', tag_ary: [0x300A,0x0091], tag_multiple: false, tag_note: ''},
|
3857
3983
|
{ tag_ps: '(300A,0092)', tag_name: "Alternate Beam Dose Type", tag_key: 'AlternateBeamDoseType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(300A,0092)', tag_sym: :alternate_beam_dose_type, tag_ndm: '300A0092', tag_ary: [0x300A,0x0092], tag_multiple: false, tag_note: ''},
|
@@ -4228,7 +4354,7 @@ HIGH = 0001H'},
|
|
4228
4354
|
{ tag_ps: '(3010,0002)', tag_name: "Radiobiological Dose Effect Flag", tag_key: 'RadiobiologicalDoseEffectFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3010,0002)', tag_sym: :radiobiological_dose_effect_flag, tag_ndm: '30100002', tag_ary: [0x3010,0x0002], tag_multiple: false, tag_note: ''},
|
4229
4355
|
{ tag_ps: '(3010,0003)', tag_name: "Effective Dose Calculation Method Category Code Sequence", tag_key: 'EffectiveDoseCalculationMethodCategoryCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0003)', tag_sym: :effective_dose_calculation_method_category_code_sequence, tag_ndm: '30100003', tag_ary: [0x3010,0x0003], tag_multiple: false, tag_note: ''},
|
4230
4356
|
{ tag_ps: '(3010,0004)', tag_name: "Effective Dose Calculation Method Code Sequence", tag_key: 'EffectiveDoseCalculationMethodCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0004)', tag_sym: :effective_dose_calculation_method_code_sequence, tag_ndm: '30100004', tag_ary: [0x3010,0x0004], tag_multiple: false, tag_note: ''},
|
4231
|
-
{ tag_ps: '(3010,0005)', tag_name: "Effective Dose Calculation Method Description", tag_key: '
|
4357
|
+
{ tag_ps: '(3010,0005)', tag_name: "Effective Dose Calculation Method Description", tag_key: 'EffectiveDoseCalculationMethodDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(3010,0005)', tag_sym: :effective_dose_calculation_method_description, tag_ndm: '30100005', tag_ary: [0x3010,0x0005], tag_multiple: false, tag_note: ''},
|
4232
4358
|
{ tag_ps: '(3010,0006)', tag_name: "Conceptual Volume UID", tag_key: 'ConceptualVolumeUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(3010,0006)', tag_sym: :conceptual_volume_uid, tag_ndm: '30100006', tag_ary: [0x3010,0x0006], tag_multiple: false, tag_note: ''},
|
4233
4359
|
{ tag_ps: '(3010,0007)', tag_name: "Originating SOP Instance Reference Sequence", tag_key: 'OriginatingSOPInstanceReferenceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0007)', tag_sym: :originating_sop_instance_reference_sequence, tag_ndm: '30100007', tag_ary: [0x3010,0x0007], tag_multiple: false, tag_note: ''},
|
4234
4360
|
{ tag_ps: '(3010,0008)', tag_name: "Conceptual Volume Constituent Sequence", tag_key: 'ConceptualVolumeConstituentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0008)', tag_sym: :conceptual_volume_constituent_sequence, tag_ndm: '30100008', tag_ary: [0x3010,0x0008], tag_multiple: false, tag_note: ''},
|
@@ -4249,7 +4375,7 @@ HIGH = 0001H'},
|
|
4249
4375
|
{ tag_ps: '(3010,0017)', tag_name: "Conceptual Volume Description", tag_key: 'ConceptualVolumeDescription', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(3010,0017)', tag_sym: :conceptual_volume_description, tag_ndm: '30100017', tag_ary: [0x3010,0x0017], tag_multiple: false, tag_note: ''},
|
4250
4376
|
{ tag_ps: '(3010,0018)', tag_name: "Source Conceptual Volume Sequence", tag_key: 'SourceConceptualVolumeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0018)', tag_sym: :source_conceptual_volume_sequence, tag_ndm: '30100018', tag_ary: [0x3010,0x0018], tag_multiple: false, tag_note: ''},
|
4251
4377
|
{ tag_ps: '(3010,0019)', tag_name: "Author Identification Sequence", tag_key: 'AuthorIdentificationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0019)', tag_sym: :author_identification_sequence, tag_ndm: '30100019', tag_ary: [0x3010,0x0019], tag_multiple: false, tag_note: ''},
|
4252
|
-
{ tag_ps: '(3010,001A)', tag_name: "Manufacturer's Model Version", tag_key: '
|
4378
|
+
{ tag_ps: '(3010,001A)', tag_name: "Manufacturer's Model Version", tag_key: 'ManufacturerModelVersion', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(3010,001A)', tag_sym: :manufacturer_model_version, tag_ndm: '3010001A', tag_ary: [0x3010,0x001A], tag_multiple: false, tag_note: ''},
|
4253
4379
|
{ tag_ps: '(3010,001B)', tag_name: "Device Alternate Identifier", tag_key: 'DeviceAlternateIdentifier', tag_vr: [:UC], tag_vm: ["1"], tag_str: '(3010,001B)', tag_sym: :device_alternate_identifier, tag_ndm: '3010001B', tag_ary: [0x3010,0x001B], tag_multiple: false, tag_note: ''},
|
4254
4380
|
{ tag_ps: '(3010,001C)', tag_name: "Device Alternate Identifier Type", tag_key: 'DeviceAlternateIdentifierType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3010,001C)', tag_sym: :device_alternate_identifier_type, tag_ndm: '3010001C', tag_ary: [0x3010,0x001C], tag_multiple: false, tag_note: ''},
|
4255
4381
|
{ tag_ps: '(3010,001D)', tag_name: "Device Alternate Identifier Format", tag_key: 'DeviceAlternateIdentifierFormat', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(3010,001D)', tag_sym: :device_alternate_identifier_format, tag_ndm: '3010001D', tag_ary: [0x3010,0x001D], tag_multiple: false, tag_note: ''},
|
@@ -4360,34 +4486,34 @@ HIGH = 0001H'},
|
|
4360
4486
|
{ tag_ps: '(3010,0088)', tag_name: "Delivery Time Structure Code Sequence", tag_key: 'DeliveryTimeStructureCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0088)', tag_sym: :delivery_time_structure_code_sequence, tag_ndm: '30100088', tag_ary: [0x3010,0x0088], tag_multiple: false, tag_note: ''},
|
4361
4487
|
{ tag_ps: '(4000,0010)', tag_name: "Arbitrary", tag_key: 'Arbitrary', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(4000,0010)', tag_sym: :arbitrary, tag_ndm: '40000010', tag_ary: [0x4000,0x0010], tag_multiple: false, tag_note: 'RET'},
|
4362
4488
|
{ tag_ps: '(4000,4000)', tag_name: "Text Comments", tag_key: 'TextComments', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(4000,4000)', tag_sym: :text_comments, tag_ndm: '40004000', tag_ary: [0x4000,0x4000], tag_multiple: false, tag_note: 'RET'},
|
4363
|
-
{ tag_ps: '(4008,0040)', tag_name: "Results ID", tag_key: 'ResultsID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(4008,0040)', tag_sym: :results_id, tag_ndm: '40080040', tag_ary: [0x4008,0x0040], tag_multiple: false, tag_note: 'RET'},
|
4364
|
-
{ tag_ps: '(4008,0042)', tag_name: "Results ID Issuer", tag_key: 'ResultsIDIssuer', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(4008,0042)', tag_sym: :results_id_issuer, tag_ndm: '40080042', tag_ary: [0x4008,0x0042], tag_multiple: false, tag_note: 'RET'},
|
4365
|
-
{ tag_ps: '(4008,0050)', tag_name: "Referenced Interpretation Sequence", tag_key: 'ReferencedInterpretationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(4008,0050)', tag_sym: :referenced_interpretation_sequence, tag_ndm: '40080050', tag_ary: [0x4008,0x0050], tag_multiple: false, tag_note: 'RET'},
|
4366
|
-
{ tag_ps: '(4008,00FF)', tag_name: "Report Production Status (Trial)", tag_key: 'ReportProductionStatusTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(4008,00FF)', tag_sym: :report_production_status_trial, tag_ndm: '400800FF', tag_ary: [0x4008,0x00FF], tag_multiple: false, tag_note: 'RET'},
|
4367
|
-
{ tag_ps: '(4008,0100)', tag_name: "Interpretation Recorded Date", tag_key: 'InterpretationRecordedDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(4008,0100)', tag_sym: :interpretation_recorded_date, tag_ndm: '40080100', tag_ary: [0x4008,0x0100], tag_multiple: false, tag_note: 'RET'},
|
4368
|
-
{ tag_ps: '(4008,0101)', tag_name: "Interpretation Recorded Time", tag_key: 'InterpretationRecordedTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(4008,0101)', tag_sym: :interpretation_recorded_time, tag_ndm: '40080101', tag_ary: [0x4008,0x0101], tag_multiple: false, tag_note: 'RET'},
|
4369
|
-
{ tag_ps: '(4008,0102)', tag_name: "Interpretation Recorder", tag_key: 'InterpretationRecorder', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(4008,0102)', tag_sym: :interpretation_recorder, tag_ndm: '40080102', tag_ary: [0x4008,0x0102], tag_multiple: false, tag_note: 'RET'},
|
4370
|
-
{ tag_ps: '(4008,0103)', tag_name: "Reference to Recorded Sound", tag_key: 'ReferenceToRecordedSound', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(4008,0103)', tag_sym: :reference_to_recorded_sound, tag_ndm: '40080103', tag_ary: [0x4008,0x0103], tag_multiple: false, tag_note: 'RET'},
|
4371
|
-
{ tag_ps: '(4008,0108)', tag_name: "Interpretation Transcription Date", tag_key: 'InterpretationTranscriptionDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(4008,0108)', tag_sym: :interpretation_transcription_date, tag_ndm: '40080108', tag_ary: [0x4008,0x0108], tag_multiple: false, tag_note: 'RET'},
|
4372
|
-
{ tag_ps: '(4008,0109)', tag_name: "Interpretation Transcription Time", tag_key: 'InterpretationTranscriptionTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(4008,0109)', tag_sym: :interpretation_transcription_time, tag_ndm: '40080109', tag_ary: [0x4008,0x0109], tag_multiple: false, tag_note: 'RET'},
|
4373
|
-
{ tag_ps: '(4008,010A)', tag_name: "Interpretation Transcriber", tag_key: 'InterpretationTranscriber', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(4008,010A)', tag_sym: :interpretation_transcriber, tag_ndm: '4008010A', tag_ary: [0x4008,0x010A], tag_multiple: false, tag_note: 'RET'},
|
4374
|
-
{ tag_ps: '(4008,010B)', tag_name: "Interpretation Text", tag_key: 'InterpretationText', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(4008,010B)', tag_sym: :interpretation_text, tag_ndm: '4008010B', tag_ary: [0x4008,0x010B], tag_multiple: false, tag_note: 'RET'},
|
4375
|
-
{ tag_ps: '(4008,010C)', tag_name: "Interpretation Author", tag_key: 'InterpretationAuthor', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(4008,010C)', tag_sym: :interpretation_author, tag_ndm: '4008010C', tag_ary: [0x4008,0x010C], tag_multiple: false, tag_note: 'RET'},
|
4376
|
-
{ tag_ps: '(4008,0111)', tag_name: "Interpretation Approver Sequence", tag_key: 'InterpretationApproverSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(4008,0111)', tag_sym: :interpretation_approver_sequence, tag_ndm: '40080111', tag_ary: [0x4008,0x0111], tag_multiple: false, tag_note: 'RET'},
|
4377
|
-
{ tag_ps: '(4008,0112)', tag_name: "Interpretation Approval Date", tag_key: 'InterpretationApprovalDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(4008,0112)', tag_sym: :interpretation_approval_date, tag_ndm: '40080112', tag_ary: [0x4008,0x0112], tag_multiple: false, tag_note: 'RET'},
|
4378
|
-
{ tag_ps: '(4008,0113)', tag_name: "Interpretation Approval Time", tag_key: 'InterpretationApprovalTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(4008,0113)', tag_sym: :interpretation_approval_time, tag_ndm: '40080113', tag_ary: [0x4008,0x0113], tag_multiple: false, tag_note: 'RET'},
|
4379
|
-
{ tag_ps: '(4008,0114)', tag_name: "Physician Approving Interpretation", tag_key: 'PhysicianApprovingInterpretation', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(4008,0114)', tag_sym: :physician_approving_interpretation, tag_ndm: '40080114', tag_ary: [0x4008,0x0114], tag_multiple: false, tag_note: 'RET'},
|
4380
|
-
{ tag_ps: '(4008,0115)', tag_name: "Interpretation Diagnosis Description", tag_key: 'InterpretationDiagnosisDescription', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(4008,0115)', tag_sym: :interpretation_diagnosis_description, tag_ndm: '40080115', tag_ary: [0x4008,0x0115], tag_multiple: false, tag_note: 'RET'},
|
4381
|
-
{ tag_ps: '(4008,0117)', tag_name: "Interpretation Diagnosis Code Sequence", tag_key: 'InterpretationDiagnosisCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(4008,0117)', tag_sym: :interpretation_diagnosis_code_sequence, tag_ndm: '40080117', tag_ary: [0x4008,0x0117], tag_multiple: false, tag_note: 'RET'},
|
4382
|
-
{ tag_ps: '(4008,0118)', tag_name: "Results Distribution List Sequence", tag_key: 'ResultsDistributionListSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(4008,0118)', tag_sym: :results_distribution_list_sequence, tag_ndm: '40080118', tag_ary: [0x4008,0x0118], tag_multiple: false, tag_note: 'RET'},
|
4383
|
-
{ tag_ps: '(4008,0119)', tag_name: "Distribution Name", tag_key: 'DistributionName', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(4008,0119)', tag_sym: :distribution_name, tag_ndm: '40080119', tag_ary: [0x4008,0x0119], tag_multiple: false, tag_note: 'RET'},
|
4384
|
-
{ tag_ps: '(4008,011A)', tag_name: "Distribution Address", tag_key: 'DistributionAddress', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(4008,011A)', tag_sym: :distribution_address, tag_ndm: '4008011A', tag_ary: [0x4008,0x011A], tag_multiple: false, tag_note: 'RET'},
|
4385
|
-
{ tag_ps: '(4008,0200)', tag_name: "Interpretation ID", tag_key: 'InterpretationID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(4008,0200)', tag_sym: :interpretation_id, tag_ndm: '40080200', tag_ary: [0x4008,0x0200], tag_multiple: false, tag_note: 'RET'},
|
4386
|
-
{ tag_ps: '(4008,0202)', tag_name: "Interpretation ID Issuer", tag_key: 'InterpretationIDIssuer', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(4008,0202)', tag_sym: :interpretation_id_issuer, tag_ndm: '40080202', tag_ary: [0x4008,0x0202], tag_multiple: false, tag_note: 'RET'},
|
4387
|
-
{ tag_ps: '(4008,0210)', tag_name: "Interpretation Type ID", tag_key: 'InterpretationTypeID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(4008,0210)', tag_sym: :interpretation_type_id, tag_ndm: '40080210', tag_ary: [0x4008,0x0210], tag_multiple: false, tag_note: 'RET'},
|
4388
|
-
{ tag_ps: '(4008,0212)', tag_name: "Interpretation Status ID", tag_key: 'InterpretationStatusID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(4008,0212)', tag_sym: :interpretation_status_id, tag_ndm: '40080212', tag_ary: [0x4008,0x0212], tag_multiple: false, tag_note: 'RET'},
|
4389
|
-
{ tag_ps: '(4008,0300)', tag_name: "Impressions", tag_key: 'Impressions', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(4008,0300)', tag_sym: :impressions, tag_ndm: '40080300', tag_ary: [0x4008,0x0300], tag_multiple: false, tag_note: 'RET'},
|
4390
|
-
{ tag_ps: '(4008,4000)', tag_name: "Results Comments", tag_key: 'ResultsComments', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(4008,4000)', tag_sym: :results_comments, tag_ndm: '40084000', tag_ary: [0x4008,0x4000], tag_multiple: false, tag_note: 'RET'},
|
4489
|
+
{ tag_ps: '(4008,0040)', tag_name: "Results ID", tag_key: 'ResultsID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(4008,0040)', tag_sym: :results_id, tag_ndm: '40080040', tag_ary: [0x4008,0x0040], tag_multiple: false, tag_note: 'RET (2004)'},
|
4490
|
+
{ tag_ps: '(4008,0042)', tag_name: "Results ID Issuer", tag_key: 'ResultsIDIssuer', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(4008,0042)', tag_sym: :results_id_issuer, tag_ndm: '40080042', tag_ary: [0x4008,0x0042], tag_multiple: false, tag_note: 'RET (2004)'},
|
4491
|
+
{ tag_ps: '(4008,0050)', tag_name: "Referenced Interpretation Sequence", tag_key: 'ReferencedInterpretationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(4008,0050)', tag_sym: :referenced_interpretation_sequence, tag_ndm: '40080050', tag_ary: [0x4008,0x0050], tag_multiple: false, tag_note: 'RET (2004)'},
|
4492
|
+
{ tag_ps: '(4008,00FF)', tag_name: "Report Production Status (Trial)", tag_key: 'ReportProductionStatusTrial', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(4008,00FF)', tag_sym: :report_production_status_trial, tag_ndm: '400800FF', tag_ary: [0x4008,0x00FF], tag_multiple: false, tag_note: 'RET (2009)'},
|
4493
|
+
{ tag_ps: '(4008,0100)', tag_name: "Interpretation Recorded Date", tag_key: 'InterpretationRecordedDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(4008,0100)', tag_sym: :interpretation_recorded_date, tag_ndm: '40080100', tag_ary: [0x4008,0x0100], tag_multiple: false, tag_note: 'RET (2004)'},
|
4494
|
+
{ tag_ps: '(4008,0101)', tag_name: "Interpretation Recorded Time", tag_key: 'InterpretationRecordedTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(4008,0101)', tag_sym: :interpretation_recorded_time, tag_ndm: '40080101', tag_ary: [0x4008,0x0101], tag_multiple: false, tag_note: 'RET (2004)'},
|
4495
|
+
{ tag_ps: '(4008,0102)', tag_name: "Interpretation Recorder", tag_key: 'InterpretationRecorder', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(4008,0102)', tag_sym: :interpretation_recorder, tag_ndm: '40080102', tag_ary: [0x4008,0x0102], tag_multiple: false, tag_note: 'RET (2004)'},
|
4496
|
+
{ tag_ps: '(4008,0103)', tag_name: "Reference to Recorded Sound", tag_key: 'ReferenceToRecordedSound', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(4008,0103)', tag_sym: :reference_to_recorded_sound, tag_ndm: '40080103', tag_ary: [0x4008,0x0103], tag_multiple: false, tag_note: 'RET (2004)'},
|
4497
|
+
{ tag_ps: '(4008,0108)', tag_name: "Interpretation Transcription Date", tag_key: 'InterpretationTranscriptionDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(4008,0108)', tag_sym: :interpretation_transcription_date, tag_ndm: '40080108', tag_ary: [0x4008,0x0108], tag_multiple: false, tag_note: 'RET (2004)'},
|
4498
|
+
{ tag_ps: '(4008,0109)', tag_name: "Interpretation Transcription Time", tag_key: 'InterpretationTranscriptionTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(4008,0109)', tag_sym: :interpretation_transcription_time, tag_ndm: '40080109', tag_ary: [0x4008,0x0109], tag_multiple: false, tag_note: 'RET (2004)'},
|
4499
|
+
{ tag_ps: '(4008,010A)', tag_name: "Interpretation Transcriber", tag_key: 'InterpretationTranscriber', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(4008,010A)', tag_sym: :interpretation_transcriber, tag_ndm: '4008010A', tag_ary: [0x4008,0x010A], tag_multiple: false, tag_note: 'RET (2004)'},
|
4500
|
+
{ tag_ps: '(4008,010B)', tag_name: "Interpretation Text", tag_key: 'InterpretationText', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(4008,010B)', tag_sym: :interpretation_text, tag_ndm: '4008010B', tag_ary: [0x4008,0x010B], tag_multiple: false, tag_note: 'RET (2004)'},
|
4501
|
+
{ tag_ps: '(4008,010C)', tag_name: "Interpretation Author", tag_key: 'InterpretationAuthor', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(4008,010C)', tag_sym: :interpretation_author, tag_ndm: '4008010C', tag_ary: [0x4008,0x010C], tag_multiple: false, tag_note: 'RET (2004)'},
|
4502
|
+
{ tag_ps: '(4008,0111)', tag_name: "Interpretation Approver Sequence", tag_key: 'InterpretationApproverSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(4008,0111)', tag_sym: :interpretation_approver_sequence, tag_ndm: '40080111', tag_ary: [0x4008,0x0111], tag_multiple: false, tag_note: 'RET (2004)'},
|
4503
|
+
{ tag_ps: '(4008,0112)', tag_name: "Interpretation Approval Date", tag_key: 'InterpretationApprovalDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(4008,0112)', tag_sym: :interpretation_approval_date, tag_ndm: '40080112', tag_ary: [0x4008,0x0112], tag_multiple: false, tag_note: 'RET (2004)'},
|
4504
|
+
{ tag_ps: '(4008,0113)', tag_name: "Interpretation Approval Time", tag_key: 'InterpretationApprovalTime', tag_vr: [:TM], tag_vm: ["1"], tag_str: '(4008,0113)', tag_sym: :interpretation_approval_time, tag_ndm: '40080113', tag_ary: [0x4008,0x0113], tag_multiple: false, tag_note: 'RET (2004)'},
|
4505
|
+
{ tag_ps: '(4008,0114)', tag_name: "Physician Approving Interpretation", tag_key: 'PhysicianApprovingInterpretation', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(4008,0114)', tag_sym: :physician_approving_interpretation, tag_ndm: '40080114', tag_ary: [0x4008,0x0114], tag_multiple: false, tag_note: 'RET (2004)'},
|
4506
|
+
{ tag_ps: '(4008,0115)', tag_name: "Interpretation Diagnosis Description", tag_key: 'InterpretationDiagnosisDescription', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(4008,0115)', tag_sym: :interpretation_diagnosis_description, tag_ndm: '40080115', tag_ary: [0x4008,0x0115], tag_multiple: false, tag_note: 'RET (2004)'},
|
4507
|
+
{ tag_ps: '(4008,0117)', tag_name: "Interpretation Diagnosis Code Sequence", tag_key: 'InterpretationDiagnosisCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(4008,0117)', tag_sym: :interpretation_diagnosis_code_sequence, tag_ndm: '40080117', tag_ary: [0x4008,0x0117], tag_multiple: false, tag_note: 'RET (2004)'},
|
4508
|
+
{ tag_ps: '(4008,0118)', tag_name: "Results Distribution List Sequence", tag_key: 'ResultsDistributionListSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(4008,0118)', tag_sym: :results_distribution_list_sequence, tag_ndm: '40080118', tag_ary: [0x4008,0x0118], tag_multiple: false, tag_note: 'RET (2004)'},
|
4509
|
+
{ tag_ps: '(4008,0119)', tag_name: "Distribution Name", tag_key: 'DistributionName', tag_vr: [:PN], tag_vm: ["1"], tag_str: '(4008,0119)', tag_sym: :distribution_name, tag_ndm: '40080119', tag_ary: [0x4008,0x0119], tag_multiple: false, tag_note: 'RET (2004)'},
|
4510
|
+
{ tag_ps: '(4008,011A)', tag_name: "Distribution Address", tag_key: 'DistributionAddress', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(4008,011A)', tag_sym: :distribution_address, tag_ndm: '4008011A', tag_ary: [0x4008,0x011A], tag_multiple: false, tag_note: 'RET (2004)'},
|
4511
|
+
{ tag_ps: '(4008,0200)', tag_name: "Interpretation ID", tag_key: 'InterpretationID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(4008,0200)', tag_sym: :interpretation_id, tag_ndm: '40080200', tag_ary: [0x4008,0x0200], tag_multiple: false, tag_note: 'RET (2004)'},
|
4512
|
+
{ tag_ps: '(4008,0202)', tag_name: "Interpretation ID Issuer", tag_key: 'InterpretationIDIssuer', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(4008,0202)', tag_sym: :interpretation_id_issuer, tag_ndm: '40080202', tag_ary: [0x4008,0x0202], tag_multiple: false, tag_note: 'RET (2004)'},
|
4513
|
+
{ tag_ps: '(4008,0210)', tag_name: "Interpretation Type ID", tag_key: 'InterpretationTypeID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(4008,0210)', tag_sym: :interpretation_type_id, tag_ndm: '40080210', tag_ary: [0x4008,0x0210], tag_multiple: false, tag_note: 'RET (2004)'},
|
4514
|
+
{ tag_ps: '(4008,0212)', tag_name: "Interpretation Status ID", tag_key: 'InterpretationStatusID', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(4008,0212)', tag_sym: :interpretation_status_id, tag_ndm: '40080212', tag_ary: [0x4008,0x0212], tag_multiple: false, tag_note: 'RET (2004)'},
|
4515
|
+
{ tag_ps: '(4008,0300)', tag_name: "Impressions", tag_key: 'Impressions', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(4008,0300)', tag_sym: :impressions, tag_ndm: '40080300', tag_ary: [0x4008,0x0300], tag_multiple: false, tag_note: 'RET (2004)'},
|
4516
|
+
{ tag_ps: '(4008,4000)', tag_name: "Results Comments", tag_key: 'ResultsComments', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(4008,4000)', tag_sym: :results_comments, tag_ndm: '40084000', tag_ary: [0x4008,0x4000], tag_multiple: false, tag_note: 'RET (2004)'},
|
4391
4517
|
{ tag_ps: '(4010,0001)', tag_name: "Low Energy Detectors", tag_key: 'LowEnergyDetectors', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(4010,0001)', tag_sym: :low_energy_detectors, tag_ndm: '40100001', tag_ary: [0x4010,0x0001], tag_multiple: false, tag_note: 'DICOS'},
|
4392
4518
|
{ tag_ps: '(4010,0002)', tag_name: "High Energy Detectors", tag_key: 'HighEnergyDetectors', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(4010,0002)', tag_sym: :high_energy_detectors, tag_ndm: '40100002', tag_ary: [0x4010,0x0002], tag_multiple: false, tag_note: 'DICOS'},
|
4393
4519
|
{ tag_ps: '(4010,0004)', tag_name: "Detector Geometry Sequence", tag_key: 'DetectorGeometrySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(4010,0004)', tag_sym: :detector_geometry_sequence, tag_ndm: '40100004', tag_ary: [0x4010,0x0004], tag_multiple: false, tag_note: 'DICOS'},
|
@@ -4475,32 +4601,32 @@ HIGH = 0001H'},
|
|
4475
4601
|
{ tag_ps: '(4010,107D)', tag_name: "Secondary Inspection Method Sequence", tag_key: 'SecondaryInspectionMethodSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(4010,107D)', tag_sym: :secondary_inspection_method_sequence, tag_ndm: '4010107D', tag_ary: [0x4010,0x107D], tag_multiple: false, tag_note: 'DICOS'},
|
4476
4602
|
{ tag_ps: '(4010,107E)', tag_name: "PRCS to RCS Orientation", tag_key: 'PRCSToRCSOrientation', tag_vr: [:DS], tag_vm: ["6"], tag_str: '(4010,107E)', tag_sym: :prcs_to_rcs_orientation, tag_ndm: '4010107E', tag_ary: [0x4010,0x107E], tag_multiple: false, tag_note: 'DICOS'},
|
4477
4603
|
{ tag_ps: '(4FFE,0001)', tag_name: "MAC Parameters Sequence", tag_key: 'MACParametersSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(4FFE,0001)', tag_sym: :mac_parameters_sequence, tag_ndm: '4FFE0001', tag_ary: [0x4FFE,0x0001], tag_multiple: false, tag_note: ''},
|
4478
|
-
{ tag_ps: '(50XX,0005)', tag_name: "Curve Dimensions", tag_key: 'CurveDimensions', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,0005)', tag_sym: :curve_dimensions, tag_ndm: '50220005', tag_ary: [0x5022,0x0005], tag_multiple: true, tag_note: 'RET'},
|
4479
|
-
{ tag_ps: '(50XX,0010)', tag_name: "Number of Points", tag_key: 'NumberOfPoints', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,0010)', tag_sym: :number_of_points, tag_ndm: '50220010', tag_ary: [0x5022,0x0010], tag_multiple: true, tag_note: 'RET'},
|
4480
|
-
{ tag_ps: '(50XX,0020)', tag_name: "Type of Data", tag_key: 'TypeOfData', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(5022,0020)', tag_sym: :type_of_data, tag_ndm: '50220020', tag_ary: [0x5022,0x0020], tag_multiple: true, tag_note: 'RET'},
|
4481
|
-
{ tag_ps: '(50XX,0022)', tag_name: "Curve Description", tag_key: 'CurveDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(5022,0022)', tag_sym: :curve_description, tag_ndm: '50220022', tag_ary: [0x5022,0x0022], tag_multiple: true, tag_note: 'RET'},
|
4482
|
-
{ tag_ps: '(50XX,0030)', tag_name: "Axis Units", tag_key: 'AxisUnits', tag_vr: [:SH], tag_vm: ["1-n"], tag_str: '(5022,0030)', tag_sym: :axis_units, tag_ndm: '50220030', tag_ary: [0x5022,0x0030], tag_multiple: true, tag_note: 'RET'},
|
4483
|
-
{ tag_ps: '(50XX,0040)', tag_name: "Axis Labels", tag_key: 'AxisLabels', tag_vr: [:SH], tag_vm: ["1-n"], tag_str: '(5022,0040)', tag_sym: :axis_labels, tag_ndm: '50220040', tag_ary: [0x5022,0x0040], tag_multiple: true, tag_note: 'RET'},
|
4484
|
-
{ tag_ps: '(50XX,0103)', tag_name: "Data Value Representation", tag_key: 'DataValueRepresentation', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,0103)', tag_sym: :data_value_representation, tag_ndm: '50220103', tag_ary: [0x5022,0x0103], tag_multiple: true, tag_note: 'RET'},
|
4485
|
-
{ tag_ps: '(50XX,0104)', tag_name: "Minimum Coordinate Value", tag_key: 'MinimumCoordinateValue', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(5022,0104)', tag_sym: :minimum_coordinate_value, tag_ndm: '50220104', tag_ary: [0x5022,0x0104], tag_multiple: true, tag_note: 'RET'},
|
4486
|
-
{ tag_ps: '(50XX,0105)', tag_name: "Maximum Coordinate Value", tag_key: 'MaximumCoordinateValue', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(5022,0105)', tag_sym: :maximum_coordinate_value, tag_ndm: '50220105', tag_ary: [0x5022,0x0105], tag_multiple: true, tag_note: 'RET'},
|
4487
|
-
{ tag_ps: '(50XX,0106)', tag_name: "Curve Range", tag_key: 'CurveRange', tag_vr: [:SH], tag_vm: ["1-n"], tag_str: '(5022,0106)', tag_sym: :curve_range, tag_ndm: '50220106', tag_ary: [0x5022,0x0106], tag_multiple: true, tag_note: 'RET'},
|
4488
|
-
{ tag_ps: '(50XX,0110)', tag_name: "Curve Data Descriptor", tag_key: 'CurveDataDescriptor', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(5022,0110)', tag_sym: :curve_data_descriptor, tag_ndm: '50220110', tag_ary: [0x5022,0x0110], tag_multiple: true, tag_note: 'RET'},
|
4489
|
-
{ tag_ps: '(50XX,0112)', tag_name: "Coordinate Start Value", tag_key: 'CoordinateStartValue', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(5022,0112)', tag_sym: :coordinate_start_value, tag_ndm: '50220112', tag_ary: [0x5022,0x0112], tag_multiple: true, tag_note: 'RET'},
|
4490
|
-
{ tag_ps: '(50XX,0114)', tag_name: "Coordinate Step Value", tag_key: 'CoordinateStepValue', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(5022,0114)', tag_sym: :coordinate_step_value, tag_ndm: '50220114', tag_ary: [0x5022,0x0114], tag_multiple: true, tag_note: 'RET'},
|
4491
|
-
{ tag_ps: '(50XX,1001)', tag_name: "Curve Activation Layer", tag_key: 'CurveActivationLayer', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(5022,1001)', tag_sym: :curve_activation_layer, tag_ndm: '50221001', tag_ary: [0x5022,0x1001], tag_multiple: true, tag_note: 'RET'},
|
4492
|
-
{ tag_ps: '(50XX,2000)', tag_name: "Audio Type", tag_key: 'AudioType', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,2000)', tag_sym: :audio_type, tag_ndm: '50222000', tag_ary: [0x5022,0x2000], tag_multiple: true, tag_note: 'RET'},
|
4493
|
-
{ tag_ps: '(50XX,2002)', tag_name: "Audio Sample Format", tag_key: 'AudioSampleFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,2002)', tag_sym: :audio_sample_format, tag_ndm: '50222002', tag_ary: [0x5022,0x2002], tag_multiple: true, tag_note: 'RET'},
|
4494
|
-
{ tag_ps: '(50XX,2004)', tag_name: "Number of Channels", tag_key: 'NumberOfChannels', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,2004)', tag_sym: :number_of_channels, tag_ndm: '50222004', tag_ary: [0x5022,0x2004], tag_multiple: true, tag_note: 'RET'},
|
4495
|
-
{ tag_ps: '(50XX,2006)', tag_name: "Number of Samples", tag_key: 'NumberOfSamples', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(5022,2006)', tag_sym: :number_of_samples, tag_ndm: '50222006', tag_ary: [0x5022,0x2006], tag_multiple: true, tag_note: 'RET'},
|
4496
|
-
{ tag_ps: '(50XX,2008)', tag_name: "Sample Rate", tag_key: 'SampleRate', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(5022,2008)', tag_sym: :sample_rate, tag_ndm: '50222008', tag_ary: [0x5022,0x2008], tag_multiple: true, tag_note: 'RET'},
|
4497
|
-
{ tag_ps: '(50XX,200A)', tag_name: "Total Time", tag_key: 'TotalTime', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(5022,200A)', tag_sym: :total_time, tag_ndm: '5022200A', tag_ary: [0x5022,0x200A], tag_multiple: true, tag_note: 'RET'},
|
4498
|
-
{ tag_ps: '(50XX,200C)', tag_name: "Audio Sample Data", tag_key: 'AudioSampleData', tag_vr: [:OB, :OW], tag_vm: ["1"], tag_str: '(5022,200C)', tag_sym: :audio_sample_data, tag_ndm: '5022200C', tag_ary: [0x5022,0x200C], tag_multiple: true, tag_note: 'RET'},
|
4499
|
-
{ tag_ps: '(50XX,200E)', tag_name: "Audio Comments", tag_key: 'AudioComments', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(5022,200E)', tag_sym: :audio_comments, tag_ndm: '5022200E', tag_ary: [0x5022,0x200E], tag_multiple: true, tag_note: 'RET'},
|
4500
|
-
{ tag_ps: '(50XX,2500)', tag_name: "Curve Label", tag_key: 'CurveLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(5022,2500)', tag_sym: :curve_label, tag_ndm: '50222500', tag_ary: [0x5022,0x2500], tag_multiple: true, tag_note: 'RET'},
|
4501
|
-
{ tag_ps: '(50XX,2600)', tag_name: "Curve Referenced Overlay Sequence", tag_key: 'CurveReferencedOverlaySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(5022,2600)', tag_sym: :curve_referenced_overlay_sequence, tag_ndm: '50222600', tag_ary: [0x5022,0x2600], tag_multiple: true, tag_note: 'RET'},
|
4502
|
-
{ tag_ps: '(50XX,2610)', tag_name: "Curve Referenced Overlay Group", tag_key: 'CurveReferencedOverlayGroup', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,2610)', tag_sym: :curve_referenced_overlay_group, tag_ndm: '50222610', tag_ary: [0x5022,0x2610], tag_multiple: true, tag_note: 'RET'},
|
4503
|
-
{ tag_ps: '(50XX,3000)', tag_name: "Curve Data", tag_key: 'CurveData', tag_vr: [:OB, :OW], tag_vm: ["1"], tag_str: '(5022,3000)', tag_sym: :curve_data, tag_ndm: '50223000', tag_ary: [0x5022,0x3000], tag_multiple: true, tag_note: 'RET'},
|
4604
|
+
{ tag_ps: '(50XX,0005)', tag_name: "Curve Dimensions", tag_key: 'CurveDimensions', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,0005)', tag_sym: :curve_dimensions, tag_ndm: '50220005', tag_ary: [0x5022,0x0005], tag_multiple: true, tag_note: 'RET (2004)'},
|
4605
|
+
{ tag_ps: '(50XX,0010)', tag_name: "Number of Points", tag_key: 'NumberOfPoints', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,0010)', tag_sym: :number_of_points, tag_ndm: '50220010', tag_ary: [0x5022,0x0010], tag_multiple: true, tag_note: 'RET (2004)'},
|
4606
|
+
{ tag_ps: '(50XX,0020)', tag_name: "Type of Data", tag_key: 'TypeOfData', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(5022,0020)', tag_sym: :type_of_data, tag_ndm: '50220020', tag_ary: [0x5022,0x0020], tag_multiple: true, tag_note: 'RET (2004)'},
|
4607
|
+
{ tag_ps: '(50XX,0022)', tag_name: "Curve Description", tag_key: 'CurveDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(5022,0022)', tag_sym: :curve_description, tag_ndm: '50220022', tag_ary: [0x5022,0x0022], tag_multiple: true, tag_note: 'RET (2004)'},
|
4608
|
+
{ tag_ps: '(50XX,0030)', tag_name: "Axis Units", tag_key: 'AxisUnits', tag_vr: [:SH], tag_vm: ["1-n"], tag_str: '(5022,0030)', tag_sym: :axis_units, tag_ndm: '50220030', tag_ary: [0x5022,0x0030], tag_multiple: true, tag_note: 'RET (2004)'},
|
4609
|
+
{ tag_ps: '(50XX,0040)', tag_name: "Axis Labels", tag_key: 'AxisLabels', tag_vr: [:SH], tag_vm: ["1-n"], tag_str: '(5022,0040)', tag_sym: :axis_labels, tag_ndm: '50220040', tag_ary: [0x5022,0x0040], tag_multiple: true, tag_note: 'RET (2004)'},
|
4610
|
+
{ tag_ps: '(50XX,0103)', tag_name: "Data Value Representation", tag_key: 'DataValueRepresentation', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,0103)', tag_sym: :data_value_representation, tag_ndm: '50220103', tag_ary: [0x5022,0x0103], tag_multiple: true, tag_note: 'RET (2004)'},
|
4611
|
+
{ tag_ps: '(50XX,0104)', tag_name: "Minimum Coordinate Value", tag_key: 'MinimumCoordinateValue', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(5022,0104)', tag_sym: :minimum_coordinate_value, tag_ndm: '50220104', tag_ary: [0x5022,0x0104], tag_multiple: true, tag_note: 'RET (2004)'},
|
4612
|
+
{ tag_ps: '(50XX,0105)', tag_name: "Maximum Coordinate Value", tag_key: 'MaximumCoordinateValue', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(5022,0105)', tag_sym: :maximum_coordinate_value, tag_ndm: '50220105', tag_ary: [0x5022,0x0105], tag_multiple: true, tag_note: 'RET (2004)'},
|
4613
|
+
{ tag_ps: '(50XX,0106)', tag_name: "Curve Range", tag_key: 'CurveRange', tag_vr: [:SH], tag_vm: ["1-n"], tag_str: '(5022,0106)', tag_sym: :curve_range, tag_ndm: '50220106', tag_ary: [0x5022,0x0106], tag_multiple: true, tag_note: 'RET (2004)'},
|
4614
|
+
{ tag_ps: '(50XX,0110)', tag_name: "Curve Data Descriptor", tag_key: 'CurveDataDescriptor', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(5022,0110)', tag_sym: :curve_data_descriptor, tag_ndm: '50220110', tag_ary: [0x5022,0x0110], tag_multiple: true, tag_note: 'RET (2004)'},
|
4615
|
+
{ tag_ps: '(50XX,0112)', tag_name: "Coordinate Start Value", tag_key: 'CoordinateStartValue', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(5022,0112)', tag_sym: :coordinate_start_value, tag_ndm: '50220112', tag_ary: [0x5022,0x0112], tag_multiple: true, tag_note: 'RET (2004)'},
|
4616
|
+
{ tag_ps: '(50XX,0114)', tag_name: "Coordinate Step Value", tag_key: 'CoordinateStepValue', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(5022,0114)', tag_sym: :coordinate_step_value, tag_ndm: '50220114', tag_ary: [0x5022,0x0114], tag_multiple: true, tag_note: 'RET (2004)'},
|
4617
|
+
{ tag_ps: '(50XX,1001)', tag_name: "Curve Activation Layer", tag_key: 'CurveActivationLayer', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(5022,1001)', tag_sym: :curve_activation_layer, tag_ndm: '50221001', tag_ary: [0x5022,0x1001], tag_multiple: true, tag_note: 'RET (2004)'},
|
4618
|
+
{ tag_ps: '(50XX,2000)', tag_name: "Audio Type", tag_key: 'AudioType', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,2000)', tag_sym: :audio_type, tag_ndm: '50222000', tag_ary: [0x5022,0x2000], tag_multiple: true, tag_note: 'RET (2004)'},
|
4619
|
+
{ tag_ps: '(50XX,2002)', tag_name: "Audio Sample Format", tag_key: 'AudioSampleFormat', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,2002)', tag_sym: :audio_sample_format, tag_ndm: '50222002', tag_ary: [0x5022,0x2002], tag_multiple: true, tag_note: 'RET (2004)'},
|
4620
|
+
{ tag_ps: '(50XX,2004)', tag_name: "Number of Channels", tag_key: 'NumberOfChannels', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,2004)', tag_sym: :number_of_channels, tag_ndm: '50222004', tag_ary: [0x5022,0x2004], tag_multiple: true, tag_note: 'RET (2004)'},
|
4621
|
+
{ tag_ps: '(50XX,2006)', tag_name: "Number of Samples", tag_key: 'NumberOfSamples', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(5022,2006)', tag_sym: :number_of_samples, tag_ndm: '50222006', tag_ary: [0x5022,0x2006], tag_multiple: true, tag_note: 'RET (2004)'},
|
4622
|
+
{ tag_ps: '(50XX,2008)', tag_name: "Sample Rate", tag_key: 'SampleRate', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(5022,2008)', tag_sym: :sample_rate, tag_ndm: '50222008', tag_ary: [0x5022,0x2008], tag_multiple: true, tag_note: 'RET (2004)'},
|
4623
|
+
{ tag_ps: '(50XX,200A)', tag_name: "Total Time", tag_key: 'TotalTime', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(5022,200A)', tag_sym: :total_time, tag_ndm: '5022200A', tag_ary: [0x5022,0x200A], tag_multiple: true, tag_note: 'RET (2004)'},
|
4624
|
+
{ tag_ps: '(50XX,200C)', tag_name: "Audio Sample Data", tag_key: 'AudioSampleData', tag_vr: [:OB, :OW], tag_vm: ["1"], tag_str: '(5022,200C)', tag_sym: :audio_sample_data, tag_ndm: '5022200C', tag_ary: [0x5022,0x200C], tag_multiple: true, tag_note: 'RET (2004)'},
|
4625
|
+
{ tag_ps: '(50XX,200E)', tag_name: "Audio Comments", tag_key: 'AudioComments', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(5022,200E)', tag_sym: :audio_comments, tag_ndm: '5022200E', tag_ary: [0x5022,0x200E], tag_multiple: true, tag_note: 'RET (2004)'},
|
4626
|
+
{ tag_ps: '(50XX,2500)', tag_name: "Curve Label", tag_key: 'CurveLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(5022,2500)', tag_sym: :curve_label, tag_ndm: '50222500', tag_ary: [0x5022,0x2500], tag_multiple: true, tag_note: 'RET (2004)'},
|
4627
|
+
{ tag_ps: '(50XX,2600)', tag_name: "Curve Referenced Overlay Sequence", tag_key: 'CurveReferencedOverlaySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(5022,2600)', tag_sym: :curve_referenced_overlay_sequence, tag_ndm: '50222600', tag_ary: [0x5022,0x2600], tag_multiple: true, tag_note: 'RET (2004)'},
|
4628
|
+
{ tag_ps: '(50XX,2610)', tag_name: "Curve Referenced Overlay Group", tag_key: 'CurveReferencedOverlayGroup', tag_vr: [:US], tag_vm: ["1"], tag_str: '(5022,2610)', tag_sym: :curve_referenced_overlay_group, tag_ndm: '50222610', tag_ary: [0x5022,0x2610], tag_multiple: true, tag_note: 'RET (2004)'},
|
4629
|
+
{ tag_ps: '(50XX,3000)', tag_name: "Curve Data", tag_key: 'CurveData', tag_vr: [:OB, :OW], tag_vm: ["1"], tag_str: '(5022,3000)', tag_sym: :curve_data, tag_ndm: '50223000', tag_ary: [0x5022,0x3000], tag_multiple: true, tag_note: 'RET (2004)'},
|
4504
4630
|
{ tag_ps: '(5200,9229)', tag_name: "Shared Functional Groups Sequence", tag_key: 'SharedFunctionalGroupsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(5200,9229)', tag_sym: :shared_functional_groups_sequence, tag_ndm: '52009229', tag_ary: [0x5200,0x9229], tag_multiple: false, tag_note: ''},
|
4505
4631
|
{ tag_ps: '(5200,9230)', tag_name: "Per-frame Functional Groups Sequence", tag_key: 'PerFrameFunctionalGroupsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(5200,9230)', tag_sym: :per_frame_functional_groups_sequence, tag_ndm: '52009230', tag_ary: [0x5200,0x9230], tag_multiple: false, tag_note: ''},
|
4506
4632
|
{ tag_ps: '(5400,0100)', tag_name: "Waveform Sequence", tag_key: 'WaveformSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(5400,0100)', tag_sym: :waveform_sequence, tag_ndm: '54000100', tag_ary: [0x5400,0x0100], tag_multiple: false, tag_note: ''},
|
@@ -4514,55 +4640,57 @@ HIGH = 0001H'},
|
|
4514
4640
|
{ tag_ps: '(5600,0020)', tag_name: "Spectroscopy Data", tag_key: 'SpectroscopyData', tag_vr: [:OF], tag_vm: ["1"], tag_str: '(5600,0020)', tag_sym: :spectroscopy_data, tag_ndm: '56000020', tag_ary: [0x5600,0x0020], tag_multiple: false, tag_note: ''},
|
4515
4641
|
{ tag_ps: '(60XX,0010)', tag_name: "Overlay Rows", tag_key: 'OverlayRows', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0010)', tag_sym: :overlay_rows, tag_ndm: '60220010', tag_ary: [0x6022,0x0010], tag_multiple: true, tag_note: ''},
|
4516
4642
|
{ tag_ps: '(60XX,0011)', tag_name: "Overlay Columns", tag_key: 'OverlayColumns', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0011)', tag_sym: :overlay_columns, tag_ndm: '60220011', tag_ary: [0x6022,0x0011], tag_multiple: true, tag_note: ''},
|
4517
|
-
{ tag_ps: '(60XX,0012)', tag_name: "Overlay Planes", tag_key: 'OverlayPlanes', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0012)', tag_sym: :overlay_planes, tag_ndm: '60220012', tag_ary: [0x6022,0x0012], tag_multiple: true, tag_note: 'RET'},
|
4643
|
+
{ tag_ps: '(60XX,0012)', tag_name: "Overlay Planes", tag_key: 'OverlayPlanes', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0012)', tag_sym: :overlay_planes, tag_ndm: '60220012', tag_ary: [0x6022,0x0012], tag_multiple: true, tag_note: 'RET (2007)'},
|
4518
4644
|
{ tag_ps: '(60XX,0015)', tag_name: "Number of Frames in Overlay", tag_key: 'NumberOfFramesInOverlay', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(6022,0015)', tag_sym: :number_of_frames_in_overlay, tag_ndm: '60220015', tag_ary: [0x6022,0x0015], tag_multiple: true, tag_note: ''},
|
4519
4645
|
{ tag_ps: '(60XX,0022)', tag_name: "Overlay Description", tag_key: 'OverlayDescription', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(6022,0022)', tag_sym: :overlay_description, tag_ndm: '60220022', tag_ary: [0x6022,0x0022], tag_multiple: true, tag_note: ''},
|
4520
4646
|
{ tag_ps: '(60XX,0040)', tag_name: "Overlay Type", tag_key: 'OverlayType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(6022,0040)', tag_sym: :overlay_type, tag_ndm: '60220040', tag_ary: [0x6022,0x0040], tag_multiple: true, tag_note: ''},
|
4521
4647
|
{ tag_ps: '(60XX,0045)', tag_name: "Overlay Subtype", tag_key: 'OverlaySubtype', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(6022,0045)', tag_sym: :overlay_subtype, tag_ndm: '60220045', tag_ary: [0x6022,0x0045], tag_multiple: true, tag_note: ''},
|
4522
4648
|
{ tag_ps: '(60XX,0050)', tag_name: "Overlay Origin", tag_key: 'OverlayOrigin', tag_vr: [:SS], tag_vm: ["2"], tag_str: '(6022,0050)', tag_sym: :overlay_origin, tag_ndm: '60220050', tag_ary: [0x6022,0x0050], tag_multiple: true, tag_note: ''},
|
4523
4649
|
{ tag_ps: '(60XX,0051)', tag_name: "Image Frame Origin", tag_key: 'ImageFrameOrigin', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0051)', tag_sym: :image_frame_origin, tag_ndm: '60220051', tag_ary: [0x6022,0x0051], tag_multiple: true, tag_note: ''},
|
4524
|
-
{ tag_ps: '(60XX,0052)', tag_name: "Overlay Plane Origin", tag_key: 'OverlayPlaneOrigin', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0052)', tag_sym: :overlay_plane_origin, tag_ndm: '60220052', tag_ary: [0x6022,0x0052], tag_multiple: true, tag_note: 'RET'},
|
4650
|
+
{ tag_ps: '(60XX,0052)', tag_name: "Overlay Plane Origin", tag_key: 'OverlayPlaneOrigin', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0052)', tag_sym: :overlay_plane_origin, tag_ndm: '60220052', tag_ary: [0x6022,0x0052], tag_multiple: true, tag_note: 'RET (2007)'},
|
4525
4651
|
{ tag_ps: '(60XX,0060)', tag_name: "Overlay Compression Code", tag_key: 'OverlayCompressionCode', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(6022,0060)', tag_sym: :overlay_compression_code, tag_ndm: '60220060', tag_ary: [0x6022,0x0060], tag_multiple: true, tag_note: 'RET'},
|
4526
|
-
{ tag_ps: '(60XX,0061)', tag_name: "Overlay Compression Originator", tag_key: 'OverlayCompressionOriginator', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(6022,0061)', tag_sym: :overlay_compression_originator, tag_ndm: '60220061', tag_ary: [0x6022,0x0061], tag_multiple: true, tag_note: 'RET'},
|
4527
|
-
{ tag_ps: '(60XX,0062)', tag_name: "Overlay Compression Label", tag_key: 'OverlayCompressionLabel', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(6022,0062)', tag_sym: :overlay_compression_label, tag_ndm: '60220062', tag_ary: [0x6022,0x0062], tag_multiple: true, tag_note: 'RET'},
|
4528
|
-
{ tag_ps: '(60XX,0063)', tag_name: "Overlay Compression Description", tag_key: 'OverlayCompressionDescription', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(6022,0063)', tag_sym: :overlay_compression_description, tag_ndm: '60220063', tag_ary: [0x6022,0x0063], tag_multiple: true, tag_note: 'RET'},
|
4529
|
-
{ tag_ps: '(60XX,0066)', tag_name: "Overlay Compression Step Pointers", tag_key: 'OverlayCompressionStepPointers', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(6022,0066)', tag_sym: :overlay_compression_step_pointers, tag_ndm: '60220066', tag_ary: [0x6022,0x0066], tag_multiple: true, tag_note: 'RET'},
|
4530
|
-
{ tag_ps: '(60XX,0068)', tag_name: "Overlay Repeat Interval", tag_key: 'OverlayRepeatInterval', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0068)', tag_sym: :overlay_repeat_interval, tag_ndm: '60220068', tag_ary: [0x6022,0x0068], tag_multiple: true, tag_note: 'RET'},
|
4531
|
-
{ tag_ps: '(60XX,0069)', tag_name: "Overlay Bits Grouped", tag_key: 'OverlayBitsGrouped', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0069)', tag_sym: :overlay_bits_grouped, tag_ndm: '60220069', tag_ary: [0x6022,0x0069], tag_multiple: true, tag_note: 'RET'},
|
4652
|
+
{ tag_ps: '(60XX,0061)', tag_name: "Overlay Compression Originator", tag_key: 'OverlayCompressionOriginator', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(6022,0061)', tag_sym: :overlay_compression_originator, tag_ndm: '60220061', tag_ary: [0x6022,0x0061], tag_multiple: true, tag_note: 'RET (2007)'},
|
4653
|
+
{ tag_ps: '(60XX,0062)', tag_name: "Overlay Compression Label", tag_key: 'OverlayCompressionLabel', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(6022,0062)', tag_sym: :overlay_compression_label, tag_ndm: '60220062', tag_ary: [0x6022,0x0062], tag_multiple: true, tag_note: 'RET (2007)'},
|
4654
|
+
{ tag_ps: '(60XX,0063)', tag_name: "Overlay Compression Description", tag_key: 'OverlayCompressionDescription', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(6022,0063)', tag_sym: :overlay_compression_description, tag_ndm: '60220063', tag_ary: [0x6022,0x0063], tag_multiple: true, tag_note: 'RET (2007)'},
|
4655
|
+
{ tag_ps: '(60XX,0066)', tag_name: "Overlay Compression Step Pointers", tag_key: 'OverlayCompressionStepPointers', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(6022,0066)', tag_sym: :overlay_compression_step_pointers, tag_ndm: '60220066', tag_ary: [0x6022,0x0066], tag_multiple: true, tag_note: 'RET (2007)'},
|
4656
|
+
{ tag_ps: '(60XX,0068)', tag_name: "Overlay Repeat Interval", tag_key: 'OverlayRepeatInterval', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0068)', tag_sym: :overlay_repeat_interval, tag_ndm: '60220068', tag_ary: [0x6022,0x0068], tag_multiple: true, tag_note: 'RET (2007)'},
|
4657
|
+
{ tag_ps: '(60XX,0069)', tag_name: "Overlay Bits Grouped", tag_key: 'OverlayBitsGrouped', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0069)', tag_sym: :overlay_bits_grouped, tag_ndm: '60220069', tag_ary: [0x6022,0x0069], tag_multiple: true, tag_note: 'RET (2007)'},
|
4532
4658
|
{ tag_ps: '(60XX,0100)', tag_name: "Overlay Bits Allocated", tag_key: 'OverlayBitsAllocated', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0100)', tag_sym: :overlay_bits_allocated, tag_ndm: '60220100', tag_ary: [0x6022,0x0100], tag_multiple: true, tag_note: ''},
|
4533
4659
|
{ tag_ps: '(60XX,0102)', tag_name: "Overlay Bit Position", tag_key: 'OverlayBitPosition', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0102)', tag_sym: :overlay_bit_position, tag_ndm: '60220102', tag_ary: [0x6022,0x0102], tag_multiple: true, tag_note: ''},
|
4534
4660
|
{ tag_ps: '(60XX,0110)', tag_name: "Overlay Format", tag_key: 'OverlayFormat', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(6022,0110)', tag_sym: :overlay_format, tag_ndm: '60220110', tag_ary: [0x6022,0x0110], tag_multiple: true, tag_note: 'RET'},
|
4535
4661
|
{ tag_ps: '(60XX,0200)', tag_name: "Overlay Location", tag_key: 'OverlayLocation', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0200)', tag_sym: :overlay_location, tag_ndm: '60220200', tag_ary: [0x6022,0x0200], tag_multiple: true, tag_note: 'RET'},
|
4536
|
-
{ tag_ps: '(60XX,0800)', tag_name: "Overlay Code Label", tag_key: 'OverlayCodeLabel', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(6022,0800)', tag_sym: :overlay_code_label, tag_ndm: '60220800', tag_ary: [0x6022,0x0800], tag_multiple: true, tag_note: 'RET'},
|
4537
|
-
{ tag_ps: '(60XX,0802)', tag_name: "Overlay Number of Tables", tag_key: 'OverlayNumberOfTables', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0802)', tag_sym: :overlay_number_of_tables, tag_ndm: '60220802', tag_ary: [0x6022,0x0802], tag_multiple: true, tag_note: 'RET'},
|
4538
|
-
{ tag_ps: '(60XX,0803)', tag_name: "Overlay Code Table Location", tag_key: 'OverlayCodeTableLocation', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(6022,0803)', tag_sym: :overlay_code_table_location, tag_ndm: '60220803', tag_ary: [0x6022,0x0803], tag_multiple: true, tag_note: 'RET'},
|
4539
|
-
{ tag_ps: '(60XX,0804)', tag_name: "Overlay Bits For Code Word", tag_key: 'OverlayBitsForCodeWord', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0804)', tag_sym: :overlay_bits_for_code_word, tag_ndm: '60220804', tag_ary: [0x6022,0x0804], tag_multiple: true, tag_note: 'RET'},
|
4662
|
+
{ tag_ps: '(60XX,0800)', tag_name: "Overlay Code Label", tag_key: 'OverlayCodeLabel', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(6022,0800)', tag_sym: :overlay_code_label, tag_ndm: '60220800', tag_ary: [0x6022,0x0800], tag_multiple: true, tag_note: 'RET (2007)'},
|
4663
|
+
{ tag_ps: '(60XX,0802)', tag_name: "Overlay Number of Tables", tag_key: 'OverlayNumberOfTables', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0802)', tag_sym: :overlay_number_of_tables, tag_ndm: '60220802', tag_ary: [0x6022,0x0802], tag_multiple: true, tag_note: 'RET (2007)'},
|
4664
|
+
{ tag_ps: '(60XX,0803)', tag_name: "Overlay Code Table Location", tag_key: 'OverlayCodeTableLocation', tag_vr: [:AT], tag_vm: ["1-n"], tag_str: '(6022,0803)', tag_sym: :overlay_code_table_location, tag_ndm: '60220803', tag_ary: [0x6022,0x0803], tag_multiple: true, tag_note: 'RET (2007)'},
|
4665
|
+
{ tag_ps: '(60XX,0804)', tag_name: "Overlay Bits For Code Word", tag_key: 'OverlayBitsForCodeWord', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,0804)', tag_sym: :overlay_bits_for_code_word, tag_ndm: '60220804', tag_ary: [0x6022,0x0804], tag_multiple: true, tag_note: 'RET (2007)'},
|
4540
4666
|
{ tag_ps: '(60XX,1001)', tag_name: "Overlay Activation Layer", tag_key: 'OverlayActivationLayer', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(6022,1001)', tag_sym: :overlay_activation_layer, tag_ndm: '60221001', tag_ary: [0x6022,0x1001], tag_multiple: true, tag_note: ''},
|
4541
|
-
{ tag_ps: '(60XX,1100)', tag_name: "Overlay Descriptor - Gray", tag_key: 'OverlayDescriptorGray', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,1100)', tag_sym: :overlay_descriptor_gray, tag_ndm: '60221100', tag_ary: [0x6022,0x1100], tag_multiple: true, tag_note: 'RET'},
|
4542
|
-
{ tag_ps: '(60XX,1101)', tag_name: "Overlay Descriptor - Red", tag_key: 'OverlayDescriptorRed', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,1101)', tag_sym: :overlay_descriptor_red, tag_ndm: '60221101', tag_ary: [0x6022,0x1101], tag_multiple: true, tag_note: 'RET'},
|
4543
|
-
{ tag_ps: '(60XX,1102)', tag_name: "Overlay Descriptor - Green", tag_key: 'OverlayDescriptorGreen', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,1102)', tag_sym: :overlay_descriptor_green, tag_ndm: '60221102', tag_ary: [0x6022,0x1102], tag_multiple: true, tag_note: 'RET'},
|
4544
|
-
{ tag_ps: '(60XX,1103)', tag_name: "Overlay Descriptor - Blue", tag_key: 'OverlayDescriptorBlue', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,1103)', tag_sym: :overlay_descriptor_blue, tag_ndm: '60221103', tag_ary: [0x6022,0x1103], tag_multiple: true, tag_note: 'RET'},
|
4545
|
-
{ tag_ps: '(60XX,1200)', tag_name: "Overlays - Gray", tag_key: 'OverlaysGray', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(6022,1200)', tag_sym: :overlays_gray, tag_ndm: '60221200', tag_ary: [0x6022,0x1200], tag_multiple: true, tag_note: 'RET'},
|
4546
|
-
{ tag_ps: '(60XX,1201)', tag_name: "Overlays - Red", tag_key: 'OverlaysRed', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(6022,1201)', tag_sym: :overlays_red, tag_ndm: '60221201', tag_ary: [0x6022,0x1201], tag_multiple: true, tag_note: 'RET'},
|
4547
|
-
{ tag_ps: '(60XX,1202)', tag_name: "Overlays - Green", tag_key: 'OverlaysGreen', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(6022,1202)', tag_sym: :overlays_green, tag_ndm: '60221202', tag_ary: [0x6022,0x1202], tag_multiple: true, tag_note: 'RET'},
|
4548
|
-
{ tag_ps: '(60XX,1203)', tag_name: "Overlays - Blue", tag_key: 'OverlaysBlue', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(6022,1203)', tag_sym: :overlays_blue, tag_ndm: '60221203', tag_ary: [0x6022,0x1203], tag_multiple: true, tag_note: 'RET'},
|
4667
|
+
{ tag_ps: '(60XX,1100)', tag_name: "Overlay Descriptor - Gray", tag_key: 'OverlayDescriptorGray', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,1100)', tag_sym: :overlay_descriptor_gray, tag_ndm: '60221100', tag_ary: [0x6022,0x1100], tag_multiple: true, tag_note: 'RET (1996)'},
|
4668
|
+
{ tag_ps: '(60XX,1101)', tag_name: "Overlay Descriptor - Red", tag_key: 'OverlayDescriptorRed', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,1101)', tag_sym: :overlay_descriptor_red, tag_ndm: '60221101', tag_ary: [0x6022,0x1101], tag_multiple: true, tag_note: 'RET (1996)'},
|
4669
|
+
{ tag_ps: '(60XX,1102)', tag_name: "Overlay Descriptor - Green", tag_key: 'OverlayDescriptorGreen', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,1102)', tag_sym: :overlay_descriptor_green, tag_ndm: '60221102', tag_ary: [0x6022,0x1102], tag_multiple: true, tag_note: 'RET (1996)'},
|
4670
|
+
{ tag_ps: '(60XX,1103)', tag_name: "Overlay Descriptor - Blue", tag_key: 'OverlayDescriptorBlue', tag_vr: [:US], tag_vm: ["1"], tag_str: '(6022,1103)', tag_sym: :overlay_descriptor_blue, tag_ndm: '60221103', tag_ary: [0x6022,0x1103], tag_multiple: true, tag_note: 'RET (1996)'},
|
4671
|
+
{ tag_ps: '(60XX,1200)', tag_name: "Overlays - Gray", tag_key: 'OverlaysGray', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(6022,1200)', tag_sym: :overlays_gray, tag_ndm: '60221200', tag_ary: [0x6022,0x1200], tag_multiple: true, tag_note: 'RET (1996)'},
|
4672
|
+
{ tag_ps: '(60XX,1201)', tag_name: "Overlays - Red", tag_key: 'OverlaysRed', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(6022,1201)', tag_sym: :overlays_red, tag_ndm: '60221201', tag_ary: [0x6022,0x1201], tag_multiple: true, tag_note: 'RET (1996)'},
|
4673
|
+
{ tag_ps: '(60XX,1202)', tag_name: "Overlays - Green", tag_key: 'OverlaysGreen', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(6022,1202)', tag_sym: :overlays_green, tag_ndm: '60221202', tag_ary: [0x6022,0x1202], tag_multiple: true, tag_note: 'RET (1996)'},
|
4674
|
+
{ tag_ps: '(60XX,1203)', tag_name: "Overlays - Blue", tag_key: 'OverlaysBlue', tag_vr: [:US], tag_vm: ["1-n"], tag_str: '(6022,1203)', tag_sym: :overlays_blue, tag_ndm: '60221203', tag_ary: [0x6022,0x1203], tag_multiple: true, tag_note: 'RET (1996)'},
|
4549
4675
|
{ tag_ps: '(60XX,1301)', tag_name: "ROI Area", tag_key: 'ROIArea', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(6022,1301)', tag_sym: :roi_area, tag_ndm: '60221301', tag_ary: [0x6022,0x1301], tag_multiple: true, tag_note: ''},
|
4550
4676
|
{ tag_ps: '(60XX,1302)', tag_name: "ROI Mean", tag_key: 'ROIMean', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(6022,1302)', tag_sym: :roi_mean, tag_ndm: '60221302', tag_ary: [0x6022,0x1302], tag_multiple: true, tag_note: ''},
|
4551
4677
|
{ tag_ps: '(60XX,1303)', tag_name: "ROI Standard Deviation", tag_key: 'ROIStandardDeviation', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(6022,1303)', tag_sym: :roi_standard_deviation, tag_ndm: '60221303', tag_ary: [0x6022,0x1303], tag_multiple: true, tag_note: ''},
|
4552
4678
|
{ tag_ps: '(60XX,1500)', tag_name: "Overlay Label", tag_key: 'OverlayLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(6022,1500)', tag_sym: :overlay_label, tag_ndm: '60221500', tag_ary: [0x6022,0x1500], tag_multiple: true, tag_note: ''},
|
4553
4679
|
{ tag_ps: '(60XX,3000)', tag_name: "Overlay Data", tag_key: 'OverlayData', tag_vr: [:OB, :OW], tag_vm: ["1"], tag_str: '(6022,3000)', tag_sym: :overlay_data, tag_ndm: '60223000', tag_ary: [0x6022,0x3000], tag_multiple: true, tag_note: ''},
|
4554
4680
|
{ tag_ps: '(60XX,4000)', tag_name: "Overlay Comments", tag_key: 'OverlayComments', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(6022,4000)', tag_sym: :overlay_comments, tag_ndm: '60224000', tag_ary: [0x6022,0x4000], tag_multiple: true, tag_note: 'RET'},
|
4681
|
+
{ tag_ps: '(7FE0,0001)', tag_name: "Extended Offset Table", tag_key: 'ExtendedOffsetTable', tag_vr: [:OV], tag_vm: ["1"], tag_str: '(7FE0,0001)', tag_sym: :extended_offset_table, tag_ndm: '7FE00001', tag_ary: [0x7FE0,0x0001], tag_multiple: false, tag_note: ''},
|
4682
|
+
{ tag_ps: '(7FE0,0002)', tag_name: "Extended Offset Table Lengths", tag_key: 'ExtendedOffsetTableLengths', tag_vr: [:OV], tag_vm: ["1"], tag_str: '(7FE0,0002)', tag_sym: :extended_offset_table_lengths, tag_ndm: '7FE00002', tag_ary: [0x7FE0,0x0002], tag_multiple: false, tag_note: ''},
|
4555
4683
|
{ tag_ps: '(7FE0,0008)', tag_name: "Float Pixel Data", tag_key: 'FloatPixelData', tag_vr: [:OF], tag_vm: ["1"], tag_str: '(7FE0,0008)', tag_sym: :float_pixel_data, tag_ndm: '7FE00008', tag_ary: [0x7FE0,0x0008], tag_multiple: false, tag_note: ''},
|
4556
4684
|
{ tag_ps: '(7FE0,0009)', tag_name: "Double Float Pixel Data", tag_key: 'DoubleFloatPixelData', tag_vr: [:OD], tag_vm: ["1"], tag_str: '(7FE0,0009)', tag_sym: :double_float_pixel_data, tag_ndm: '7FE00009', tag_ary: [0x7FE0,0x0009], tag_multiple: false, tag_note: ''},
|
4557
4685
|
{ tag_ps: '(7FE0,0010)', tag_name: "Pixel Data", tag_key: 'PixelData', tag_vr: [:OB, :OW], tag_vm: ["1"], tag_str: '(7FE0,0010)', tag_sym: :pixel_data, tag_ndm: '7FE00010', tag_ary: [0x7FE0,0x0010], tag_multiple: false, tag_note: ''},
|
4558
|
-
{ tag_ps: '(7FE0,0020)', tag_name: "Coefficients SDVN", tag_key: 'CoefficientsSDVN', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(7FE0,0020)', tag_sym: :coefficients_sdvn, tag_ndm: '7FE00020', tag_ary: [0x7FE0,0x0020], tag_multiple: false, tag_note: 'RET'},
|
4559
|
-
{ tag_ps: '(7FE0,0030)', tag_name: "Coefficients SDHN", tag_key: 'CoefficientsSDHN', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(7FE0,0030)', tag_sym: :coefficients_sdhn, tag_ndm: '7FE00030', tag_ary: [0x7FE0,0x0030], tag_multiple: false, tag_note: 'RET'},
|
4560
|
-
{ tag_ps: '(7FE0,0040)', tag_name: "Coefficients SDDN", tag_key: 'CoefficientsSDDN', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(7FE0,0040)', tag_sym: :coefficients_sddn, tag_ndm: '7FE00040', tag_ary: [0x7FE0,0x0040], tag_multiple: false, tag_note: 'RET'},
|
4561
|
-
{ tag_ps: '(7FXX,0010)', tag_name: "Variable Pixel Data", tag_key: 'VariablePixelData', tag_vr: [:OB, :OW], tag_vm: ["1"], tag_str: '(7F22,0010)', tag_sym: :variable_pixel_data, tag_ndm: '7F220010', tag_ary: [0x7F22,0x0010], tag_multiple: true, tag_note: 'RET'},
|
4562
|
-
{ tag_ps: '(7FXX,0011)', tag_name: "Variable Next Data Group", tag_key: 'VariableNextDataGroup', tag_vr: [:US], tag_vm: ["1"], tag_str: '(7F22,0011)', tag_sym: :variable_next_data_group, tag_ndm: '7F220011', tag_ary: [0x7F22,0x0011], tag_multiple: true, tag_note: 'RET'},
|
4563
|
-
{ tag_ps: '(7FXX,0020)', tag_name: "Variable Coefficients SDVN", tag_key: 'VariableCoefficientsSDVN', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(7F22,0020)', tag_sym: :variable_coefficients_sdvn, tag_ndm: '7F220020', tag_ary: [0x7F22,0x0020], tag_multiple: true, tag_note: 'RET'},
|
4564
|
-
{ tag_ps: '(7FXX,0030)', tag_name: "Variable Coefficients SDHN", tag_key: 'VariableCoefficientsSDHN', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(7F22,0030)', tag_sym: :variable_coefficients_sdhn, tag_ndm: '7F220030', tag_ary: [0x7F22,0x0030], tag_multiple: true, tag_note: 'RET'},
|
4565
|
-
{ tag_ps: '(7FXX,0040)', tag_name: "Variable Coefficients SDDN", tag_key: 'VariableCoefficientsSDDN', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(7F22,0040)', tag_sym: :variable_coefficients_sddn, tag_ndm: '7F220040', tag_ary: [0x7F22,0x0040], tag_multiple: true, tag_note: 'RET'},
|
4686
|
+
{ tag_ps: '(7FE0,0020)', tag_name: "Coefficients SDVN", tag_key: 'CoefficientsSDVN', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(7FE0,0020)', tag_sym: :coefficients_sdvn, tag_ndm: '7FE00020', tag_ary: [0x7FE0,0x0020], tag_multiple: false, tag_note: 'RET (2007)'},
|
4687
|
+
{ tag_ps: '(7FE0,0030)', tag_name: "Coefficients SDHN", tag_key: 'CoefficientsSDHN', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(7FE0,0030)', tag_sym: :coefficients_sdhn, tag_ndm: '7FE00030', tag_ary: [0x7FE0,0x0030], tag_multiple: false, tag_note: 'RET (2007)'},
|
4688
|
+
{ tag_ps: '(7FE0,0040)', tag_name: "Coefficients SDDN", tag_key: 'CoefficientsSDDN', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(7FE0,0040)', tag_sym: :coefficients_sddn, tag_ndm: '7FE00040', tag_ary: [0x7FE0,0x0040], tag_multiple: false, tag_note: 'RET (2007)'},
|
4689
|
+
{ tag_ps: '(7FXX,0010)', tag_name: "Variable Pixel Data", tag_key: 'VariablePixelData', tag_vr: [:OB, :OW], tag_vm: ["1"], tag_str: '(7F22,0010)', tag_sym: :variable_pixel_data, tag_ndm: '7F220010', tag_ary: [0x7F22,0x0010], tag_multiple: true, tag_note: 'RET (2007)'},
|
4690
|
+
{ tag_ps: '(7FXX,0011)', tag_name: "Variable Next Data Group", tag_key: 'VariableNextDataGroup', tag_vr: [:US], tag_vm: ["1"], tag_str: '(7F22,0011)', tag_sym: :variable_next_data_group, tag_ndm: '7F220011', tag_ary: [0x7F22,0x0011], tag_multiple: true, tag_note: 'RET (2007)'},
|
4691
|
+
{ tag_ps: '(7FXX,0020)', tag_name: "Variable Coefficients SDVN", tag_key: 'VariableCoefficientsSDVN', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(7F22,0020)', tag_sym: :variable_coefficients_sdvn, tag_ndm: '7F220020', tag_ary: [0x7F22,0x0020], tag_multiple: true, tag_note: 'RET (2007)'},
|
4692
|
+
{ tag_ps: '(7FXX,0030)', tag_name: "Variable Coefficients SDHN", tag_key: 'VariableCoefficientsSDHN', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(7F22,0030)', tag_sym: :variable_coefficients_sdhn, tag_ndm: '7F220030', tag_ary: [0x7F22,0x0030], tag_multiple: true, tag_note: 'RET (2007)'},
|
4693
|
+
{ tag_ps: '(7FXX,0040)', tag_name: "Variable Coefficients SDDN", tag_key: 'VariableCoefficientsSDDN', tag_vr: [:OW], tag_vm: ["1"], tag_str: '(7F22,0040)', tag_sym: :variable_coefficients_sddn, tag_ndm: '7F220040', tag_ary: [0x7F22,0x0040], tag_multiple: true, tag_note: 'RET (2007)'},
|
4566
4694
|
{ tag_ps: '(FFFA,FFFA)', tag_name: "Digital Signatures Sequence", tag_key: 'DigitalSignaturesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(FFFA,FFFA)', tag_sym: :digital_signatures_sequence, tag_ndm: 'FFFAFFFA', tag_ary: [0xFFFA,0xFFFA], tag_multiple: false, tag_note: ''},
|
4567
4695
|
{ tag_ps: '(FFFC,FFFC)', tag_name: "Data Set Trailing Padding", tag_key: 'DataSetTrailingPadding', tag_vr: [:OB], tag_vm: ["1"], tag_str: '(FFFC,FFFC)', tag_sym: :data_set_trailing_padding, tag_ndm: 'FFFCFFFC', tag_ary: [0xFFFC,0xFFFC], tag_multiple: false, tag_note: ''},
|
4568
4696
|
{ tag_ps: '(FFFE,E000)', tag_name: "Item", tag_key: 'Item', tag_vr: [:"See Note"], tag_vm: ["1"], tag_str: '(FFFE,E000)', tag_sym: :item, tag_ndm: 'FFFEE000', tag_ary: [0xFFFE,0xE000], tag_multiple: false, tag_note: ''},
|