Skip to content

Commit

Permalink
EHN: Add SAR extraction.
Browse files Browse the repository at this point in the history
  • Loading branch information
norok2 committed Jun 10, 2020
1 parent 49620cb commit 8b82b5f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dcmpi/custom_info.py
Expand Up @@ -9,7 +9,6 @@
from __future__ import (
division, absolute_import, print_function, unicode_literals, )


# ======================================================================
# :: Python Standard Library Imports
# import os # Miscellaneous operating system interfaces
Expand Down Expand Up @@ -110,7 +109,7 @@
(0x0010, 0x4000), lambda x, p: str(x), None),
'StudyDescription': (
(0x0040, 0x0254), lambda x, p: x.replace('^', '/'), None),
# (0x0008, 0x1030), lambda x, p: x.replace('^', '/'), None),
# (0x0008, 0x1030), lambda x, p: x.replace('^', '/'), None),
'Performer': (
(0x0008, 0x1050), None, None),
'Operator': (
Expand Down Expand Up @@ -185,6 +184,8 @@
(0x0018, 0x0024), None, None),
'ProtocolName': (
(0x0018, 0x1030), None, None),
'SAR': (
(0x0018, 0x1316), float, None),
}

# ======================================================================
Expand Down

0 comments on commit 8b82b5f

Please sign in to comment.