Skip to content

import from pacs configuration

michaelkain edited this page Sep 22, 2023 · 1 revision

Today you can configure one DICOM Node/Server/PACS as "image source" for one Shanoir server instance. This allows the user to connect to the web interface of Shanoir, query this DICOM server and therefore importing (c-move) images from this PACS.

Attention: for this feature, the actual user requires the flag, see "Edit user": "Can import from PACS".

This configuration has to be applied on the microservice Import, see his application.yml for more information.

You will have to configure your image source PACS as query.aet.called, and within your image source PACS the SCU query.aet.calling and store.aet.called:

pacs:
  query:
    aet.calling:
      name: SHANOIR-SCU # shanoir-server (for query), configure AET title in your image source PACS
      host: "0.0.0.0" 
      port: 11115
    aet.called:
      name: xxx # your pacs
      host: xxx # host name of your PACS or IP address
      port: 11112
store:
    aet.called:
      name: SHANOIR-SCP # shanoir-server (for receiving images), configure AET title in your image source PACS
      host: "0.0.0.0"
      port: 44105

You can inject these env variables into the Docker container from outside and e.g. configure them in the docker-compose.yml. Spring Boot takes env variables before local properties in application.yml.

Clone this wiki locally