Hi Orthanc,
I am using /tools/create-dicom to store a raw export XML file in Orthanc.
I send the following body with the POST method
{
PatientName: ‘Love^Sarah’,
PatientID: ‘7’,
PatientBirthDate: ‘19760917’,
PatientSex: ‘F’,
PatientComments: ‘’,
StudyDate: ‘19981202’,
StudyTime: ‘092157’,
SeriesDate: ‘19981202’,
SeriesTime: ‘092157’,
ContentDate: ‘19981202’,
ContentTime: ‘092157’,
InstanceCreationDate: ‘19981202’,
InstanceCreationTime: ‘092157’,
OperatorsName: ‘Clinician^Sample’,
Laterality: ‘L’,
Modality: ‘OPV’,
InstanceNumber: ‘1’,
InstitutionName: ‘Sample Practice’,
DeviceSerialNumber: ‘E30120’,
DateOfLastCalibration: ‘19981123’,
TimeOfLastCalibration: ‘140837’,
SOPClassUID: ‘1.2.840.10008.5.1.4.1.1.66’,
‘0405,0010’: ‘RawDataStore’,
‘0405,1001’: ‘Testing’
}
When I view the resulting file in OrthancExplorer, the private tags exist, but are displayed as
“0405,0010” : {
“Name” : “Unknown Tag & Data”,
“PrivateCreator” : “”,
“Type” : “Null”,
“Value” : null
},
“0405,1001” : {
“Name” : “Unknown Tag & Data”,
“PrivateCreator” : “”,
“Type” : “Null”,
“Value” : null
}
Is it posible to encapsulate a xml doc similar to this using create-dicom?
Thanks very much for your help.
Regards,
James