Main categories of OpenStreetBrowser
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.1 KiB

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Basures",
  5. "cs": "Nakládání s odpady",
  6. "de": "Entsorgung",
  7. "en": "Disposal",
  8. "fr": "Rebuts",
  9. "it": "Smaltimento",
  10. "ja": "処理場",
  11. "nl": "Afvalverwijdering",
  12. "ru": "Переработка отходов"
  13. },
  14. "query": {
  15. "13": [
  16. "(",
  17. "node[landuse=landfill];",
  18. "node[man_made=wastewater_plant];",
  19. "node[amenity=recycling][recycling_type=centre];",
  20. "way[landuse=landfill];",
  21. "way[man_made=wastewater_plant];",
  22. "way[amenity=recycling][recycling_type=centre];",
  23. "relation[landuse=landfill];",
  24. "relation[man_made=wastewater_plant];",
  25. "relation[amenity=recycling][recycling_type=centre];",
  26. ")"
  27. ],
  28. "15": [
  29. "(",
  30. "node[landuse=landfill];",
  31. "node[man_made=wastewater_plant];",
  32. "node[amenity=recycling];",
  33. "way[landuse=landfill];",
  34. "way[man_made=wastewater_plant];",
  35. "way[amenity=recycling];",
  36. "relation[landuse=landfill];",
  37. "relation[man_made=wastewater_plant];",
  38. "relation[amenity=recycling];",
  39. ")"
  40. ]
  41. },
  42. "feature": {
  43. "pre": [
  44. "{% if tags.landuse == 'landfill' %}",
  45. " {% set key = 'landuse' %}",
  46. " {% set value = tags.landuse %}",
  47. "{% elseif tags.man_made == 'wastewater_plant' %}",
  48. " {% set key = 'man_made' %}",
  49. " {% set value = tags.man_made %}",
  50. "{% elseif tags.amenity == 'recycling' %}",
  51. " {% set key = 'amenity' %}",
  52. " {% set value = tags.amenity %}",
  53. "{% endif %}"
  54. ],
  55. "description": "{{ tagTrans(key, value) }}",
  56. "body": [
  57. "{% if tags.recycling_type %}",
  58. "{{ keyTrans('recycling_type') }}: {{ tagTrans('recycling_type', tags.recycling_type) }}",
  59. "{% endif %}"
  60. ]
  61. }
  62. }