Browse Source

Merge branch 'construction-redesign'

pedestrian
parent
commit
bb3800a88b
  1. 33
      construction.json
  2. 39
      developable_areas.json
  3. 17
      index.json
  4. 45
      proposals.json

33
construction.json

@ -17,23 +17,38 @@
"query": {
"13": [
"(",
"node[landuse~\"^(brownfield|greenfield|construction|)$\"];",
"way[landuse~\"^(brownfield|greenfield|construction|)$\"];",
"relation[landuse~\"^(brownfield|greenfield|construction|)$\"];",
"node[highway~\"^(construction)$\"];",
"way[highway~\"^(construction)$\"];",
"relation[highway~\"^(construction)$\"];",
"nwr[landuse~\"^(construction)$\"];",
"nwr[highway~\"^(construction)$\"];",
"nwr[railway~\"^(construction)$\"];",
"nwr[building~\"^(construction)$\"];",
"nwr[highway~\"^(construction)$\"];",
"nwr[~\"^construction:\"~\".\"];",
")"
]
},
"feature": {
"pre": [
"{% set key = null %}{% set value = null %}",
"{% if tags.highway == 'construction' %}",
"{% set key = 'highway' %}",
"{% set value = tags.highway %}",
"{% else %}",
"{% set value = tags.construction|default('construction') %}",
"{% elseif tags.railway == 'construction' %}",
"{% set key = 'railway' %}",
"{% set value = tags.construction|default('construction') %}",
"{% elseif tags.building == 'construction' %}",
"{% set key = 'building' %}",
"{% set value = tags.construction|default('construction') %}",
"{% elseif tags.landuse == 'construction' %}",
"{% set key = 'landuse' %}",
"{% set value = tags.landuse %}",
"{% set value = tags.construction|default('construction') %}",
"{% else %}",
"{% for k, v in tags %}",
"{% set m = k|matches('^construction:(.*)$') %}",
"{% if m %}",
"{% set key = m[1] %}",
"{% set value = v %}",
"{{ debug(key, value) }}",
"{% endif %}{% endfor %}",
"{% endif %}"
],
"description": "{{ tagTrans(key, value) }}"

39
developable_areas.json

@ -0,0 +1,39 @@
{
"type": "overpass",
"name": {
"en": "Developable Areas"
},
"query": {
"13": [
"(",
"nwr[landuse~\"^(brownfield|greenfield)$\"];",
")"
]
},
"feature": {
"pre": [
"{% set key = 'landuse' %}",
"{% set value = tags.landuse %}"
],
"style": {
"color": "{{ const[value] }}"
},
"markerSymbol": "{{ markerPointer({fillColor:const[value]})|raw }}",
"listMarkerSymbol": "{{ markerCircle({fillColor:const[value]})|raw }}",
"description": "{{ tagTrans(key, value) }}"
},
"info": [
"<table>",
"{% for value, color in const %}",
" <tr>",
" <td>{{ markerCircle({fillColor: color})|raw }}</td>",
" <td>{{ tagTrans('landuse', value) }}</td>",
" </tr>",
"{% endfor %}",
"</table>"
],
"const": {
"brownfield": "#c3701f",
"greenfield": "#009800"
}
}

17
index.json

@ -266,7 +266,22 @@
"id": "agriculture"
},
{
"id": "construction"
"id": "developments",
"type": "index",
"name": {
"en": "Planning and Construction"
},
"subCategories": [
{
"id": "construction"
},
{
"id": "proposals"
},
{
"id": "developable_areas"
}
]
},
{
"id": "military"

45
proposals.json

@ -0,0 +1,45 @@
{
"type": "overpass",
"name": {
"en": "Proposals"
},
"query": {
"13": [
"(",
"nwr[landuse~\"^(proposed)$\"];",
"nwr[highway~\"^(proposed)$\"];",
"nwr[railway~\"^(proposed)$\"];",
"nwr[building~\"^(proposed)$\"];",
"nwr[highway~\"^(proposed)$\"];",
"nwr[~\"^proposed:\"~\".\"];",
")"
]
},
"feature": {
"pre": [
"{% set key = null %}{% set value = null %}",
"{% if tags.highway == 'proposed' %}",
"{% set key = 'highway' %}",
"{% set value = tags.proposed|default('proposed') %}",
"{% elseif tags.railway == 'proposed' %}",
"{% set key = 'railway' %}",
"{% set value = tags.proposed|default('proposed') %}",
"{% elseif tags.building == 'proposed' %}",
"{% set key = 'building' %}",
"{% set value = tags.proposed|default('proposed') %}",
"{% elseif tags.landuse == 'proposed' %}",
"{% set key = 'landuse' %}",
"{% set value = tags.proposed|default('proposed') %}",
"{% else %}",
"{% for k, v in tags %}",
"{% set m = k|matches('^proposed:(.*)$') %}",
"{% if m %}",
"{% set key = m[1] %}",
"{% set value = v %}",
"{{ debug(key, value) }}",
"{% endif %}{% endfor %}",
"{% endif %}"
],
"description": "{{ tagTrans(key, value) }}"
}
}
Loading…
Cancel
Save