dcm_dict 0.40.0 → 0.52.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 +20 -0
- data/LICENSE +1 -1
- data/README.md +12 -3
- data/bin/dcm_dict_converter.rb +2 -2
- 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 +2 -2
- 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 +2 -2
- data/lib/dcm_dict/refine/symbol_refine.rb +2 -2
- 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 +65 -7
- data/lib/dcm_dict/source_data/detached_data.rb +1 -1
- data/lib/dcm_dict/source_data/uid_values_data.rb +4 -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/lib/dcm_dict.rb +1 -1
- data/spec/data_element_sample_spec_helper.rb +7 -1
- 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 +21 -21
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 12a0faf721aebc382d55fa030d45fb4377f72341f3fc62dc9293e7330dd87f85
|
|
4
|
+
data.tar.gz: f6e10da961bceaae2421e94696f61bab223d46d3ca1117ec7a41f698b46d2d38
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bbe8869f69c3aba9d1700b55c9ee90e4ef23fe60402a6a8c0f254fa1d475c01f2eb80adeeb2982c7d8448b7c24ccc4ee652c2398917924ed23d25520fc35bd3e
|
|
7
|
+
data.tar.gz: 004f9bff12c4625539793091218cf701ed193d2c03832c7de61beb6b5bc39f3449eaee0007092380210d610e123bb182e9ee207744552b1f0ecce58ea2f36d6c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# DcmDict project Changelog
|
|
2
2
|
|
|
3
|
+
___
|
|
4
|
+
## v0.52.0 (2023-02-09)
|
|
5
|
+
* Update to 2023a Base Standard
|
|
6
|
+
___
|
|
7
|
+
## v0.51.0 (2023-02-09)
|
|
8
|
+
* Not publish on [RubyGems](https://rubygems.org/gems/dcm_dict)
|
|
9
|
+
* Updated gemspec requirements
|
|
10
|
+
#### Note for gemspec
|
|
11
|
+
> Required Ruby Version fixed for stable releases (>= 3.0)
|
|
12
|
+
> Development Dependency fixed to latest tested version
|
|
13
|
+
___
|
|
14
|
+
## v0.50.0 (2023-02-09)
|
|
15
|
+
* Not publish on [RubyGems](https://rubygems.org/gems/dcm_dict)
|
|
16
|
+
* Updated gemspec(dcm_dict requires Ruby version >= 2.1, < 3.2)
|
|
17
|
+
#### Note for gemspec
|
|
18
|
+
> Refinement#include is deprecated and will be removed in Ruby 3.2
|
|
19
|
+
___
|
|
20
|
+
## v0.41.0 (2023-01-14)
|
|
21
|
+
* Update to 2022e Base Standard
|
|
22
|
+
* Update copyright year
|
|
3
23
|
___
|
|
4
24
|
## v0.40.0 (2022-11-25)
|
|
5
25
|
* Update to 2022d Base Standard
|
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-2023 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
|
@@ -90,7 +90,14 @@ end
|
|
|
90
90
|
|
|
91
91
|
*The main way remains **Ruby Refinements***.
|
|
92
92
|
|
|
93
|
-
|
|
93
|
+
### Rubies compatibility
|
|
94
|
+
**MRI Ruby**: from version _**v0.51.0**_ gemspec are changed: the minimum required version is _**3.0**_ in order to manage the refinements changes that occurred in version _**3.2**_:
|
|
95
|
+
- The include/extend in refinements never worked (ref [Bug #17429][13])
|
|
96
|
+
- import_methods is limited in functionality (ref [class Refinement][14])
|
|
97
|
+
|
|
98
|
+
**Other Rubies**: the other considered rubies is only [Rubinius][4] checked at version _**v2.2.10**_.
|
|
99
|
+
|
|
100
|
+
**Test Note**: In order to try to ensure a minimum compatibility there is a file under *lib/dcm_dict/rubies/* called *rb_ext.rb* able to *mask*/*simulates* the refinements by [refine gem][5] and add the required *bit_length* method to *Fixnum* class by [backports gem][6].
|
|
94
101
|
This sort of extension is not loaded by default but only into *spec files* for the *'rbx' Ruby Engine*. See *spec_helper.rb* and *rb_ext.rb* for details.
|
|
95
102
|
|
|
96
103
|
## Data Element data in detail
|
|
@@ -287,7 +294,7 @@ Note: the script use the [Nokogiri][3] as XML parser if installed as gem, otherw
|
|
|
287
294
|
Check the file for other details.
|
|
288
295
|
|
|
289
296
|
## Note
|
|
290
|
-
Current library version is aligned to *DICOM Base Standard* **
|
|
297
|
+
Current library version is aligned to *DICOM Base Standard* **2023a**
|
|
291
298
|
|
|
292
299
|
## Install
|
|
293
300
|
|
|
@@ -310,7 +317,7 @@ There are many possible *candidates* for inclusion in the *dictionary*, here are
|
|
|
310
317
|
TBD
|
|
311
318
|
|
|
312
319
|
## License
|
|
313
|
-
Copyright (C) 2014-
|
|
320
|
+
Copyright (C) 2014-2023 Enrico Rivarola.
|
|
314
321
|
See the `LICENSE` and `COPYING` files for license details.
|
|
315
322
|
|
|
316
323
|
## Ruby Gem
|
|
@@ -343,3 +350,5 @@ Main source code repository on github at [henrythebuilder/dcm_dict](https://gith
|
|
|
343
350
|
[10]: http://www.dicomstandard.org/
|
|
344
351
|
[11]: http://www.dicomstandard.org/current/
|
|
345
352
|
[12]: https://rubygems.org/gems/dcm_dict
|
|
353
|
+
[13]: https://bugs.ruby-lang.org/issues/17429
|
|
354
|
+
[14]: https://docs.ruby-lang.org/en/3.2/Refinement.html
|
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-2023 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-2023 Enrico Rivarola
|
|
33
33
|
|
|
34
34
|
This file is part of DcmDict gem (dcm_dict).
|
|
35
35
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright (C) 2014-
|
|
2
|
+
# Copyright (C) 2014-2023 Enrico Rivarola
|
|
3
3
|
#
|
|
4
4
|
# This file is part of DcmDict gem (dcm_dict).
|
|
5
5
|
#
|
|
@@ -25,7 +25,7 @@ module DcmDict
|
|
|
25
25
|
module Refine
|
|
26
26
|
module ArrayRefine
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
class ::Array
|
|
29
29
|
include DcmDict::Refine::DataElementRefine
|
|
30
30
|
end
|
|
31
31
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright (C) 2014-
|
|
2
|
+
# Copyright (C) 2014-2023 Enrico Rivarola
|
|
3
3
|
#
|
|
4
4
|
# This file is part of DcmDict gem (dcm_dict).
|
|
5
5
|
#
|
|
@@ -25,7 +25,7 @@ module DcmDict
|
|
|
25
25
|
module Refine
|
|
26
26
|
module StringRefine
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
class ::String
|
|
29
29
|
include DcmDict::Refine::DataElementRefine
|
|
30
30
|
include DcmDict::Refine::UidRefine
|
|
31
31
|
end
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright (C) 2014-
|
|
2
|
+
# Copyright (C) 2014-2023 Enrico Rivarola
|
|
3
3
|
#
|
|
4
4
|
# This file is part of DcmDict gem (dcm_dict).
|
|
5
5
|
#
|
|
@@ -25,7 +25,7 @@ module DcmDict
|
|
|
25
25
|
module Refine
|
|
26
26
|
module SymbolRefine
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
class ::Symbol
|
|
29
29
|
include DcmDict::Refine::DataElementRefine
|
|
30
30
|
include DcmDict::Refine::UidRefine
|
|
31
31
|
end
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2014-
|
|
3
|
+
# Copyright (C) 2014-2023 Enrico Rivarola
|
|
4
4
|
#
|
|
5
5
|
# This file is part of DcmDict gem (dcm_dict).
|
|
6
6
|
#
|
|
@@ -247,7 +247,7 @@ HIGH = 0001H'},
|
|
|
247
247
|
{ tag_ps: '(0008,0400)', tag_name: "Scope of Inventory Sequence", tag_key: 'ScopeOfInventorySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,0400)', tag_sym: :scope_of_inventory_sequence, tag_ndm: '00080400', tag_ary: [0x0008,0x0400], tag_multiple: false, tag_note: ''},
|
|
248
248
|
{ tag_ps: '(0008,0401)', tag_name: "Inventory Purpose", tag_key: 'InventoryPurpose', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0008,0401)', tag_sym: :inventory_purpose, tag_ndm: '00080401', tag_ary: [0x0008,0x0401], tag_multiple: false, tag_note: ''},
|
|
249
249
|
{ tag_ps: '(0008,0402)', tag_name: "Inventory Instance Description", tag_key: 'InventoryInstanceDescription', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0008,0402)', tag_sym: :inventory_instance_description, tag_ndm: '00080402', tag_ary: [0x0008,0x0402], tag_multiple: false, tag_note: ''},
|
|
250
|
-
{ tag_ps: '(0008,0403)', tag_name: "Inventory Level", tag_key: '
|
|
250
|
+
{ tag_ps: '(0008,0403)', tag_name: "Inventory Level", tag_key: 'InventoryLevel', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,0403)', tag_sym: :inventory_level, tag_ndm: '00080403', tag_ary: [0x0008,0x0403], tag_multiple: false, tag_note: ''},
|
|
251
251
|
{ tag_ps: '(0008,0404)', tag_name: "Item Inventory DateTime", tag_key: 'ItemInventoryDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0008,0404)', tag_sym: :item_inventory_date_time, tag_ndm: '00080404', tag_ary: [0x0008,0x0404], tag_multiple: false, tag_note: ''},
|
|
252
252
|
{ tag_ps: '(0008,0405)', tag_name: "Removed from Operational Use", tag_key: 'RemovedFromOperationalUse', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,0405)', tag_sym: :removed_from_operational_use, tag_ndm: '00080405', tag_ary: [0x0008,0x0405], tag_multiple: false, tag_note: ''},
|
|
253
253
|
{ tag_ps: '(0008,0406)', tag_name: "Reason for Removal Code Sequence", tag_key: 'ReasonForRemovalCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,0406)', tag_sym: :reason_for_removal_code_sequence, tag_ndm: '00080406', tag_ary: [0x0008,0x0406], tag_multiple: false, tag_note: ''},
|
|
@@ -261,7 +261,7 @@ HIGH = 0001H'},
|
|
|
261
261
|
{ tag_ps: '(0008,040E)', tag_name: "Stored Instance Transfer Syntax UID", tag_key: 'StoredInstanceTransferSyntaxUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0008,040E)', tag_sym: :stored_instance_transfer_syntax_uid, tag_ndm: '0008040E', tag_ary: [0x0008,0x040E], tag_multiple: false, tag_note: ''},
|
|
262
262
|
{ tag_ps: '(0008,040F)', tag_name: "Extended Matching Mechanisms", tag_key: 'ExtendedMatchingMechanisms', tag_vr: [:CS], tag_vm: ["1-n"], tag_str: '(0008,040F)', tag_sym: :extended_matching_mechanisms, tag_ndm: '0008040F', tag_ary: [0x0008,0x040F], tag_multiple: false, tag_note: ''},
|
|
263
263
|
{ tag_ps: '(0008,0410)', tag_name: "Range Matching Sequence", tag_key: 'RangeMatchingSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,0410)', tag_sym: :range_matching_sequence, tag_ndm: '00080410', tag_ary: [0x0008,0x0410], tag_multiple: false, tag_note: ''},
|
|
264
|
-
{ tag_ps: '(0008,0411)', tag_name: "List of UID Matching Sequence", tag_key: '
|
|
264
|
+
{ tag_ps: '(0008,0411)', tag_name: "List of UID Matching Sequence", tag_key: 'ListOfUIDMatchingSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,0411)', tag_sym: :list_of_uid_matching_sequence, tag_ndm: '00080411', tag_ary: [0x0008,0x0411], tag_multiple: false, tag_note: ''},
|
|
265
265
|
{ tag_ps: '(0008,0412)', tag_name: "Empty Value Matching Sequence", tag_key: 'EmptyValueMatchingSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,0412)', tag_sym: :empty_value_matching_sequence, tag_ndm: '00080412', tag_ary: [0x0008,0x0412], tag_multiple: false, tag_note: ''},
|
|
266
266
|
{ tag_ps: '(0008,0413)', tag_name: "General Matching Sequence", tag_key: 'GeneralMatchingSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,0413)', tag_sym: :general_matching_sequence, tag_ndm: '00080413', tag_ary: [0x0008,0x0413], tag_multiple: false, tag_note: ''},
|
|
267
267
|
{ tag_ps: '(0008,0414)', tag_name: "Requested Status Interval", tag_key: 'RequestedStatusInterval', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0008,0414)', tag_sym: :requested_status_interval, tag_ndm: '00080414', tag_ary: [0x0008,0x0414], tag_multiple: false, tag_note: ''},
|
|
@@ -383,7 +383,7 @@ HIGH = 0001H'},
|
|
|
383
383
|
{ 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: ''},
|
|
384
384
|
{ tag_ps: '(0008,3012)', tag_name: "Radiopharmaceutical Administration Event UID", tag_key: 'RadiopharmaceuticalAdministrationEventUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0008,3012)', tag_sym: :radiopharmaceutical_administration_event_uid, tag_ndm: '00083012', tag_ary: [0x0008,0x3012], tag_multiple: false, tag_note: ''},
|
|
385
385
|
{ tag_ps: '(0008,4000)', tag_name: "Identifying Comments", tag_key: 'IdentifyingComments', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0008,4000)', tag_sym: :identifying_comments, tag_ndm: '00084000', tag_ary: [0x0008,0x4000], tag_multiple: false, tag_note: 'RET'},
|
|
386
|
-
{ tag_ps: '(0008,9007)', tag_name: "Frame Type", tag_key: 'FrameType', tag_vr: [:CS], tag_vm: ["4"], tag_str: '(0008,9007)', tag_sym: :frame_type, tag_ndm: '00089007', tag_ary: [0x0008,0x9007], tag_multiple: false, tag_note: ''},
|
|
386
|
+
{ tag_ps: '(0008,9007)', tag_name: "Frame Type", tag_key: 'FrameType', tag_vr: [:CS], tag_vm: ["4-5"], tag_str: '(0008,9007)', tag_sym: :frame_type, tag_ndm: '00089007', tag_ary: [0x0008,0x9007], tag_multiple: false, tag_note: ''},
|
|
387
387
|
{ tag_ps: '(0008,9092)', tag_name: "Referenced Image Evidence Sequence", tag_key: 'ReferencedImageEvidenceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,9092)', tag_sym: :referenced_image_evidence_sequence, tag_ndm: '00089092', tag_ary: [0x0008,0x9092], tag_multiple: false, tag_note: ''},
|
|
388
388
|
{ tag_ps: '(0008,9121)', tag_name: "Referenced Raw Data Sequence", tag_key: 'ReferencedRawDataSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,9121)', tag_sym: :referenced_raw_data_sequence, tag_ndm: '00089121', tag_ary: [0x0008,0x9121], tag_multiple: false, tag_note: ''},
|
|
389
389
|
{ tag_ps: '(0008,9123)', tag_name: "Creator-Version UID", tag_key: 'CreatorVersionUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0008,9123)', tag_sym: :creator_version_uid, tag_ndm: '00089123', tag_ary: [0x0008,0x9123], tag_multiple: false, tag_note: ''},
|
|
@@ -3919,6 +3919,60 @@ HIGH = 0001H'},
|
|
|
3919
3919
|
{ tag_ps: '(3002,0050)', tag_name: "Primary Fluence Mode Sequence", tag_key: 'PrimaryFluenceModeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0050)', tag_sym: :primary_fluence_mode_sequence, tag_ndm: '30020050', tag_ary: [0x3002,0x0050], tag_multiple: false, tag_note: ''},
|
|
3920
3920
|
{ tag_ps: '(3002,0051)', tag_name: "Fluence Mode", tag_key: 'FluenceMode', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3002,0051)', tag_sym: :fluence_mode, tag_ndm: '30020051', tag_ary: [0x3002,0x0051], tag_multiple: false, tag_note: ''},
|
|
3921
3921
|
{ tag_ps: '(3002,0052)', tag_name: "Fluence Mode ID", tag_key: 'FluenceModeID', tag_vr: [:SH], tag_vm: ["1"], tag_str: '(3002,0052)', tag_sym: :fluence_mode_id, tag_ndm: '30020052', tag_ary: [0x3002,0x0052], tag_multiple: false, tag_note: ''},
|
|
3922
|
+
{ tag_ps: '(3002,0100)', tag_name: "Selected Frame Number", tag_key: 'SelectedFrameNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(3002,0100)', tag_sym: :selected_frame_number, tag_ndm: '30020100', tag_ary: [0x3002,0x0100], tag_multiple: false, tag_note: ''},
|
|
3923
|
+
{ tag_ps: '(3002,0101)', tag_name: "Selected Frame Functional Groups Sequence", tag_key: 'SelectedFrameFunctionalGroupsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0101)', tag_sym: :selected_frame_functional_groups_sequence, tag_ndm: '30020101', tag_ary: [0x3002,0x0101], tag_multiple: false, tag_note: ''},
|
|
3924
|
+
{ tag_ps: '(3002,0102)', tag_name: "RT Image Frame General Content Sequence", tag_key: 'RTImageFrameGeneralContentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0102)', tag_sym: :rt_image_frame_general_content_sequence, tag_ndm: '30020102', tag_ary: [0x3002,0x0102], tag_multiple: false, tag_note: ''},
|
|
3925
|
+
{ tag_ps: '(3002,0103)', tag_name: "RT Image Frame Context Sequence", tag_key: 'RTImageFrameContextSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0103)', tag_sym: :rt_image_frame_context_sequence, tag_ndm: '30020103', tag_ary: [0x3002,0x0103], tag_multiple: false, tag_note: ''},
|
|
3926
|
+
{ tag_ps: '(3002,0104)', tag_name: "RT Image Scope Sequence", tag_key: 'RTImageScopeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0104)', tag_sym: :rt_image_scope_sequence, tag_ndm: '30020104', tag_ary: [0x3002,0x0104], tag_multiple: false, tag_note: ''},
|
|
3927
|
+
{ tag_ps: '(3002,0105)', tag_name: "Beam Modifier Coordinates Presence Flag", tag_key: 'BeamModifierCoordinatesPresenceFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3002,0105)', tag_sym: :beam_modifier_coordinates_presence_flag, tag_ndm: '30020105', tag_ary: [0x3002,0x0105], tag_multiple: false, tag_note: ''},
|
|
3928
|
+
{ tag_ps: '(3002,0106)', tag_name: "Start Cumulative Meterset", tag_key: 'StartCumulativeMeterset', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(3002,0106)', tag_sym: :start_cumulative_meterset, tag_ndm: '30020106', tag_ary: [0x3002,0x0106], tag_multiple: false, tag_note: ''},
|
|
3929
|
+
{ tag_ps: '(3002,0107)', tag_name: "Stop Cumulative Meterset", tag_key: 'StopCumulativeMeterset', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(3002,0107)', tag_sym: :stop_cumulative_meterset, tag_ndm: '30020107', tag_ary: [0x3002,0x0107], tag_multiple: false, tag_note: ''},
|
|
3930
|
+
{ tag_ps: '(3002,0108)', tag_name: "RT Acquisition Patient Position Sequence", tag_key: 'RTAcquisitionPatientPositionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0108)', tag_sym: :rt_acquisition_patient_position_sequence, tag_ndm: '30020108', tag_ary: [0x3002,0x0108], tag_multiple: false, tag_note: ''},
|
|
3931
|
+
{ tag_ps: '(3002,0109)', tag_name: "RT Image Frame Imaging Device Position Sequence", tag_key: 'RTImageFrameImagingDevicePositionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0109)', tag_sym: :rt_image_frame_imaging_device_position_sequence, tag_ndm: '30020109', tag_ary: [0x3002,0x0109], tag_multiple: false, tag_note: ''},
|
|
3932
|
+
{ tag_ps: '(3002,010A)', tag_name: "RT Image Frame kV Radiation Acquisition Sequence", tag_key: 'RTImageFramekVRadiationAcquisitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,010A)', tag_sym: :rt_image_framek_v_radiation_acquisition_sequence, tag_ndm: '3002010A', tag_ary: [0x3002,0x010A], tag_multiple: false, tag_note: ''},
|
|
3933
|
+
{ tag_ps: '(3002,010B)', tag_name: "RT Image Frame MV Radiation Acquisition Sequence", tag_key: 'RTImageFrameMVRadiationAcquisitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,010B)', tag_sym: :rt_image_frame_mv_radiation_acquisition_sequence, tag_ndm: '3002010B', tag_ary: [0x3002,0x010B], tag_multiple: false, tag_note: ''},
|
|
3934
|
+
{ tag_ps: '(3002,010C)', tag_name: "RT Image Frame Radiation Acquisition Sequence", tag_key: 'RTImageFrameRadiationAcquisitionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,010C)', tag_sym: :rt_image_frame_radiation_acquisition_sequence, tag_ndm: '3002010C', tag_ary: [0x3002,0x010C], tag_multiple: false, tag_note: ''},
|
|
3935
|
+
{ tag_ps: '(3002,010D)', tag_name: "Imaging Source Position Sequence", tag_key: 'ImagingSourcePositionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,010D)', tag_sym: :imaging_source_position_sequence, tag_ndm: '3002010D', tag_ary: [0x3002,0x010D], tag_multiple: false, tag_note: ''},
|
|
3936
|
+
{ tag_ps: '(3002,010E)', tag_name: "Image Receptor Position Sequence", tag_key: 'ImageReceptorPositionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,010E)', tag_sym: :image_receptor_position_sequence, tag_ndm: '3002010E', tag_ary: [0x3002,0x010E], tag_multiple: false, tag_note: ''},
|
|
3937
|
+
{ tag_ps: '(3002,010F)', tag_name: "Device Position to Equipment Mapping Matrix", tag_key: 'DevicePositionToEquipmentMappingMatrix', tag_vr: [:FD], tag_vm: ["16"], tag_str: '(3002,010F)', tag_sym: :device_position_to_equipment_mapping_matrix, tag_ndm: '3002010F', tag_ary: [0x3002,0x010F], tag_multiple: false, tag_note: ''},
|
|
3938
|
+
{ tag_ps: '(3002,0110)', tag_name: "Device Position Parameter Sequence", tag_key: 'DevicePositionParameterSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0110)', tag_sym: :device_position_parameter_sequence, tag_ndm: '30020110', tag_ary: [0x3002,0x0110], tag_multiple: false, tag_note: ''},
|
|
3939
|
+
{ tag_ps: '(3002,0111)', tag_name: "Imaging Source Location Specification Type", tag_key: 'ImagingSourceLocationSpecificationType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3002,0111)', tag_sym: :imaging_source_location_specification_type, tag_ndm: '30020111', tag_ary: [0x3002,0x0111], tag_multiple: false, tag_note: ''},
|
|
3940
|
+
{ tag_ps: '(3002,0112)', tag_name: "Imaging Device Location Matrix Sequence", tag_key: 'ImagingDeviceLocationMatrixSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0112)', tag_sym: :imaging_device_location_matrix_sequence, tag_ndm: '30020112', tag_ary: [0x3002,0x0112], tag_multiple: false, tag_note: ''},
|
|
3941
|
+
{ tag_ps: '(3002,0113)', tag_name: "Imaging Device Location Parameter Sequence", tag_key: 'ImagingDeviceLocationParameterSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0113)', tag_sym: :imaging_device_location_parameter_sequence, tag_ndm: '30020113', tag_ary: [0x3002,0x0113], tag_multiple: false, tag_note: ''},
|
|
3942
|
+
{ tag_ps: '(3002,0114)', tag_name: "Imaging Aperture Sequence", tag_key: 'ImagingApertureSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0114)', tag_sym: :imaging_aperture_sequence, tag_ndm: '30020114', tag_ary: [0x3002,0x0114], tag_multiple: false, tag_note: ''},
|
|
3943
|
+
{ tag_ps: '(3002,0115)', tag_name: "Imaging Aperture Specification Type", tag_key: 'ImagingApertureSpecificationType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3002,0115)', tag_sym: :imaging_aperture_specification_type, tag_ndm: '30020115', tag_ary: [0x3002,0x0115], tag_multiple: false, tag_note: ''},
|
|
3944
|
+
{ tag_ps: '(3002,0116)', tag_name: "Number of Acquisition Devices", tag_key: 'NumberOfAcquisitionDevices', tag_vr: [:US], tag_vm: ["1"], tag_str: '(3002,0116)', tag_sym: :number_of_acquisition_devices, tag_ndm: '30020116', tag_ary: [0x3002,0x0116], tag_multiple: false, tag_note: ''},
|
|
3945
|
+
{ tag_ps: '(3002,0117)', tag_name: "Acquisition Device Sequence", tag_key: 'AcquisitionDeviceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0117)', tag_sym: :acquisition_device_sequence, tag_ndm: '30020117', tag_ary: [0x3002,0x0117], tag_multiple: false, tag_note: ''},
|
|
3946
|
+
{ tag_ps: '(3002,0118)', tag_name: "Acquisition Task Sequence", tag_key: 'AcquisitionTaskSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0118)', tag_sym: :acquisition_task_sequence, tag_ndm: '30020118', tag_ary: [0x3002,0x0118], tag_multiple: false, tag_note: ''},
|
|
3947
|
+
{ tag_ps: '(3002,0119)', tag_name: "Acquisition Task Workitem Code Sequence", tag_key: 'AcquisitionTaskWorkitemCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0119)', tag_sym: :acquisition_task_workitem_code_sequence, tag_ndm: '30020119', tag_ary: [0x3002,0x0119], tag_multiple: false, tag_note: ''},
|
|
3948
|
+
{ tag_ps: '(3002,011A)', tag_name: "Acquisition Subtask Sequence", tag_key: 'AcquisitionSubtaskSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,011A)', tag_sym: :acquisition_subtask_sequence, tag_ndm: '3002011A', tag_ary: [0x3002,0x011A], tag_multiple: false, tag_note: ''},
|
|
3949
|
+
{ tag_ps: '(3002,011B)', tag_name: "Subtask Workitem Code Sequence", tag_key: 'SubtaskWorkitemCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,011B)', tag_sym: :subtask_workitem_code_sequence, tag_ndm: '3002011B', tag_ary: [0x3002,0x011B], tag_multiple: false, tag_note: ''},
|
|
3950
|
+
{ tag_ps: '(3002,011C)', tag_name: "Acquisition Task Index", tag_key: 'AcquisitionTaskIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(3002,011C)', tag_sym: :acquisition_task_index, tag_ndm: '3002011C', tag_ary: [0x3002,0x011C], tag_multiple: false, tag_note: ''},
|
|
3951
|
+
{ tag_ps: '(3002,011D)', tag_name: "Acquisition Subtask Index", tag_key: 'AcquisitionSubtaskIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(3002,011D)', tag_sym: :acquisition_subtask_index, tag_ndm: '3002011D', tag_ary: [0x3002,0x011D], tag_multiple: false, tag_note: ''},
|
|
3952
|
+
{ tag_ps: '(3002,011E)', tag_name: "Referenced Baseline Parameters RT Radiation Instance Sequence", tag_key: 'ReferencedBaselineParametersRTRadiationInstanceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,011E)', tag_sym: :referenced_baseline_parameters_rt_radiation_instance_sequence, tag_ndm: '3002011E', tag_ary: [0x3002,0x011E], tag_multiple: false, tag_note: ''},
|
|
3953
|
+
{ tag_ps: '(3002,011F)', tag_name: "Position Acquisition Template Identification Sequence", tag_key: 'PositionAcquisitionTemplateIdentificationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,011F)', tag_sym: :position_acquisition_template_identification_sequence, tag_ndm: '3002011F', tag_ary: [0x3002,0x011F], tag_multiple: false, tag_note: ''},
|
|
3954
|
+
{ tag_ps: '(3002,0120)', tag_name: "Position Acquisition Template ID", tag_key: 'PositionAcquisitionTemplateID', tag_vr: [:ST], tag_vm: ["1"], tag_str: '(3002,0120)', tag_sym: :position_acquisition_template_id, tag_ndm: '30020120', tag_ary: [0x3002,0x0120], tag_multiple: false, tag_note: ''},
|
|
3955
|
+
{ tag_ps: '(3002,0121)', tag_name: "Position Acquisition Template Name", tag_key: 'PositionAcquisitionTemplateName', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(3002,0121)', tag_sym: :position_acquisition_template_name, tag_ndm: '30020121', tag_ary: [0x3002,0x0121], tag_multiple: false, tag_note: ''},
|
|
3956
|
+
{ tag_ps: '(3002,0122)', tag_name: "Position Acquisition Template Code Sequence", tag_key: 'PositionAcquisitionTemplateCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0122)', tag_sym: :position_acquisition_template_code_sequence, tag_ndm: '30020122', tag_ary: [0x3002,0x0122], tag_multiple: false, tag_note: ''},
|
|
3957
|
+
{ tag_ps: '(3002,0123)', tag_name: "Position Acquisition Template Description", tag_key: 'PositionAcquisitionTemplateDescription', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(3002,0123)', tag_sym: :position_acquisition_template_description, tag_ndm: '30020123', tag_ary: [0x3002,0x0123], tag_multiple: false, tag_note: ''},
|
|
3958
|
+
{ tag_ps: '(3002,0124)', tag_name: "Acquisition Task Applicability Sequence", tag_key: 'AcquisitionTaskApplicabilitySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0124)', tag_sym: :acquisition_task_applicability_sequence, tag_ndm: '30020124', tag_ary: [0x3002,0x0124], tag_multiple: false, tag_note: ''},
|
|
3959
|
+
{ tag_ps: '(3002,0125)', tag_name: "Projection Imaging Acquisition Parameter Sequence", tag_key: 'ProjectionImagingAcquisitionParameterSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0125)', tag_sym: :projection_imaging_acquisition_parameter_sequence, tag_ndm: '30020125', tag_ary: [0x3002,0x0125], tag_multiple: false, tag_note: ''},
|
|
3960
|
+
{ tag_ps: '(3002,0126)', tag_name: "CT Imaging Acquisition Parameter Sequence", tag_key: 'CTImagingAcquisitionParameterSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0126)', tag_sym: :ct_imaging_acquisition_parameter_sequence, tag_ndm: '30020126', tag_ary: [0x3002,0x0126], tag_multiple: false, tag_note: ''},
|
|
3961
|
+
{ tag_ps: '(3002,0127)', tag_name: "KV Imaging Generation Parameters Sequence", tag_key: 'KVImagingGenerationParametersSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0127)', tag_sym: :kv_imaging_generation_parameters_sequence, tag_ndm: '30020127', tag_ary: [0x3002,0x0127], tag_multiple: false, tag_note: ''},
|
|
3962
|
+
{ tag_ps: '(3002,0128)', tag_name: "MV Imaging Generation Parameters Sequence", tag_key: 'MVImagingGenerationParametersSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0128)', tag_sym: :mv_imaging_generation_parameters_sequence, tag_ndm: '30020128', tag_ary: [0x3002,0x0128], tag_multiple: false, tag_note: ''},
|
|
3963
|
+
{ tag_ps: '(3002,0129)', tag_name: "Acquisition Signal Type", tag_key: 'AcquisitionSignalType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3002,0129)', tag_sym: :acquisition_signal_type, tag_ndm: '30020129', tag_ary: [0x3002,0x0129], tag_multiple: false, tag_note: ''},
|
|
3964
|
+
{ tag_ps: '(3002,012A)', tag_name: "Acquisition Method", tag_key: 'AcquisitionMethod', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3002,012A)', tag_sym: :acquisition_method, tag_ndm: '3002012A', tag_ary: [0x3002,0x012A], tag_multiple: false, tag_note: ''},
|
|
3965
|
+
{ tag_ps: '(3002,012B)', tag_name: "Scan Start Position Sequence", tag_key: 'ScanStartPositionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,012B)', tag_sym: :scan_start_position_sequence, tag_ndm: '3002012B', tag_ary: [0x3002,0x012B], tag_multiple: false, tag_note: ''},
|
|
3966
|
+
{ tag_ps: '(3002,012C)', tag_name: "Scan Stop Position Sequence", tag_key: 'ScanStopPositionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,012C)', tag_sym: :scan_stop_position_sequence, tag_ndm: '3002012C', tag_ary: [0x3002,0x012C], tag_multiple: false, tag_note: ''},
|
|
3967
|
+
{ tag_ps: '(3002,012D)', tag_name: "Imaging Source to Beam Modifier Definition Plane Distance", tag_key: 'ImagingSourceToBeamModifierDefinitionPlaneDistance', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(3002,012D)', tag_sym: :imaging_source_to_beam_modifier_definition_plane_distance, tag_ndm: '3002012D', tag_ary: [0x3002,0x012D], tag_multiple: false, tag_note: ''},
|
|
3968
|
+
{ tag_ps: '(3002,012E)', tag_name: "Scan Arc Type", tag_key: 'ScanArcType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3002,012E)', tag_sym: :scan_arc_type, tag_ndm: '3002012E', tag_ary: [0x3002,0x012E], tag_multiple: false, tag_note: ''},
|
|
3969
|
+
{ tag_ps: '(3002,012F)', tag_name: "Detector Positioning Type", tag_key: 'DetectorPositioningType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3002,012F)', tag_sym: :detector_positioning_type, tag_ndm: '3002012F', tag_ary: [0x3002,0x012F], tag_multiple: false, tag_note: ''},
|
|
3970
|
+
{ tag_ps: '(3002,0130)', tag_name: "Additional RT Accessory Device Sequence", tag_key: 'AdditionalRTAccessoryDeviceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0130)', tag_sym: :additional_rt_accessory_device_sequence, tag_ndm: '30020130', tag_ary: [0x3002,0x0130], tag_multiple: false, tag_note: ''},
|
|
3971
|
+
{ tag_ps: '(3002,0131)', tag_name: "Device-Specific Acquisition Parameter Sequence", tag_key: 'DeviceSpecificAcquisitionParameterSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0131)', tag_sym: :device_specific_acquisition_parameter_sequence, tag_ndm: '30020131', tag_ary: [0x3002,0x0131], tag_multiple: false, tag_note: ''},
|
|
3972
|
+
{ tag_ps: '(3002,0132)', tag_name: "Referenced Position Reference Instance Sequence", tag_key: 'ReferencedPositionReferenceInstanceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0132)', tag_sym: :referenced_position_reference_instance_sequence, tag_ndm: '30020132', tag_ary: [0x3002,0x0132], tag_multiple: false, tag_note: ''},
|
|
3973
|
+
{ tag_ps: '(3002,0133)', tag_name: "Energy Derivation Code Sequence", tag_key: 'EnergyDerivationCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0133)', tag_sym: :energy_derivation_code_sequence, tag_ndm: '30020133', tag_ary: [0x3002,0x0133], tag_multiple: false, tag_note: ''},
|
|
3974
|
+
{ tag_ps: '(3002,0134)', tag_name: "Maximum Cumulative Meterset Exposure", tag_key: 'MaximumCumulativeMetersetExposure', tag_vr: [:FD], tag_vm: ["1"], tag_str: '(3002,0134)', tag_sym: :maximum_cumulative_meterset_exposure, tag_ndm: '30020134', tag_ary: [0x3002,0x0134], tag_multiple: false, tag_note: ''},
|
|
3975
|
+
{ tag_ps: '(3002,0135)', tag_name: "Acquisition Initiation Sequence", tag_key: 'AcquisitionInitiationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3002,0135)', tag_sym: :acquisition_initiation_sequence, tag_ndm: '30020135', tag_ary: [0x3002,0x0135], tag_multiple: false, tag_note: ''},
|
|
3922
3976
|
{ tag_ps: '(3004,0001)', tag_name: "DVH Type", tag_key: 'DVHType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3004,0001)', tag_sym: :dvh_type, tag_ndm: '30040001', tag_ary: [0x3004,0x0001], tag_multiple: false, tag_note: ''},
|
|
3923
3977
|
{ tag_ps: '(3004,0002)', tag_name: "Dose Units", tag_key: 'DoseUnits', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3004,0002)', tag_sym: :dose_units, tag_ndm: '30040002', tag_ary: [0x3004,0x0002], tag_multiple: false, tag_note: ''},
|
|
3924
3978
|
{ tag_ps: '(3004,0004)', tag_name: "Dose Type", tag_key: 'DoseType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3004,0004)', tag_sym: :dose_type, tag_ndm: '30040004', tag_ary: [0x3004,0x0004], tag_multiple: false, tag_note: ''},
|
|
@@ -3928,8 +3982,8 @@ HIGH = 0001H'},
|
|
|
3928
3982
|
{ tag_ps: '(3004,000A)', tag_name: "Dose Summation Type", tag_key: 'DoseSummationType', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3004,000A)', tag_sym: :dose_summation_type, tag_ndm: '3004000A', tag_ary: [0x3004,0x000A], tag_multiple: false, tag_note: ''},
|
|
3929
3983
|
{ tag_ps: '(3004,000C)', tag_name: "Grid Frame Offset Vector", tag_key: 'GridFrameOffsetVector', tag_vr: [:DS], tag_vm: ["2-n"], tag_str: '(3004,000C)', tag_sym: :grid_frame_offset_vector, tag_ndm: '3004000C', tag_ary: [0x3004,0x000C], tag_multiple: false, tag_note: ''},
|
|
3930
3984
|
{ tag_ps: '(3004,000E)', tag_name: "Dose Grid Scaling", tag_key: 'DoseGridScaling', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(3004,000E)', tag_sym: :dose_grid_scaling, tag_ndm: '3004000E', tag_ary: [0x3004,0x000E], tag_multiple: false, tag_note: ''},
|
|
3931
|
-
{ tag_ps: '(3004,0010)', tag_name: "RT Dose ROI Sequence", tag_key: 'RTDoseROISequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3004,0010)', tag_sym: :rt_dose_roi_sequence, tag_ndm: '30040010', tag_ary: [0x3004,0x0010], tag_multiple: false, tag_note: ''},
|
|
3932
|
-
{ tag_ps: '(3004,0012)', tag_name: "Dose Value", tag_key: 'DoseValue', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(3004,0012)', tag_sym: :dose_value, tag_ndm: '30040012', tag_ary: [0x3004,0x0012], tag_multiple: false, tag_note: ''},
|
|
3985
|
+
{ tag_ps: '(3004,0010)', tag_name: "RT Dose ROI Sequence", tag_key: 'RTDoseROISequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3004,0010)', tag_sym: :rt_dose_roi_sequence, tag_ndm: '30040010', tag_ary: [0x3004,0x0010], tag_multiple: false, tag_note: 'RET (2022d)'},
|
|
3986
|
+
{ tag_ps: '(3004,0012)', tag_name: "Dose Value", tag_key: 'DoseValue', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(3004,0012)', tag_sym: :dose_value, tag_ndm: '30040012', tag_ary: [0x3004,0x0012], tag_multiple: false, tag_note: 'RET (2022d)'},
|
|
3933
3987
|
{ tag_ps: '(3004,0014)', tag_name: "Tissue Heterogeneity Correction", tag_key: 'TissueHeterogeneityCorrection', tag_vr: [:CS], tag_vm: ["1-3"], tag_str: '(3004,0014)', tag_sym: :tissue_heterogeneity_correction, tag_ndm: '30040014', tag_ary: [0x3004,0x0014], tag_multiple: false, tag_note: ''},
|
|
3934
3988
|
{ tag_ps: '(3004,0040)', tag_name: "DVH Normalization Point", tag_key: 'DVHNormalizationPoint', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(3004,0040)', tag_sym: :dvh_normalization_point, tag_ndm: '30040040', tag_ary: [0x3004,0x0040], tag_multiple: false, tag_note: ''},
|
|
3935
3989
|
{ tag_ps: '(3004,0042)', tag_name: "DVH Normalization Dose Value", tag_key: 'DVHNormalizationDoseValue', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(3004,0042)', tag_sym: :dvh_normalization_dose_value, tag_ndm: '30040042', tag_ary: [0x3004,0x0042], tag_multiple: false, tag_note: ''},
|
|
@@ -4052,6 +4106,10 @@ HIGH = 0001H'},
|
|
|
4052
4106
|
{ tag_ps: '(3008,0090)', tag_name: "Referenced Calculated Dose Reference Sequence", tag_key: 'ReferencedCalculatedDoseReferenceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3008,0090)', tag_sym: :referenced_calculated_dose_reference_sequence, tag_ndm: '30080090', tag_ary: [0x3008,0x0090], tag_multiple: false, tag_note: ''},
|
|
4053
4107
|
{ tag_ps: '(3008,0092)', tag_name: "Referenced Calculated Dose Reference Number", tag_key: 'ReferencedCalculatedDoseReferenceNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(3008,0092)', tag_sym: :referenced_calculated_dose_reference_number, tag_ndm: '30080092', tag_ary: [0x3008,0x0092], tag_multiple: false, tag_note: ''},
|
|
4054
4108
|
{ tag_ps: '(3008,00A0)', tag_name: "Beam Limiting Device Leaf Pairs Sequence", tag_key: 'BeamLimitingDeviceLeafPairsSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3008,00A0)', tag_sym: :beam_limiting_device_leaf_pairs_sequence, tag_ndm: '300800A0', tag_ary: [0x3008,0x00A0], tag_multiple: false, tag_note: ''},
|
|
4109
|
+
{ tag_ps: '(3008,00A1)', tag_name: "Enhanced RT Beam Limiting Device Sequence", tag_key: 'EnhancedRTBeamLimitingDeviceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3008,00A1)', tag_sym: :enhanced_rt_beam_limiting_device_sequence, tag_ndm: '300800A1', tag_ary: [0x3008,0x00A1], tag_multiple: false, tag_note: ''},
|
|
4110
|
+
{ tag_ps: '(3008,00A2)', tag_name: "Enhanced RT Beam Limiting Opening Sequence", tag_key: 'EnhancedRTBeamLimitingOpeningSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3008,00A2)', tag_sym: :enhanced_rt_beam_limiting_opening_sequence, tag_ndm: '300800A2', tag_ary: [0x3008,0x00A2], tag_multiple: false, tag_note: ''},
|
|
4111
|
+
{ tag_ps: '(3008,00A3)', tag_name: "Enhanced RT Beam Limiting Device Definition Flag", tag_key: 'EnhancedRTBeamLimitingDeviceDefinitionFlag', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3008,00A3)', tag_sym: :enhanced_rt_beam_limiting_device_definition_flag, tag_ndm: '300800A3', tag_ary: [0x3008,0x00A3], tag_multiple: false, tag_note: ''},
|
|
4112
|
+
{ tag_ps: '(3008,00A4)', tag_name: "Parallel RT Beam Delimiter Opening Extents", tag_key: 'ParallelRTBeamDelimiterOpeningExtents', tag_vr: [:FD], tag_vm: ["2-2n"], tag_str: '(3008,00A4)', tag_sym: :parallel_rt_beam_delimiter_opening_extents, tag_ndm: '300800A4', tag_ary: [0x3008,0x00A4], tag_multiple: false, tag_note: ''},
|
|
4055
4113
|
{ tag_ps: '(3008,00B0)', tag_name: "Recorded Wedge Sequence", tag_key: 'RecordedWedgeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3008,00B0)', tag_sym: :recorded_wedge_sequence, tag_ndm: '300800B0', tag_ary: [0x3008,0x00B0], tag_multiple: false, tag_note: ''},
|
|
4056
4114
|
{ tag_ps: '(3008,00C0)', tag_name: "Recorded Compensator Sequence", tag_key: 'RecordedCompensatorSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3008,00C0)', tag_sym: :recorded_compensator_sequence, tag_ndm: '300800C0', tag_ary: [0x3008,0x00C0], tag_multiple: false, tag_note: ''},
|
|
4057
4115
|
{ tag_ps: '(3008,00D0)', tag_name: "Recorded Block Sequence", tag_key: 'RecordedBlockSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3008,00D0)', tag_sym: :recorded_block_sequence, tag_ndm: '300800D0', tag_ary: [0x3008,0x00D0], tag_multiple: false, tag_note: ''},
|
|
@@ -4894,7 +4952,7 @@ HIGH = 0001H'},
|
|
|
4894
4952
|
{ tag_ps: '(3010,0087)', tag_name: "Weekday Fraction Pattern Sequence", tag_key: 'WeekdayFractionPatternSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0087)', tag_sym: :weekday_fraction_pattern_sequence, tag_ndm: '30100087', tag_ary: [0x3010,0x0087], tag_multiple: false, tag_note: ''},
|
|
4895
4953
|
{ 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: ''},
|
|
4896
4954
|
{ tag_ps: '(3010,0089)', tag_name: "Treatment Site Modifier Code Sequence", tag_key: 'TreatmentSiteModifierCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0089)', tag_sym: :treatment_site_modifier_code_sequence, tag_ndm: '30100089', tag_ary: [0x3010,0x0089], tag_multiple: false, tag_note: ''},
|
|
4897
|
-
{ tag_ps: '(3010,0090)', tag_name: "Robotic Base Location Indicator", tag_key: 'RoboticBaseLocationIndicator', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3010,0090)', tag_sym: :robotic_base_location_indicator, tag_ndm: '30100090', tag_ary: [0x3010,0x0090], tag_multiple: false, tag_note: ''},
|
|
4955
|
+
{ tag_ps: '(3010,0090)', tag_name: "Robotic Base Location Indicator", tag_key: 'RoboticBaseLocationIndicator', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(3010,0090)', tag_sym: :robotic_base_location_indicator, tag_ndm: '30100090', tag_ary: [0x3010,0x0090], tag_multiple: false, tag_note: 'RET (2022e)'},
|
|
4898
4956
|
{ tag_ps: '(3010,0091)', tag_name: "Robotic Path Node Set Code Sequence", tag_key: 'RoboticPathNodeSetCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3010,0091)', tag_sym: :robotic_path_node_set_code_sequence, tag_ndm: '30100091', tag_ary: [0x3010,0x0091], tag_multiple: false, tag_note: ''},
|
|
4899
4957
|
{ tag_ps: '(3010,0092)', tag_name: "Robotic Node Identifier", tag_key: 'RoboticNodeIdentifier', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(3010,0092)', tag_sym: :robotic_node_identifier, tag_ndm: '30100092', tag_ary: [0x3010,0x0092], tag_multiple: false, tag_note: ''},
|
|
4900
4958
|
{ tag_ps: '(3010,0093)', tag_name: "RT Treatment Source Coordinates", tag_key: 'RTTreatmentSourceCoordinates', tag_vr: [:FD], tag_vm: ["3"], tag_str: '(3010,0093)', tag_sym: :rt_treatment_source_coordinates, tag_ndm: '30100093', tag_ary: [0x3010,0x0093], tag_multiple: false, tag_note: ''},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2014-
|
|
3
|
+
# Copyright (C) 2014-2023 Enrico Rivarola
|
|
4
4
|
#
|
|
5
5
|
# This file is part of DcmDict gem (dcm_dict).
|
|
6
6
|
#
|
|
@@ -343,6 +343,9 @@ module DcmDict
|
|
|
343
343
|
{ uid_value: '1.2.840.10008.5.1.4.1.1.481.20', uid_name: 'Robotic Radiation Record Storage', uid_key: 'RoboticRadiationRecordStorage', uid_sym: :robotic_radiation_record_storage, uid_type: :sop_class},
|
|
344
344
|
{ uid_value: '1.2.840.10008.5.1.4.1.1.481.21', uid_name: 'RT Radiation Set Delivery Instruction Storage', uid_key: 'RTRadiationSetDeliveryInstructionStorage', uid_sym: :rt_radiation_set_delivery_instruction_storage, uid_type: :sop_class},
|
|
345
345
|
{ uid_value: '1.2.840.10008.5.1.4.1.1.481.22', uid_name: 'RT Treatment Preparation Storage', uid_key: 'RTTreatmentPreparationStorage', uid_sym: :rt_treatment_preparation_storage, uid_type: :sop_class},
|
|
346
|
+
{ uid_value: '1.2.840.10008.5.1.4.1.1.481.23', uid_name: 'Enhanced RT Image Storage', uid_key: 'EnhancedRTImageStorage', uid_sym: :enhanced_rt_image_storage, uid_type: :sop_class},
|
|
347
|
+
{ uid_value: '1.2.840.10008.5.1.4.1.1.481.24', uid_name: 'Enhanced Continuous RT Image Storage', uid_key: 'EnhancedContinuousRTImageStorage', uid_sym: :enhanced_continuous_rt_image_storage, uid_type: :sop_class},
|
|
348
|
+
{ uid_value: '1.2.840.10008.5.1.4.1.1.481.25', uid_name: 'RT Patient Position Acquisition Instruction Storage', uid_key: 'RTPatientPositionAcquisitionInstructionStorage', uid_sym: :rt_patient_position_acquisition_instruction_storage, uid_type: :sop_class},
|
|
346
349
|
{ uid_value: '1.2.840.10008.5.1.4.1.1.501.1', uid_name: 'DICOS CT Image Storage', uid_key: 'DICOSCTImageStorage', uid_sym: :dicosct_image_storage, uid_type: :sop_class},
|
|
347
350
|
{ uid_value: '1.2.840.10008.5.1.4.1.1.501.2.1', uid_name: 'DICOS Digital X-Ray Image Storage - For Presentation', uid_key: 'DICOSDigitalXRayImageStorageForPresentation', uid_sym: :dicos_digital_x_ray_image_storage_for_presentation, uid_type: :sop_class},
|
|
348
351
|
{ uid_value: '1.2.840.10008.5.1.4.1.1.501.2.2', uid_name: 'DICOS Digital X-Ray Image Storage - For Processing', uid_key: 'DICOSDigitalXRayImageStorageForProcessing', uid_sym: :dicos_digital_x_ray_image_storage_for_processing, uid_type: :sop_class},
|
data/lib/dcm_dict/version.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright (C) 2014-
|
|
2
|
+
# Copyright (C) 2014-2023 Enrico Rivarola
|
|
3
3
|
#
|
|
4
4
|
# This file is part of DcmDict gem (dcm_dict).
|
|
5
5
|
#
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
# applicable local, state, national or international regulations.
|
|
23
23
|
#
|
|
24
24
|
module DcmDict
|
|
25
|
-
VERSION = "0.
|
|
26
|
-
DICOM_DOC_VERSION = "
|
|
25
|
+
VERSION = "0.52.0"
|
|
26
|
+
DICOM_DOC_VERSION = "2023a"
|
|
27
27
|
end
|
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-2023 Enrico Rivarola
|
|
4
4
|
#
|
|
5
5
|
# This file is part of DcmDict gem (dcm_dict).
|
|
6
6
|
#
|
|
@@ -166,6 +166,12 @@ module DataElementSampleSpecHelper
|
|
|
166
166
|
[0x3006,0x0088] => { tag_ps: '(3006,0088)', tag_name: "ROI Observation Description", tag_key: 'ROIObservationDescription',
|
|
167
167
|
tag_vr: [:ST], tag_vm: ["1"], tag_str: '(3006,0088)', tag_sym: :roi_observation_description,
|
|
168
168
|
tag_ndm: '30060088', tag_ary: [0x3006,0x0088], tag_multiple: false, tag_note: 'RET (2022b)'},
|
|
169
|
+
[0x0008,0x9007] => { tag_ps: '(0008,9007)', tag_name: "Frame Type", tag_key: 'FrameType',
|
|
170
|
+
tag_vr: [:CS], tag_vm: ["4-5"], tag_str: '(0008,9007)', tag_sym: :frame_type,
|
|
171
|
+
tag_ndm: '00089007', tag_ary: [0x0008,0x9007], tag_multiple: false, tag_note: ''},
|
|
172
|
+
[0x3004,0x0012] => { tag_ps: '(3004,0012)', tag_name: "Dose Value", tag_key: 'DoseValue',
|
|
173
|
+
tag_vr: [:DS], tag_vm: ["1"], tag_str: '(3004,0012)', tag_sym: :dose_value,
|
|
174
|
+
tag_ndm: '30040012', tag_ary: [0x3004,0x0012], tag_multiple: false, tag_note: 'RET (2022d)'},
|
|
169
175
|
}
|
|
170
176
|
end
|
|
171
177
|
|
data/spec/spec_helper.rb
CHANGED
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.52.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:
|
|
11
|
+
date: 2023-02-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -16,80 +16,80 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.
|
|
19
|
+
version: '1.14'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 1.
|
|
22
|
+
version: 1.14.0
|
|
23
23
|
type: :development
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
27
|
- - "~>"
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: '1.
|
|
29
|
+
version: '1.14'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 1.
|
|
32
|
+
version: 1.14.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: rspec
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '3.
|
|
39
|
+
version: '3.12'
|
|
40
40
|
- - ">="
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 3.
|
|
42
|
+
version: 3.12.0
|
|
43
43
|
type: :development
|
|
44
44
|
prerelease: false
|
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
46
46
|
requirements:
|
|
47
47
|
- - "~>"
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: '3.
|
|
49
|
+
version: '3.12'
|
|
50
50
|
- - ">="
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
|
-
version: 3.
|
|
52
|
+
version: 3.12.0
|
|
53
53
|
- !ruby/object:Gem::Dependency
|
|
54
54
|
name: simplecov
|
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
|
56
56
|
requirements:
|
|
57
57
|
- - "~>"
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
|
-
version: '0.
|
|
59
|
+
version: '0.22'
|
|
60
60
|
- - ">="
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
|
-
version: 0.
|
|
62
|
+
version: 0.22.0
|
|
63
63
|
type: :development
|
|
64
64
|
prerelease: false
|
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
|
67
67
|
- - "~>"
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '0.
|
|
69
|
+
version: '0.22'
|
|
70
70
|
- - ">="
|
|
71
71
|
- !ruby/object:Gem::Version
|
|
72
|
-
version: 0.
|
|
72
|
+
version: 0.22.0
|
|
73
73
|
- !ruby/object:Gem::Dependency
|
|
74
74
|
name: rake
|
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
|
77
77
|
- - "~>"
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
|
-
version:
|
|
79
|
+
version: '13.0'
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version:
|
|
82
|
+
version: 13.0.0
|
|
83
83
|
type: :development
|
|
84
84
|
prerelease: false
|
|
85
85
|
version_requirements: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
87
|
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version:
|
|
89
|
+
version: '13.0'
|
|
90
90
|
- - ">="
|
|
91
91
|
- !ruby/object:Gem::Version
|
|
92
|
-
version:
|
|
92
|
+
version: 13.0.0
|
|
93
93
|
description: DcmDict is a Ruby gem (dcm_dict) to handle in a simple way the Data Dictionary
|
|
94
94
|
defined within the DICOM Standard
|
|
95
95
|
email: henrythebuilder@yahoo.it
|
|
@@ -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.52.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:
|
|
@@ -176,14 +176,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
176
176
|
requirements:
|
|
177
177
|
- - ">="
|
|
178
178
|
- !ruby/object:Gem::Version
|
|
179
|
-
version: '
|
|
179
|
+
version: '3.0'
|
|
180
180
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
181
181
|
requirements:
|
|
182
182
|
- - ">="
|
|
183
183
|
- !ruby/object:Gem::Version
|
|
184
184
|
version: '0'
|
|
185
185
|
requirements: []
|
|
186
|
-
rubygems_version: 3.
|
|
186
|
+
rubygems_version: 3.4.6
|
|
187
187
|
signing_key:
|
|
188
188
|
specification_version: 4
|
|
189
189
|
summary: A simple way to handle DICOM Data Dictionary
|