-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
80 lines (80 loc) · 2.58 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
{
"path": "html",
"tracker": {
"osm_api_url": "https://api.openstreetmap.org",
"pre_labels": [
{"area_file": "/osm-regions/denmark.poly", "area_check_type": "points-bbox", "label": "inside-area"},
{"__unused_example_area_file": "/osm-regions/denmark.poly", "area_check_type": "cset-bbox", "label": "inside-area"},
{"__unused_example_area_file": "/osm-regions/denmark.poly", "area_check_type": "cset-center", "label": "center-inside-area"},
{"__unused_example_regex": [{".meta.comment": "^Adjustments"}], "label": "adjustment"}
],
"prefilter_labels": [["inside-area"]],
"post_labels": [
{"regex": [{".changes.tag.osak:identifier": ""}], "label": "address-node-change"}
],
"history": "5 minutes ago",
"horizon_type": "sliding",
"horizon_hours": 24,
"refresh_open_minutes": 5,
"refresh_meta_minutes": 15,
"retry_processing_minutes": 30,
"cset_processing_time_max_s": 1200,
"template_path": "templates"
},
"backends": [
{
"type": "BackendHtml",
"init_only": true,
"map_center": {"area_file_conversion_type": "area_center",
"area_file": "/osm-regions/denmark.poly"},
"map_scale": "6",
"path": "",
"filename" : "index.html",
"template": "index.html"
},
{
"type": "BackendHtml",
"show_details": true,
"show_comments": true,
"path": "dynamic",
"page_title": "Recent Changesets",
"filename" : "today.html",
"template": "changeset.html"
},
{
"type": "BackendHtml",
"path": "dynamic",
"filename" : "notes.html",
"template": "notes.html"
},
{
"type": "BackendHtml",
"path": "dynamic",
"labels": ["address-node-change"],
"page_title": "Recent Changesets Which Modifies Address Nodes",
"filename" : "dk_addresses.html",
"template": "changeset.html"
},
{
"type": "BackendHtmlSummary",
"path": "dynamic",
"filename" : "today-summ.html",
"template": "summary.html"
},
{
"type": "BackendGeoJson",
"path": "dynamic",
"exptype": "cset-bbox",
"filename" : "today.json",
"click_url": "diffmap.html?cid={cid}"
},
{
"type": "BackendGeoJson",
"path": "dynamic",
"exptype": "cset-files",
"geojsondiff-filename": "cset-{id}.json",
"bounds-filename": "cset-{id}.bounds",
"click_url": "diffmap.html?cid={cid}"
}
]
}