-
Notifications
You must be signed in to change notification settings - Fork 11
/
military.json
61 lines (61 loc) · 1.69 KB
/
military.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
{
"type": "overpass",
"name": {
"ast": "Militar",
"ca": "Militar",
"cs": "Vojenské",
"de": "Militär",
"el": "Στρατιωτικό",
"en": "Military",
"es": "Militar",
"fr": "Équipements et zones militaires",
"gl": "Militar",
"hu": "Katonai objektumok",
"it": "Militare",
"ja": "軍事",
"nb": "Militære",
"nl": "Militair",
"oc": "Luòcs militaris",
"pl": "Wojskowe",
"pt": "Militar",
"pt-br": "Militar",
"ro": "Militar",
"ru": "Вооружённые силы",
"sr": "Војска",
"tr": "Askeri"
},
"query": {
"11": [
"(",
"node[military~\"^(airfield|danger_area)$\"];",
"node[landuse=military];",
"way[military~\"^(airfield|danger_area)$\"];",
"way[landuse=military];",
"relation[military~\"^(airfield|danger_area)$\"];",
"relation[landuse=military];",
")"
],
"14": [
"(",
"node[military];",
"node[landuse=military];",
"way[military];",
"way[landuse=military];",
"relation[military];",
"relation[landuse=military];",
")"
]
},
"feature": {
"pre": [
"{% if tags.military %}",
" {% set key = 'military' %}",
" {% set value = tags.military %}",
"{% else %}",
" {% set key = 'landuse' %}",
" {% set value = tags.landuse %}",
"{% endif %}"
],
"description": "{{ tagTrans(key, value) }}"
}
}