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.

38 lines
1.7 KiB

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Llugares",
  5. "cs": "Sídla",
  6. "de": "Orte",
  7. "el": "Μέρη",
  8. "en": "Places",
  9. "et": "Kohad",
  10. "fr": "Place",
  11. "hu": "Helyek",
  12. "it": "Luoghi",
  13. "ja": "場所",
  14. "nl": "Plaatsen",
  15. "pl": "Miejsca",
  16. "ro": "Locuri",
  17. "ru": "Места",
  18. "uk": "Місцевість"
  19. },
  20. "query": {
  21. "0": "node[place~'^(continent)$']",
  22. "4": "node[place~'^(continent|country)$']",
  23. "6": "node[place~'^(country|city)$']",
  24. "8": "node[place~'^(country|city|state)$']",
  25. "11": "node[place~'^(city|state|region|town|village)$']",
  26. "13": "node[place~'^(city|state|region|town|village|suburb|hamlet|quarter)$']",
  27. "15": "node[place~'^(city|region|town|village|suburb|hamlet|quarter)$']",
  28. "16": "(node[place~'^(region|town|village|suburb|hamlet|quarter|islet|isolated_dwelling|neighbourhood|farm)$'];way[place~'^(isolated_dwelling|neighbourhood|farm)$'];relation[place~'^(isolated_dwelling|neighbourhood|farm)$'];);"
  29. },
  30. "feature": {
  31. "title": "{% set loc_name = localizedTag(tags, 'name') %}{{ loc_name }}{% if loc_name != tags.name %} ({{ tags.name }}){% endif %}",
  32. "body": [
  33. "{% if tags.population %}{{ keyTrans('population') }}: {{ tags.population }}{% endif %} "
  34. ],
  35. "description": "{{ tagTrans('place', tags.place) }}",
  36. "priority": "{% set priorities = { 'continent': 0, 'country': 1, 'state': 2, 'region': 3, 'city': 4, 'town': 5, 'village': 6, 'suburb': 7, 'hamlet': 8, 'quarter': 9, neighbourhood: 10, 'isolated_dwelling': 11, 'farm': 12 } %}{{ priorities[tags.place] }}"
  37. }
  38. }