forked from taginfo/taginfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
taginfo-config-example.json
117 lines (117 loc) · 5.63 KB
/
taginfo-config-example.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// This is an example of a taginfo config file.
// Copy it to the directory above and name it 'taginfo-config.json', then change your local settings.
{
// You probably want to change all these.
"instance": {
// URL prefix for the site.
"url": "http://localhost:4567",
// Used in the title of all HTML pages.
"name": "OpenStreetMap Taginfo",
// Description of this taginfo instance. Will appear on the home page and about page.
"description": "This is a <b>taginfo test instance</b>. Change this text in your <tt>taginfo-config.json</tt>.",
// Additional description that will only appear on the about page.
"about": "<p>This site is maintained by XXX.</p><p>There isn't just one taginfo site, there are several. The main site is at <a class='extlink' href='http://taginfo.openstreetmap.org/'>taginfo.openstreetmap.org</a>, but several <a class='extlink' href='http://wiki.openstreetmap.org/wiki/Taginfo/Sites'>other taginfo sites</a> are operated by different people.</p>",
// URL path to instance icon in the upper left.
"icon": "/img/logo/test.png",
// Contact name and email address.
"contact": "Anonymous",
// Geographical area this taginfo instance covers.
"area": "World",
// Add CORS header Access-Control-Allow-Origin with the given value
// to all /api responses. Use "" to not set this header, disallowing
// external services to use your API from a browser. Set to "*" to
// allow anybody.
"access_control_allow_origin": "*"
},
// For the geodistribution map. See the wiki documentation about these settings.
"geodistribution": {
"left": -180,
"bottom": -90,
"right": 180,
"top": 90,
"width": 360,
"height": 180,
"scale_image": 2,
"scale_compare_image" : 1,
"background_image": "/img/mapbg/world.png",
// optional attribution for base image, will show up below all maps
"image_attribution": ""
},
// "XAPI" and "JOSM" buttons on key/tag pages
"xapi": {
// XAPI/JOSM buttons are disabled if more than this many results are expected
"max_results": 1000,
// URL prefix for the XAPI/JOSM links on the key and tag pages.
"url_prefix": "http://overpass-api.de/api/xapi_meta?"
},
// "overpass turbo" button on key/tag pages
"turbo": {
// if there are more objects than this with a key/tag, the normal Overpass Turbo
// will be called, if less the Wizard will be used with autorun and autozoom
"max_auto": 100,
"url_prefix": "http://overpass-turbo.eu/?",
// set this to "global" or "in <area>" where <area> is a country name or other region found by Nominatim
"wizard_area": "global"
},
// "Level0 Editor" button on key/tag pages
"level0": {
// disable Level0 Editor button if there are more than this many objects with a key/tag
"max_results": 50,
"overpass_url_prefix": "http://overpass.osm.rambler.ru/cgi/interpreter?",
"level0_url_prefix": "http://level0.osmz.ru/?"
},
"opensearch": {
// For the OpenSearchDescription. You have to change at least the shortname and the contact for your instance.
"shortname": "Taginfo Test Instance",
"contact": "[email protected]",
"description": "Find metadata about OpenStreetMap tags",
"tags": "osm openstreetmap tag tags taginfo"
},
"sources": {
// These sources will be downloaded from http://taginfo.openstreetmap.org/download/
// Note that this will NOT work for the "db" source! Well, you can download it,
// but it will fail later, because the database is changed by the master.sql
// scripts.
"download": "languages projects wiki",
// These sources will be created from the actual sources.
"create": "db",
"db": {
// Path to the 'tagstats' program (absolute path or relative to sources/db directory).
"tagstats": "../../tagstats/tagstats",
// The OSM planet file or extract where we read the OSM data from.
"planetfile": "/osm/planet/var/current-planet.osm.pbf"
},
// If you change any of the following you have to run the update
// twice for it to take effect.
"master": {
// Minimum number of occurances of a tag to make it
// potentially "interesting", ie. create tag combination
// statistics for it.
"min_count_tags": 10000,
// Tag combinations not appearing this often are not written to database.
"min_tag_combination_count": 1000,
// Minimum number of tag occurances for creating a map
"min_count_for_map": 1000,
// Minimum number of relations per type to make this
// relation type "interesting", ie. to make it show
// up as a relation type.
"min_count_relations_per_type": 100
}
},
"logging": {
// directory for log files
"directory": "/osm/taginfo/var/log",
// SQL queries longer than this many seconds are logged
"min_duration": 0.1
},
// For compiling tagstats.
"tagstats": {
// Extra compilerflags, for instance to find Osmium.
"cxxflags": "-I../../../osmium/osmium/include",
// Node location store. For really large OSM files (whole planet or large continent)
// this should be "MmapAnon", otherwise "SparseTable".
"geodistribution": "SparseTable",
// C++ type used for geodistribution
"geodistribution_int": "uint16_t"
}
}