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.

52 lines
1.4 KiB

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Militar",
  5. "cs": "Vojenské",
  6. "de": "Militär",
  7. "el": "Στρατιωτικό",
  8. "en": "Military",
  9. "fr": "Militaire",
  10. "hu": "Katonai",
  11. "it": "Militare",
  12. "ja": "軍事",
  13. "nl": "Militair",
  14. "pt-br": "Militar",
  15. "ro": "Militar",
  16. "ru": "Вооружённые силы"
  17. },
  18. "query": {
  19. "11": [
  20. "(",
  21. "node[military~\"^(airfield|danger_area)$\"];",
  22. "node[landuse=military];",
  23. "way[military~\"^(airfield|danger_area)$\"];",
  24. "way[landuse=military];",
  25. "relation[military~\"^(airfield|danger_area)$\"];",
  26. "relation[landuse=military];",
  27. ")"
  28. ],
  29. "14": [
  30. "(",
  31. "node[military];",
  32. "node[landuse=military];",
  33. "way[military];",
  34. "way[landuse=military];",
  35. "relation[military];",
  36. "relation[landuse=military];",
  37. ")"
  38. ]
  39. },
  40. "feature": {
  41. "pre": [
  42. "{% if tags.military %}",
  43. " {% set key = 'military' %}",
  44. " {% set value = tags.military %}",
  45. "{% else %}",
  46. " {% set key = 'landuse' %}",
  47. " {% set value = tags.landuse %}",
  48. "{% endif %}"
  49. ],
  50. "description": "{{ tagTrans(key, value) }}"
  51. }
  52. }