-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathconfig.json
93 lines (93 loc) · 2.22 KB
/
config.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"project": {
"name": "Van Gogh",
"quality": 1
},
"loader": {
"info": "https://vikusviewer.fh-potsdam.de/data/vangogh/info.md",
"timeline": "https://vikusviewer.fh-potsdam.de/data/vangogh/timeline.csv",
"items": "https://vikusviewer.fh-potsdam.de/data/vangogh/data.csv",
"layouts": [
{
"title": "Time"
},
{
"title": "Similarity",
"url": "https://vikusviewer.fh-potsdam.de/data/vangogh/tsne.csv",
"scale": 1.1
}
],
"textures": {
"medium": {
"size": 256,
"url": "https://vikusviewer.fh-potsdam.de/data/vangogh/sprites/web_web_full.json"
},
"detail": {
"size": 1024,
"url": "https://vikusviewer.fh-potsdam.de/data/vangogh/1024/"
},
"big": {
"size": 4096,
"url": "https://vikusviewer.fh-potsdam.de/data/vangogh/4096/"
}
}
},
"style": {
"fontColor": "#2d3b43",
"fontColorActive": "#eae2cb",
"fontBackground": "#295b71",
"textShadow": "1px 1px 0px #f8f4e9",
"canvasBackground": "#eae2cb",
"timelineBackground": "#fff9eb",
"timelineFontColor": "#000",
"backgroundHeader": "#035151",
"fontColorHeader": "#f8774f",
"detailBackground": "#EEE",
"infoBackground": "#33444c",
"infoFontColor": "#fff",
"searchbarBackground": "#295b71"
},
"projection": {
"columns": 6
},
"detail": {
"structure": [
{
"name": "Description",
"source": "_description",
"display": "column",
"type": "text"
},
{
"name": "Year",
"source": "_year",
"display": "column",
"type": "text"
},
{
"name": "Material",
"source": "_material",
"display": "column",
"type": "text"
},
{
"name": "Dimensions",
"source": "column._width + 'mm * ' + column._height + 'mm'",
"display": "column",
"type": "function"
},
{
"name": "Keywords",
"source": "_keywords",
"display": "column",
"type": "array"
},
{
"name": "Id",
"source": "_id",
"display": "column",
"type": "text"
}
]
}
}