google-code-export / pydicom

Automatically exported from code.google.com/p/pydicom
0 stars 0 forks source link

VMs of "1-n 1" in data dictionary #129

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
While playing with the data dictionary, I noticed this:

    In [19]: for key, val in dicom.datadict.DicomDictionary.items():
       ....:     if val[1] == '1-n 1':
       ....:         print key, val
       ....:         
    2626048 ('US or SS or OW', '1-n 1', 'Gray Lookup Table Data', 'Retired',    'GrayLookupTableData')
    2633734 ('US or OW', '1-n 1', 'LUT Data', '', 'LUTData')

I think these correspond to this kind of entry in the PS 3.6 table: 

    (0028,1200) Gray Lookup Table Data GrayLookupTableData US or SS 1-n RET
                                                           or OW    1

I'm not sure how these should be handled - is this right?

Original issue reported on code.google.com by matthew....@gmail.com on 30 May 2013 at 7:18