-
Notifications
You must be signed in to change notification settings - Fork 341
/
Copy pathdemo.ts
66 lines (62 loc) · 2.5 KB
/
demo.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* eslint-disable */
const dicomMap = new Map();
dicomMap.set(
"1.3.6.1.4.1.14519.5.2.1.3671.4754.298665348758363466150039312520",
{
fetchDicom: {
StudyInstanceUID:
"1.3.6.1.4.1.14519.5.2.1.3671.4754.298665348758363466150039312520",
SeriesInstanceUID:
"1.3.6.1.4.1.14519.5.2.1.3671.4754.235188122843915982710753948536",
wadoRsRoot: "https://d14fa38qiwhyfd.cloudfront.net/dicomweb"
},
fetchSegmentation: {
StudyInstanceUID:
"1.3.6.1.4.1.14519.5.2.1.3671.4754.298665348758363466150039312520",
SeriesInstanceUID:
"1.2.276.0.7230010.3.1.3.1426846371.15380.1513205183.303",
SOPInstanceUID:
"1.2.276.0.7230010.3.1.4.1426846371.15380.1513205183.304",
wadoRsRoot: "https://d14fa38qiwhyfd.cloudfront.net/dicomweb"
}
}
);
dicomMap.set(
"1.3.6.1.4.1.14519.5.2.1.256467663913010332776401703474716742458",
{
fetchDicom: {
StudyInstanceUID:
"1.3.6.1.4.1.14519.5.2.1.256467663913010332776401703474716742458",
SeriesInstanceUID:
"1.3.6.1.4.1.14519.5.2.1.40445112212390159711541259681923198035",
wadoRsRoot: "https://d14fa38qiwhyfd.cloudfront.net/dicomweb"
},
fetchSegmentation: {
StudyInstanceUID:
"1.3.6.1.4.1.14519.5.2.1.256467663913010332776401703474716742458",
SeriesInstanceUID:
"1.2.276.0.7230010.3.1.3.481034752.2667.1663086918.611582",
SOPInstanceUID:
"1.2.276.0.7230010.3.1.4.481034752.2667.1663086918.611583",
wadoRsRoot: "https://d14fa38qiwhyfd.cloudfront.net/dicomweb"
}
}
);
dicomMap.set("1.3.12.2.1107.5.2.32.35162.30000015050317233592200000046", {
fetchDicom: {
StudyInstanceUID:
"1.3.12.2.1107.5.2.32.35162.30000015050317233592200000046",
SeriesInstanceUID:
"1.3.12.2.1107.5.2.32.35162.1999123112191238897317963.0.0.0",
wadoRsRoot: "https://d14fa38qiwhyfd.cloudfront.net/dicomweb"
},
fetchSegmentation: {
StudyInstanceUID:
"1.3.12.2.1107.5.2.32.35162.30000015050317233592200000046",
SeriesInstanceUID:
"1.2.276.0.7230010.3.1.3.296485376.8.1542816659.201008",
SOPInstanceUID: "1.2.276.0.7230010.3.1.4.296485376.8.1542816659.201009",
wadoRsRoot: "https://d14fa38qiwhyfd.cloudfront.net/dicomweb"
}
});
export { dicomMap };