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.

204 lines
5.6 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. "group": "water"
  128. },
  129. "peninsula": {
  130. "sign": "",
  131. "group": "water"
  132. },
  133. "beach": {
  134. "sign": "<i class='fas fa-umbrella-beach'></i>",
  135. "color": "#f9d199",
  136. "group": "water"
  137. },
  138. "coastline": {
  139. "sign": "",
  140. "group": "water"
  141. },
  142. "reef": {
  143. "sign": "",
  144. "group": "water"
  145. },
  146. "peak": {
  147. "sign": "<i class='fas fa-mountain'></i>",
  148. "color": "#4f4f4f",
  149. "group": "landform"
  150. },
  151. "hill": {
  152. "sign": "",
  153. "group": "landform"
  154. },
  155. "volcano": {
  156. "sign": "",
  157. "group": "landform"
  158. },
  159. "valley": {
  160. "sign": "",
  161. "group": "landform"
  162. },
  163. "river_terrace": {
  164. "sign": "",
  165. "group": "landform"
  166. },
  167. "ridge": {
  168. "sign": "",
  169. "group": "landform"
  170. },
  171. "arete": {
  172. "sign": "",
  173. "group": "landform"
  174. },
  175. "cliff": {
  176. "sign": "",
  177. "color": "#4f4f4f",
  178. "group": "landform"
  179. },
  180. "saddle": {
  181. "sign": "",
  182. "color": "#4f4f4f",
  183. "group": "landform"
  184. },
  185. "rock": {
  186. "sign": "",
  187. "color": "#4f4f4f",
  188. "group": "landform"
  189. },
  190. "stone": {
  191. "sign": "",
  192. "color": "#4f4f4f",
  193. "group": "landform"
  194. },
  195. "sinkhole": {
  196. "sign": "",
  197. "group": "landform"
  198. },
  199. "cave_entrance": {
  200. "sign": "",
  201. "group": "landform"
  202. }
  203. }
  204. }