comparison Applications/StoneWebViewer/NOTES.txt @ 1702:bc40b6450261

"patient" GET argument
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 27 Nov 2020 13:57:28 +0100
parents 572652803929
children eb59fbee071e
comparison
equal deleted inserted replaced
1701:b5a8bf32d969 1702:bc40b6450261
2 2
3 Differences with Osimis Web viewer 3 Differences with Osimis Web viewer
4 ================================== 4 ==================================
5 5
6 - The images are retrieved using DICOMweb. 6 - The images are retrieved using DICOMweb.
7
7 8
8 - The Stone Web viewer uses the DICOM identifiers. The Osimis Web 9 - The Stone Web viewer uses the DICOM identifiers. The Osimis Web
9 viewer the Orthanc identifiers. 10 viewer the Orthanc identifiers.
10 https://book.orthanc-server.com/faq/orthanc-ids.html 11 https://book.orthanc-server.com/faq/orthanc-ids.html
11 12
18 http://.../index.html?study=<StudyInstanceUID> 19 http://.../index.html?study=<StudyInstanceUID>
19 20
20 To open a single series: 21 To open a single series:
21 http://.../index.html?study=<StudyInstanceUID>&series=<SeriesInstanceUID> 22 http://.../index.html?study=<StudyInstanceUID>&series=<SeriesInstanceUID>
22 23
24
25 - In the Osimis Web viewer, the "OpenAllPatientStudies" configuration
26 option can be provided to search Orthanc for all studies from
27 patients with the same PatientID as the selected study, then display
28 them.
29
30 In the Stone Web viewer, the "OpenAllPatientStudies" configuration
31 option is replaced by the single "patient" GET argument. This option
32 contains a comma-separated list of "Patient ID" tag (0010,0020).
33
34 To open all the studies of one patient:
35 http://.../index.html?patient=<PatientID>
36
37 To open all the studies of several patients:
38 http://.../index.html?patient=<PatientID1>,<PatientID2>,...
39
40
23 - In the Osimis Web viewer, the "pickableStudyIds" parameter in the 41 - In the Osimis Web viewer, the "pickableStudyIds" parameter in the
24 URL defines the list of studies that are available for display, and 42 URL defines the list of studies that are available for display, and
25 that are listed in the dropdown at the top-left of the interface. 43 that are listed in the dropdown at the top-left of the interface.
26 44
27 In the Stone Web viewer, "pickableStudyIds" is replaced by the 45 In the Stone Web viewer, "pickableStudyIds" is replaced by the
28 single "study" GET argument, that is allowed to contain a 46 single "study" GET argument, that is allowed to contain a
29 comma-separated list of studies. The "series" parameter is ignored 47 comma-separated list of studies. The "series" parameter must not be
30 in this case. 48 provided in this case.
31 49
32 To open a list of studies: 50 To open a list of studies:
33 http://.../index.html?study=<StudyInstanceUID1>,<StudyInstanceUID2>,... 51 http://.../index.html?study=<StudyInstanceUID1>,<StudyInstanceUID2>,...
34 52
35 - In the Osimis Web viewer, the "selectedStudyIds" defines the list of 53
36 studies that are selected in the dropdown (and therefore displayed 54 - In the Osimis Web viewer, the "selectedStudyIds" parameter in the
37 when the viewer starts). 55 URL defines the list of studies that are selected in the dropdown at
56 the top-left corner of the viewer (those studies are therefore
57 displayed when the viewer starts).
38 58
39 In the Stone Web viewer, "selectedStudyIds" is replaced by the 59 In the Stone Web viewer, "selectedStudyIds" is replaced by the
40 "selectedStudies" GET argument, that is allowed to contain a 60 "selectedStudies" GET argument, that is allowed to contain a
41 comma-separated list of studies. 61 comma-separated list of studies.
42 62