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.

39 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. "it": "Areee estrattive",
  10. "nl": "Grondstoffenwinning",
  11. "pt": "Extração de recursos",
  12. "pt-br": "Extração de Recursos",
  13. "ru": "Добыча ресурсов"
  14. },
  15. "query": {
  16. "11": [
  17. "(",
  18. "node[landuse~\"^(quarry|salt_pond)$\"];",
  19. "node[man_made~\"^(mineshaft)$\"];",
  20. "way[landuse~\"^(quarry|salt_pond)$\"];",
  21. "way[man_made~\"^(mineshaft)$\"];",
  22. "relation[landuse~\"^(quarry|salt_pond)$\"];",
  23. "relation[man_made~\"^(mineshaft)$\"];",
  24. ")"
  25. ]
  26. },
  27. "feature": {
  28. "pre": [
  29. "{% if tags.landuse in [ 'quarry', 'salt_pond' ] %}",
  30. " {% set key = 'landuse' %}",
  31. " {% set value = tags.landuse %}",
  32. "{% else %}",
  33. " {% set key = 'man_made' %}",
  34. " {% set value = tags.man_made %}",
  35. "{% endif %}"
  36. ],
  37. "description": "{{ tagTrans(key, value) }}"
  38. }
  39. }