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