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.
102 lines
4.5 KiB
102 lines
4.5 KiB
type: "overpass"
|
|
query:
|
|
15: |
|
|
(
|
|
nwr[historic];
|
|
nwr[tourism~'^(attraction|artwork)$'];
|
|
nwr[heritage];
|
|
nwr[amenity~'^(fountain|arts_centre)$'];
|
|
)
|
|
feature:
|
|
pre: |
|
|
{% set color = 'red' %}
|
|
{% set str = 'No image, wikimedia_commons or wikidata' %}
|
|
|
|
{% if tags.wikidata %}
|
|
{% set color = 'blue' %}
|
|
{% set str = 'has wikidata tag' %}
|
|
{% set wikidata = tags.wikidata|wikidataEntity %}
|
|
|
|
{% if wikidata.claims.P31[0].mainsnak.datavalue.value.id in ['Q5'] %}
|
|
{% set color = 'magenta' %}
|
|
{% set str = "wikidata points to a human, should most likely be 'subject:wikidata'" %}
|
|
{% endif %}
|
|
|
|
{% elseif tags.wikimedia_commons or tags.image %}
|
|
{% set color = 'cyan' %}
|
|
{% set str = tags.wikimedia_commons ? 'has wikimedia_commons tag' : 'has image tag' %}
|
|
|
|
{% endif %}
|
|
|
|
body: |
|
|
{{ str }}
|
|
|
|
style:
|
|
color: |
|
|
{{ color }}
|
|
|
|
description: |
|
|
{% if tags.historic and tags.historic != 'yes' %}
|
|
{{ tagTransList('historic', tags.historic) }}
|
|
{% if tags.historic == 'memorial' and tags.memorial %}
|
|
({{ tagTransList('memorial', tags.memorial) }})
|
|
{% endif %}
|
|
{% elseif tags.tourism %}
|
|
{{ tagTransList('tourism', tags.tourism) }}
|
|
{% elseif tags.amenity %}
|
|
{{ tagTrans('amenity', tags.amenity) }}
|
|
{% elseif tags.heritage %}
|
|
{{ keyTrans('heritage') }}
|
|
{% endif %}
|
|
markerSymbol: "{{ markerPointer({ fillColor: color })|raw }}"
|
|
listMarkerSymbol: "{{ markerCircle({ fillColor: color })|raw }}"
|
|
filter:
|
|
type:
|
|
name: "{{ trans('filter:type') }}"
|
|
show_default: "true"
|
|
query: "nwr[{{ value }}]"
|
|
type: "select"
|
|
key: "tourism"
|
|
values: |
|
|
<option value='tourism-artwork' query='nwr[tourism=artwork]'>{{ tagTrans('tourism', 'artwork') }}</option>
|
|
<option value='tourism-attraction' query='nwr[tourism=attraction]'>{{ tagTrans('tourism', 'attraction') }}</option>
|
|
<option value='historic-memorial' query='nwr[historic=memorial]'>{{ tagTrans('historic', 'memorial') }}</option>
|
|
<option value='historic-monument' query='nwr[historic=monument]'>{{ tagTrans('historic', 'monument') }}</option>
|
|
<option value='historic-wayside_cross' query='nwr[historic=wayside_cross]'>{{ tagTrans('historic', 'wayside_cross') }}</option>
|
|
<option value='historic-wayside_shrine' query='nwr[historic=wayside_shrine]'>{{ tagTrans('historic', 'wayside_shrine') }}</option>
|
|
<option value='historic-building' query='nwr[historic=building]'>{{ tagTrans('historic', 'building') }}</option>
|
|
<option value='historic-other' query='nwr[historic][historic!~"^(memorial|monument|wayside_cross|wayside_shrine|building)$"]'>{{ keyTrans('historic') }} {{ trans('other') }}</option>
|
|
<option value='fountain' query='nwr[amenity=fountain]'>{{ tagTrans('amenity', 'fountain') }}</option>
|
|
<option value='arts_centre' query='nwr[amenity=arts_centre]'>{{ tagTrans('amenity', 'arts_centre') }}</option>
|
|
<option value='heritage' query='nwr[heritage]'>{{ keyTrans('heritage') }}</option>
|
|
op: "has"
|
|
info: |
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
{{ markerCircle({ fillColor: 'red' })|raw }}
|
|
</td>
|
|
<td>No image, wikimedia_commons or wikidata</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
{{ markerCircle({ fillColor: 'magenta' })|raw }}
|
|
</td>
|
|
<td>wikidata tag points to a human, should most likely be 'subject:wikidata'</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
{{ markerCircle({ fillColor: 'cyan' })|raw }}
|
|
</td>
|
|
<td>image or wikimedia_commons tag but no wikidata</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
{{ markerCircle({ fillColor: 'blue' })|raw }}
|
|
</td>
|
|
<td>has wikidata tag</td>
|
|
</tr>
|
|
</table>
|
|
|
|
This category lists artwork, memorials, historic and heritage protected objects. These should have an <a target="_blank" href="https://wiki.openstreetmap.org/wiki/Key:image">image</a> or <a target="_blank" href="https://wiki.openstreetmap.org/wiki/Key:wikimedia_commons">wikimedia_commons</a> tag, or (even better) a <a target="_blank" href="https://wiki.openstreetmap.org/wiki/Key:wikidata">wikidata</a> tag pointing to the object's entry.<br>
|
|
Memorials erroneously often have a wikidata (and wikipedia) tag of the person/event, which should be changed to <a target="_blank" href="https://wiki.openstreetmap.org/wiki/Key:wikidata#Secondary_Wikidata_links">subject:wikidata</a> resp. <a target="_blank" href="https://wiki.openstreetmap.org/wiki/Key:wikipedia#Secondary_Wikipedia_links">subject:wikipedia</a>".
|