Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DICOM Sequence Tags (SQ) handling #146

Open
ebremer opened this issue Jul 25, 2024 · 1 comment
Open

DICOM Sequence Tags (SQ) handling #146

ebremer opened this issue Jul 25, 2024 · 1 comment
Labels
Turtle FHIR specification Turtle examples

Comments

@ebremer
Copy link

ebremer commented Jul 25, 2024

DICOM Sequence Tags (SQ)

Seems straight forward enough to handle with an RDF Lists using blank nodes:
"The VR identified "SQ" shall be used for Data Elements with a Value consisting of a Sequence of zero or more Items, where each Item contains a set of Data Elements"

@ebremer ebremer added the Turtle FHIR specification Turtle examples label Jul 25, 2024
@ebremer
Copy link
Author

ebremer commented Sep 12, 2024

Example, DICOM tag 30060080 is a VR of SQ (Sequence): (List elements can be blank node, URN, or URI)

        dcm:30060080  ( [ dcm:30060082  1;
                          dcm:30060084  1;
                          dcm:30060088  "Type:Soft, Range:*/*, Fill:0, Opacity:0.0, Thickness:1, LineThickness:2, read-only:false";
                          dcm:300600A4  [ dcm:vr  "CS" ];
                          dcm:300600A6  [ dcm:vr  "PN" ]
                        ]
                        [ dcm:30060082  2;
                          dcm:30060084  2;
                          dcm:30060088  "Type:Soft, Range:*/*, Fill:0, Opacity:0.0, Thickness:1, LineThickness:2, read-only:false";
                          dcm:300600A4  [ dcm:vr  "CS" ];
                          dcm:300600A6  [ dcm:vr  "PN" ]
                        ]
                        [ dcm:30060082  3;
                          dcm:30060084  3;
                          dcm:30060088  "Type:Soft, Range:*/*, Fill:0, Opacity:0.0, Thickness:1, LineThickness:2, read-only:false";
                          dcm:300600A4  [ dcm:vr  "CS" ];
                          dcm:300600A6  [ dcm:vr  "PN" ]
                        ]
                        [ dcm:30060082  4;
                          dcm:30060084  4;
                          dcm:30060088  "Type:Soft, Range:*/*, Fill:0, Opacity:0.0, Thickness:1, LineThickness:2, read-only:false";
                          dcm:300600A4  [ dcm:Value  ( "PTV" );
                                          dcm:vr     "CS"
                                        ];
                          dcm:300600A6  [ dcm:vr  "PN" ]
                        ]
                        [ dcm:30060082  5;
                          dcm:30060084  5;
                          dcm:30060088  "Type:Soft, Range:*/*, Fill:0, Opacity:0.0, Thickness:1, LineThickness:2, read-only:false";
                          dcm:300600A4  [ dcm:vr  "CS" ];
                          dcm:300600A6  [ dcm:vr  "PN" ]
                        ]
                      );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Turtle FHIR specification Turtle examples
Projects
None yet
Development

No branches or pull requests

1 participant