parent
commit
036a8a1a6d
  1. 27
      buildings-entrances.json
  2. 14
      buildings-entrances.yaml
  3. 40
      buildings-figure-ground.json
  4. 26
      buildings-figure-ground.yaml
  5. 127
      buildings-height.json
  6. 129
      buildings-height.yaml
  7. 165
      buildings-start_date.json
  8. 147
      buildings-start_date.yaml
  9. 243
      buildings-type.json
  10. 201
      buildings-type.yaml

27
buildings-entrances.json

@ -1,27 +0,0 @@
{
"type": "overpass",
"name": {
"de": "Eingänge",
"en": "Entrances",
"fr": "Entrées",
"pt-br": "Acessos"
},
"query": {
"16": [
"(",
" node[entrance];",
" node[building=entrance];",
")"
]
},
"feature": {
"description": [
"{% if tags.entrance == 'yes' or (not tags.entrance and tags.building == 'entrance') %}",
"{{ keyTrans('entrance') }}",
"{% else %}",
"{{ tagTrans('entrance', tags.entrance) }}",
"{% endif %}"
],
"styles": ""
}
}

14
buildings-entrances.yaml

@ -0,0 +1,14 @@
query:
16: |-
(
node[entrance];
node[building=entrance];
)
feature:
description: |-
{% if tags.entrance == 'yes' or (not tags.entrance and tags.building == 'entrance') %}
{{ keyTrans('entrance') }}
{% else %}
{{ tagTrans('entrance', tags.entrance) }}
{% endif %}
styles: ''

40
buildings-figure-ground.json

@ -1,40 +0,0 @@
{
"type": "overpass",
"name": {
"de": "Schwarzplan",
"en": "Figure-ground diagram",
"fr": "Empreintes",
"pt-br": "Cheios e vazios"
},
"query": {
"16": [
"(",
" way[building];",
" relation[building];",
")"
]
},
"feature": {
"markerSymbol": "",
"listMarkerSymbol": "{{ markerPolygon({fillColor: \"#000000\", fillOpacity: 1 })|raw }}",
"priority": [
"{% set p = 100 %}",
"{% if tags.name %}{% set p = p - 10 %}{% endif %}",
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}",
"{% if tags.historic %}{% set p = p - 1 %}{% endif %}",
"{% if tags.culture %}{% set p = p - 1 %}{% endif %}",
"{% if tags.highway %}{% set p = p - 1 %}{% endif %}",
"{% if tags.railway %}{% set p = p - 1 %}{% endif %}",
"{% if tags.aeroway %}{% set p = p - 1 %}{% endif %}",
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}",
"{% if tags.tourism %}{% set p = p - 1 %}{% endif %}",
"{{ p }}"
],
"style": {
"width": "0",
"color": "#000000",
"fillColor": "#000000",
"fillOpacity": "1"
}
}
}

26
buildings-figure-ground.yaml

@ -0,0 +1,26 @@
query:
16: |-
(
way[building];
relation[building];
)
feature:
markerSymbol: ''
listMarkerSymbol: '{{ markerPolygon({fillColor: "#000000", fillOpacity: 1 })|raw }}'
priority: |-
{% set p = 100 %}
{% if tags.name %}{% set p = p - 10 %}{% endif %}
{% if tags.amenity %}{% set p = p - 1 %}{% endif %}
{% if tags.historic %}{% set p = p - 1 %}{% endif %}
{% if tags.culture %}{% set p = p - 1 %}{% endif %}
{% if tags.highway %}{% set p = p - 1 %}{% endif %}
{% if tags.railway %}{% set p = p - 1 %}{% endif %}
{% if tags.aeroway %}{% set p = p - 1 %}{% endif %}
{% if tags.amenity %}{% set p = p - 1 %}{% endif %}
{% if tags.tourism %}{% set p = p - 1 %}{% endif %}
{{ p }}
style:
width: 0
color: '#000000'
fillColor: '#000000'
fillOpacity: 1

127
buildings-height.json

@ -1,127 +0,0 @@
{
"type": "overpass",
"name": {
"de": "Gebäudehöhen",
"en": "Building height",
"fr": "Hauteur",
"pt-br": "Altura"
},
"query": {
"16": [
"(",
" way[building];",
" relation[building];",
")"
]
},
"feature": {
"pre": [
"{% if tags.height is defined %}",
"{% set approxHeight = tags.height %}",
"{% set m = tags.height|matches('(.*)\\s*(m|ft)$') %}",
"{% if m and m[2] == 'm' %}{% set approxHeight = m[1] %}{% endif %}",
"{% if m and m[2] == 'ft' %}{% set approxHeight = m[1] / 3.2808 %}{% endif %}",
"{% elseif attribute(tags, 'building:levels') is defined %}",
"{% set approxHeight = attribute(tags, 'building:levels') * 3.5 %}",
"{% endif %}",
"",
"{% if approxHeight <= 50 %}",
"{% set color = colorInterpolate(['green', 'red'], approxHeight / 50) %}",
"{% elseif approxHeight %}",
"{% set color = colorInterpolate(['red', 'yellow'], (approxHeight - 50) / 250) %} ",
"{% else %}",
"{% set color = '#7f7f7f' %}",
"{% endif %}"
],
"description": [
"{% if tags.building == 'yes' and tags.military %}",
"{{ tagTrans('building', 'military') }}",
"{% elseif tags.building == 'yes' %}",
"{{ keyTrans('building') }}",
"{% else %}",
"{{ tagTransList('building', tags.building) }}",
"{% endif %}",
"{% if tags.building == 'construction' and tags.construction %}",
"({{ tagTransList('building', tags.construction) }})",
"{% endif %}",
"{% if tags.building in [ 'yes', 'military' ] and tags.military %}",
"({{ tagTransList('military', tags.military) }})",
"{% endif %}"
],
"details": [
"{% if tags.height is defined %}",
" {% if tags.height|matches('(m|ft)$') %}{{ tags.height -}}",
" {% else %}{{ tags.height }}&nbsp;m",
" {%- endif -%}",
"{% endif -%}",
"",
"{%- if attribute(tags, 'building:levels') is defined -%}",
"{%- if tags.height is defined %}, {% endif %}",
"{{ attribute(tags, 'building:levels') }} {{ keyTrans('building:levels') }}",
"{% endif %}"
],
"markerSymbol": null,
"listMarkerSymbol": "{{ markerPolygon({\"fillColor\": color, \"fillOpacity\": 0.8, \"width\": 1, \"color\": \"#000000\" })|raw }}",
"priority": "{{ (approxHeight|default(0)) * -1 }}",
"style": {
"width": "1",
"color": "#000000",
"fillColor": "{{ color }}",
"fillOpacity": "1"
}
},
"info": [
"<div style='display: inline-block'>",
"{{ tagTrans('height') }}",
"<table>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\" }))|raw }}</td>",
" <td colspan>{{ trans('unknown') }}</td>",
" </tr>",
"{% for i in range(0, 50, 10) %}",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"height\": i }))|raw }}</td>",
" <td>{{ i }}m</td>",
" </tr>",
"{% endfor %}",
"{% for i in range(100, 250, 50) %}",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"height\": i }))|raw }}</td>",
" <td>{{ i }}m</td>",
" </tr>",
"{% endfor %}",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"height\": \"300\" }))|raw }}</td>",
" <td>≥300m</td>",
" </tr>",
"</table>",
"</div>",
"",
"<div style='display: inline-block'>",
"{{ tagTrans('building:levels') }}",
"<table>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\" }))|raw }}</td>",
" <td colspan>{{ trans('unknown') }}</td>",
" </tr>",
"{% for i in range(0, 12, 3) %}",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"building:levels\": i }))|raw }}</td>",
" <td>{{ i }}</td>",
" </tr>",
"{% endfor %}",
"{% for i in range(15, 84, 15) %}",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"building:levels\": i }))|raw }}</td>",
" <td>{{ i }}</td>",
" </tr>",
"{% endfor %}",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"building:levels\": \"85\" }))|raw }}</td>",
" <td>≥85</td>",
" </tr>",
"</table>",
"",
"</div>"
]
}

129
buildings-height.yaml

@ -0,0 +1,129 @@
query:
16: |-
(
way[building];
relation[building];
)
feature:
pre: |-
{% if tags.height is defined %}
{% set approxHeight = tags.height %}
{% set m = tags.height|matches('(.*)\s*(m|ft)$') %}
{% if m and m[2] == 'm' %}{% set approxHeight = m[1] %}{% endif %}
{% if m and m[2] == 'ft' %}{% set approxHeight = m[1] / 3.2808 %}{% endif %}
{% elseif attribute(tags, 'building:levels') is defined %}
{% set approxHeight = attribute(tags, 'building:levels') * 3.5 %}
{% endif %}
{% if approxHeight <= 50 %}
{% set color = colorInterpolate(['green', 'red'], approxHeight / 50) %}
{% elseif approxHeight %}
{% set color = colorInterpolate(['red', 'yellow'], (approxHeight - 50) / 250) %}
{% else %}
{% set color = '#7f7f7f' %}
{% endif %}
description: |-
{% if tags.building == 'yes' and tags.military %}
{{ tagTrans('building', 'military') }}
{% elseif tags.building == 'yes' %}
{{ keyTrans('building') }}
{% else %}
{{ tagTransList('building', tags.building) }}
{% endif %}
{% if tags.building == 'construction' and tags.construction %}
({{ tagTransList('building', tags.construction) }})
{% endif %}
{% if tags.building in [ 'yes', 'military' ] and tags.military %}
({{ tagTransList('military', tags.military) }})
{% endif %}
details: |-
{% if tags.height is defined %}
{% if tags.height|matches('(m|ft)$') %}{{ tags.height -}}
{% else %}{{ tags.height }}&nbsp;m
{%- endif -%}
{% endif -%}
{%- if attribute(tags, 'building:levels') is defined -%}
{%- if tags.height is defined %}, {% endif %}
{{ attribute(tags, 'building:levels') }} {{ keyTrans('building:levels') }}
{% endif %}
markerSymbol: null
listMarkerSymbol: |-
{{ markerPolygon({"fillColor": color, "fillOpacity": 0.8, "width": 1, "color": "#000000" })|raw }}
markerSign: |-
{% if map.zoom >= 18 %}
<span style="color: white; font-size: 80%; line-height: 80%;">
{%- if attribute(tags, 'building:levels') is defined -%}
{{ attribute(tags, 'building:levels') }}
<br>
{% endif %}
{% if tags.height is defined %}
{% if tags.height|matches('(m|ft)$') %}({{ tags.height -}})
{% else %}({{ tags.height }}m)
{%- endif -%}
{% endif -%}
</span>
{% else %} {% endif %}
listMarkerSign: ' '
priority: |-
{{ (approxHeight|default(0)) * -1 }}
style:
width: 1
color: '#000000'
fillColor: |-
{{ color }}
fillOpacity: 1
info: |-
<div style='display: inline-block'>
{{ tagTrans('height') }}
<table>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes" }))|raw }}</td>
<td colspan>{{ trans('unknown') }}</td>
</tr>
{% for i in range(0, 50, 10) %}
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "height": i }))|raw }}</td>
<td>{{ i }}m</td>
</tr>
{% endfor %}
{% for i in range(100, 250, 50) %}
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "height": i }))|raw }}</td>
<td>{{ i }}m</td>
</tr>
{% endfor %}
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "height": "300" }))|raw }}</td>
<td>≥300m</td>
</tr>
</table>
</div>
<div style='display: inline-block'>
{{ tagTrans('building:levels') }}
<table>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes" }))|raw }}</td>
<td colspan>{{ trans('unknown') }}</td>
</tr>
{% for i in range(0, 12, 3) %}
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "building:levels": i }))|raw }}</td>
<td>{{ i }}</td>
</tr>
{% endfor %}
{% for i in range(15, 84, 15) %}
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "building:levels": i }))|raw }}</td>
<td>{{ i }}</td>
</tr>
{% endfor %}
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "building:levels": "85" }))|raw }}</td>
<td>≥85</td>
</tr>
</table>
</div>

165
buildings-start_date.json

@ -1,165 +0,0 @@
{
"type": "overpass",
"name": {
"de": "Gebäudealter",
"en": "Building age",
"fr": "Date de construction",
"pt-br": "Idade"
},
"query": {
"16": [
"(",
" way[building];",
" relation[building];",
")"
]
},
"feature": {
"pre": [
"{% set type = tags.building|split(';')[0] %}",
"{% if tags.military %}{% set type = 'military' %}{% endif %}",
"",
"{% set start_date = tags.start_date %}",
"{% if attribute(tags, 'building:start_date') %}{% set start_date = attribute(tags, 'building:start_date') %}{% endif %}",
"{# Deprecated tags #}",
"{% if not start_date and attribute(tags, 'building:age') %}{% set start_date = attribute(tags, 'building:age') %}{% endif %}",
"{% if not start_date and attribute(tags, 'building:year_built') %}{% set start_date = attribute(tags, 'building:year_built') %}{% endif %}",
"{% if not start_date and attribute(tags, 'building:buildyear') %}{% set start_date = attribute(tags, 'building:buildyear') %}{% endif %}",
"{% if not start_date and attribute(tags, 'year_built') %}{% set start_date = attribute(tags, 'year_built') %}{% endif %}",
"{% if not start_date and attribute(tags, 'building:year') %}{% set start_date = attribute(tags, 'building:year') %}{% endif %}",
"{% if not start_date and attribute(tags, 'year_of_construction') %}{% set start_date = attribute(tags, 'year_of_construction') %}{% endif %}",
"",
"{% if start_date %}",
" {# equalize tagging mistakes - need to add QA messages #}",
" {# convert 1910-1911 to 1910..1911 #}{% set m = start_date|matches('^(\\d{4})-(\\d{4})$') %}{% if m %}{% set start_date = m[1] ~ '..' ~ m[2] %}{% endif %}",
" {# convert 191* to 1910s #}{% set m = start_date|matches('^(\\d{3})\\*$') %}{% if m %}{% set start_date = m[1] ~ '0s' %}{% endif %}",
"",
"",
" {% set value = start_date|osmParseDate %}",
" {% if value and value[0] and value[1] %}",
" {% set value = (value[1] - value[0]) / 2 + value[0] %}",
" {% elseif value and value[0] %}",
" {% set value = value[0] %}",
" {% elseif value and value[1] %}",
" {% set value = value[1] %}",
" {% else %}",
" {% set value = 'error' %}",
" {% endif %}",
"",
" {% if value == 'error' %}",
" {% set color = '#ff0000' %}",
" {% elseif value < 1500 %}",
" {% set color = '#0000ff' %}",
" {% elseif value < 1900 %}",
" {% set color = colorInterpolate([ '#0000ff', '#ff00ff' ], (value - 1500.0) / 400) %}",
" {% elseif value < 2000 %}",
" {% set color = colorInterpolate([ '#ff00ff', '#ffff00' ], (value - 1900.0) / 100) %}",
" {% else %}",
" {% set color = colorInterpolate([ '#ffff00', '#00ff00' ], (value - 2000.0) / 50) %}",
" {% endif %}",
"{% else %}",
"{% set color = '#7f7f7f' %}",
"{% endif %}"
],
"description": [
"{% if tags.building == 'yes' and tags.military %}",
"{{ tagTrans('building', 'military') }}",
"{% elseif tags.building == 'yes' %}",
"{{ keyTrans('building') }}",
"{% else %}",
"{{ tagTransList('building', tags.building) }}",
"{% endif %}",
"{% if tags.building == 'construction' and tags.construction %}",
"({{ tagTransList('building', tags.construction) }})",
"{% endif %}",
"{% if tags.building in [ 'yes', 'military' ] and tags.military %}",
"({{ tagTransList('military', tags.military) }})",
"{% endif %}"
],
"details": [
"{% if start_date %}",
"{{ start_date|osmFormatDate({ format: 'short' }) }}",
"{% else %}",
"{{ trans('unknown') }}",
"{% endif %}"
],
"body": [
"<ul>",
"{% if attribute(tags, 'building:start_date') %}<li>",
"<span class='key'>{{ keyTrans('building:start_date') }}:</span>",
"<span class='value'>{{ attribute(tags, 'building:start_date')|osmFormatDate }}</span>",
"</li>{% endif %}",
"</ul>"
],
"markerSymbol": null,
"listMarkerSymbol": "{{ markerPolygon({ \"fillColor\": color, \"fillOpacity\": 0.8, \"width\": 1, \"color\": \"#000000\" })|raw }}",
"priority": [
"{% set p = 100 %}",
"{% if start_date %}{% set p = p - 20 %}{% endif %}",
"{% if tags.name %}{% set p = p - 10 %}{% endif %}",
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}",
"{% if tags.historic %}{% set p = p - 1 %}{% endif %}",
"{% if tags.culture %}{% set p = p - 1 %}{% endif %}",
"{% if tags.highway %}{% set p = p - 1 %}{% endif %}",
"{% if tags.railway %}{% set p = p - 1 %}{% endif %}",
"{% if tags.aeroway %}{% set p = p - 1 %}{% endif %}",
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}",
"{% if tags.tourism %}{% set p = p - 1 %}{% endif %}",
"{{ p }}"
],
"style": {
"width": "1",
"color": "#000000",
"fillColor": "{{ color }}",
"fillOpacity": "0.8"
}
},
"info": [
"<table>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1400\" }))|raw }}</td>",
" <td>&lt;1500</td>",
" </tr>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1500\" }))|raw }}</td>",
" <td>1500</td>",
" </tr>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1600\" }))|raw }}</td>",
" <td>1600</td>",
" </tr>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1700\" }))|raw }}</td>",
" <td>1700</td>",
" </tr>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1800\" }))|raw }}</td>",
" <td>1800</td>",
" </tr>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1900\" }))|raw }}</td>",
" <td>1900</td>",
" </tr>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"1950\" }))|raw }}</td>",
" <td>1950</td>",
" </tr>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"2000\" }))|raw }}</td>",
" <td>2000</td>",
" </tr>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"2020\" }))|raw }}</td>",
" <td>2020</td>",
" </tr>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\", \"start_date\": \"xxx\" }))|raw }}</td>",
" <td>{{ repoTrans('date format not understood') }}</td>",
" </tr>",
" <tr>",
" <td>{{ markerPolygon(evaluate({ \"building\": \"yes\" }))|raw }}</td>",
" <td>{{ trans('unknown') }}</td>",
" </tr>",
"</table>"
]
}

147
buildings-start_date.yaml

@ -0,0 +1,147 @@
query:
16: |-
(
way[building];
relation[building];
)
feature:
pre: |-
{% set type = tags.building|split(';')[0] %}
{% if tags.military %}{% set type = 'military' %}{% endif %}
{% set start_date = tags.start_date %}
{% if attribute(tags, 'building:start_date') %}{% set start_date = attribute(tags, 'building:start_date') %}{% endif %}
{# Deprecated tags #}
{% if not start_date and attribute(tags, 'building:age') %}{% set start_date = attribute(tags, 'building:age') %}{% endif %}
{% if not start_date and attribute(tags, 'building:year_built') %}{% set start_date = attribute(tags, 'building:year_built') %}{% endif %}
{% if not start_date and attribute(tags, 'building:buildyear') %}{% set start_date = attribute(tags, 'building:buildyear') %}{% endif %}
{% if not start_date and attribute(tags, 'year_built') %}{% set start_date = attribute(tags, 'year_built') %}{% endif %}
{% if not start_date and attribute(tags, 'building:year') %}{% set start_date = attribute(tags, 'building:year') %}{% endif %}
{% if not start_date and attribute(tags, 'year_of_construction') %}{% set start_date = attribute(tags, 'year_of_construction') %}{% endif %}
{% if start_date %}
{# equalize tagging mistakes - need to add QA messages #}
{# convert 1910-1911 to 1910..1911 #}{% set m = start_date|matches('^(\d{4})-(\d{4})$') %}{% if m %}{% set start_date = m[1] ~ '..' ~ m[2] %}{% endif %}
{# convert 191* to 1910s #}{% set m = start_date|matches('^(\d{3})\*$') %}{% if m %}{% set start_date = m[1] ~ '0s' %}{% endif %}
{% set value = start_date|osmParseDate %}
{% if value and value[0] and value[1] %}
{% set value = (value[1] - value[0]) / 2 + value[0] %}
{% elseif value and value[0] %}
{% set value = value[0] %}
{% elseif value and value[1] %}
{% set value = value[1] %}
{% else %}
{% set value = 'error' %}
{% endif %}
{% if value == 'error' %}
{% set color = '#ff0000' %}
{% elseif value < 1500 %}
{% set color = '#0000ff' %}
{% elseif value < 1900 %}
{% set color = colorInterpolate([ '#0000ff', '#ff00ff' ], (value - 1500.0) / 400) %}
{% elseif value < 2000 %}
{% set color = colorInterpolate([ '#ff00ff', '#ffff00' ], (value - 1900.0) / 100) %}
{% else %}
{% set color = colorInterpolate([ '#ffff00', '#00ff00' ], (value - 2000.0) / 50) %}
{% endif %}
{% else %}
{% set color = '#7f7f7f' %}
{% endif %}
description: |-
{% if tags.building == 'yes' and tags.military %}
{{ tagTrans('building', 'military') }}
{% elseif tags.building == 'yes' %}
{{ keyTrans('building') }}
{% else %}
{{ tagTransList('building', tags.building) }}
{% endif %}
{% if tags.building == 'construction' and tags.construction %}
({{ tagTransList('building', tags.construction) }})
{% endif %}
{% if tags.building in [ 'yes', 'military' ] and tags.military %}
({{ tagTransList('military', tags.military) }})
{% endif %}
details: |-
{% if start_date %}
{{ start_date|osmFormatDate({ format: 'short' }) }}
{% else %}
{{ trans('unknown') }}
{% endif %}
body: |-
<ul>
{% if attribute(tags, 'building:start_date') %}<li>
<span class='key'>{{ keyTrans('building:start_date') }}:</span>
<span class='value'>{{ attribute(tags, 'building:start_date')|osmFormatDate }}</span>
</li>{% endif %}
</ul>
markerSymbol: null
listMarkerSymbol: |-
{{ markerPolygon({ "fillColor": color, "fillOpacity": 0.8, "width": 1, "color": "#000000" })|raw }}
priority: |-
{% set p = 100 %}
{% if start_date %}{% set p = p - 20 %}{% endif %}
{% if tags.name %}{% set p = p - 10 %}{% endif %}
{% if tags.amenity %}{% set p = p - 1 %}{% endif %}
{% if tags.historic %}{% set p = p - 1 %}{% endif %}
{% if tags.culture %}{% set p = p - 1 %}{% endif %}
{% if tags.highway %}{% set p = p - 1 %}{% endif %}
{% if tags.railway %}{% set p = p - 1 %}{% endif %}
{% if tags.aeroway %}{% set p = p - 1 %}{% endif %}
{% if tags.amenity %}{% set p = p - 1 %}{% endif %}
{% if tags.tourism %}{% set p = p - 1 %}{% endif %}
{{ p }}
style:
width: 1
color: '#000000'
fillColor: '{{ color }}'
fillOpacity: 0.8
info: |-
<table>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "start_date": "1400" }))|raw }}</td>
<td>&lt;1500</td>
</tr>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "start_date": "1500" }))|raw }}</td>
<td>1500</td>
</tr>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "start_date": "1600" }))|raw }}</td>
<td>1600</td>
</tr>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "start_date": "1700" }))|raw }}</td>
<td>1700</td>
</tr>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "start_date": "1800" }))|raw }}</td>
<td>1800</td>
</tr>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "start_date": "1900" }))|raw }}</td>
<td>1900</td>
</tr>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "start_date": "1950" }))|raw }}</td>
<td>1950</td>
</tr>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "start_date": "2000" }))|raw }}</td>
<td>2000</td>
</tr>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "start_date": "2020" }))|raw }}</td>
<td>2020</td>
</tr>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes", "start_date": "xxx" }))|raw }}</td>
<td>{{ repoTrans('date format not understood') }}</td>
</tr>
<tr>
<td>{{ markerPolygon(evaluate({ "building": "yes" }))|raw }}</td>
<td>{{ trans('unknown') }}</td>
</tr>
</table>

243
buildings-type.json

@ -1,243 +0,0 @@
{
"type": "overpass",
"name": {
"de": "Gebäudearten",
"en": "Building types",
"fr": "Type",
"pt-br": "Tipologias"
},
"query": {
"16": "nwr[building][building!=no];"
},
"feature": {
"pre": [
"{% set type = tags.building|split(';')[0] %}",
"{% if tags.military %}{% set type = 'military' %}{% endif %}",
"{% set color = const.other.color %}",
"{% for cat, data in const %}",
" {% if type in data.types %}",
" {% set color = data.color %}",
" {% endif %}",
"{% endfor %}"
],
"description": [
"{% if tags.building == 'yes' and tags.military %}",
"{{ tagTrans('building', 'military') }}",
"{% elseif tags.building == 'yes' %}",
"{{ keyTrans('building') }}",
"{% else %}",
"{{ tagTransList('building', tags.building) }}",
"{% endif %}",
"{% if tags.building == 'construction' and tags.construction %}",
"({{ tagTransList('building', tags.construction) }})",
"{% endif %}",
"{% if tags.building in [ 'yes', 'military' ] and tags.military %}",
"({{ tagTransList('military', tags.military) }})",
"{% endif %}"
],
"markerSymbol": "",
"listMarkerSymbol": "{{ markerPolygon({\"fillColor\": color, \"fillOpacity\": 0.8, \"width\": 1, \"color\": \"#000000\" })|raw }}",
"priority": [
"{% set p = 100 %}",
"{% if tags.name %}{% set p = p - 10 %}{% endif %}",
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}",
"{% if tags.historic %}{% set p = p - 1 %}{% endif %}",
"{% if tags.culture %}{% set p = p - 1 %}{% endif %}",
"{% if tags.highway %}{% set p = p - 1 %}{% endif %}",
"{% if tags.railway %}{% set p = p - 1 %}{% endif %}",
"{% if tags.aeroway %}{% set p = p - 1 %}{% endif %}",
"{% if tags.amenity %}{% set p = p - 1 %}{% endif %}",
"{% if tags.tourism %}{% set p = p - 1 %}{% endif %}",
"{{ p }}"
],
"style": {
"width": "1",
"color": "#000000",
"fillColor": "{{ color }}",
"fillOpacity": "0.8"
}
},
"info": [
"<table>",
"{% for cat, data in const %}",
" <tr>",
" <td valign='top'>{{ markerPolygon({ \"fillColor\": data.color, \"fillOpacity\": \"0.8\", \"width\": 1, \"color\": \"#000000\" })|raw }}</td>",
" <td onclick='this.classList.toggle(\"infoShowDetails\")'><b>{{ trans(data.name) }}</b><span class='details'>:",
" {% for i, type in data.types %}<span title='building={{ type }}'>{% if i > 0 %}, {% endif %}{{ tagTrans('building', type) }}</span>{% endfor %}",
" </span>",
"<span class='summary'><i class=\"fa fa-info-circle\" aria-hidden=\"true\"></i></span>",
" </td>",
" </tr>",
"{% endfor %}",
"</table>"
],
"const": {
"residential": {
"name": "tag:building=residential",
"color": "#25a000",
"types": [
"house",
"apartments",
"block",
"flats",
"farm",
"detached",
"dormitory",
"terrace",
"houseboat",
"bungalow",
"static_caravan",
"residential",
"semidetached_house",
"ger",
"trullo"
]
},
"tourism": {
"name": "tag:tourism",
"color": "#814ce2",
"types": [
"hotel",
"ruins",
"conservatory"
]
},
"commercial": {
"name": "tag:building=commercial",
"color": "#ec5bcf",
"types": [
"commercial",
"office",
"industrial",
"retail",
"supermarket",
"warehouse",
"kiosk",
"mall",
"shop"
]
},
"religious": {
"name": "tag:building=religious",
"color": "#af29cc",
"types": [
"religious",
"cathedral",
"chapel",
"church",
"mosque",
"temple",
"synagogue",
"shrine",
"monastery"
]
},
"amenity": {
"name": "tag:amenity",
"color": "#2935cc",
"types": [
"kindergarten",
"civic",
"government",
"hospital",
"school",
"university",
"grandstand",
"public",
"toilets",
"college"
]
},
"agriculture": {
"name": "tag:building=agriculture",
"color": "#92e934",
"types": [
"bakehouse",
"barn",
"cowshed",
"farm_auxiliary",
"greenhouse",
"stable",
"sty",
"kitchen",
"slurry_tank",
"silo"
]
},
"industrial": {
"name": "tag:landuse=industrial",
"color": "#e2da1b",
"types": [
"construction",
"garbage_shed",
"transformer_tower",
"service",
"water_tower",
"industrial",
"warehouse",
"storage_tank"
]
},
"transportation": {
"name": "tag:building=transportation",
"color": "#1bb5e2",
"types": [
"carport",
"garage",
"garages",
"bridge",
"hangar",
"parking",
"train_station",
"transportation"
]
},
"sport": {
"name": "tag:sport",
"color": "#e21b66",
"types": [
"pavilion",
"riding_hall",
"stadium",
"sports_hall"
]
},
"roof": {
"name": "tag:building=roof",
"color": "#afafaf7f",
"types": [
"roof"
]
},
"shelter": {
"name": "tag:amenity=shelter",
"color": "#cc8725",
"types": [
"cabin",
"hut",
"shed"
]
},
"military": {
"name": "tag:building=military",
"color": "#4a7300",
"types": [
"bunker",
"military"
]
},
"unspecified": {
"name": "tag:building=generic",
"color": "#7f7f7f",
"types": [
"yes",
"generic"
]
},
"other": {
"name": "other",
"color": "#ff0000",
"types": []
}
}
}

201
buildings-type.yaml

@ -0,0 +1,201 @@
query:
16: nwr[building][building!=no];
feature:
pre: |-
{% set type = tags.building|split(';')[0] %}
{% if tags.military %}{% set type = 'military' %}{% endif %}
{% set color = const.other.color %}
{% for cat, data in const %}
{% if type in data.types %}
{% set color = data.color %}
{% endif %}
{% endfor %}
description: |-
{% if tags.building == 'yes' and tags.military %}
{{ tagTrans('building', 'military') }}
{% elseif tags.building == 'yes' %}
{{ keyTrans('building') }}
{% else %}
{{ tagTransList('building', tags.building) }}
{% endif %}
{% if tags.building == 'construction' and tags.construction %}
({{ tagTransList('building', tags.construction) }})
{% endif %}
{% if tags.building in [ 'yes', 'military' ] and tags.military %}
({{ tagTransList('military', tags.military) }})
{% endif %}
markerSymbol: ''
listMarkerSymbol: |-
{{ markerPolygon({"fillColor": color, "fillOpacity": 0.8, "width": 1, "color": "#000000" })|raw }}
priority: |-
{% set p = 100 %}
{% if tags.name %}{% set p = p - 10 %}{% endif %}
{% if tags.amenity %}{% set p = p - 1 %}{% endif %}
{% if tags.historic %}{% set p = p - 1 %}{% endif %}
{% if tags.culture %}{% set p = p - 1 %}{% endif %}
{% if tags.highway %}{% set p = p - 1 %}{% endif %}
{% if tags.railway %}{% set p = p - 1 %}{% endif %}
{% if tags.aeroway %}{% set p = p - 1 %}{% endif %}
{% if tags.amenity %}{% set p = p - 1 %}{% endif %}
{% if tags.tourism %}{% set p = p - 1 %}{% endif %}
{{ p }}
style:
width: 1
color: '#000000'
fillColor: |-
{{ color }}
fillOpacity: 0.8
info: |-
<table>
{% for cat, data in const %}
<tr>
<td valign='top'>{{ markerPolygon({ "fillColor": data.color, "fillOpacity": "0.8", "width": 1, "color": "#000000" })|raw }}</td>
<td onclick='this.classList.toggle("infoShowDetails")'><b>{{ trans(data.name) }}</b><span class='details'>:
{% for i, type in data.types %}<span title='building={{ type }}'>{% if i > 0 %}, {% endif %}{{ tagTrans('building', type) }}</span>{% endfor %}
</span>
<span class='summary'><i class="fa fa-info-circle" aria-hidden="true"></i></span>
</td>
</tr>
{% endfor %}
</table>
const:
residential:
name: tag:building=residential
color: '#25a000'
types:
- house
- apartments
- block
- flats
- farm
- detached
- dormitory
- terrace
- houseboat
- bungalow
- static_caravan
- residential
- semidetached_house
- ger
- trullo
tourism:
name: tag:tourism
color: '#814ce2'
types:
- hotel
- ruins
- conservatory
commercial:
name: tag:building=commercial
color: '#ec5bcf'
types:
- commercial
- office
- industrial
- retail
- supermarket
- warehouse
- kiosk
- mall
- shop
religious:
name: tag:building=religious
color: '#af29cc'
types:
- religious
- cathedral
- chapel
- church
- mosque
- temple
- synagogue
- shrine
- monastery
amenity:
name: tag:amenity
color: '#2935cc'
types:
- kindergarten
- civic
- government
- hospital
- school
- university
- grandstand
- public
- toilets
- college
agriculture:
name: tag:building=agriculture
color: '#92e934'
types:
- bakehouse
- barn
- cowshed
- farm_auxiliary
- greenhouse
- stable
- sty
- kitchen
- slurry_tank
- silo
industrial:
name: tag:landuse=industrial
color: '#e2da1b'
types:
- construction
- garbage_shed
- transformer_tower
- service
- water_tower
- industrial
- warehouse
- storage_tank
transportation:
name: tag:building=transportation
color: '#1bb5e2'
types:
- carport
- garage
- garages
- bridge
- hangar
- parking
- train_station
- transportation
sport:
name: tag:sport
color: '#e21b66'
types:
- pavilion
- riding_hall
- stadium
- sports_hall
roof:
name: tag:building=roof
color: '#afafaf7f'
types:
- roof
shelter:
name: tag:amenity=shelter
color: '#cc8725'
types:
- cabin
- hut
- shed
military:
name: tag:building=military
color: '#4a7300'
types:
- bunker
- military
unspecified:
name: tag:building=generic
color: '#7f7f7f'
types:
- 'yes'
- generic
other:
name: other
color: '#ff0000'
types: []
Loading…
Cancel
Save