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.

153 lines
4.7 KiB

  1. type: overpass
  2. name:
  3. ast: Relixón
  4. ca: Religió
  5. cs: Náboženství
  6. de: Religion
  7. el: Θρησκεία
  8. en: Religion
  9. es: Religión
  10. et: Religioon
  11. fr: Religion
  12. gl: Relixión
  13. hu: Vallás
  14. it: Religione
  15. ja: 宗教
  16. nb: Religion
  17. nl: Religie
  18. oc: Religion
  19. pl: Religia
  20. pt: Religião
  21. pt-br: Religião
  22. ro: Religie
  23. ru: Религия
  24. sr: Религија
  25. tr: Din
  26. uk: Релігія
  27. query:
  28. 13: |-
  29. (
  30. node[amenity~"^(place_of_worship|grave_yard|crematorium)$"];
  31. way[amenity~"^(place_of_worship|grave_yard|crematorium)$"];
  32. relation[amenity~"^(place_of_worship|grave_yard|crematorium)$"];
  33. way[landuse~"^(cemetery)$"];
  34. relation[landuse~"^(cemetery)$"];
  35. )
  36. 14: |-
  37. (
  38. node[amenity~"^(place_of_worship|grave_yard|crematorium)$"];
  39. way[amenity~"^(place_of_worship|grave_yard|crematorium)$"];
  40. relation[amenity~"^(place_of_worship|grave_yard|crematorium)$"];
  41. way[landuse~"^(cemetery)$"];
  42. relation[landuse~"^(cemetery)$"];
  43. node[historic~"^wayside_(cross|shrine|chapel)$"];
  44. way[historic~"^wayside_(cross|shrine|chapel)$"];
  45. relation[historic~"^wayside_(cross|shrine|chapel)$"];
  46. nwr[office~"^(parish|religion)$"];
  47. )
  48. feature:
  49. pre: |-
  50. {% if tags.landuse == 'cemetery' %}
  51. {% set key = 'landuse' %}
  52. {% set value = tags.landuse %}
  53. {% elseif tags.historic in [ 'wayside_cross', 'wayside_shrine', 'wayside_chapel' ] %}
  54. {% set key = 'historic' %}
  55. {% set value = tags.historic %}
  56. {% elseif tags.office %}
  57. {% set key = 'office' %}
  58. {% set value = tags.office %}
  59. {% else %}
  60. {% set key = 'amenity' %}
  61. {% set value = tags.amenity %}
  62. {% endif %}
  63. description: |-
  64. {% if tags.building and tags.religion %}
  65. {% if isTranslated('tag:building=' ~ tags.building ~ ' religion=' ~ tags.religion) %}
  66. {{ trans('tag:building=' ~ tags.building ~ ' religion=' ~ tags.religion) }}
  67. {% elseif tags.building != 'yes' %}
  68. {{ trans('tag:building=' ~ tags.building) }}
  69. {% else %}
  70. {{ tagTrans(key, value) }}
  71. {% endif %}
  72. {% else %}
  73. {{ tagTrans(key, value) }}
  74. {% endif %}
  75. listDetails: '{{ tagTransList("religion", tags.religion) }}{% if tags.denomination %} - {{ tagTransList("denomination", tags.denomination) }}{% endif %}'
  76. body: |-
  77. {% if tags.building %}
  78. {{ keyTrans('building') }}: {{ tagTrans('building', tags.building) }}<br/>
  79. {% endif %}
  80. {% if tags.religion %}
  81. {{ keyTrans('religion') }}: {{ tagTransList('religion', tags.religion) }}<br/>
  82. {% endif %}
  83. {% if tags.denomination %}
  84. {{ keyTrans('denomination') }}: {{ tagTransList('denomination', tags.denomination) }}<br/>
  85. {% endif %}
  86. markerSign: '{{ const.religion[tags.religion] }}'
  87. const:
  88. religion:
  89. christian:
  90. muslim:
  91. buddhist:
  92. shinto: ''
  93. hindu:
  94. jewish:
  95. taoist: ''
  96. sikh: ''
  97. none: ''
  98. multifaith: ''
  99. unitarian_universialist: ''
  100. spiritualist: ''
  101. jain: ''
  102. voodoo: ''
  103. confucian: ''
  104. bahai: ''
  105. caodaism: ''
  106. tenrikyo: ''
  107. vietnamese_folk: ''
  108. pagan:
  109. scientologist: ''
  110. zoroastrian: ''
  111. pentecostal: ''
  112. shamanic: ''
  113. filter:
  114. type:
  115. name: '{{ trans("filter:type") }}'
  116. show_default: 'true'
  117. query: nwr[{{ value }}]
  118. type: select
  119. values:
  120. place_of_worship:
  121. name: '{{ tagTrans("amenity", "place_of_worship") }}'
  122. query: nwr[amenity=place_of_worship]
  123. grave_yard:
  124. name: '{{ tagTrans("amenity", "grave_yard") }}'
  125. query: nwr[amenity=grave_yard]
  126. crematorium:
  127. name: '{{ tagTrans("amenity", "crematorium") }}'
  128. query: nwr[amenity=crematorium]
  129. cemetery:
  130. name: '{{ tagTrans("landuse", "cemetery") }}'
  131. query: nwr[landuse=cemetery]
  132. wayside_cross:
  133. name: '{{ tagTrans("historic", "wayside_cross") }}'
  134. query: nwr[historic=wayside_cross]
  135. wayside_shrine:
  136. name: '{{ tagTrans("historic", "wayside_shrine") }}'
  137. query: nwr[historic=wayside_shrine]
  138. wayside_chapel:
  139. name: '{{ tagTrans("historic", "wayside_chapel") }}'
  140. query: nwr[historic=wayside_chapel]
  141. parish:
  142. name: '{{ tagTrans("office", "parish") }}'
  143. query: nwr[office=parish]
  144. office:
  145. name: '{{ tagTrans("office", "religion") }}'
  146. query: nwr[office=religion]
  147. religion:
  148. name: '{{ keyTrans("religion") }}'
  149. show_default: 'true'
  150. type: select
  151. valueName: '{{ tagTrans("religion", value) }}'
  152. values: '{% set list = [] %}{% for t, v in const.religion %}<option value="{{ t }}">{% set list = list|merge([ t ]) %}{{ tagTrans("religion", t) }}</option>{% endfor %}<option value="other" query="nwr[religion][religion!~"^({{ list|join("|") }})$"]">{{ trans("other") }}</option>'
  153. op: has