comparison Resources/Configuration.json @ 2151:8cbb55089a1d

New configuration option: "LoadPrivateDictionary"
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 14 Nov 2016 14:22:45 +0100
parents 0c09d1af22f3
children cbebc5d072b0
comparison
equal deleted inserted replaced
2150:9a272d552c27 2151:8cbb55089a1d
315 // If set to "true", Orthanc will handle "SOP Classes in Study" 315 // If set to "true", Orthanc will handle "SOP Classes in Study"
316 // (0008,0062) in C-FIND requests. This option is turned off by 316 // (0008,0062) in C-FIND requests. This option is turned off by
317 // default, as it requires intensive accesses to the hard drive. 317 // default, as it requires intensive accesses to the hard drive.
318 "AllowFindSopClassesInStudy" : false, 318 "AllowFindSopClassesInStudy" : false,
319 319
320 // If set to "false", Orthanc will not load its default dictionary
321 // of private tags. This might be necessary if you cannot import a
322 // DICOM file encoded using the Implicit VR Endian transfer syntax,
323 // and containing private tags. You can still list your private tags
324 // of interest in the "Dictionary" configuration option below.
325 "LoadPrivateDictionary" : true,
326
320 // Register a new tag in the dictionary of DICOM tags that are known 327 // Register a new tag in the dictionary of DICOM tags that are known
321 // to Orthanc. Each line must contain the tag (formatted as 2 328 // to Orthanc. Each line must contain the tag (formatted as 2
322 // hexadecimal numbers), the value representation (2 upcase 329 // hexadecimal numbers), the value representation (2 upcase
323 // characters), a nickname for the tag, possibly the minimum 330 // characters), a nickname for the tag, possibly the minimum
324 // multiplicity (> 0 with defaults to 1), possibly the maximum 331 // multiplicity (> 0 with defaults to 1), possibly the maximum
325 // multiplicity (0 means arbitrary multiplicity, defaults to 1), and 332 // multiplicity (0 means arbitrary multiplicity, defaults to 1), and
326 // possibly the Private Creator (for private tags). 333 // possibly the Private Creator (for private tags).
327 "Dictionary" : { 334 "Dictionary" : {
328 // "0014,1020" : [ "DA", "ValidationExpiryDate", 1, 1 ] 335 // "0014,1020" : [ "DA", "ValidationExpiryDate", 1, 1 ]
329 // "00e1,10c2" : [ "UI", "PET-CT Multi Modality Name", 1, 1, "ELSCINT1" ], 336 // "00e1,10c2" : [ "UI", "PET-CT Multi Modality Name", 1, 1, "ELSCINT1" ]
330 // "7053,1003" : [ "ST", "Original Image Filename", 1, 1, "Philips PET Private Group" ] 337 // "7053,1003" : [ "ST", "Original Image Filename", 1, 1, "Philips PET Private Group" ]
338 // "2001,5f" : [ "SQ", "StackSequence", 1, 0, "Philips Imaging DD 001" ]
331 } 339 }
332 } 340 }