-
Notifications
You must be signed in to change notification settings - Fork 11
/
resources.json
48 lines (48 loc) · 1.56 KB
/
resources.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
{
"type": "overpass",
"name": {
"ast": "Estraición de recursos",
"ca": "Extracció de Recursos",
"cs": "Těžba surovin",
"de": "Ressourcengewinnung",
"en": "Resource Extraction",
"es": "Extracción de recursos",
"fr": "Extraction des ressources",
"gl": "Estracción de recursos",
"hu": "Bányászat",
"it": "Aree estrattive",
"ja": "資源採集",
"nb": "Ressursutvinning",
"nl": "Grondstoffenwinning",
"oc": "Airau d'extraccion de ressorsas",
"pl": "Wydobycie zasobów naturalnych",
"pt": "Extração de recursos",
"pt-br": "Extração de recursos",
"ru": "Добыча ресурсов",
"tr": "Yeraltı Kaynağı Çıkarma"
},
"query": {
"11": [
"(",
"node[landuse~\"^(quarry|salt_pond)$\"];",
"node[man_made~\"^(mineshaft)$\"];",
"way[landuse~\"^(quarry|salt_pond)$\"];",
"way[man_made~\"^(mineshaft)$\"];",
"relation[landuse~\"^(quarry|salt_pond)$\"];",
"relation[man_made~\"^(mineshaft)$\"];",
")"
]
},
"feature": {
"pre": [
"{% if tags.landuse in [ 'quarry', 'salt_pond' ] %}",
" {% set key = 'landuse' %}",
" {% set value = tags.landuse %}",
"{% else %}",
" {% set key = 'man_made' %}",
" {% set value = tags.man_made %}",
"{% endif %}"
],
"description": "{{ tagTrans(key, value) }}"
}
}