-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
102 lines (102 loc) · 3.39 KB
/
settings.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
94
95
96
97
98
99
100
101
102
{
//shapefile field with name of commune
"pgemnamefeld":"",
//shapefile field with cadestral number
"kgfeld":"KG",
//shapefile field with parcel number
"gnrfeld":"",
//date to be inserted into placeholder [DATE]
"dkmstand":"",
//path to DKM of whole Vorarlberg
"dkmgesamt":{
"name":"",
"pfad":""
},
//paths to shapefiles and style files of communes
//{gem_name} will be replaced with selected commune name
"dkmgemeinde":{
"lyrnamegstk":"",
"shpgstk":"",
"qmlgstk":"",
"lyrnamegnr":"",
"shpgnr":"",
"qmlgnr":""
},
//path to ortho image
"luftbild":{
"lyrname":"",
"pfad":""
},
//path to layout for statistical text information
"textinfolayout":"",
//names and paths of selectable plot layouts
"composerlayouts":[{
"name":"",
"pfad":""
},{
"name":"",
"pfad":""
}
],
//list of topics and subtopics
//a topic may have [0..*] subtopics
//a topic/subtopic must have a name and at least one 'quelle' (= datasource)
//topic parameters:
// * name [1]: name in dialogs and statistics
// * subthemen [1..*]: subtopics
//subtopic parameters:
// * name [1]: name in dialogs and statistcis
// * quellen [1..*]: data sources that define the subtopic
//quellen parameters:
// * name [0..1]: name in dialogs, statistics and layers. if not defined subtopic name is used
// * pfad [1]: path to the shapefile, {gem_name} will be replaced with selected commune name
// * qml [0..1]: path to the style file, {gem_name} will be replaced with selected commune name
// if there is no qml defined, the layer will not be included in the map output
// but it will be included in the statistics if statistics:true
// * statistik [0..1]: determines if this layer shows up in the statistics
// if omitted, defaults to 'false'
// * filter [0..1]: filter expression to filter the topic layer for display and statistics
// * attribut [0..1]: values of this attribute field are displayed in the statistics
// if omitted: Ja/Nein (Yes/No) will be used
// * text [0..1]: dictionary of mapping values for 'attribut' field
"themen":[
{
"name":"",
"quellen":[
{
"name":"",
"pfad":"",
"qml":"",
"statistik":true,
"filter":"",
"attribut":"",
"text":{
"":"",
"":""
}
}
]
},{
"name":"",
"subthemen":[
{
"name":"",
"quellen":[
{
"name":"",
"pfad":"",
"qml":"",
"statistik":true,
"filter":"",
"attribut":"",
"text":{
"":"",
"":""
}
}
]
}
]
}
]
}