dcm_dict 0.38.0 → 0.39.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 +9 -1
- data/README.md +1 -1
- data/lib/dcm_dict/source_data/data_elements_data.rb +5122 -5052
- data/lib/dcm_dict/source_data/uid_values_data.rb +498 -484
- data/lib/dcm_dict/version.rb +2 -2
- data/spec/data_element_sample_spec_helper.rb +3 -0
- data/spec/dcm_dict/dictionary/uid_dictionary_spec.rb +7 -1
- metadata +4 -4
data/lib/dcm_dict/version.rb
CHANGED
@@ -163,6 +163,9 @@ module DataElementSampleSpecHelper
|
|
163
163
|
[0x0072,0x0082] => { tag_ps: '(0072,0082)', tag_name: "Selector SV Value", tag_key: 'SelectorSVValue',
|
164
164
|
tag_vr: [:SV], tag_vm: ["1-n"], tag_str: '(0072,0082)', tag_sym: :selector_sv_value,
|
165
165
|
tag_ndm: '00720082', tag_ary: [0x0072,0x0082], tag_multiple: false, tag_note: ''},
|
166
|
+
[0x3006,0x0088] => { tag_ps: '(3006,0088)', tag_name: "ROI Observation Description", tag_key: 'ROIObservationDescription',
|
167
|
+
tag_vr: [:ST], tag_vm: ["1"], tag_str: '(3006,0088)', tag_sym: :roi_observation_description,
|
168
|
+
tag_ndm: '30060088', tag_ary: [0x3006,0x0088], tag_multiple: false, tag_note: 'RET (2022b)'},
|
166
169
|
}
|
167
170
|
end
|
168
171
|
|
@@ -120,7 +120,13 @@ describe DcmDict::Dictionary::UidDictionary do
|
|
120
120
|
:uid_key => 'StandardRoboticArmCoordinateSystem',
|
121
121
|
:uid_sym => :standard_robotic_arm_coordinate_system,
|
122
122
|
:uid_type => :well_known_frame_of_reference
|
123
|
-
|
123
|
+
},
|
124
|
+
'1.2.840.10008.5.1.1.25' => { :uid_value => '1.2.840.10008.5.1.1.25',
|
125
|
+
:uid_name => 'Print Queue SOP Instance (Retired)',
|
126
|
+
:uid_key => 'PrintQueue',
|
127
|
+
:uid_sym => :print_queue,
|
128
|
+
:uid_type => :well_known_sop_instance
|
129
|
+
},
|
124
130
|
}.each do |uid, data|
|
125
131
|
include_examples "Handle specific record", data[:uid_name],
|
126
132
|
uid, data, DcmDict::Dictionary::TheUidDictionary
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dcm_dict
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.39.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Enrico Rivarola
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|
@@ -165,7 +165,7 @@ licenses:
|
|
165
165
|
metadata:
|
166
166
|
bug_tracker_uri: https://github.com/henrythebuilder/dcm_dict/issues
|
167
167
|
changelog_uri: https://github.com/henrythebuilder/dcm_dict/blob/master/CHANGELOG.md
|
168
|
-
documentation_uri: http://www.rubydoc.info/gems/dcm_dict/0.
|
168
|
+
documentation_uri: http://www.rubydoc.info/gems/dcm_dict/0.39.0
|
169
169
|
homepage_uri: http://rubygems.org/gems/dcm_dict
|
170
170
|
source_code_uri: https://github.com/henrythebuilder/dcm_dict
|
171
171
|
post_install_message:
|
@@ -183,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
183
183
|
- !ruby/object:Gem::Version
|
184
184
|
version: '0'
|
185
185
|
requirements: []
|
186
|
-
rubygems_version: 3.3.
|
186
|
+
rubygems_version: 3.3.12
|
187
187
|
signing_key:
|
188
188
|
specification_version: 4
|
189
189
|
summary: A simple way to handle DICOM Data Dictionary
|