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.

221 lines
6.1 KiB

7 years ago
  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Formaciones naturales",
  5. "cs": "Přírodní úkazy",
  6. "de": "Geographische Objekte",
  7. "el": "Φυσικοί Σχηματισμοί",
  8. "en": "Natural Formations",
  9. "fr": "Éléments naturels",
  10. "hu": "Természeti képződmények",
  11. "it": "Natura",
  12. "ja": "自然地層",
  13. "nl": "Natuurlijke Formaties",
  14. "pt": "Formações naturais",
  15. "pt-br": "Formações naturais",
  16. "ru": "Природные образования",
  17. "uk": "Природне середовище"
  18. },
  19. "query": {
  20. "9": [
  21. "(",
  22. "node[natural~\"^(peak|volcano)$\"];",
  23. ")"
  24. ],
  25. "13": [
  26. "(",
  27. "nwr[natural~\"^(peak|volcano|wood|scrub|heath|grassland|fell|bare_rock|scree|shingle|sand|mud|wetland|glacier|cape|beach|coastline|valley|ridge|arete|cliff|saddle|rock|stone|sinkhole|cave_entrance)$\"];",
  28. ")"
  29. ],
  30. "16": [
  31. "(",
  32. "nwr[natural][natural!~\"^(water|divide|bay|strait|spring|hot_spring|geyser)$\"];",
  33. ")"
  34. ]
  35. },
  36. "feature": {
  37. "title": [
  38. "{{ localizedTag(tags, 'name') | default(trans('unnamed')) }}",
  39. "{% if tags.natural == 'peak' and tags.ele %}({{ tags.ele }}m){% endif %}"
  40. ],
  41. "description": "{{ tagTrans('natural', tags.natural) }}",
  42. "style": {
  43. "color": "{{ const[tags.natural].color|default('#f2756a') }}"
  44. },
  45. "markerSign": "<span style='color: white'>{{ const[tags.natural].sign|raw }}</span>",
  46. "markerSymbol": "{{ markerPointer({ fillColor: const[tags.natural].color|default('#f2756a') })|raw }}",
  47. "listMarkerSymbol": "{{ markerCircle({ fillColor: const[tags.natural].color|default('#f2756a') })|raw }}"
  48. },
  49. "const": {
  50. "wood": {
  51. "sign": "<i class='fas fa-tree'></i>",
  52. "color": "darkgreen",
  53. "group": "vegetation"
  54. },
  55. "tree_row": {
  56. "sign": "<i class='fas fa-tree'></i>",
  57. "color": "darkgreen",
  58. "group": "vegetation"
  59. },
  60. "tree": {
  61. "sign": "<i class='fas fa-tree'></i>",
  62. "color": "darkgreen",
  63. "group": "vegetation"
  64. },
  65. "scrub": {
  66. "sign": "",
  67. "color": "green",
  68. "group": "vegetation"
  69. },
  70. "heath": {
  71. "sign": "",
  72. "color": "green",
  73. "group": "vegetation"
  74. },
  75. "moor": {
  76. "sign": "",
  77. "color": "#8aba50",
  78. "group": "vegetation"
  79. },
  80. "grassland": {
  81. "sign": "",
  82. "color": "#00dd24",
  83. "group": "vegetation"
  84. },
  85. "fell": {
  86. "sign": "",
  87. "color": "#49ba91",
  88. "group": "vegetation"
  89. },
  90. "bare_rock": {
  91. "sign": "",
  92. "color": "#6f6f6f",
  93. "group": "vegetation"
  94. },
  95. "scree": {
  96. "sign": "",
  97. "color": "#6f6f6f",
  98. "group": "vegetation"
  99. },
  100. "shingle": {
  101. "sign": "",
  102. "color": "#6f6f6f",
  103. "group": "vegetation"
  104. },
  105. "sand": {
  106. "sign": "",
  107. "color": "#f9d199",
  108. "group": "vegetation"
  109. },
  110. "mud": {
  111. "sign": "<img data-src='maki:wetland?fill=white'>",
  112. "color": "#988b00",
  113. "group": "vegetation"
  114. },
  115. "wetland": {
  116. "sign": "<img data-src='maki:wetland?fill=white'>",
  117. "color": "#00baff",
  118. "group": "water"
  119. },
  120. "glacier": {
  121. "sign": "<i style='color: black;' class='fas fa-icicles'></i>",
  122. "color": "white",
  123. "group": "water"
  124. },
  125. "cape": {
  126. "sign": "",
  127. "color": "#1d7500",
  128. "group": "water"
  129. },
  130. "peninsula": {
  131. "sign": "",
  132. "color": "#1d7500",
  133. "group": "water"
  134. },
  135. "beach": {
  136. "sign": "<i class='fas fa-umbrella-beach'></i>",
  137. "color": "#f9d199",
  138. "group": "water"
  139. },
  140. "coastline": {
  141. "sign": "",
  142. "color": "blue",
  143. "group": "water"
  144. },
  145. "reef": {
  146. "sign": "",
  147. "color": "#005fbd",
  148. "group": "water"
  149. },
  150. "peak": {
  151. "sign": "<i class='fas fa-mountain'></i>",
  152. "color": "#4f4f4f",
  153. "group": "landform"
  154. },
  155. "hill": {
  156. "sign": "",
  157. "color": "#4f4f4f",
  158. "group": "landform"
  159. },
  160. "volcano": {
  161. "sign": "",
  162. "color": "#cf3a00",
  163. "group": "landform"
  164. },
  165. "valley": {
  166. "sign": "",
  167. "color": "#1d7500",
  168. "group": "landform"
  169. },
  170. "river_terrace": {
  171. "sign": "",
  172. "color": "#a0a500",
  173. "group": "landform"
  174. },
  175. "ridge": {
  176. "sign": "",
  177. "color": "#4f4f4f",
  178. "group": "landform"
  179. },
  180. "arete": {
  181. "sign": "",
  182. "color": "#4f4f4f",
  183. "group": "landform"
  184. },
  185. "cliff": {
  186. "sign": "",
  187. "color": "#4f4f4f",
  188. "group": "landform"
  189. },
  190. "saddle": {
  191. "sign": "",
  192. "color": "#4f4f4f",
  193. "group": "landform"
  194. },
  195. "rock": {
  196. "sign": "",
  197. "color": "#4f4f4f",
  198. "group": "landform"
  199. },
  200. "stone": {
  201. "sign": "",
  202. "color": "#4f4f4f",
  203. "group": "landform"
  204. },
  205. "sinkhole": {
  206. "sign": "",
  207. "color": "#a0a500",
  208. "group": "landform"
  209. },
  210. "cave_entrance": {
  211. "sign": "",
  212. "color": "#000000",
  213. "group": "landform"
  214. },
  215. "isthmus": {
  216. "sign": "",
  217. "color": "#1d7500",
  218. "group": "landform"
  219. }
  220. }
  221. }