dcm_dict 0.61.2 → 0.63.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 +6 -0
- data/README.md +1 -1
- data/lib/dcm_dict/refine/internal/hash_refine_internal.rb +1 -1
- data/lib/dcm_dict/source_data/data_elements_data.rb +24 -0
- data/lib/dcm_dict/source_data/uid_values_data.rb +3 -0
- data/lib/dcm_dict/version.rb +2 -2
- data/lib/dcm_dict/xml/rexml_tool.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '086a7e49dea256a3bc1f51a51db81f7ca576e49937157d90b297114cc5ab4deb'
|
4
|
+
data.tar.gz: 75c0aa6ad0d51b77e792947e52000243f8e14777fb6c25c5568e6d40bbf9bb77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fef5d4fe04135a40f77347f15afef32c0d1dc5e8bdd0dbddf9a6fe1a168e22b01fb1a36bbfc6fcfc77ac0240fd8d9261c478c1eadeea741aeae3f6886ddba69
|
7
|
+
data.tar.gz: a5a9bbdec96cedc31f6e4a9cc4adefe79974230e6ce3a1a7b752841a90c25499819334a32725a70252683bab1db8665c190870459ce966198537e0ec0dd19727
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,10 @@
|
|
1
1
|
# DcmDict project Changelog
|
2
|
+
___
|
3
|
+
## v0.63.0 (2025-03-16)
|
4
|
+
* Update to 2025a Base Standard
|
5
|
+
---
|
6
|
+
## v0.62.0 (2025-02-20)
|
7
|
+
* Fix Ruby 3.4 compatibility for 'Frozen String Literal'
|
2
8
|
---
|
3
9
|
## v0.61.2 (2025-02-20)
|
4
10
|
* Updated dcm_dict.gemspec due to a security update for the Nokogiri gem
|
data/README.md
CHANGED
@@ -295,7 +295,7 @@ Note: the script use the [Nokogiri][3] as XML parser if installed as gem, otherw
|
|
295
295
|
Check the file for other details.
|
296
296
|
|
297
297
|
## Note
|
298
|
-
Current library version is aligned to *DICOM Base Standard* **
|
298
|
+
Current library version is aligned to *DICOM Base Standard* **2025a**
|
299
299
|
|
300
300
|
## Install
|
301
301
|
|
@@ -39,7 +39,7 @@ module DcmDict
|
|
39
39
|
def check_tag_ps!
|
40
40
|
tag_ps = self[:tag_ps]
|
41
41
|
raise "Missing tag_ps field" if tag_ps.nil_or_empty?
|
42
|
-
tag_ps.upcase
|
42
|
+
self[:tag_ps] = tag_ps.upcase # fix for ruby 3.4 >> FrozenError: can't modify frozen String
|
43
43
|
end
|
44
44
|
|
45
45
|
# Check for place holder tag data
|
@@ -345,6 +345,10 @@ Only characters from the Default Character Repertoire may be used.'},
|
|
345
345
|
{ tag_ps: '(0008,119B)', tag_name: "Failed Study Sequence", tag_key: 'FailedStudySequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,119B)', tag_sym: :failed_study_sequence, tag_ndm: '0008119B', tag_ary: [0x0008,0x119B], tag_multiple: false, tag_note: ''},
|
346
346
|
{ 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: ''},
|
347
347
|
{ 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: ''},
|
348
|
+
{ tag_ps: '(0008,1301)', tag_name: "Principal Diagnosis Code Sequence", tag_key: 'PrincipalDiagnosisCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1301)', tag_sym: :principal_diagnosis_code_sequence, tag_ndm: '00081301', tag_ary: [0x0008,0x1301], tag_multiple: false, tag_note: ''},
|
349
|
+
{ tag_ps: '(0008,1302)', tag_name: "Primary Diagnosis Code Sequence", tag_key: 'PrimaryDiagnosisCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1302)', tag_sym: :primary_diagnosis_code_sequence, tag_ndm: '00081302', tag_ary: [0x0008,0x1302], tag_multiple: false, tag_note: ''},
|
350
|
+
{ tag_ps: '(0008,1303)', tag_name: "Secondary Diagnoses Code Sequence", tag_key: 'SecondaryDiagnosesCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1303)', tag_sym: :secondary_diagnoses_code_sequence, tag_ndm: '00081303', tag_ary: [0x0008,0x1303], tag_multiple: false, tag_note: ''},
|
351
|
+
{ tag_ps: '(0008,1304)', tag_name: "Histological Diagnoses Code Sequence", tag_key: 'HistologicalDiagnosesCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,1304)', tag_sym: :histological_diagnoses_code_sequence, tag_ndm: '00081304', tag_ary: [0x0008,0x1304], tag_multiple: false, tag_note: ''},
|
348
352
|
{ 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)'},
|
349
353
|
{ 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: ''},
|
350
354
|
{ 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: ''},
|
@@ -2912,6 +2916,25 @@ Only characters from the Default Character Repertoire may be used.'},
|
|
2912
2916
|
{ tag_ps: '(0040,A808)', tag_name: "Cell Values Sequence", tag_key: 'CellValuesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,A808)', tag_sym: :cell_values_sequence, tag_ndm: '0040A808', tag_ary: [0x0040,0xA808], tag_multiple: false, tag_note: ''},
|
2913
2917
|
{ 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)'},
|
2914
2918
|
{ 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: ''},
|
2919
|
+
{ tag_ps: '(0040,B030)', tag_name: "Structured Waveform Annotation Sequence", tag_key: 'StructuredWaveformAnnotationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,B030)', tag_sym: :structured_waveform_annotation_sequence, tag_ndm: '0040B030', tag_ary: [0x0040,0xB030], tag_multiple: false, tag_note: ''},
|
2920
|
+
{ tag_ps: '(0040,B031)', tag_name: "Waveform Annotation Display Selection Sequence", tag_key: 'WaveformAnnotationDisplaySelectionSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,B031)', tag_sym: :waveform_annotation_display_selection_sequence, tag_ndm: '0040B031', tag_ary: [0x0040,0xB031], tag_multiple: false, tag_note: ''},
|
2921
|
+
{ tag_ps: '(0040,B032)', tag_name: "Referenced Montage Index", tag_key: 'ReferencedMontageIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0040,B032)', tag_sym: :referenced_montage_index, tag_ndm: '0040B032', tag_ary: [0x0040,0xB032], tag_multiple: false, tag_note: ''},
|
2922
|
+
{ tag_ps: '(0040,B033)', tag_name: "Waveform Textual Annotation Sequence", tag_key: 'WaveformTextualAnnotationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,B033)', tag_sym: :waveform_textual_annotation_sequence, tag_ndm: '0040B033', tag_ary: [0x0040,0xB033], tag_multiple: false, tag_note: ''},
|
2923
|
+
{ tag_ps: '(0040,B034)', tag_name: "Annotation DateTime", tag_key: 'AnnotationDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,B034)', tag_sym: :annotation_date_time, tag_ndm: '0040B034', tag_ary: [0x0040,0xB034], tag_multiple: false, tag_note: ''},
|
2924
|
+
{ tag_ps: '(0040,B035)', tag_name: "Displayed Waveform Segment Sequence", tag_key: 'DisplayedWaveformSegmentSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,B035)', tag_sym: :displayed_waveform_segment_sequence, tag_ndm: '0040B035', tag_ary: [0x0040,0xB035], tag_multiple: false, tag_note: ''},
|
2925
|
+
{ tag_ps: '(0040,B036)', tag_name: "Segment Definition DateTime", tag_key: 'SegmentDefinitionDateTime', tag_vr: [:DT], tag_vm: ["1"], tag_str: '(0040,B036)', tag_sym: :segment_definition_date_time, tag_ndm: '0040B036', tag_ary: [0x0040,0xB036], tag_multiple: false, tag_note: ''},
|
2926
|
+
{ tag_ps: '(0040,B037)', tag_name: "Montage Activation Sequence", tag_key: 'MontageActivationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,B037)', tag_sym: :montage_activation_sequence, tag_ndm: '0040B037', tag_ary: [0x0040,0xB037], tag_multiple: false, tag_note: ''},
|
2927
|
+
{ tag_ps: '(0040,B038)', tag_name: "Montage Activation Time Offset", tag_key: 'MontageActivationTimeOffset', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0040,B038)', tag_sym: :montage_activation_time_offset, tag_ndm: '0040B038', tag_ary: [0x0040,0xB038], tag_multiple: false, tag_note: ''},
|
2928
|
+
{ tag_ps: '(0040,B039)', tag_name: "Waveform Montage Sequence", tag_key: 'WaveformMontageSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,B039)', tag_sym: :waveform_montage_sequence, tag_ndm: '0040B039', tag_ary: [0x0040,0xB039], tag_multiple: false, tag_note: ''},
|
2929
|
+
{ tag_ps: '(0040,B03A)', tag_name: "Referenced Montage Channel Number", tag_key: 'ReferencedMontageChannelNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0040,B03A)', tag_sym: :referenced_montage_channel_number, tag_ndm: '0040B03A', tag_ary: [0x0040,0xB03A], tag_multiple: false, tag_note: ''},
|
2930
|
+
{ tag_ps: '(0040,B03B)', tag_name: "Montage Name", tag_key: 'MontageName', tag_vr: [:LT], tag_vm: ["1"], tag_str: '(0040,B03B)', tag_sym: :montage_name, tag_ndm: '0040B03B', tag_ary: [0x0040,0xB03B], tag_multiple: false, tag_note: ''},
|
2931
|
+
{ tag_ps: '(0040,B03C)', tag_name: "Montage Channel Sequence", tag_key: 'MontageChannelSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,B03C)', tag_sym: :montage_channel_sequence, tag_ndm: '0040B03C', tag_ary: [0x0040,0xB03C], tag_multiple: false, tag_note: ''},
|
2932
|
+
{ tag_ps: '(0040,B03D)', tag_name: "Montage Index", tag_key: 'MontageIndex', tag_vr: [:US], tag_vm: ["1"], tag_str: '(0040,B03D)', tag_sym: :montage_index, tag_ndm: '0040B03D', tag_ary: [0x0040,0xB03D], tag_multiple: false, tag_note: ''},
|
2933
|
+
{ tag_ps: '(0040,B03E)', tag_name: "Montage Channel Number", tag_key: 'MontageChannelNumber', tag_vr: [:IS], tag_vm: ["1"], tag_str: '(0040,B03E)', tag_sym: :montage_channel_number, tag_ndm: '0040B03E', tag_ary: [0x0040,0xB03E], tag_multiple: false, tag_note: ''},
|
2934
|
+
{ tag_ps: '(0040,B03F)', tag_name: "Montage Channel Label", tag_key: 'MontageChannelLabel', tag_vr: [:LO], tag_vm: ["1"], tag_str: '(0040,B03F)', tag_sym: :montage_channel_label, tag_ndm: '0040B03F', tag_ary: [0x0040,0xB03F], tag_multiple: false, tag_note: ''},
|
2935
|
+
{ tag_ps: '(0040,B040)', tag_name: "Montage Channel Source Code Sequence", tag_key: 'MontageChannelSourceCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,B040)', tag_sym: :montage_channel_source_code_sequence, tag_ndm: '0040B040', tag_ary: [0x0040,0xB040], tag_multiple: false, tag_note: ''},
|
2936
|
+
{ tag_ps: '(0040,B041)', tag_name: "Contributing Channel Sources Sequence", tag_key: 'ContributingChannelSourcesSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0040,B041)', tag_sym: :contributing_channel_sources_sequence, tag_ndm: '0040B041', tag_ary: [0x0040,0xB041], tag_multiple: false, tag_note: ''},
|
2937
|
+
{ tag_ps: '(0040,B042)', tag_name: "Channel Weight", tag_key: 'ChannelWeight', tag_vr: [:FL], tag_vm: ["1"], tag_str: '(0040,B042)', tag_sym: :channel_weight, tag_ndm: '0040B042', tag_ary: [0x0040,0xB042], tag_multiple: false, tag_note: ''},
|
2915
2938
|
{ 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: ''},
|
2916
2939
|
{ 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)'},
|
2917
2940
|
{ 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)'},
|
@@ -3090,6 +3113,7 @@ Only characters from the Default Character Repertoire may be used.'},
|
|
3090
3113
|
{ tag_ps: '(0048,0301)', tag_name: "Pixel Origin Interpretation", tag_key: 'PixelOriginInterpretation', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0048,0301)', tag_sym: :pixel_origin_interpretation, tag_ndm: '00480301', tag_ary: [0x0048,0x0301], tag_multiple: false, tag_note: ''},
|
3091
3114
|
{ tag_ps: '(0048,0302)', tag_name: "Number of Optical Paths", tag_key: 'NumberOfOpticalPaths', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0048,0302)', tag_sym: :number_of_optical_paths, tag_ndm: '00480302', tag_ary: [0x0048,0x0302], tag_multiple: false, tag_note: ''},
|
3092
3115
|
{ tag_ps: '(0048,0303)', tag_name: "Total Pixel Matrix Focal Planes", tag_key: 'TotalPixelMatrixFocalPlanes', tag_vr: [:UL], tag_vm: ["1"], tag_str: '(0048,0303)', tag_sym: :total_pixel_matrix_focal_planes, tag_ndm: '00480303', tag_ary: [0x0048,0x0303], tag_multiple: false, tag_note: ''},
|
3116
|
+
{ tag_ps: '(0048,0304)', tag_name: "Tiles Overlap", tag_key: 'TilesOverlap', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0048,0304)', tag_sym: :tiles_overlap, tag_ndm: '00480304', tag_ary: [0x0048,0x0304], tag_multiple: false, tag_note: ''},
|
3093
3117
|
{ tag_ps: '(0050,0004)', tag_name: "Calibration Image", tag_key: 'CalibrationImage', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0050,0004)', tag_sym: :calibration_image, tag_ndm: '00500004', tag_ary: [0x0050,0x0004], tag_multiple: false, tag_note: ''},
|
3094
3118
|
{ tag_ps: '(0050,0010)', tag_name: "Device Sequence", tag_key: 'DeviceSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0050,0010)', tag_sym: :device_sequence, tag_ndm: '00500010', tag_ary: [0x0050,0x0010], tag_multiple: false, tag_note: ''},
|
3095
3119
|
{ tag_ps: '(0050,0012)', tag_name: "Container Component Type Code Sequence", tag_key: 'ContainerComponentTypeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0050,0012)', tag_sym: :container_component_type_code_sequence, tag_ndm: '00500012', tag_ary: [0x0050,0x0012], tag_multiple: false, tag_note: ''},
|
@@ -87,6 +87,7 @@ module DcmDict
|
|
87
87
|
{ uid_value: '1.2.840.10008.1.2.7.1', uid_name: 'SMPTE ST 2110-20 Uncompressed Progressive Active Video', uid_key: 'SMPTEST211020UncompressedProgressiveActiveVideo', uid_sym: :smptest211020_uncompressed_progressive_active_video, uid_type: :transfer_syntax},
|
88
88
|
{ uid_value: '1.2.840.10008.1.2.7.2', uid_name: 'SMPTE ST 2110-20 Uncompressed Interlaced Active Video', uid_key: 'SMPTEST211020UncompressedInterlacedActiveVideo', uid_sym: :smptest211020_uncompressed_interlaced_active_video, uid_type: :transfer_syntax},
|
89
89
|
{ uid_value: '1.2.840.10008.1.2.7.3', uid_name: 'SMPTE ST 2110-30 PCM Digital Audio', uid_key: 'SMPTEST211030PCMDigitalAudio', uid_sym: :smptest211030pcm_digital_audio, uid_type: :transfer_syntax},
|
90
|
+
{ uid_value: '1.2.840.10008.1.2.8.1', uid_name: 'Deflated Image Frame Compression', uid_key: 'DeflatedImageFrameCompression', uid_sym: :deflated_image_frame_compression, uid_type: :transfer_syntax},
|
90
91
|
{ uid_value: '1.2.840.10008.1.3.10', uid_name: 'Media Storage Directory Storage', uid_key: 'MediaStorageDirectoryStorage', uid_sym: :media_storage_directory_storage, uid_type: :sop_class},
|
91
92
|
{ uid_value: '1.2.840.10008.1.5.1', uid_name: 'Hot Iron Color Palette SOP Instance', uid_key: 'HotIronPalette', uid_sym: :hot_iron_palette, uid_type: :well_known_sop_instance},
|
92
93
|
{ uid_value: '1.2.840.10008.1.5.2', uid_name: 'PET Color Palette SOP Instance', uid_key: 'PETPalette', uid_sym: :pet_palette, uid_type: :well_known_sop_instance},
|
@@ -211,6 +212,8 @@ module DcmDict
|
|
211
212
|
{ uid_value: '1.2.840.10008.5.1.4.1.1.9.7.3', uid_name: 'Electrooculogram Waveform Storage', uid_key: 'ElectrooculogramWaveformStorage', uid_sym: :electrooculogram_waveform_storage, uid_type: :sop_class},
|
212
213
|
{ uid_value: '1.2.840.10008.5.1.4.1.1.9.7.4', uid_name: 'Sleep Electroencephalogram Waveform Storage', uid_key: 'SleepElectroencephalogramWaveformStorage', uid_sym: :sleep_electroencephalogram_waveform_storage, uid_type: :sop_class},
|
213
214
|
{ uid_value: '1.2.840.10008.5.1.4.1.1.9.8.1', uid_name: 'Body Position Waveform Storage', uid_key: 'BodyPositionWaveformStorage', uid_sym: :body_position_waveform_storage, uid_type: :sop_class},
|
215
|
+
{ uid_value: '1.2.840.10008.5.1.4.1.1.9.100.1', uid_name: 'Waveform Presentation State Storage', uid_key: 'WaveformPresentationStateStorage', uid_sym: :waveform_presentation_state_storage, uid_type: :sop_class},
|
216
|
+
{ uid_value: '1.2.840.10008.5.1.4.1.1.9.100.2', uid_name: 'Waveform Acquisition Presentation State Storage', uid_key: 'WaveformAcquisitionPresentationStateStorage', uid_sym: :waveform_acquisition_presentation_state_storage, uid_type: :sop_class},
|
214
217
|
{ uid_value: '1.2.840.10008.5.1.4.1.1.10', uid_name: 'Standalone Modality LUT Storage (Retired)', uid_key: 'StandaloneModalityLUTStorage', uid_sym: :standalone_modality_lut_storage, uid_type: :sop_class},
|
215
218
|
{ uid_value: '1.2.840.10008.5.1.4.1.1.11', uid_name: 'Standalone VOI LUT Storage (Retired)', uid_key: 'StandaloneVOILUTStorage', uid_sym: :standalone_voi_lut_storage, uid_type: :sop_class},
|
216
219
|
{ uid_value: '1.2.840.10008.5.1.4.1.1.11.1', uid_name: 'Grayscale Softcopy Presentation State Storage', uid_key: 'GrayscaleSoftcopyPresentationStateStorage', uid_sym: :grayscale_softcopy_presentation_state_storage, uid_type: :sop_class},
|
data/lib/dcm_dict/version.rb
CHANGED
@@ -78,7 +78,7 @@ module DcmDict
|
|
78
78
|
def self.make_rexml_proc(node_set, node_set_idx)
|
79
79
|
Proc.new do |key|
|
80
80
|
element = node_set[node_set_idx[key]]
|
81
|
-
field = ''
|
81
|
+
field = +'' # fix for ruby 3.4 >> make string 'not chilled'
|
82
82
|
if element
|
83
83
|
element.each_element_with_text do |txt1|
|
84
84
|
field << "\n" unless field.nil_or_empty?
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dcm_dict
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.63.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Enrico Rivarola
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: nokogiri
|
@@ -164,7 +164,7 @@ licenses:
|
|
164
164
|
metadata:
|
165
165
|
bug_tracker_uri: https://github.com/henrythebuilder/dcm_dict/issues
|
166
166
|
changelog_uri: https://github.com/henrythebuilder/dcm_dict/blob/master/CHANGELOG.md
|
167
|
-
documentation_uri: http://www.rubydoc.info/gems/dcm_dict/0.
|
167
|
+
documentation_uri: http://www.rubydoc.info/gems/dcm_dict/0.63.0
|
168
168
|
homepage_uri: http://rubygems.org/gems/dcm_dict
|
169
169
|
source_code_uri: https://github.com/henrythebuilder/dcm_dict
|
170
170
|
rdoc_options: []
|
@@ -181,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
181
181
|
- !ruby/object:Gem::Version
|
182
182
|
version: '0'
|
183
183
|
requirements: []
|
184
|
-
rubygems_version: 3.6.
|
184
|
+
rubygems_version: 3.6.2
|
185
185
|
specification_version: 4
|
186
186
|
summary: A simple way to handle DICOM Data Dictionary
|
187
187
|
test_files:
|