Method: DICOM::DClient#move_study
- Defined in:
- lib/dicom/d_client.rb
#move_study(destination, options = {}) ⇒ Object
Move an entire study to a DICOM server.
This DICOM node must be a third party (i.e. not the client instance you are requesting the move with!).
Instance level attributes for this procedure:
-
‘0008,0052’ (Query/Retrieve Level)
-
‘0010,0020’ (Patient ID)
-
‘0020,000D’ (Study Instance UID)
325 326 327 328 329 330 331 332 333 334 |
# File 'lib/dicom/d_client.rb', line 325 def move_study(destination, ={}) # Study Root Query/Retrieve Information Model - MOVE: set_default_presentation_context("1.2.840.10008.5.1.4.1.2.2.2") # Transfer the current options to the data_elements hash: set_command_fragment_move(destination) # Prepare data elements for this operation: set_data_fragment_move_study () perform_move end |