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.

40 lines
1.2 KiB

  1. {
  2. "type": "overpass",
  3. "name": {
  4. "ast": "Estraición de recursos",
  5. "cs": "Těžba surovin",
  6. "de": "Ressourcengewinnung",
  7. "en": "Resource Extraction",
  8. "fr": "Extraction des ressources",
  9. "hu": "Bányászat",
  10. "it": "Areee estrattive",
  11. "nl": "Grondstoffenwinning",
  12. "pt": "Extração de recursos",
  13. "pt-br": "Extração de recursos",
  14. "ru": "Добыча ресурсов"
  15. },
  16. "query": {
  17. "11": [
  18. "(",
  19. "node[landuse~\"^(quarry|salt_pond)$\"];",
  20. "node[man_made~\"^(mineshaft)$\"];",
  21. "way[landuse~\"^(quarry|salt_pond)$\"];",
  22. "way[man_made~\"^(mineshaft)$\"];",
  23. "relation[landuse~\"^(quarry|salt_pond)$\"];",
  24. "relation[man_made~\"^(mineshaft)$\"];",
  25. ")"
  26. ]
  27. },
  28. "feature": {
  29. "pre": [
  30. "{% if tags.landuse in [ 'quarry', 'salt_pond' ] %}",
  31. " {% set key = 'landuse' %}",
  32. " {% set value = tags.landuse %}",
  33. "{% else %}",
  34. " {% set key = 'man_made' %}",
  35. " {% set value = tags.man_made %}",
  36. "{% endif %}"
  37. ],
  38. "description": "{{ tagTrans(key, value) }}"
  39. }
  40. }