Browse Source

Merge branch 'master' into info

fossil
parent
commit
e6ff2c41d3
  1. 36
      buildings.json
  2. 3
      cycle_amenities.json
  3. 3
      health.json
  4. 22
      index.json
  5. 5
      places.json
  6. 3
      places_geo.json
  7. 5
      railway-electrification.json
  8. 43
      water.json

36
buildings.json

@ -0,0 +1,36 @@
{
"type": "overpass",
"name": {
"en": "Buildings",
"de": "Gebäude"
},
"query": {
"16": [
"(",
" way[building];",
" relation[building];",
")"
]
},
"feature": {
"markerSign": null,
"priority": [
"{% set p = 100 %}",
"{% if tags.name %}{% set p = p - 10 %}{% endif %}",
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}",
"{% if tags.historic %}{% set p = p - 1 %}{% endif %}",
"{% if tags.culture %}{% set p = p - 1 %}{% endif %}",
"{% if tags.highway %}{% set p = p - 1 %}{% endif %}",
"{% if tags.railway %}{% set p = p - 1 %}{% endif %}",
"{% if tags.aeroway %}{% set p = p - 1 %}{% endif %}",
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}",
"{% if tags.tourism %}{% set p = p - 1 %}{% endif %}",
"{{ p }}"
],
"style": {
"weight": "1",
"color": "#000000",
"fillColor": "#000000"
}
}
}

3
cycle_amenities.json

@ -29,8 +29,7 @@
"node[vending~\"^(bicycle_tube)$\"];",
"way[vending~\"^(bicycle_tube)$\"];",
"relation[vending~\"^(bicycle_tube)$\"];",
")",
""
")"
]
},
"feature": {

3
health.json

@ -49,8 +49,7 @@
"{% else %}",
" {% set key = 'amenity' %}",
" {% set value = tags.amenity %}",
"{% endif %}",
""
"{% endif %}"
],
"description": [
"{{ tagTrans(key, value) }}",

22
index.json

@ -204,24 +204,11 @@
]
},
{
"id": "agriculture_industry",
"id": "infrastructure",
"type": "index",
"name": {
"ast": "Agricultura ya industria",
"cs": "Průmysl a zemědělství",
"de": "Landwirtschaft und Industrie",
"el": "Γεωργία και Βιομηχανία",
"en": "Agriculture and Industry",
"et": "Põllumajandus ja tööstus",
"fr": "Agriculture et industrie",
"hu": "Mezőgazdaság és ipar",
"it": "Agricoltura e industria",
"ja": "農業と工業",
"nl": "Landbouw en Industrie",
"pl": "Rolnictwo i Przemysł",
"ro": "Agricultura si industrie",
"ru": "Сельское хозяйство и промышленность",
"uk": "Сільське господартво та промисловість"
"de": "Infrastruktur",
"en": "Infrastructure"
},
"subCategories": [
{
@ -269,6 +256,9 @@
},
{
"id": "works"
},
{
"id": "buildings"
}
]
},

5
places.json

@ -30,10 +30,7 @@
"feature": {
"title": "{% set loc_name = localizedTag(tags, 'name') %}{{ loc_name }}{% if loc_name != tags.name %} ({{ tags.name }}){% endif %}",
"description": "{{ tagTrans('place', tags.place) }}",
"body": [
"{% if tags.population %}{{ keyTrans('population') }}: {{ tags.population }}{% endif %} ",
""
],
"body": "{% if tags.population %}{{ keyTrans('population') }}: {{ tags.population }}{% endif %}",
"priority": "{% set priorities = { 'continent': 0, 'country': 1, 'state': 2, 'region': 3, 'city': 4, 'town': 5, 'village': 6, 'suburb': 7, 'hamlet': 8, 'quarter': 9, neighbourhood: 10, 'isolated_dwelling': 11, 'farm': 12 } %}{{ priorities[tags.place] }}"
}
}

3
places_geo.json

@ -24,6 +24,9 @@
{
"id": "natural"
},
{
"id": "water"
},
{
"id": "administrative"
},

5
railway-electrification.json

@ -54,13 +54,14 @@
],
"markerSign": null,
"listMarkerSymbol": "line",
"priority": "{% if tags.railway == 'station' %}0{% elseif tags.railway in [ 'halt', 'tram_stop' ] %}1{% else %}5{% endif %}",
"styles": "casing,default",
"priority": "{% if tags.railway == 'station' %}0{% elseif tags.railway in [ 'halt', 'tram_stop' ] %}1{% else %}5{% endif %}",
"style": {
"weight": "{{ weight }}",
"lineCap": "butt",
"color": "{{ color }}",
"opacity": "1",
"lineCap": "butt",
"fill": null,
"dashArray": [
"{% if not tags.electrified or tags.electrified == 'no' %}",
"{% elseif tags.frequency == 0 %}",

43
water.json

@ -0,0 +1,43 @@
{
"type": "overpass",
"name": {
"en": "Waterbodies",
"de": "Gewässer"
},
"query": {
"12": [
"(",
"node[natural~\"^(water|divide)$\"];",
"way[natural~\"^(water|divide)$\"];",
"relation[type=multipolygon][natural=water];",
"way[waterway];",
")"
]
},
"feature": {
"markerSign": null,
"style": {
"weight": [
"{% if tags.waterway == 'stream' %}",
"1.5",
"{% else %}",
"3",
"{% endif %}"
],
"color": [
"{% if tags.natural == 'divide' %}",
"#ff0000",
"{% elseif tags.waterway in [ 'dam', 'weir' ] %}",
"#000000",
"{% else %}",
"#3388ff",
"{% endif %}"
],
"text": [
"{% if type=='way' and tags.waterway in [ 'river', 'stream', 'canal', 'wadi', 'drystream' ] %}",
"{{ tags.name }} ➔ ",
"{% endif %}"
]
}
}
}
Loading…
Cancel
Save