Merge develop
All checks were successful
/ deploy_on_hosted (push) Successful in 20m32s

This commit is contained in:
Pieter Vander Vennet 2025-04-17 02:09:59 +02:00
commit fe33ae5415
3469 changed files with 114196 additions and 50590 deletions

View file

@ -13,5 +13,5 @@ To making merging smooth, please make sure that each of the following conditions
- [ ] The codebase is GPL-licensed. By opening a pull request, the new theme will be GPL too
- [ ] All images are included in the pull request and no images are loaded from an external service (e.g. Wikipedia)
- [ ] The [guidelines on how to make your own theme](https://github.com/pietervdvn/MapComplete/blob/master/Docs/Making_Your_Own_Theme.md)
- [ ] The [guidelines on how to make your own theme](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/master/Docs/Making_Your_Own_Theme.md)
are read and followed

View file

@ -1,4 +1,5 @@
on:
workflow_dispatch:
schedule:
- cron: "0 2 * * *"
@ -6,10 +7,10 @@ jobs:
daily_data_maintenance:
runs-on: [ ubuntu-latest, hetzner-access ]
steps:
- uses: actions/checkout@v3
- uses: https://source.mapcomplete.org/actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
uses: https://source.mapcomplete.org/actions/setup-node@v4
with:
node-version: "20"
cache: "npm"

View file

@ -1,4 +1,5 @@
on:
workflow_dispatch:
push:
branches-ignore:
- build/*
@ -8,21 +9,21 @@ jobs:
deploy_on_hosted:
runs-on: [ubuntu-latest, hetzner-access]
steps:
- uses: actions/checkout@v3
- uses: https://source.mapcomplete.org/actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
uses: https://source.mapcomplete.org/actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: package-lock.json
- name: install deps
run: npm ci
shell: bash
- name: create generated dir
run: mkdir ./assets/generated
run: mkdir -p ./assets/generated
shell: bash
- name: create dependencies
@ -43,24 +44,50 @@ jobs:
export NODE_OPTIONS="--max-old-space-size=8192"
npm run clean:tests
npm run generate:doctests 2>&1 | grep -v "No doctests found in"
vitest --run test
npm run clean:tests
vitest --run test && npm run clean:tests
shell: bash
- name: Build files
run: npm run build
- name: Zipping dist file
run: |
mv dist ${{ github.ref_name }}
zip ${{ github.ref_name }}.zip -r ${{ github.ref_name }}/*
BRANCH=$(echo ${{ github.ref_name }} | sed 's/\//-/g')
rm -rf /tmp/${BRANCH}
mv dist /tmp/${BRANCH}
cd /tmp
zip ${BRANCH}.zip -r ${BRANCH}/*
cd -
- name: uploading file
run: scp ${{ github.ref_name }}.zip hetzner:/root/staging/
run: |
BRANCH=$(echo ${{ github.ref_name }} | sed 's/\//-/g')
scp /tmp/${BRANCH}.zip hetzner:/root/staging/
- name: cleanup files
run: |
BRANCH=$(echo ${{ github.ref_name }} | sed 's/\//-/g')
rm /tmp/${BRANCH}.zip && rm -rf /tmp/${BRANCH}/
- name: unzipping remote file
run: ssh hetzner "cd /root/staging && rm -rf ${{ github.ref_name }} && unzip ${{ github.ref_name }}.zip && rm -rf /root/public/${{ github.ref_name }} && mv /root/staging/${{ github.ref_name }}/ /root/public/ && rm ${{ github.ref_name }}.zip && /root/public/build_index.sh"
run: |
BRANCH=$(echo ${{ github.ref_name }} | sed 's/\//-/g')
ssh hetzner "cd /root/staging && rm -rf ${BRANCH} && unzip ${BRANCH}.zip && rm -rf /root/public/${BRANCH} && mv /root/staging/${BRANCH}/ /root/public/ && date --iso > /root/public/${BRANCH}/date.txt && rm ${BRANCH}.zip"
- name: Comment on the PR
run: |
BRANCH=$(echo ${{ github.ref_name }} | sed 's/\//-/g')
PR_NUMBER=$(echo ${{ github.event.pull_request.number || github.event.issue.number }})
if [[ -n "$PR_NUMBER" ]]
then
echo "Found a pull request or issue number, will post to $PR_NUMBER ..."
MSG=$(echo "Congratulations! This PR been successfully built and has been deployed. It is (temporarily) available on https://builds.mapcomplete.org/${BRANCH}")
BODY="{\"body\": \"$MSG\"}"
# Token must have following permissions: issue > read and write
curl -X POST "https://source.mapcomplete.org/api/v1/repos/${GITHUB_REPOSITORY}/issues/${PR_NUMBER}/comments" \
-H "Content-Type: application/json" \
-H "Authorization: token $FORGEJO_TOKEN" \
-d "$BODY"
fi
env:
FORGEJO_TOKEN: ${{ secrets.FORGEJO_TOKEN }}

View file

@ -7,10 +7,10 @@ jobs:
deploy_single_theme:
runs-on: [ ubuntu-latest, hetzner-access ]
steps:
- uses: actions/checkout@v3
- uses: https://source.mapcomplete.org/actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
uses: https://source.mapcomplete.org/actions/setup-node@v4
with:
node-version: "20"
cache: "npm"

View file

@ -0,0 +1,43 @@
on:
workflow_dispatch:
schedule:
- cron: "0 0 1 */2 *"
jobs:
daily_data_maintenance:
runs-on: [ lain ]
steps:
- uses: https://source.mapcomplete.org/actions/checkout@v4
- name: Set up Node.js
uses: https://source.mapcomplete.org/actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: package-lock.json
- name: Init all dependencies and layers
shell: bash
run: npm ci && npm run init
- name: Create export script
shell: bash
run: npm run build:dbscript # output: build_db.lua
- name: Print planet file date
shell: bash
run: |
# LAIN has a weekly updated planet file in /data/planet-latest.osm.pbf
# See https://source.mapcomplete.org/MapComplete/planet-file-updater
TIMESTAMP=$(osmium fileinfo /data/planet-latest.osm.pbf -g header.option.timestamp)
DATE=$(echo $TIMESTAMP | sed "s/T.*//")
echo $DATE
# Create a new database in postgres
npm run create:database -- -- $DATE
echo "Seeding database '$DATE'"
osm2pgsql -O flex -S build_db.lua -s --flat-nodes=import-help-file -d postgresql://user:password@localhost:5444/osm-poi.${DATE} /data/planet-latest.osm.pbf
npm run delete:database:old

1
.github/FUNDING.yml vendored
View file

@ -1 +0,0 @@
liberapay: pietervdvn

1
.gitignore vendored
View file

@ -51,3 +51,4 @@ dist-full/
public/assets/icons/*.webp
uploaded_images.json
/app/dist/
src/assets/bing.json

View file

@ -1,7 +1,7 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: MapComplete
Upstream-Contact: Pieter Vander Vennet <pietervdvn@posteo.net>
Source: https://github.com/pietervdvn/MapComplete
Source: https://source.mapcomplete.org/MapComplete/MapComplete/
Files: scripts/* src/* *.html Docs/* langs/* test/* ublic/css/* CODE_OF_CONDUCT.md CONTRIBUTING.md README.md package.json
Copyright: MapComplete contributors

View file

@ -1,25 +1,54 @@
{
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "themes", "section": "Theme improvements"},
{"type": "UX",
"section": "User experience improvements"
},
{
"type": "UI",
"section": "User interface improvements"
},
{"type": "Search",
"section": "Search related features"
},
{"type": "chore", "hidden": true},
{"type": "docs", "hidden": true},
{"type": "style", "hidden": true},
{"type": "refactor", "hidden": true},
{"type": "perf", "hidden": true},
{"type": "test", "hidden": true}
],
"commitUrlFormat": "https://github.com/pietervdvn/mapcomplete/commits/{{hash}}",
"compareUrlFormat": "https://github.com/pietervdvn/mapcomplete/compare/{{previousTag}}...{{currentTag}}"
}
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "themes",
"section": "Theme improvements"
},
{
"type": "UX",
"section": "User experience improvements"
},
{
"type": "UI",
"section": "User interface improvements"
},
{
"type": "Search",
"section": "Search related features"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
],
"commitUrlFormat": "https://source.mapcomplete.org/MapComplete/MapComplete/commits/{{hash}}",
"compareUrlFormat": "https://source.mapcomplete.org/MapComplete/MapComplete/compare/{{previousTag}}...{{currentTag}}"
}

View file

@ -53,5 +53,12 @@
"[svelte]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true
"editor.formatOnSave": true,
"gitlens.remotes": [
{
"domain": "source.mapcomplete.org",
"type": "Gitea",
"name": "MapComplete Forgejo"
}
]
}

File diff suppressed because it is too large Load diff

View file

@ -7,7 +7,7 @@ There are multiple ways to contribute:
- Translating MapComplete to your own language can be done
on [the Weblate website](https://translate.mapcomplete.org/projects/mapcomplete/)
- If you encounter a bug, the [issue tracker](https://github.com/pietervdvn/MapComplete/issues) is the place to be
- If you encounter a bug, the [issue tracker](https://source.mapcomplete.org/MapComplete/MapComplete/issues) is the place to be
- A good start to contribute is to create a single map layer showing features which interest you. Read more about [making your own theme](/Docs/Making_Your_Own_Theme.md).
- Feel free to hop in [our chat channel on matrix](https://app.element.io/#/room/#MapComplete:matrix.org)
- If you want to improve a theme, create a new theme, spot a typo in the repo... the best way is to open a pull request.
@ -19,9 +19,9 @@ Rights of contributors
-----------------------
If you have write access to the repository, you can make a fork of an already existing branch and push this new branch
to GitHub. This means that this branch will be _automatically built_ and be **deployed**
to `https://pietervdvn.github.io/mc/<branchname>`. You can see the deploy process
on [GitHub Actions](https://github.com/pietervdvn/MapComplete/actions). Don't worry about pushing too much. These
to Forgejo. This means that this branch will be _automatically built_ and be **deployed**
to `https://builds.mapcomplete.org/<branchname>`. You can see the deploy process
on [Forgejo Actions](https://source.mapcomplete.org/MapComplete/MapComplete/actions). Don't worry about pushing too much. These
deploys are free and totally automatic. They might fail if something is wrong, but this will hinder no one.
Additionally, some other maintainer might step in and merge the latest develop with your branch, making later pull

View file

@ -8,6 +8,7 @@
- advertising
- aerialway
- all_streets
- ambulancestation
- animal_shelter
- assembly_point
@ -42,6 +43,7 @@
- climbing_route
- clock
- crossings
- cyclestreets
- cycleways_and_roads
- cyclist_waiting_aid
- defibrillator
@ -125,7 +127,6 @@
- tourism_accomodation
- trail
- transit_stops
- tree_node
- vending_machine
- viewpoint
- village_green
@ -248,6 +249,7 @@
- shops
- sports_centre
- tertiary_education
- toilet
- vending_machine
- veterinary
@ -271,6 +273,7 @@
- shops
- sports_centre
- tertiary_education
- toilet
### opening_hours_by_appointment
@ -285,6 +288,8 @@
- artwork
- ghost_bike
- memorial
- tree_node
- wayside_shrine
### wikipedia
@ -304,6 +309,10 @@
- artwork
- memorial
### wayside_shrine.shrine_questions
- artwork
### preset_description
- assisted_repair
@ -362,11 +371,20 @@
- toilet
- vending_machine
### indoor
- atm
- clock
### artwork.*artwork-question
- bench
- drinking_water
### memorial.*memorial-specific
- bench
### description
- bicycle_library
@ -423,11 +441,22 @@
- toilet
- toilet_at_amenity
- vending_machine
- wayside_shrine
### shops.*
- bike_shop
### address.address
- building
- dentist
- doctors
- hospital
- pharmacy
- physiotherapist
- school
### wheelchair-access
- cafe_pub
@ -489,6 +518,15 @@
- food
- shops
### caravansites.caravansites-toilets
- campsite
### toilet_at_amenity.toilets-wheelchair
- campsite
- tourism_accomodation
### questions
- campsite
@ -570,10 +608,6 @@
- climbing_gym
### indoor
- clock
### all_tags
- cycle_highways
@ -581,14 +615,13 @@
- search
- summary
### address.address
### cyclestreets.is_cyclestreet
- dentist
- doctors
- hospital
- pharmacy
- physiotherapist
- school
- cycleways_and_roads
### cyclestreets.supplementary_sign
- cycleways_and_roads
### seasonal
@ -732,31 +765,7 @@
- tertiary_education
### toilet.toilets-type
- toilet_at_amenity
### toilet.toilets-changing-table
- toilet_at_amenity
### toilet.toilet-changing_table:location
- toilet_at_amenity
### toilet.toilet-handwashing
- toilet_at_amenity
### toilet.toilet-has-paper
- toilet_at_amenity
### toilet.menstrual_products
- toilet_at_amenity
### toilet.menstrual_products_location
### toilet.prefixed
- toilet_at_amenity

View file

@ -14,6 +14,11 @@ This is a special layer - data is not sourced from OpenStreetMap
## Table of contents
1. [Supported attributes](#supported-attributes)
2. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [Opening hours](#opening-hours)
- [Opening hours](#opening-hours)
- [Opening hours](#opening-hours)
- [questions](#questions)
- [images](#images)
- [images_no_blur](#images_no_blur)
@ -71,11 +76,11 @@ This is a special layer - data is not sourced from OpenStreetMap
- [seating](#seating)
- [maxstay](#maxstay)
- [name](#name)
2. [Filters](#filters)
3. [Filters](#filters)
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -99,7 +104,7 @@ This is a special layer - data is not sourced from OpenStreetMap
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/level#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/level/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/smoking#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/smoking/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [smoking](https://wiki.openstreetmap.org/wiki/Key:smoking) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dno) [outside](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Doutside) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/hearing_loop#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/hearing_loop/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [hearing_loop](https://wiki.openstreetmap.org/wiki/Key:hearing_loop) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) [terminal;wifi](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wifi) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) [terminal;wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wlan) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Afee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:ssid#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Assid/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/survey:date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/survey%3Adate/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) |
@ -115,6 +120,64 @@ This is a special layer - data is not sourced from OpenStreetMap
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/maxstay#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/maxstay/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) | [pfloat](../SpecialInputElements.md#pfloat) | [unlimited](https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [questions](#questions) | _{questions()}_ | | _Multiple choice only_ |
| [images](#images) | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [images_no_blur](#images_no_blur) | _{image_carousel()}{image_upload(,,,true)}_ | | _Multiple choice only_ |
| [mapillary](#mapillary) | _{mapillary_link()}_ | | _Multiple choice only_ |
| [export_as_gpx](#export_as_gpx) | _{export_as_gpx()}_ | | _Multiple choice only_ |
| [export_as_geojson](#export_as_geojson) | _{export_as_geojson()}_ | | _Multiple choice only_ |
| [wikipedia](#wikipedia) | What is the corresponding Wikidata entity?<br/>_{wikipedia():max-height:25rem}_<br/>2 options | | *[wikidata](https://wiki.osm.org/wiki/Key:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [reviews](#reviews) | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
| [phone](#phone) | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [mastodon](#mastodon) | What is the Mastodon-handle of ?<br/>_{fediverse_link(contact:mastodon)}_ | | *[contact:mastodon](https://wiki.osm.org/wiki/Key:contact:mastodon)* ([fediverse](../SpecialInputElements.md#fediverse)) |
| [facebook](#facebook) | What is the facebook page of of ?<br/>_{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}<div class='subtle text-sm'>Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives</div>_ | | *[contact:facebook](https://wiki.osm.org/wiki/Key:contact:facebook)* ([url](../SpecialInputElements.md#url)) |
| [osmlink](#osmlink) | _<a href='https://openstreetmap.org/{id}' target='_blank' rel='noopener'F><img src='./assets/svg/osm-logo-us.svg'/></a>_<br/>1 options | | _Multiple choice only_ |
| [email](#email) | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [website](#website) | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [wheelchair-access](#wheelchair-access) | Is this place accessible with a wheelchair?<br/>4 options | | _Multiple choice only_ |
| [dog-access](#dog-access) | Are dogs allowed in this business?<br/>5 options | | _Multiple choice only_ |
| [description](#description) | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.<br/>_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) |
| [opening_hours](#opening_hours) | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [opening_hours_24_7](#opening_hours_24_7) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [opening_hours_24_7_default](#opening_hours_24_7_default) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [opening_hours_by_appointment](#opening_hours_by_appointment) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>3 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [service:electricity](#service:electricity) | Does this amenity have electrical outlets, available to customers when they are inside?<br/>4 options | | _Multiple choice only_ |
| [payment-options](#payment-options) | Which methods of payment are accepted here?<br/>3 options | | _Multiple choice only_ |
| [payment-options-split](#payment-options-split) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options))_ | Which methods of payment are accepted here?<br/>7 options | | _Multiple choice only_ |
| [payment-options-advanced](#payment-options-advanced) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options))_ | Which methods of payment are accepted here?<br/>5 options | | _Multiple choice only_ |
| [denominations-coins](#denominations-coins) | What coins can you use to pay here?<br/>15 options | | _Multiple choice only_ |
| [denominations-notes](#denominations-notes) | what notes can you use to pay here?<br/>13 options | | _Multiple choice only_ |
| [all_tags](#all_tags) | _{all_tags()}_ | | _Multiple choice only_ |
| [multilevels](#multilevels) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | What levels does this elevator go to?<br/>_This elevator goes to floors {level}_<br/>5 options | | *[level](https://wiki.osm.org/wiki/Key:level)* ([string](../SpecialInputElements.md#string)) |
| [repeated](#repeated) | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ |
| [single_level](#single_level) | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) |
| [smoking](#smoking) | Is smoking allowed at ?<br/>3 options | | _Multiple choice only_ |
| [induction-loop](#induction-loop) | Does this place have an audio induction loop for people with reduced hearing?<br/>2 options | | _Multiple choice only_ |
| [internet](#internet) | Does this place offer internet access?<br/>6 options | internet-all | _Multiple choice only_ |
| [internet-fee](#internet-fee) | Is there a fee for internet access?<br/>3 options | internet-all | _Multiple choice only_ |
| [internet-ssid](#internet-ssid) | What is the network name for the wireless internet access?<br/>_The network name is <b>{internet_access:ssid}</b>_<br/>1 options | internet-all | *[internet_access:ssid](https://wiki.osm.org/wiki/Key:internet_access:ssid)* ([string](../SpecialInputElements.md#string)) |
| [luminous_or_lit](#luminous_or_lit) | Is this object lit or does it emit light?<br/>4 options | | _Multiple choice only_ |
| [survey_date](#survey_date) | When was this object last surveyed?<br/>_This object was last surveyed on <b>{survey:date}</b>_<br/>1 options | | *[survey:date](https://wiki.osm.org/wiki/Key:survey:date)* ([date](../SpecialInputElements.md#date)) |
| [check_date](#check_date) | When was this object last checked?<br/>_This object was last checked on <b>{check_date}</b>_<br/>1 options | | *[check_date](https://wiki.osm.org/wiki/Key:check_date)* ([date](../SpecialInputElements.md#date)) |
| [sugar_free](#sugar_free) | Does this shop have a sugar free offering?<br/>4 options | diets | _Multiple choice only_ |
| [lactose_free](#lactose_free) | Does have a lactose-free offering?<br/>4 options | diets | _Multiple choice only_ |
| [gluten_free](#gluten_free) | Does this shop have a gluten free offering?<br/>4 options | diets | _Multiple choice only_ |
| [vegan](#vegan) | Does this place offer a vegan option?<br/>4 options | diets | _Multiple choice only_ |
| [lod](#lod) | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
| [split_button](#split_button) | _{split_button()}_ | | _Multiple choice only_ |
| [seasonal](#seasonal) | Is available all around the year?<br/>3 options | | _Multiple choice only_ |
| [shower](#shower) | Does this facility offer showers?<br/>4 options | | _Multiple choice only_ |
| [preset_description](#preset_description) | _{preset_description()}_ | | _Multiple choice only_ |
| [brand](#brand) | Is part of a bigger brand?<br/>_Part of {brand}_<br/>1 options | | *[brand](https://wiki.osm.org/wiki/Key:brand)* ([string](../SpecialInputElements.md#string)) |
| [indoor](#indoor) | Is this object located indoors?<br/>2 options | | _Multiple choice only_ |
| [seating](#seating) | What kind of seating does have?<br/>2 options | | _Multiple choice only_ |
| [maxstay](#maxstay) | What is the maximum amount of time one is allowed to stay here?<br/>_One can stay at most <b>{canonical(maxstay)}</b>_<br/>1 options | | *[maxstay](https://wiki.osm.org/wiki/Key:maxstay)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [name](#name) | What is the name of this place?<br/>_<b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
### questions
Show the questions block at this location
_This tagrendering has no question and is thus read-only_
@ -150,7 +213,7 @@ Shows a wikipedia box with the corresponding wikipedia article; the wikidata-ite
The question is `What is the corresponding Wikidata entity?`
*{wikipedia():max-height:25rem}* is shown if `wikidata` is set
- *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_
- *No Wikipedia page has been linked yet* is shown if with wikipedia~.+. _This option cannot be chosen as answer_
- *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_
### reviews
@ -406,7 +469,7 @@ The question is `Does this place offer internet access?`
- *This place offers internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/computer'> *This place offers internet access via a terminal or computer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal' target='_blank'>terminal</a>
- *This place offers wired internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired' target='_blank'>wired</a>
- *This place offers both wireless internet and internet access via a terminal or computer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wifi' target='_blank'>terminal;wifi</a>
- *This place offers both wireless internet and internet access via a terminal or computer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wlan' target='_blank'>terminal;wlan</a>
This tagrendering has labels
`internet-all`

View file

@ -6,7 +6,7 @@ There are various scripts to help set up MapComplete for developing and for depl
This documents attempts to shed some light on these scripts.
Note: these scripts change every now and then - if the documentation here is incorrect or you run into troubles, do
leave a message in [the issue tracker](https://github.com/pietervdvn/MapComplete/issues)
leave a message in [the issue tracker](https://source.mapcomplete.org/MapComplete/MapComplete/issues)
Architecture overview
---------------------

View file

@ -102,7 +102,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| Aargau-AGIS-2020 | Kanton Aargau 20cm (AGIS 2020) | photo | | AGIS OF2020 |
| Aargau-AGIS-2021 | Kanton Aargau 20cm (AGIS 2021) | photo | | AGIS OF2021 |
| Aargau-AGIS-2022 | Kanton Aargau 20cm (AGIS 2022) | photo | | AGIS OF2022 |
| Aargau-AGIS-2023 | Kanton Aargau 20cm (AGIS 2023) | photo | | AGIS OF2023 |
| Aargau-AGIS-2023 | Kanton Aargau 20cm (AGIS 2023) | photo | | AGIS OF2023 |
| Aargau-AGIS-2014 | Kanton Aargau 25cm (AGIS 2014) | photo | | AGIS OF2014 |
| Aargau-AGIS-2016 | Kanton Aargau 25cm (AGIS 2016) | photo | | AGIS OF2016 |
| Aargau-AGIS-2017 | Kanton Aargau 25cm (AGIS 2017) | photo | | AGIS OF2017 |
@ -235,13 +235,14 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| Catastro-Spain | Catastro Spain | other | | |
| GRAFCAN-Canary_Islands | GRAFCAN OrtoExpress Urbana - Canary Islands | historicphoto | ⭐ | GRAFCAN OrtoExpress Urbana |
| GRAFCAN_Express-Canary_Islands | GRAFCAN OrtoExpress - Canary Islands | photo | | GRAFCAN OrtoExpress |
| ICGC-orto25c | ICGC - Ortofoto de Catalunya 1:2.500 vigent | photo | ⭐ | Institut Cartogràfic i Geològic de Catalunya |
| ICGC-orto | ICGC - Ortofoto de Catalunya | photo | ⭐ | Institut Cartogràfic i Geològic de Catalunya |
| ICGC-topo | ICGC - Topogràfic de Catalunya | other | | Institut Cartogràfic i Geològic de Catalunya |
| PNOA-Spain-TMS | PNOA Spain | photo | ⭐ | PNOA |
| SITNA-catastro | Catastro Navarra | other | | SITNA - Gobierno de Navarra / Nafarroako Gobernua |
| geoEuskadi-basemap | geoEuskadiren Kartografia | map | | Eusko Jaurlaritza / Gobierno Vasco. geoEuskadi |
| geoEuskadi-ORTO | geoEuskadiren Ortoargazkiak | photo | ⭐ | Eusko Jaurlaritza / Gobierno Vasco. geoEuskadi |
| IDEIB | IDEIB - Ortofoto més recent de les Illes Balears | photo | ⭐ | Infraestructura de Dades Espacials de les Illes Balears |
| ortofotos-madrid-2023 | Ortofotos Madrid (mayo 2023) | photo | | Ayuntamiento de Madrid |
| hri-orto | Helsinki region orthophoto | photo | ⭐ | © Espoon, Helsingin ja Vantaan kaupungit, Kirkkonummen ja Nurmijärven kunnat sekä HSL ja HSY |
| mml-orto | MML Orthophoto | photo | ⭐ | © Maanmittauslaitos |
| mml-tausta | MML Background Map | map | | © Maanmittauslaitos |
@ -413,6 +414,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| Budapest_XI_2019 | Budapest district XI orthophoto 2019 | historicphoto | | Budapest XI. kerület önkormányzata |
| Budapest_XI_2021 | Budapest district XI orthophoto 2021 | historicphoto | | Budapest XI. kerület önkormányzata |
| Budapest_XI_2023 | Budapest district XI orthophoto 2023 | photo | ⭐ | Budapest XI. kerület önkormányzata |
| FOMI_2015_leafoff_20cm | FÖMI orthophoto 2015 leaf-off 20cm (webp) | photo | | Lechner Tudásközpont |
| OpenStreetMap-turistautak | OpenStreetMap (turistautak) | osmbasedmap | | © OpenStreetMap contributors |
| Torokbalint-orthophoto-2013 | Törökbálint orthophoto 2013 | historicphoto | | Törökbálint |
| Torokbalint-orthophoto-2015 | Törökbálint orthophoto 2015 | historicphoto | | Törökbálint |
@ -563,6 +565,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| LA_County_Basemap | LA County Basemap | map | | Los Angeles County |
| Manhattan_Beach_CA_2023 | City of Manhattan Beach Orthoimagery (2023) | photo | | City of Manhattan Beach |
| Manteca_CA_2022 | City of Manteca Orthoimagery (2022) | photo | | City of Manteca |
| Manteca_CA_2024 | City of Manteca Orthoimagery (2024) | photo | | City of Manteca |
| Modesto_CA_2023 | City of Modesto Orthoimagery (2023) | historicphoto | | City of Modesto |
| Modesto_CA_2024 | City of Modesto Orthoimagery (2024) | photo | | City of Modesto |
| Orange_CA_2022 | Orange County Orthoimagery (2022) | photo | | Orange County |
@ -578,8 +581,10 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| San_Francisco_2024 | San Francisco Orthoimagery (2024) | photo | | City and County of San Francisco |
| San_Francisco_2024_CIR | San Francisco Orthoimagery CIR (2024) | photo | | City and County of San Francisco |
| San_Mateo_CA_2022 | San Mateo County Orthoimagery (2022) | photo | | San Mateo County |
| Santa_Clara_CA_2022 | Santa Clara County Orthoimagery (2022) | photo | | County of Santa Clara |
| Santa_Clara_CA_2023 | Santa Clara County Orthoimagery (2023) | photo | | County of Santa Clara |
| Santa_Clara_County_22w | Santa Clara County Orthoimagery (Winter 2022) | historicphoto | | County of Santa Clara |
| Santa_Clara_County_23s | Santa Clara County Orthoimagery (Spring 2023) | historicphoto | | County of Santa Clara |
| Santa_Clara_County_24s | Santa Clara County Orthoimagery (Spring 2024) | photo | | County of Santa Clara |
| Santa_Clara_County_24w | Santa Clara County Orthoimagery (Winter 2024) | photo | | County of Santa Clara |
| Santa_Rosa_CA_2022 | City of Santa Rosa Orthoimagery (2022) | photo | | City of Santa Rosa |
| Solano_CA_2022 | Solano County Orthoimagery (2022) | historicphoto | | Solano County |
| Solano_CA_2023 | Solano County Orthoimagery (2023) | historicphoto | | Solano County |
@ -592,8 +597,9 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| MCGIS-County-Valleywide-Imagery-2022 | Mesa County GIS Valleywide 2022 | photo | | Mesa County GIS |
| MCGIS-County-Valleywide-Imagery-2024 | Mesa County GIS Valleywide 2024 | photo | | Mesa County GIS |
| CT_ECO_Ortho_2019_RGB | CT ECO Orthoimagery (2019) | historicphoto | | Connecticut Environmental Conditions Online |
| CT_ECO_Ortho_2023_RGB | CT ECO Orthoimagery (2023) | photo | | Connecticut Environmental Conditions Online |
| CT_ECO_Shaded_relief_2016 | CT ECO Shaded Relief | elevation | | Connecticut Environmental Conditions Online |
| CT_ECO_Ortho_2023_RGB | CT ECO Orthoimagery (2023) | photo | ⭐ | Connecticut Environmental Conditions Online |
| CT_ECO_Shaded_relief_2016 | CT ECO Shaded Relief (2016) | elevation | | Connecticut Environmental Conditions Online |
| CT_ECO_Shaded_relief_2023 | CT ECO Shaded Relief (2023) | elevation | | Connecticut Environmental Conditions Online |
| MetroCOG_Ortho_2020 | MetroCOG Orthoimagery (2020) | photo | | Connecticut Metropolitan Council of Governments |
| DC_From_Above_Ortho_2019 | DC From Above Orthophoto 2019 | historicphoto | | OCTO, DCGIS |
| DC_From_Above_Ortho_2021 | DC From Above Orthophoto 2021 | historicphoto | | OCTO, DCGIS |
@ -819,6 +825,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| StratMap21_NCCIR_CapArea_Brazos_Kerr | StratMap CapArea, Brazos & Kerr Imagery (Natural Color 2021) | photo | ⭐ | Strategic Mapping Program (StratMap). CapArea, Brazos & Kerr Imagery |
| Stratmap20_NCCIR_CapArea_McLennan | StratMap CapArea & McLennan Imagery (Natural Color 2020) | photo | | Strategic Mapping Program (StratMap). CapArea & McLennan Imagery |
| Fairfax_VA_2024 | Fairfax County Orthoimagery (2024) | photo | ⭐ | Government of Fairfax County, Virginia |
| Henrico_VA_2024 | Henrico County Aerial Imagery (2024) | photo | | Henrico County Government |
| VBMPImagery_Most_Recent | VBMP Most Recent Imagery | photo | | Virginia Geographic Information Network, Commonwealth of Virginia |
| VCGI_LiDAR_DEM_Hillshade | VCGI LiDAR - DEM Hillshade | elevation | | Vermont Center for Geographic Information |
| VCGI_LiDAR_DSM_Hillshade | VCGI LiDAR - DSM Hillshade | elevation | | Vermont Center for Geographic Information |
@ -928,7 +935,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| Environment_Canterbury_Imagery | Environment Canterbury Imagery | photo | | Environment Canterbury |
| LINZ_Cyclone_Gabrielle_Hawkes_Bay | LINZ Cyclone Gabrielle Hawke's Bay | photo | ⭐ | Sourced from LINZ CC-BY 4.0 |
| LINZ_NZ_Aerial_Imagery | LINZ NZ Aerial Imagery | photo | ⭐ | Sourced from LINZ CC-BY 4.0 |
| LINZ_Auckland_2010 | LINZ Auckland 2010-2012 | historicphoto | | Sourced from LINZ CC-BY 4.0 |
| LINZ_Auckland_2017 | LINZ Auckland 2017 | historicphoto | | Sourced from LINZ CC-BY 4.0 |
| LINZ_Auckland_2023 | LINZ Auckland 2023 | photo | ⭐ | Sourced from LINZ CC-BY 4.0 |
| LINZ_Bay_of_Plenty_2014 | LINZ Bay of Plenty 2014-2015 | historicphoto | | Sourced from LINZ CC-BY 4.0 |
| LINZ_Christchurch_2015 | LINZ Christchurch 2015-2016 | historicphoto | | Sourced from LINZ CC-BY 4.0 |

View file

@ -7,6 +7,7 @@ MapComplete supports the following keys:
-----|----- |
| `B` | Opens the background layers panel |
| `F` | Open the favourites page |
| `H` | Jump to your home location. Only works if you did set your home location in the user preferences |
| `L` | Pan the map to the current location or zoom the map to the current location. Requests geopermission |
| `M` | Set the background to a map from external sources. Toggles between the two best, available layers |
| `O` | Set the background layer to on OpenStreetMap-based map (or disable the background raster layer) |

View file

@ -41,7 +41,7 @@ This one fetches all languages and uses the labels in every language as their tr
Of course, real life isn't as easy. There are dialects, differences in notation between Weblate and Wikipedia (e.g. `zh-hant` vs `zh-Hant`). But with a few exceptions, this can be fixed too. Some pragmatism doesn't hurt - even though it is nice that it works for most cases automatically.
[The full script is available here](https://github.com/pietervdvn/MapComplete/blob/develop/scripts/fetchLanguages.ts).
[The full script is available here](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/scripts/fetchLanguages.ts).
# Results

View file

@ -11,6 +11,7 @@ Addresses
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [address_joined](#address_joined)
- [header](#header)
- [housenumber](#housenumber)
@ -37,7 +38,7 @@ Elements must match **any** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -47,6 +48,20 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:unit#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Aunit/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:unit%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/fixme#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/fixme/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [address_joined](#address_joined) | _{group(header,street;housenumber;unit)}_ | address | _Multiple choice only_ |
| [header](#header) | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ |
| [housenumber](#housenumber) | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) |
| [street](#street) | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) |
| [unit](#unit) | What is the unit number or letter?<br/>_The unit number is <b>{addr:unit}</b>_<br/>1 options | address, hidden | *[addr:unit](https://wiki.osm.org/wiki/Key:addr:unit)* ([string](../SpecialInputElements.md#string)) |
| [fixme](#fixme) | What should be fixed here? Please explain<br/>_<b>Fixme description</b>{fixme}_<br/>1 options | | *[fixme](https://wiki.osm.org/wiki/Key:fixme)* ([string](../SpecialInputElements.md#string)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### address_joined
_This tagrendering has no question and is thus read-only_
@ -107,7 +122,11 @@ The question is `What should be fixed here? Please explain`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -20,6 +20,7 @@ We will complete data from advertising features with reference, operator and lit
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [type](#type)
- [animated](#animated)
@ -71,7 +72,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -82,6 +83,24 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/ref#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/ref/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [advertising](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dadvertising) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [type](#type) | Which type of advertising feature is this?<br/>_This is a {advertising}_<br/>13 options | | *[advertising](https://wiki.osm.org/wiki/Key:advertising)* ([string](../SpecialInputElements.md#string)) |
| [animated](#animated) | Does this advertisement cycle through multiple messages?<br/>5 options | | _Multiple choice only_ |
| [luminous_or_lit_advertising](#luminous_or_lit_advertising) <br/> _(Original in [questions](./BuiltinQuestions.md#luminous_or_lit))_ | Is this object lit or does it emit light?<br/>5 options | | _Multiple choice only_ |
| [operator](#operator) | Who operates this feature?<br/>_Operated by {operator}_ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
| [message_type](#message_type) | What kind of message is shown?<br/>10 options | | _Multiple choice only_ |
| [Sides](#Sides) | From how many sides you can watch advertisments?<br/>2 options | | _Multiple choice only_ |
| [ref](#ref) | Wich is the reference number?<br/>_Reference number is {ref}_ | | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) |
| [historic](#historic) | Is this sign for a business that no longer exists or no longer being maintained?<br/>2 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -170,7 +189,11 @@ The question is `Is this sign for a business that no longer exists or no longer
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -13,6 +13,7 @@ We will complete data from advertising features with reference, operator and lit
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [type](#type)
- [animated](#animated)
@ -42,7 +43,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -53,6 +54,24 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/ref#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/ref/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [advertising](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dadvertising) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [type](#type) | Which type of advertising feature is this?<br/>_This is a {advertising}_<br/>13 options | | *[advertising](https://wiki.osm.org/wiki/Key:advertising)* ([string](../SpecialInputElements.md#string)) |
| [animated](#animated) | Does this advertisement cycle through multiple messages?<br/>5 options | | _Multiple choice only_ |
| [luminous_or_lit_advertising](#luminous_or_lit_advertising) <br/> _(Original in [questions](./BuiltinQuestions.md#luminous_or_lit))_ | Is this object lit or does it emit light?<br/>5 options | | _Multiple choice only_ |
| [operator](#operator) | Who operates this feature?<br/>_Operated by {operator}_ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
| [message_type](#message_type) | What kind of message is shown?<br/>10 options | | _Multiple choice only_ |
| [Sides](#Sides) | From how many sides you can watch advertisments?<br/>2 options | | _Multiple choice only_ |
| [ref](#ref) | Wich is the reference number?<br/>_Reference number is {ref}_ | | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) |
| [historic](#historic) | Is this sign for a business that no longer exists or no longer being maintained?<br/>2 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -141,7 +160,11 @@ The question is `Is this sign for a business that no longer exists or no longer
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -11,6 +11,8 @@ Various forms of transport for passengers and goods that use wires, including ca
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [type](#type)
- [duration](#duration)
@ -21,7 +23,7 @@ Various forms of transport for passengers and goods that use wires, including ca
- [length](#length)
- [leftover-questions](#leftover-questions)
- [lod](#lod)
4. [Filters](#filters)
5. [Filters](#filters)
## Themes using this layer
@ -40,7 +42,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -50,6 +52,20 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/oneway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/oneway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [oneway](https://wiki.openstreetmap.org/wiki/Key:oneway) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:oneway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:oneway%3Dno) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [type](#type) | What type of aerialway is this?<br/>11 options | | _Multiple choice only_ |
| [duration](#duration) | How long takes a single journey with this elevator?<br/>_A single journey takes {duration} minutes_ | | *[duration](https://wiki.osm.org/wiki/Key:duration)* ([string](../SpecialInputElements.md#string)) |
| [occupancy](#occupancy) | How many people fit a single carriage?<br/>_{aerialway:occupancy} people fit a single carriage_ | | *[aerialway:occupancy](https://wiki.osm.org/wiki/Key:aerialway:occupancy)* ([string](../SpecialInputElements.md#string)) |
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [oneway](#oneway) | In what direction can this aerialway be taken?<br/>2 options | | _Multiple choice only_ |
| [length](#length) | _This aerialway is {_length:km} kilometer long_ | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -103,7 +119,11 @@ _This tagrendering has no question and is thus read-only_
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### lod

View file

@ -2,6 +2,8 @@
# all_streets
Layer with (almost) all streets
- This layer is shown at zoomlevel **18** and higher
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
@ -10,15 +12,17 @@
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [lit](#lit)
- [leftover-questions](#leftover-questions)
- [split_button](#split_button)
- [lod](#lod)
## Themes using this layer
- [personal](https://mapcomplete.org/personal)
- [street_lighting](https://mapcomplete.org/street_lighting)
- [winter_service](https://mapcomplete.org/winter_service)
## Basic tags for this layer
@ -32,30 +36,28 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
## Featureview elements and TagRenderings
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/lit#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/lit/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7) |
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [split_button](#split_button) <br/> _(Original in [questions](./BuiltinQuestions.md#split_button))_ | _{split_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}*
### lit
The question is `Is this street lit?`
- *This street is lit* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
- *This street is not lit* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
- *This street is lit at night* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>. _This option cannot be chosen as answer_
- *This street is lit 24/7* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### split_button
@ -71,4 +73,4 @@ This tagrendering has labels
`added_by_default`
This document is autogenerated from [assets/themes/street_lighting/street_lighting.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/street_lighting/street_lighting.json)
This document is autogenerated from [assets/layers/all_streets/all_streets.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/all_streets/all_streets.json)

View file

@ -14,6 +14,8 @@ Layer showing vending machines
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [repeated](#repeated)
- [single_level](#single_level)
@ -36,7 +38,7 @@ Layer showing vending machines
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
4. [Filters](#filters)
5. [Filters](#filters)
## Themes using this layer
@ -53,7 +55,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -72,6 +74,32 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operational_status#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operational_status/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3D) [broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [repeated](#repeated) <br/> _(Original in [questions](./BuiltinQuestions.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ |
| [single_level](#single_level) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) |
| [vending](#vending) | What does this vending machine sell?<br/>_This vending machine sells {vending}_<br/>28 options | | *[vending](https://wiki.osm.org/wiki/Key:vending)* ([string](../SpecialInputElements.md#string)) |
| [bicycle_tube_vending_machine-brand](#bicycle_tube_vending_machine-brand) | Which brand of tubes are sold here?<br/>_{brand} tubes are sold here_<br/>2 options | | *[brand](https://wiki.osm.org/wiki/Key:brand)* ([string](../SpecialInputElements.md#string)) |
| [opening_hours_24_7](#opening_hours_24_7) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [payment-options-split](#payment-options-split) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options-split))_ | Which methods of payment are accepted here?<br/>7 options | | _Multiple choice only_ |
| [denominations-coins](#denominations-coins) <br/> _(Original in [questions](./BuiltinQuestions.md#denominations-coins))_ | What coins can you use to pay here?<br/>15 options | | _Multiple choice only_ |
| [denominations-notes](#denominations-notes) <br/> _(Original in [questions](./BuiltinQuestions.md#denominations-notes))_ | what notes can you use to pay here?<br/>13 options | | _Multiple choice only_ |
| [operator](#operator) | Who operates this vending machine?<br/>_This vending machine is operated by {operator}_ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
| [indoor](#indoor) | Is this vending machine indoors?<br/>3 options | | _Multiple choice only_ |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of the operator of this vending machine?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [charge_bicycle_tube](#charge_bicycle_tube) | How much does a a bicycle tube cost?<br/>_a bicycle tube costs {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) |
| [charge_bicycle_light](#charge_bicycle_light) | How much does a bicycle light cost?<br/>_bicycle light costs {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) |
| [charge_condom](#charge_condom) | How much does a a condom cost?<br/>_a condom costs {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) |
| [operational_status](#operational_status) | Is this vending machine still operational?<br/>4 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -242,21 +270,21 @@ This tagrendering has labels
### charge_bicycle_tube
The question is `How much does a a bicycle tube cost?`
*a bicycle tube costs {charge:bicycle_tube}* is shown if `charge` is set
*a bicycle tube costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$
### charge_bicycle_light
The question is `How much does a bicycle light cost?`
*bicycle light costs {charge:bicycle_light}* is shown if `charge` is set
*bicycle light costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$
### charge_condom
The question is `How much does a a condom cost?`
*a condom costs {charge:condom}* is shown if `charge` is set
*a condom costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$
@ -272,7 +300,11 @@ The question is `Is this vending machine still operational?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,7 @@ An ambulance station is an area for storage of ambulance vehicles, medical equip
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [ambulance-name](#ambulance-name)
- [ambulance-street](#ambulance-street)
- [ambulance-place](#ambulance-place)
@ -42,7 +43,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -52,6 +53,20 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator:type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator%3Atype/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [ambulance-name](#ambulance-name) | What is the name of this ambulance station?<br/>_This station is called {name}._ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [ambulance-street](#ambulance-street) | What is the street name where the station located?<br/>_This station is along a highway called {addr:street}._ | | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) |
| [ambulance-place](#ambulance-place) | Where is the station located? (e.g. name of neighborhood, villlage, or town)<br/>_This station is found within {addr:place}._ | | *[addr:place](https://wiki.osm.org/wiki/Key:addr:place)* ([string](../SpecialInputElements.md#string)) |
| [ambulance-agency](#ambulance-agency) | What agency operates this station?<br/>_This station is operated by {operator}._ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
| [ambulance-operator-type](#ambulance-operator-type) | How is the station operator classified?<br/>_The operator is a(n) {operator:type} entity._<br/>4 options | | *[operator:type](https://wiki.osm.org/wiki/Key:operator:type)* ([string](../SpecialInputElements.md#string)) |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### ambulance-name
The question is `What is the name of this ambulance station?`
@ -90,7 +105,11 @@ _This tagrendering has no question and is thus read-only_
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,8 @@ An animal shelter is a facility where animals in trouble are brought and facilit
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [reviews](#reviews)
- [2](#2)
@ -26,7 +28,7 @@ An animal shelter is a facility where animals in trouble are brought and facilit
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -47,7 +49,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -59,6 +61,24 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | ["by appointment"](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment") |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/animal_shelter#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/animal_shelter/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [animal_shelter](https://wiki.openstreetmap.org/wiki/Key:animal_shelter) | [string](../SpecialInputElements.md#string) | [dog](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Ddog) [cat](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dcat) [horse](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dhorse) [bird](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dbird) [wildlife](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dwildlife) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
| [2](#2) | What is the name of this animal shelter?<br/>_This animal shelter is named <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [6](#6) | What is the purpose of the animal shelter?<br/>3 options | | _Multiple choice only_ |
| [opening_hours_by_appointment](#opening_hours_by_appointment) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_by_appointment))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>3 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [boarded_animals](#boarded_animals) | Which animals are accepted here?<br/>_{animal_shelter} is kept here_<br/>5 options | | *[animal_shelter](https://wiki.osm.org/wiki/Key:animal_shelter)* ([string](../SpecialInputElements.md#string)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -136,7 +156,11 @@ The question is `Which animals are accepted here?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -13,6 +13,9 @@ An open map of statues, busts, graffitis and other artwork all over the world
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Wikipedia page about the memorial](#wikipedia-page-about-the-memorial)
- [Wikipedia page about the remembered event or person](#wikipedia-page-about-the-remembered-event-or-person)
- [images_no_blur](#images_no_blur)
- [artwork-artwork_type](#artwork-artwork_type)
- [artwork-artist-wikidata](#artwork-artist-wikidata)
@ -23,6 +26,10 @@ An open map of statues, busts, graffitis and other artwork all over the world
- [doubles_as_memorial](#doubles_as_memorial)
- [memorial-type](#memorial-type)
- [inscription](#inscription)
- [memorial-wikidata](#memorial-wikidata)
- [Wikipedia page about the memorial](#wikipedia-page-about-the-memorial)
- [subject-wikidata](#subject-wikidata)
- [Wikipedia page about the remembered event or person](#wikipedia-page-about-the-remembered-event-or-person)
- [doubles_as_bench](#doubles_as_bench)
- [bench-backrest](#bench-backrest)
- [bench-armrest](#bench-armrest)
@ -33,17 +40,25 @@ An open map of statues, busts, graffitis and other artwork all over the world
- [bench-survey:date](#bench-surveydate)
- [bench-inscription](#bench-inscription)
- [bench-memorial](#bench-memorial)
- [doubles_as_wayside_shrine](#doubles_as_wayside_shrine)
- [shrine_name](#shrine_name)
- [religion](#religion)
- [denomination_christian](#denomination_christian)
- [denomination_muslim](#denomination_muslim)
- [denomination_jewish](#denomination_jewish)
- [denomination_other](#denomination_other)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
- [artwork](https://mapcomplete.org/artwork)
- [memorials](https://mapcomplete.org/memorials)
- [personal](https://mapcomplete.org/personal)
- [wayside_shrines](https://mapcomplete.org/wayside_shrines)
## Presets
@ -60,7 +75,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -73,6 +88,8 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/memorial#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/memorial/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [memorial](https://wiki.openstreetmap.org/wiki/Key:memorial) | [string](../SpecialInputElements.md#string) | [statue](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstatue) [plaque](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dplaque) [bench](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbench) [ghost_bike](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dghost_bike) [stolperstein](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstolperstein) [stele](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstele) [stone](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstone) [bust](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbust) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dsculpture) [obelisk](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dobelisk) [cross](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dcross) [blue_plaque](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dblue_plaque) [tank](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dtank) [tree](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dtree) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/inscription#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/inscription/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/subject:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/subject%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/amenity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/amenity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [bench](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench) [](https://wiki.openstreetmap.org/wiki/Tag:amenity%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/backrest#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/backrest/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/armrest#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/armrest/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [armrest](https://wiki.openstreetmap.org/wiki/Key:armrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dno) |
@ -83,6 +100,51 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/survey:date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/survey%3Adate/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/inscription#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/inscription/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [wayside_shrine](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/religion#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/religion/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [religion](https://wiki.openstreetmap.org/wiki/Key:religion) | [string](../SpecialInputElements.md#string) | [christian](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian) [buddhist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist) [hindu](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dhindu) [jain](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djain) [jewish](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish) [muslim](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim) [pagan](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dpagan) [shinto](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dshinto) [sikh](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dsikh) [taoist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dtaoist) [zoroastrian](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dzoroastrian) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | [catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic) [roman_catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic) [orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [greek_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dgreek_orthodox) [russian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Drussian_orthodox) [serbian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dserbian_orthodox) [protestant](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dprotestant) [anglican](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Danglican) [adventist](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dadventist) [evangelical](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Devangelical) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | [shia](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia) [sunni](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni) [sufi](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsufi) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | [conservative](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative) [orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [hasidic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dhasidic) [reform](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dreform) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images_no_blur](#images_no_blur) <br/> _(Original in [questions](./BuiltinQuestions.md#images_no_blur))_ | _{image_carousel()}{image_upload(,,,true)}_ | | _Multiple choice only_ |
| [artwork-artwork_type](#artwork-artwork_type) | What is the type of this artwork?<br/>_This is a {artwork_type}_<br/>13 options | artwork-question | *[artwork_type](https://wiki.osm.org/wiki/Key:artwork_type)* ([string](../SpecialInputElements.md#string)) |
| [artwork-artist-wikidata](#artwork-artist-wikidata) | Who made this artwork?<br/>_This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}_ | artwork-question | *[artist:wikidata](https://wiki.osm.org/wiki/Key:artist:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [artwork-artist_name](#artwork-artist_name) | Which artist created this?<br/>_Created by {artist_name}_ | artwork-question | *[artist_name](https://wiki.osm.org/wiki/Key:artist_name)* ([string](../SpecialInputElements.md#string)) |
| [artwork-website](#artwork-website) | Is there a website with more information about this artwork?<br/>_{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}_ | artwork-question | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [wikipedia](#wikipedia) <br/> _(Original in [questions](./BuiltinQuestions.md#wikipedia))_ | What is the corresponding Wikidata entity?<br/>_{wikipedia():max-height:25rem}_<br/>2 options | | *[wikidata](https://wiki.osm.org/wiki/Key:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [artwork_subject](#artwork_subject) | What does this artwork depict?<br/>_This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}_ | artwork-question | *[subject:wikidata](https://wiki.osm.org/wiki/Key:subject:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [doubles_as_memorial](#doubles_as_memorial) | Does this artwork serve as a memorial?<br/>2 options | | _Multiple choice only_ |
| [memorial-type](#memorial-type) <br/> _(Original in [memorial](./memorial.md#memorial-type))_ | What type of memorial is this?<br/>_This is a {memorial}_<br/>15 options | memorial-questions | *[memorial](https://wiki.osm.org/wiki/Key:memorial)* ([string](../SpecialInputElements.md#string)) |
| [inscription](#inscription) <br/> _(Original in [memorial](./memorial.md#inscription))_ | What is the inscription on this memorial?<br/>_The inscription on this memorial reads: <p><i>{inscription}<i></p>_<br/>1 options | memorial-questions | *[inscription](https://wiki.osm.org/wiki/Key:inscription)* ([text](../SpecialInputElements.md#text)) |
| [memorial-wikidata](#memorial-wikidata) <br/> _(Original in [memorial](./memorial.md#memorial-wikidata))_ | What is the Wikipedia page about this memorial?<br/>_<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}_ | memorial-specific, memorial-questions | *[wikidata](https://wiki.osm.org/wiki/Key:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [subject-wikidata](#subject-wikidata) <br/> _(Original in [memorial](./memorial.md#subject-wikidata))_ | What is the Wikipedia page about the person or event that is remembered here?<br/>_<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}_ | memorial-specific, memorial-questions | *[subject:wikidata](https://wiki.osm.org/wiki/Key:subject:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [doubles_as_bench](#doubles_as_bench) | Does this artwork serve as a bench?<br/>3 options | | _Multiple choice only_ |
| [bench-backrest](#bench-backrest) <br/> _(Original in [bench](./bench.md#bench-backrest))_ | Does this bench have a backrest?<br/>3 options | bench-questions | _Multiple choice only_ |
| [bench-armrest](#bench-armrest) <br/> _(Original in [bench](./bench.md#bench-armrest))_ | Does this bench have one or more armrests?<br/>2 options | bench-questions | _Multiple choice only_ |
| [bench-seats](#bench-seats) <br/> _(Original in [bench](./bench.md#bench-seats))_ | How many seats does this bench have?<br/>_This bench has {seats} seats_<br/>1 options | bench-questions | *[seats](https://wiki.osm.org/wiki/Key:seats)* ([nat](../SpecialInputElements.md#nat)) |
| [bench-material](#bench-material) <br/> _(Original in [bench](./bench.md#bench-material))_ | What is the bench (seating) made from?<br/>_Material: {material}_<br/>6 options | bench-questions | *[material](https://wiki.osm.org/wiki/Key:material)* ([string](../SpecialInputElements.md#string)) |
| [bench-direction](#bench-direction) <br/> _(Original in [bench](./bench.md#bench-direction))_ | In which direction are you looking when sitting on the bench?<br/>_When sitting on the bench, one looks towards {direction}°._ | bench-questions | *[direction](https://wiki.osm.org/wiki/Key:direction)* ([direction](../SpecialInputElements.md#direction)) |
| [bench-colour](#bench-colour) <br/> _(Original in [bench](./bench.md#bench-colour))_ | Which colour does this bench have?<br/>_Colour: {colour}_<br/>8 options | bench-questions | *[colour](https://wiki.osm.org/wiki/Key:colour)* ([color](../SpecialInputElements.md#color)) |
| [bench-survey:date](#bench-survey:date) <br/> _(Original in [bench](./bench.md#bench-survey:date))_ | When was this bench last surveyed?<br/>_This bench was last surveyed on {survey:date}_<br/>1 options | bench-questions | *[survey:date](https://wiki.osm.org/wiki/Key:survey:date)* ([date](../SpecialInputElements.md#date)) |
| [bench-inscription](#bench-inscription) <br/> _(Original in [bench](./bench.md#bench-inscription))_ | Does this bench have an inscription?<br/>_This bench has the following inscription:<br/><p><i>{inscription}</i></p>_<br/>2 options | bench-questions | *[inscription](https://wiki.osm.org/wiki/Key:inscription)* ([text](../SpecialInputElements.md#text)) |
| [bench-memorial](#bench-memorial) <br/> _(Original in [bench](./bench.md#bench-memorial))_ | Does this bench act as memorial for someone or something?<br/>2 options | bench-questions | _Multiple choice only_ |
| [doubles_as_wayside_shrine](#doubles_as_wayside_shrine) | Does this artwork also double as wayside shrine?<br/>2 options | | _Multiple choice only_ |
| [shrine_name](#shrine_name) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#shrine_name))_ | What's the name of this ?<br/>_The name of this {title()} is <b>{name}</b>_<br/>1 options | shrine_questions | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [religion](#religion) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#religion))_ | To which religion is this shrine dedicated?<br/>_This shrine is {religion}_<br/>11 options | shrine_questions | *[religion](https://wiki.osm.org/wiki/Key:religion)* ([string](../SpecialInputElements.md#string)) |
| [denomination_christian](#denomination_christian) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_christian))_ | What's the Christian denomination of this ?<br/>_The religious denomination is <b>{denomination}</b>_<br/>10 options | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
| [denomination_muslim](#denomination_muslim) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_muslim))_ | What's the Muslim denomination of this shrine?<br/>_The religious subdenomination is {denomination}_<br/>3 options | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
| [denomination_jewish](#denomination_jewish) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_jewish))_ | What's the Jewish denomination of this shrine?<br/>_The religious subdenomination is {denomination}_<br/>4 options | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
| [denomination_other](#denomination_other) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_other))_ | What's the denomination of this shrine?<br/>_The denomination of this shrine is {denomination}_ | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images_no_blur
Same as `images`, but uploaded request to disable blurring to the panoramax server
@ -140,7 +202,7 @@ Shows a wikipedia box with the corresponding wikipedia article; the wikidata-ite
The question is `What is the corresponding Wikidata entity?`
*{wikipedia():max-height:25rem}* is shown if `wikidata` is set
- *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_
- *No Wikipedia page has been linked yet* is shown if with wikipedia~.+. _This option cannot be chosen as answer_
- *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_
### artwork_subject
@ -156,7 +218,7 @@ This tagrendering has labels
The question is `Does this artwork serve as a memorial?`
- *This artwork also serves as a memorial* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/memorial/memorial.svg'> *This artwork also serves as a memorial* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
- *This artwork does not serve as a memorial* is shown if with historic=
### memorial-type
@ -195,11 +257,31 @@ This tagrendering is only visible in the popup if the following condition is met
This tagrendering has labels
`memorial-questions`
### memorial-wikidata
The question is `What is the Wikipedia page about this memorial?`
*<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}* is shown if `wikidata` is set
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
This tagrendering has labels
`memorial-specific`
`memorial-questions`
### subject-wikidata
The question is `What is the Wikipedia page about the person or event that is remembered here?`
*<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
This tagrendering has labels
`memorial-specific`
`memorial-questions`
### doubles_as_bench
The question is `Does this artwork serve as a bench?`
- *This artwork also serves as a bench* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/bench.svg'> *This artwork also serves as a bench* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a>
- *This artwork does not serve as a bench* is shown if with amenity=
- *This artwork does not serve as a bench* is shown if with amenity!=bench. _This option cannot be chosen as answer_
@ -314,10 +396,109 @@ This tagrendering is only visible in the popup if the following condition is met
This tagrendering has labels
`bench-questions`
### doubles_as_wayside_shrine
The question is `Does this artwork also double as wayside shrine?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/wayside_shrine/shrine.svg'> *This artwork acts as a wayside shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a>
- *This artwork does not act as a wayside shrine* is shown if with historic=
### shrine_name
The question is `What's the name of this {title()}?`
*The name of this {title()} is <b>{name}</b>* is shown if `name` is set
- *This shrine does not have a name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a>
This tagrendering has labels
`shrine_questions`
### religion
The question is `To which religion is this shrine dedicated?`
*This shrine is {religion}* is shown if `religion` is set
- *This is a Christian shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian' target='_blank'>christian</a>
- *This is a Buddhist shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist' target='_blank'>buddhist</a>
- *This is a Hindu shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dhindu' target='_blank'>hindu</a>
- *This is a Jain shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Djain' target='_blank'>jain</a>
- *This is a Jewish shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish' target='_blank'>jewish</a>
- *This is an Islamic shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim' target='_blank'>muslim</a>
- *This is a Pagan shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dpagan' target='_blank'>pagan</a>
- *This is a Shinto shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dshinto' target='_blank'>shinto</a>
- *This is a Sikh shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dsikh' target='_blank'>sikh</a>
- *This is a Taoist shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dtaoist' target='_blank'>taoist</a>
- *This is a Zoroastrian shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dzoroastrian' target='_blank'>zoroastrian</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a>
This tagrendering has labels
`shrine_questions`
### denomination_christian
The question is `What's the Christian denomination of this {title()}?`
*The religious denomination is <b>{denomination}</b>* is shown if `denomination` is set
- *The religious subdenomination is Catholic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic' target='_blank'>catholic</a>
- *The religious subdenomination is Roman Catholic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic' target='_blank'>roman_catholic</a>
- *The religious subdenomination is Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox' target='_blank'>orthodox</a>
- *The religious subdenomination is Greek-Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dgreek_orthodox' target='_blank'>greek_orthodox</a>
- *The religious subdenomination is Russian-Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Drussian_orthodox' target='_blank'>russian_orthodox</a>
- *The religious subdenomination is Serbian Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dserbian_orthodox' target='_blank'>serbian_orthodox</a>
- *The religious subdenomination is Protestant* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dprotestant' target='_blank'>protestant</a>
- *The religious subdenomination is Anglican* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Danglican' target='_blank'>anglican</a>
- *The religious subdenomination is Adventist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dadventist' target='_blank'>adventist</a>
- *The religious subdenomination is evangelical* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Devangelical' target='_blank'>evangelical</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian' target='_blank'>christian</a>
This tagrendering has labels
`shrine_questions`
### denomination_muslim
The question is `What's the Muslim denomination of this shrine?`
*The religious subdenomination is {denomination}* is shown if `denomination` is set
- *The religious subdenomination is Shia* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia' target='_blank'>shia</a>
- *The religious subdenomination is Sunni* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni' target='_blank'>sunni</a>
- *The religious subdenomination is Sufi* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsufi' target='_blank'>sufi</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim' target='_blank'>muslim</a>
This tagrendering has labels
`shrine_questions`
### denomination_jewish
The question is `What's the Jewish denomination of this shrine?`
*The religious subdenomination is {denomination}* is shown if `denomination` is set
- *The religious subdenomination is Conservative* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative' target='_blank'>conservative</a>
- *The religious subdenomination is Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox' target='_blank'>orthodox</a>
- *The religious subdenomination is Hasidic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dhasidic' target='_blank'>hasidic</a>
- *The religious subdenomination is Reform* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dreform' target='_blank'>reform</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish' target='_blank'>jewish</a>
This tagrendering has labels
`shrine_questions`
### denomination_other
The question is `What's the denomination of this shrine?`
*The denomination of this shrine is {denomination}* is shown if `denomination` is set
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & religion!=christian & religion!=muslim & religion!=jewish & religion~.+
This tagrendering has labels
`shrine_questions`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button
@ -342,8 +523,8 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| has_image.0 | *With and without images* (default) | |
| has_image.1 | Has at least one image | image~.+ | image:0~.+ | image:1~.+ | image:2~.+ | image:3~.+ | mapillary~.+ |
| has_image.2 | Probably does not have an image | image= & image:0= & image:1= & image:2= & image:3= & mapillary= |
| has_image.1 | Has at least one image | image~.+ | ^(image:[0-9]+)$~~.+ | ^(panoramax:[0-9]+)$~~.+ | mapillary~.+ |
| has_image.2 | Probably does not have an image | (image!~.+ | ^(image:[0-9]+!)$~~.+ | ^(panoramax:[0-9]+!)$~~.+ | mapillary!~.+) |
| id | question | osmTags |
-----|-----|----- |

View file

@ -13,6 +13,9 @@ An open map of statues, busts, graffitis and other artwork all over the world
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Wikipedia page about the memorial](#wikipedia-page-about-the-memorial)
- [Wikipedia page about the remembered event or person](#wikipedia-page-about-the-remembered-event-or-person)
- [historic_or_not](#historic_or_not)
- [images_no_blur](#images_no_blur)
- [artwork-artwork_type](#artwork-artwork_type)
@ -24,6 +27,10 @@ An open map of statues, busts, graffitis and other artwork all over the world
- [doubles_as_memorial](#doubles_as_memorial)
- [memorial-type](#memorial-type)
- [inscription](#inscription)
- [memorial-wikidata](#memorial-wikidata)
- [Wikipedia page about the memorial](#wikipedia-page-about-the-memorial)
- [subject-wikidata](#subject-wikidata)
- [Wikipedia page about the remembered event or person](#wikipedia-page-about-the-remembered-event-or-person)
- [doubles_as_bench](#doubles_as_bench)
- [bench-backrest](#bench-backrest)
- [bench-armrest](#bench-armrest)
@ -34,11 +41,18 @@ An open map of statues, busts, graffitis and other artwork all over the world
- [bench-survey:date](#bench-surveydate)
- [bench-inscription](#bench-inscription)
- [bench-memorial](#bench-memorial)
- [doubles_as_wayside_shrine](#doubles_as_wayside_shrine)
- [shrine_name](#shrine_name)
- [religion](#religion)
- [denomination_christian](#denomination_christian)
- [denomination_muslim](#denomination_muslim)
- [denomination_jewish](#denomination_jewish)
- [denomination_other](#denomination_other)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
4. [Filters](#filters)
5. [Filters](#filters)
## Themes using this layer
@ -55,7 +69,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -69,6 +83,8 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/memorial#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/memorial/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [memorial](https://wiki.openstreetmap.org/wiki/Key:memorial) | [string](../SpecialInputElements.md#string) | [statue](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstatue) [plaque](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dplaque) [bench](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbench) [ghost_bike](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dghost_bike) [stolperstein](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstolperstein) [stele](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstele) [stone](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstone) [bust](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbust) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dsculpture) [obelisk](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dobelisk) [cross](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dcross) [blue_plaque](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dblue_plaque) [tank](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dtank) [tree](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dtree) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/inscription#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/inscription/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/subject:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/subject%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/amenity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/amenity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [bench](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench) [](https://wiki.openstreetmap.org/wiki/Tag:amenity%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/backrest#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/backrest/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/armrest#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/armrest/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [armrest](https://wiki.openstreetmap.org/wiki/Key:armrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dno) |
@ -79,6 +95,52 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/survey:date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/survey%3Adate/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/inscription#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/inscription/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [wayside_shrine](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/religion#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/religion/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [religion](https://wiki.openstreetmap.org/wiki/Key:religion) | [string](../SpecialInputElements.md#string) | [christian](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian) [buddhist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist) [hindu](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dhindu) [jain](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djain) [jewish](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish) [muslim](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim) [pagan](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dpagan) [shinto](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dshinto) [sikh](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dsikh) [taoist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dtaoist) [zoroastrian](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dzoroastrian) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | [catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic) [roman_catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic) [orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [greek_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dgreek_orthodox) [russian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Drussian_orthodox) [serbian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dserbian_orthodox) [protestant](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dprotestant) [anglican](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Danglican) [adventist](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dadventist) [evangelical](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Devangelical) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | [shia](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia) [sunni](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni) [sufi](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsufi) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | [conservative](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative) [orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [hasidic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dhasidic) [reform](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dreform) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [historic_or_not](#historic_or_not) | Is this artwork a historic advertisement?<br/>2 options | | _Multiple choice only_ |
| [images_no_blur](#images_no_blur) <br/> _(Original in [questions](./BuiltinQuestions.md#images_no_blur))_ | _{image_carousel()}{image_upload(,,,true)}_ | | _Multiple choice only_ |
| [artwork-artwork_type](#artwork-artwork_type) | What is the type of this artwork?<br/>_This is a {artwork_type}_<br/>13 options | artwork-question | *[artwork_type](https://wiki.osm.org/wiki/Key:artwork_type)* ([string](../SpecialInputElements.md#string)) |
| [artwork-artist-wikidata](#artwork-artist-wikidata) | Who made this artwork?<br/>_This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}_ | artwork-question | *[artist:wikidata](https://wiki.osm.org/wiki/Key:artist:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [artwork-artist_name](#artwork-artist_name) | Which artist created this?<br/>_Created by {artist_name}_ | artwork-question | *[artist_name](https://wiki.osm.org/wiki/Key:artist_name)* ([string](../SpecialInputElements.md#string)) |
| [artwork-website](#artwork-website) | Is there a website with more information about this artwork?<br/>_{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}_ | artwork-question | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [wikipedia](#wikipedia) <br/> _(Original in [questions](./BuiltinQuestions.md#wikipedia))_ | What is the corresponding Wikidata entity?<br/>_{wikipedia():max-height:25rem}_<br/>2 options | | *[wikidata](https://wiki.osm.org/wiki/Key:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [artwork_subject](#artwork_subject) | What does this artwork depict?<br/>_This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}_ | artwork-question | *[subject:wikidata](https://wiki.osm.org/wiki/Key:subject:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [doubles_as_memorial](#doubles_as_memorial) | Does this artwork serve as a memorial?<br/>2 options | | _Multiple choice only_ |
| [memorial-type](#memorial-type) <br/> _(Original in [memorial](./memorial.md#memorial-type))_ | What type of memorial is this?<br/>_This is a {memorial}_<br/>15 options | memorial-questions | *[memorial](https://wiki.osm.org/wiki/Key:memorial)* ([string](../SpecialInputElements.md#string)) |
| [inscription](#inscription) <br/> _(Original in [memorial](./memorial.md#inscription))_ | What is the inscription on this memorial?<br/>_The inscription on this memorial reads: <p><i>{inscription}<i></p>_<br/>1 options | memorial-questions | *[inscription](https://wiki.osm.org/wiki/Key:inscription)* ([text](../SpecialInputElements.md#text)) |
| [memorial-wikidata](#memorial-wikidata) <br/> _(Original in [memorial](./memorial.md#memorial-wikidata))_ | What is the Wikipedia page about this memorial?<br/>_<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}_ | memorial-specific, memorial-questions | *[wikidata](https://wiki.osm.org/wiki/Key:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [subject-wikidata](#subject-wikidata) <br/> _(Original in [memorial](./memorial.md#subject-wikidata))_ | What is the Wikipedia page about the person or event that is remembered here?<br/>_<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}_ | memorial-specific, memorial-questions | *[subject:wikidata](https://wiki.osm.org/wiki/Key:subject:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [doubles_as_bench](#doubles_as_bench) | Does this artwork serve as a bench?<br/>3 options | | _Multiple choice only_ |
| [bench-backrest](#bench-backrest) <br/> _(Original in [bench](./bench.md#bench-backrest))_ | Does this bench have a backrest?<br/>3 options | bench-questions | _Multiple choice only_ |
| [bench-armrest](#bench-armrest) <br/> _(Original in [bench](./bench.md#bench-armrest))_ | Does this bench have one or more armrests?<br/>2 options | bench-questions | _Multiple choice only_ |
| [bench-seats](#bench-seats) <br/> _(Original in [bench](./bench.md#bench-seats))_ | How many seats does this bench have?<br/>_This bench has {seats} seats_<br/>1 options | bench-questions | *[seats](https://wiki.osm.org/wiki/Key:seats)* ([nat](../SpecialInputElements.md#nat)) |
| [bench-material](#bench-material) <br/> _(Original in [bench](./bench.md#bench-material))_ | What is the bench (seating) made from?<br/>_Material: {material}_<br/>6 options | bench-questions | *[material](https://wiki.osm.org/wiki/Key:material)* ([string](../SpecialInputElements.md#string)) |
| [bench-direction](#bench-direction) <br/> _(Original in [bench](./bench.md#bench-direction))_ | In which direction are you looking when sitting on the bench?<br/>_When sitting on the bench, one looks towards {direction}°._ | bench-questions | *[direction](https://wiki.osm.org/wiki/Key:direction)* ([direction](../SpecialInputElements.md#direction)) |
| [bench-colour](#bench-colour) <br/> _(Original in [bench](./bench.md#bench-colour))_ | Which colour does this bench have?<br/>_Colour: {colour}_<br/>8 options | bench-questions | *[colour](https://wiki.osm.org/wiki/Key:colour)* ([color](../SpecialInputElements.md#color)) |
| [bench-survey:date](#bench-survey:date) <br/> _(Original in [bench](./bench.md#bench-survey:date))_ | When was this bench last surveyed?<br/>_This bench was last surveyed on {survey:date}_<br/>1 options | bench-questions | *[survey:date](https://wiki.osm.org/wiki/Key:survey:date)* ([date](../SpecialInputElements.md#date)) |
| [bench-inscription](#bench-inscription) <br/> _(Original in [bench](./bench.md#bench-inscription))_ | Does this bench have an inscription?<br/>_This bench has the following inscription:<br/><p><i>{inscription}</i></p>_<br/>2 options | bench-questions | *[inscription](https://wiki.osm.org/wiki/Key:inscription)* ([text](../SpecialInputElements.md#text)) |
| [bench-memorial](#bench-memorial) <br/> _(Original in [bench](./bench.md#bench-memorial))_ | Does this bench act as memorial for someone or something?<br/>2 options | bench-questions | _Multiple choice only_ |
| [doubles_as_wayside_shrine](#doubles_as_wayside_shrine) | Does this artwork also double as wayside shrine?<br/>2 options | | _Multiple choice only_ |
| [shrine_name](#shrine_name) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#shrine_name))_ | What's the name of this ?<br/>_The name of this {title()} is <b>{name}</b>_<br/>1 options | shrine_questions | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [religion](#religion) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#religion))_ | To which religion is this shrine dedicated?<br/>_This shrine is {religion}_<br/>11 options | shrine_questions | *[religion](https://wiki.osm.org/wiki/Key:religion)* ([string](../SpecialInputElements.md#string)) |
| [denomination_christian](#denomination_christian) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_christian))_ | What's the Christian denomination of this ?<br/>_The religious denomination is <b>{denomination}</b>_<br/>10 options | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
| [denomination_muslim](#denomination_muslim) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_muslim))_ | What's the Muslim denomination of this shrine?<br/>_The religious subdenomination is {denomination}_<br/>3 options | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
| [denomination_jewish](#denomination_jewish) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_jewish))_ | What's the Jewish denomination of this shrine?<br/>_The religious subdenomination is {denomination}_<br/>4 options | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
| [denomination_other](#denomination_other) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_other))_ | What's the denomination of this shrine?<br/>_The denomination of this shrine is {denomination}_ | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### historic_or_not
@ -143,7 +205,7 @@ Shows a wikipedia box with the corresponding wikipedia article; the wikidata-ite
The question is `What is the corresponding Wikidata entity?`
*{wikipedia():max-height:25rem}* is shown if `wikidata` is set
- *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_
- *No Wikipedia page has been linked yet* is shown if with wikipedia~.+. _This option cannot be chosen as answer_
- *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_
### artwork_subject
@ -159,7 +221,7 @@ This tagrendering has labels
The question is `Does this artwork serve as a memorial?`
- *This artwork also serves as a memorial* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/memorial/memorial.svg'> *This artwork also serves as a memorial* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
- *This artwork does not serve as a memorial* is shown if with historic=
### memorial-type
@ -198,11 +260,31 @@ This tagrendering is only visible in the popup if the following condition is met
This tagrendering has labels
`memorial-questions`
### memorial-wikidata
The question is `What is the Wikipedia page about this memorial?`
*<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}* is shown if `wikidata` is set
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
This tagrendering has labels
`memorial-specific`
`memorial-questions`
### subject-wikidata
The question is `What is the Wikipedia page about the person or event that is remembered here?`
*<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
This tagrendering has labels
`memorial-specific`
`memorial-questions`
### doubles_as_bench
The question is `Does this artwork serve as a bench?`
- *This artwork also serves as a bench* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/bench.svg'> *This artwork also serves as a bench* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a>
- *This artwork does not serve as a bench* is shown if with amenity=
- *This artwork does not serve as a bench* is shown if with amenity!=bench. _This option cannot be chosen as answer_
@ -317,10 +399,109 @@ This tagrendering is only visible in the popup if the following condition is met
This tagrendering has labels
`bench-questions`
### doubles_as_wayside_shrine
The question is `Does this artwork also double as wayside shrine?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/wayside_shrine/shrine.svg'> *This artwork acts as a wayside shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a>
- *This artwork does not act as a wayside shrine* is shown if with historic=
### shrine_name
The question is `What's the name of this {title()}?`
*The name of this {title()} is <b>{name}</b>* is shown if `name` is set
- *This shrine does not have a name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a>
This tagrendering has labels
`shrine_questions`
### religion
The question is `To which religion is this shrine dedicated?`
*This shrine is {religion}* is shown if `religion` is set
- *This is a Christian shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian' target='_blank'>christian</a>
- *This is a Buddhist shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist' target='_blank'>buddhist</a>
- *This is a Hindu shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dhindu' target='_blank'>hindu</a>
- *This is a Jain shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Djain' target='_blank'>jain</a>
- *This is a Jewish shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish' target='_blank'>jewish</a>
- *This is an Islamic shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim' target='_blank'>muslim</a>
- *This is a Pagan shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dpagan' target='_blank'>pagan</a>
- *This is a Shinto shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dshinto' target='_blank'>shinto</a>
- *This is a Sikh shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dsikh' target='_blank'>sikh</a>
- *This is a Taoist shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dtaoist' target='_blank'>taoist</a>
- *This is a Zoroastrian shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dzoroastrian' target='_blank'>zoroastrian</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a>
This tagrendering has labels
`shrine_questions`
### denomination_christian
The question is `What's the Christian denomination of this {title()}?`
*The religious denomination is <b>{denomination}</b>* is shown if `denomination` is set
- *The religious subdenomination is Catholic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic' target='_blank'>catholic</a>
- *The religious subdenomination is Roman Catholic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic' target='_blank'>roman_catholic</a>
- *The religious subdenomination is Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox' target='_blank'>orthodox</a>
- *The religious subdenomination is Greek-Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dgreek_orthodox' target='_blank'>greek_orthodox</a>
- *The religious subdenomination is Russian-Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Drussian_orthodox' target='_blank'>russian_orthodox</a>
- *The religious subdenomination is Serbian Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dserbian_orthodox' target='_blank'>serbian_orthodox</a>
- *The religious subdenomination is Protestant* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dprotestant' target='_blank'>protestant</a>
- *The religious subdenomination is Anglican* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Danglican' target='_blank'>anglican</a>
- *The religious subdenomination is Adventist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dadventist' target='_blank'>adventist</a>
- *The religious subdenomination is evangelical* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Devangelical' target='_blank'>evangelical</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian' target='_blank'>christian</a>
This tagrendering has labels
`shrine_questions`
### denomination_muslim
The question is `What's the Muslim denomination of this shrine?`
*The religious subdenomination is {denomination}* is shown if `denomination` is set
- *The religious subdenomination is Shia* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia' target='_blank'>shia</a>
- *The religious subdenomination is Sunni* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni' target='_blank'>sunni</a>
- *The religious subdenomination is Sufi* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsufi' target='_blank'>sufi</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim' target='_blank'>muslim</a>
This tagrendering has labels
`shrine_questions`
### denomination_jewish
The question is `What's the Jewish denomination of this shrine?`
*The religious subdenomination is {denomination}* is shown if `denomination` is set
- *The religious subdenomination is Conservative* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative' target='_blank'>conservative</a>
- *The religious subdenomination is Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox' target='_blank'>orthodox</a>
- *The religious subdenomination is Hasidic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dhasidic' target='_blank'>hasidic</a>
- *The religious subdenomination is Reform* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dreform' target='_blank'>reform</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish' target='_blank'>jewish</a>
This tagrendering has labels
`shrine_questions`
### denomination_other
The question is `What's the denomination of this shrine?`
*The denomination of this shrine is {denomination}* is shown if `denomination` is set
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & religion!=christian & religion!=muslim & religion!=jewish & religion~.+
This tagrendering has labels
`shrine_questions`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button
@ -345,8 +526,8 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| has_image.0 | *With and without images* (default) | |
| has_image.1 | Has at least one image | image~.+ | image:0~.+ | image:1~.+ | image:2~.+ | image:3~.+ | mapillary~.+ |
| has_image.2 | Probably does not have an image | image= & image:0= & image:1= & image:2= & image:3= & mapillary= |
| has_image.1 | Has at least one image | image~.+ | ^(image:[0-9]+)$~~.+ | ^(panoramax:[0-9]+)$~~.+ | mapillary~.+ |
| has_image.2 | Probably does not have an image | (image!~.+ | ^(image:[0-9]+!)$~~.+ | ^(panoramax:[0-9]+!)$~~.+ | mapillary!~.+) |
| id | question | osmTags |
-----|-----|----- |

View file

@ -12,6 +12,7 @@ This layer contains assembly points and waiting areas where all employees, passe
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [assembly_point_name](#assembly_point_name)
- [assembly_point_operator](#assembly_point_operator)
@ -39,13 +40,25 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [assembly_point_name](#assembly_point_name) | What is the name of this assembly point?<br/>_This assembly point is named <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [assembly_point_operator](#assembly_point_operator) | What organization operates this assembly point?<br/>_This assembly point is operated by <b>{operator}</b>_ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
| [disaster_type](#disaster_type) | For which disaster type is this assembly point meant?<br/>4 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -73,7 +86,11 @@ The question is `For which disaster type is this assembly point meant?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,8 @@ A self-assisted workshop is a location where people can come and repair their go
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [preset_description](#preset_description)
- [name](#name)
@ -27,7 +29,7 @@ A self-assisted workshop is a location where people can come and repair their go
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -48,7 +50,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -60,6 +62,25 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/contact:mastodon#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/contact%3Amastodon/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [contact:mastodon](https://wiki.openstreetmap.org/wiki/Key:contact:mastodon) | [fediverse](../SpecialInputElements.md#fediverse) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/contact:facebook#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/contact%3Afacebook/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [contact:facebook](https://wiki.openstreetmap.org/wiki/Key:contact:facebook) | [url](../SpecialInputElements.md#url) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [preset_description](#preset_description) <br/> _(Original in [questions](./BuiltinQuestions.md#preset_description))_ | _{preset_description()}_ | | _Multiple choice only_ |
| [name](#name) | What is the name of this repair workshop?<br/>_This workshop is called <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [opening_hours_by_appointment](#opening_hours_by_appointment) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_by_appointment))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>3 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [mastodon](#mastodon) <br/> _(Original in [questions](./BuiltinQuestions.md#mastodon))_ | What is the Mastodon-handle of ?<br/>_{fediverse_link(contact:mastodon)}_ | | *[contact:mastodon](https://wiki.osm.org/wiki/Key:contact:mastodon)* ([fediverse](../SpecialInputElements.md#fediverse)) |
| [facebook](#facebook) <br/> _(Original in [questions](./BuiltinQuestions.md#facebook))_ | What is the facebook page of of ?<br/>_{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}<div class='subtle text-sm'>Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives</div>_ | | *[contact:facebook](https://wiki.osm.org/wiki/Key:contact:facebook)* ([url](../SpecialInputElements.md#url)) |
| [item:repair](#item:repair) | What type of items are repaired here?<br/>6 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -139,7 +160,11 @@ The question is `What type of items are repaired here?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,12 +12,15 @@ ATMs to withdraw money
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [name](#name)
- [brand](#brand)
- [operator](#operator)
- [opening_hours_24_7](#opening_hours_24_7)
- [Opening hours](#opening-hours)
- [indoor](#indoor)
- [cash_out](#cash_out)
- [cash_in](#cash_in)
- [cash_out-denominations-notes](#cash_out-denominations-notes)
@ -27,7 +30,7 @@ ATMs to withdraw money
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -49,18 +52,39 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/brand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/brand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [nsi](../SpecialInputElements.md#nsi) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/brand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/brand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/indoor#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/indoor/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cash_out#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cash_out/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cash_out](https://wiki.openstreetmap.org/wiki/Key:cash_out) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cash_out%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:cash_out%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cash_in#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cash_in/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cash_in](https://wiki.openstreetmap.org/wiki/Key:cash_in) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cash_out:notes:denominations#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cash_out%3Anotes%3Adenominations/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cash_out:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:cash_out:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D500 EUR) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/speech_output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/speech_output/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [speech_output](https://wiki.openstreetmap.org/wiki/Key:speech_output) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dno) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [name](#name) | _The name of this ATM is {name}_ | | _Multiple choice only_ |
| [brand](#brand) | What brand is this ATM?<br/>_The brand of this ATM is {brand}_ | | *[brand](https://wiki.osm.org/wiki/Key:brand)* ([string](../SpecialInputElements.md#string)) |
| [operator](#operator) | What company operates this ATM?<br/>_The ATM is operated by {operator}_ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
| [opening_hours_24_7](#opening_hours_24_7) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [indoor](#indoor) <br/> _(Original in [questions](./BuiltinQuestions.md#indoor))_ | Is this ATM located indoors?<br/>2 options | | _Multiple choice only_ |
| [cash_out](#cash_out) | Can you withdraw cash from this ATM?<br/>3 options | | _Multiple choice only_ |
| [cash_in](#cash_in) | Can you deposit cash into this ATM?<br/>3 options | | _Multiple choice only_ |
| [cash_out-denominations-notes](#cash_out-denominations-notes) | What notes can you withdraw here?<br/>7 options | | _Multiple choice only_ |
| [speech_output](#speech_output) | Does this ATM have speech output for visually impaired users?<br/>2 options | | _Multiple choice only_ |
| [speech_output_language](#speech_output_language) | _{language_chooser(speech_output,In which languages does this ATM have speech output?,This ATM has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This ATM has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}_ | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -91,6 +115,13 @@ The question is `What are the opening hours of {title()}?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### indoor
The question is `Is this ATM located indoors?`
- *This ATM is located indoors* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes' target='_blank'>yes</a>
- *This ATM is located outdoors* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno' target='_blank'>no</a>
### cash_out
The question is `Can you withdraw cash from this ATM?`
@ -136,7 +167,11 @@ This tagrendering is only visible in the popup if the following condition is met
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -11,13 +11,14 @@ A financial institution to deposit money
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [has_atm](#has_atm)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
4. [Filters](#filters)
5. [Filters](#filters)
## Themes using this layer
@ -32,12 +33,23 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/atm#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/atm/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [has_atm](#has_atm) | Does this bank have an ATM?<br/>3 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -54,7 +66,11 @@ The question is `Does this bank have an ATM?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -13,13 +13,14 @@ A financial institution to deposit money
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [has_atm](#has_atm)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
4. [Filters](#filters)
5. [Filters](#filters)
## Themes using this layer
@ -36,12 +37,23 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/atm#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/atm/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [has_atm](#has_atm) | Does this bank have an ATM?<br/>3 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -58,7 +70,11 @@ The question is `Does this bank have an ATM?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -14,6 +14,7 @@ Obstacles while cycling, such as bollards and cycle barriers
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [bicycle=yes/no](#bicycle=yesno)
- [barrier_type](#barrier_type)
@ -51,7 +52,7 @@ Elements must match **any** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -64,6 +65,24 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/width:opening#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/width%3Aopening/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) | [distance](../SpecialInputElements.md#distance) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/overlap#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/overlap/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) | [distance](../SpecialInputElements.md#distance) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [bicycle=yes/no](#bicycle=yes/no) | Can a bicycle go past this barrier?<br/>2 options | | _Multiple choice only_ |
| [barrier_type](#barrier_type) | 2 options | | _Multiple choice only_ |
| [Bollard type](#Bollard type) | What kind of bollard is this?<br/>5 options | | _Multiple choice only_ |
| [Cycle barrier type](#Cycle barrier type) | What kind of cycling barrier is this?<br/>4 options | | _Multiple choice only_ |
| [MaxWidth](#MaxWidth) | How wide is the gap left over besides the barrier?<br/>_Maximum width: {maxwidth:physical} m_ | | *[maxwidth:physical](https://wiki.osm.org/wiki/Key:maxwidth:physical)* ([distance](../SpecialInputElements.md#distance)) |
| [Space between barrier (cyclebarrier)](#Space between barrier (cyclebarrier)) | How much space is there between the barriers (along the length of the road)?<br/>_Space between barriers (along the length of the road): {width:separation} m_ | | *[width:separation](https://wiki.osm.org/wiki/Key:width:separation)* ([distance](../SpecialInputElements.md#distance)) |
| [Width of opening (cyclebarrier)](#Width of opening (cyclebarrier)) | How wide is the smallest opening next to the barriers?<br/>_Width of opening: {width:opening} m_ | | *[width:opening](https://wiki.osm.org/wiki/Key:width:opening)* ([distance](../SpecialInputElements.md#distance)) |
| [Overlap (cyclebarrier)](#Overlap (cyclebarrier)) | How much overlap do the barriers have?<br/>_Overlap: {overlap} m_ | | *[overlap](https://wiki.osm.org/wiki/Key:overlap)* ([distance](../SpecialInputElements.md#distance)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -139,7 +158,11 @@ This tagrendering is only visible in the popup if the following condition is met
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,7 @@ A permanently installed barbecue, typically accessible to the public.
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [access](#access)
- [covered](#covered)
@ -42,7 +43,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -50,6 +51,19 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/covered#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/covered/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [covered](https://wiki.openstreetmap.org/wiki/Key:covered) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/fuel#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/fuel/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [fuel](https://wiki.openstreetmap.org/wiki/Key:fuel) | Multiple choice | [wood](https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dwood) [charcoal](https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dcharcoal) [electric](https://wiki.openstreetmap.org/wiki/Tag:fuel%3Delectric) [gas](https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dgas) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [access](#access) | Who is allowed to use this barbecue?<br/>6 options | | _Multiple choice only_ |
| [covered](#covered) | Is this barbecue covered?<br/>2 options | | _Multiple choice only_ |
| [fuel](#fuel) | How is this barbecue fuelled?<br/>4 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -85,7 +99,11 @@ The question is `How is this barbecue fuelled?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,7 @@ Layer showing beehives
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [capacity](#capacity)
- [leftover-questions](#leftover-questions)
@ -38,12 +39,23 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | [1](https://wiki.openstreetmap.org/wiki/Tag:capacity%3D1) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [capacity](#capacity) | How many beehives are there?<br/>_There are {capacity} beehives_<br/>1 options | | *[capacity](https://wiki.osm.org/wiki/Key:capacity)* ([pnat](../SpecialInputElements.md#pnat)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -59,7 +71,11 @@ The question is `How many beehives are there?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,9 @@ A bench is a wooden, metal, stone, … surface where a human can sit. This layer
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Wikipedia page about the memorial](#wikipedia-page-about-the-memorial)
- [Wikipedia page about the remembered event or person](#wikipedia-page-about-the-remembered-event-or-person)
- [images](#images)
- [bench-backrest](#bench-backrest)
- [bench-armrest](#bench-armrest)
@ -28,11 +31,15 @@ A bench is a wooden, metal, stone, … surface where a human can sit. This layer
- [artwork-artist_name](#artwork-artist_name)
- [artwork-website](#artwork-website)
- [artwork_subject](#artwork_subject)
- [memorial-wikidata](#memorial-wikidata)
- [Wikipedia page about the memorial](#wikipedia-page-about-the-memorial)
- [subject-wikidata](#subject-wikidata)
- [Wikipedia page about the remembered event or person](#wikipedia-page-about-the-remembered-event-or-person)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -59,7 +66,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -77,6 +84,35 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist_name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist_name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/subject:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/subject%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/subject:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/subject%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [bench-backrest](#bench-backrest) | Does this bench have a backrest?<br/>3 options | bench-questions | _Multiple choice only_ |
| [bench-armrest](#bench-armrest) | Does this bench have one or more armrests?<br/>2 options | bench-questions | _Multiple choice only_ |
| [bench-seats](#bench-seats) | How many seats does this bench have?<br/>_This bench has {seats} seats_<br/>1 options | bench-questions | *[seats](https://wiki.osm.org/wiki/Key:seats)* ([nat](../SpecialInputElements.md#nat)) |
| [bench-material](#bench-material) | What is the bench (seating) made from?<br/>_Material: {material}_<br/>6 options | bench-questions | *[material](https://wiki.osm.org/wiki/Key:material)* ([string](../SpecialInputElements.md#string)) |
| [bench-direction](#bench-direction) | In which direction are you looking when sitting on the bench?<br/>_When sitting on the bench, one looks towards {direction}°._ | bench-questions | *[direction](https://wiki.osm.org/wiki/Key:direction)* ([direction](../SpecialInputElements.md#direction)) |
| [bench-colour](#bench-colour) | Which colour does this bench have?<br/>_Colour: {colour}_<br/>8 options | bench-questions | *[colour](https://wiki.osm.org/wiki/Key:colour)* ([color](../SpecialInputElements.md#color)) |
| [bench-survey:date](#bench-survey:date) | When was this bench last surveyed?<br/>_This bench was last surveyed on {survey:date}_<br/>1 options | bench-questions | *[survey:date](https://wiki.osm.org/wiki/Key:survey:date)* ([date](../SpecialInputElements.md#date)) |
| [bench-inscription](#bench-inscription) | Does this bench have an inscription?<br/>_This bench has the following inscription:<br/><p><i>{inscription}</i></p>_<br/>2 options | bench-questions | *[inscription](https://wiki.osm.org/wiki/Key:inscription)* ([text](../SpecialInputElements.md#text)) |
| [bench-artwork](#bench-artwork) | Does this bench have an artistic element?<br/>3 options | | _Multiple choice only_ |
| [bench-memorial](#bench-memorial) | Does this bench act as memorial for someone or something?<br/>2 options | bench-questions | _Multiple choice only_ |
| [artwork-artwork_type](#artwork-artwork_type) <br/> _(Original in [artwork](./artwork.md#artwork-artwork_type))_ | What is the type of this artwork?<br/>_This is a {artwork_type}_<br/>13 options | artwork-question | *[artwork_type](https://wiki.osm.org/wiki/Key:artwork_type)* ([string](../SpecialInputElements.md#string)) |
| [artwork-artist-wikidata](#artwork-artist-wikidata) <br/> _(Original in [artwork](./artwork.md#artwork-artist-wikidata))_ | Who made this artwork?<br/>_This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}_ | artwork-question | *[artist:wikidata](https://wiki.osm.org/wiki/Key:artist:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [artwork-artist_name](#artwork-artist_name) <br/> _(Original in [artwork](./artwork.md#artwork-artist_name))_ | Which artist created this?<br/>_Created by {artist_name}_ | artwork-question | *[artist_name](https://wiki.osm.org/wiki/Key:artist_name)* ([string](../SpecialInputElements.md#string)) |
| [artwork-website](#artwork-website) <br/> _(Original in [artwork](./artwork.md#artwork-website))_ | Is there a website with more information about this artwork?<br/>_{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}_ | artwork-question | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [artwork_subject](#artwork_subject) <br/> _(Original in [artwork](./artwork.md#artwork_subject))_ | What does this artwork depict?<br/>_This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}_ | artwork-question | *[subject:wikidata](https://wiki.osm.org/wiki/Key:subject:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [memorial-wikidata](#memorial-wikidata) <br/> _(Original in [memorial](./memorial.md#memorial-wikidata))_ | What is the Wikipedia page about this memorial?<br/>_<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}_ | memorial-specific, memorial-questions | *[wikidata](https://wiki.osm.org/wiki/Key:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [subject-wikidata](#subject-wikidata) <br/> _(Original in [memorial](./memorial.md#subject-wikidata))_ | What is the Wikipedia page about the person or event that is remembered here?<br/>_<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}_ | memorial-specific, memorial-questions | *[subject:wikidata](https://wiki.osm.org/wiki/Key:subject:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
@ -253,10 +289,34 @@ This tagrendering is only visible in the popup if the following condition is met
This tagrendering has labels
`artwork-question`
### memorial-wikidata
The question is `What is the Wikipedia page about this memorial?`
*<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}* is shown if `wikidata` is set
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
This tagrendering has labels
`memorial-specific`
`memorial-questions`
### subject-wikidata
The question is `What is the Wikipedia page about the person or event that is remembered here?`
*<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
This tagrendering has labels
`memorial-specific`
`memorial-questions`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button
@ -291,8 +351,8 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| has_image.0 | *With and without images* (default) | |
| has_image.1 | Has at least one image | image~.+ | image:0~.+ | image:1~.+ | image:2~.+ | image:3~.+ | mapillary~.+ |
| has_image.2 | Probably does not have an image | image= & image:0= & image:1= & image:2= & image:3= & mapillary= |
| has_image.1 | Has at least one image | image~.+ | ^(image:[0-9]+)$~~.+ | ^(panoramax:[0-9]+)$~~.+ | mapillary~.+ |
| has_image.2 | Probably does not have an image | (image!~.+ | ^(image:[0-9]+!)$~~.+ | ^(panoramax:[0-9]+!)$~~.+ | mapillary!~.+) |

View file

@ -11,6 +11,7 @@ A layer showing all public-transport-stops which do have a bench
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [bench_at_pt-name](#bench_at_pt-name)
- [bench_at_pt-bench_type](#bench_at_pt-bench_type)
@ -34,13 +35,24 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bench#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bench/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bench](https://wiki.openstreetmap.org/wiki/Key:bench) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes) [stand_up_bench](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench) [no](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [bench_at_pt-name](#bench_at_pt-name) | _{name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [bench_at_pt-bench_type](#bench_at_pt-bench_type) | What kind of bench is this?<br/>3 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -62,7 +74,11 @@ The question is `What kind of bench is this?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### delete-button

View file

@ -13,6 +13,8 @@ A self-assisted workshop is a location where people can come and repair their go
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [preset_description](#preset_description)
- [name](#name)
@ -28,7 +30,7 @@ A self-assisted workshop is a location where people can come and repair their go
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
4. [Filters](#filters)
5. [Filters](#filters)
## Themes using this layer
@ -45,7 +47,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -57,6 +59,25 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/contact:mastodon#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/contact%3Amastodon/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [contact:mastodon](https://wiki.openstreetmap.org/wiki/Key:contact:mastodon) | [fediverse](../SpecialInputElements.md#fediverse) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/contact:facebook#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/contact%3Afacebook/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [contact:facebook](https://wiki.openstreetmap.org/wiki/Key:contact:facebook) | [url](../SpecialInputElements.md#url) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [preset_description](#preset_description) <br/> _(Original in [questions](./BuiltinQuestions.md#preset_description))_ | _{preset_description()}_ | | _Multiple choice only_ |
| [name](#name) | What is the name of this repair workshop?<br/>_This workshop is called <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [opening_hours_by_appointment](#opening_hours_by_appointment) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_by_appointment))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>3 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [mastodon](#mastodon) <br/> _(Original in [questions](./BuiltinQuestions.md#mastodon))_ | What is the Mastodon-handle of ?<br/>_{fediverse_link(contact:mastodon)}_ | | *[contact:mastodon](https://wiki.osm.org/wiki/Key:contact:mastodon)* ([fediverse](../SpecialInputElements.md#fediverse)) |
| [facebook](#facebook) <br/> _(Original in [questions](./BuiltinQuestions.md#facebook))_ | What is the facebook page of of ?<br/>_{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}<div class='subtle text-sm'>Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives</div>_ | | *[contact:facebook](https://wiki.osm.org/wiki/Key:contact:facebook)* ([url](../SpecialInputElements.md#url)) |
| [item:repair](#item:repair) | What type of items are repaired here?<br/>6 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -136,7 +157,11 @@ The question is `What type of items are repaired here?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,7 @@ Layer showing monitoring stations for bicycle traffic
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [display](#display)
- [name](#name)
@ -47,7 +48,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -58,6 +59,22 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/ref#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/ref/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [display](#display) | Does this bicycle counter have a display showing the number of passing bicycles?<br/>3 options | | _Multiple choice only_ |
| [name](#name) | What is the name of the counted location?<br/>_Name of the counted location: {name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [start_date](#start_date) | When did this counter start counting?<br/>_This counter started counting on {start_date}_ | | *[start_date](https://wiki.osm.org/wiki/Key:start_date)* ([date](../SpecialInputElements.md#date)) |
| [clock](#clock) | Does this bicycle counter have a clock?<br/>2 options | | _Multiple choice only_ |
| [ref](#ref) | What is the reference number of this counter?<br/>_Reference number of the counter: {ref}_<br/>1 options | | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) |
| [website](#website) | Is there a website for this bicycle counter?<br/>_Website of the counter: <a href='{website}'>{website}</a>_ | | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -103,7 +120,11 @@ The question is `Is there a website for this bicycle counter?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,8 @@ A facility where bicycles can be lent for longer period of times
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [bicycle_library-name](#bicycle_library-name)
- [website](#website)
@ -26,7 +28,7 @@ A facility where bicycles can be lent for longer period of times
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -49,7 +51,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -62,6 +64,24 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bicycle_library:for#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bicycle_library%3Afor/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bicycle_library:for](https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for) | Multiple choice | [child](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild) [adult](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult) [disabled](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/description#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/description/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [bicycle_library-name](#bicycle_library-name) | What is the name of this bicycle library?<br/>_This bicycle library is called {name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [bicycle_library-charge](#bicycle_library-charge) | How much does lending a bicycle cost?<br/>_Lending a bicycle costs {charge}_<br/>2 options | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
| [bicycle-library-target-group](#bicycle-library-target-group) | Who can loan bicycles here?<br/>3 options | | _Multiple choice only_ |
| [description](#description) <br/> _(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.<br/>_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -134,7 +154,11 @@ The question is `Is there still some relevant info that the previous questions d
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,8 @@ Bicycle rental stations
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [bicycle_rental_type](#bicycle_rental_type)
- [website](#website)
@ -33,7 +35,7 @@ Bicycle rental stations
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -64,7 +66,7 @@ Elements must match **any** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -81,6 +83,31 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:bicycle_pannier#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Abicycle_pannier/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) | [pnat](../SpecialInputElements.md#pnat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:tandem_bicycle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Atandem_bicycle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) | [pnat](../SpecialInputElements.md#pnat) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [bicycle_rental_type](#bicycle_rental_type) | What kind of bicycle rental is this?<br/>6 options | | _Multiple choice only_ |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [payment-options](#payment-options) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options))_ | Which methods of payment are accepted here?<br/>3 options | | _Multiple choice only_ |
| [payment-options-advanced](#payment-options-advanced) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options-advanced))_ | Which methods of payment are accepted here?<br/>5 options | | _Multiple choice only_ |
| [bicycle-types](#bicycle-types) | What kind of bicycles and accessories are rented here?<br/>_{rental} is rented here_<br/>9 options | bicycle_rental | *[rental](https://wiki.osm.org/wiki/Key:rental)* ([string](../SpecialInputElements.md#string)) |
| [rental-capacity-city_bike](#rental-capacity-city_bike) | How many city bikes can be rented here?<br/>_{capacity:city_bike} city bikes can be rented here_ | bicycle_rental | *[capacity:city_bike](https://wiki.osm.org/wiki/Key:capacity:city_bike)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-ebike](#rental-capacity-ebike) | How many electrical bikes can be rented here?<br/>_{capacity:ebike} electrical bikes can be rented here_ | bicycle_rental | *[capacity:ebike](https://wiki.osm.org/wiki/Key:capacity:ebike)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-kid_bike](#rental-capacity-kid_bike) | How many bikes for children can be rented here?<br/>_{capacity:kid_bike} bikes for children can be rented here_ | bicycle_rental | *[capacity:kid_bike](https://wiki.osm.org/wiki/Key:capacity:kid_bike)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-bmx](#rental-capacity-bmx) | How many BMX bikes can be rented here?<br/>_{capacity:bmx} BMX bikes can be rented here_ | bicycle_rental | *[capacity:bmx](https://wiki.osm.org/wiki/Key:capacity:bmx)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-mtb](#rental-capacity-mtb) | How many mountainbikes can be rented here?<br/>_{capacity:mtb} mountainbikes can be rented here_ | bicycle_rental | *[capacity:mtb](https://wiki.osm.org/wiki/Key:capacity:mtb)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-bicycle_pannier](#rental-capacity-bicycle_pannier) | How many bicycle panniers can be rented here?<br/>_{capacity:bicycle_pannier} bicycle panniers can be rented here_ | bicycle_rental | *[capacity:bicycle_pannier](https://wiki.osm.org/wiki/Key:capacity:bicycle_pannier)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-tandem_bicycle](#rental-capacity-tandem_bicycle) | How many tandem can be rented here?<br/>_{capacity:tandem_bicycle} tandem can be rented here_ | bicycle_rental | *[capacity:tandem_bicycle](https://wiki.osm.org/wiki/Key:capacity:tandem_bicycle)* ([pnat](../SpecialInputElements.md#pnat)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -243,7 +270,11 @@ This tagrendering has labels
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -13,6 +13,8 @@ Bicycle rental stations
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [bicycle_rental_type](#bicycle_rental_type)
- [website](#website)
@ -34,7 +36,7 @@ Bicycle rental stations
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
4. [Filters](#filters)
5. [Filters](#filters)
## Themes using this layer
@ -52,7 +54,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -69,6 +71,31 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:bicycle_pannier#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Abicycle_pannier/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) | [pnat](../SpecialInputElements.md#pnat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:tandem_bicycle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Atandem_bicycle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) | [pnat](../SpecialInputElements.md#pnat) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [bicycle_rental_type](#bicycle_rental_type) | What kind of bicycle rental is this?<br/>6 options | | _Multiple choice only_ |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [payment-options](#payment-options) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options))_ | Which methods of payment are accepted here?<br/>3 options | | _Multiple choice only_ |
| [payment-options-advanced](#payment-options-advanced) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options-advanced))_ | Which methods of payment are accepted here?<br/>5 options | | _Multiple choice only_ |
| [bicycle-types](#bicycle-types) | What kind of bicycles and accessories are rented here?<br/>_{rental} is rented here_<br/>9 options | bicycle_rental | *[rental](https://wiki.osm.org/wiki/Key:rental)* ([string](../SpecialInputElements.md#string)) |
| [rental-capacity-city_bike](#rental-capacity-city_bike) | How many city bikes can be rented here?<br/>_{capacity:city_bike} city bikes can be rented here_ | bicycle_rental | *[capacity:city_bike](https://wiki.osm.org/wiki/Key:capacity:city_bike)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-ebike](#rental-capacity-ebike) | How many electrical bikes can be rented here?<br/>_{capacity:ebike} electrical bikes can be rented here_ | bicycle_rental | *[capacity:ebike](https://wiki.osm.org/wiki/Key:capacity:ebike)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-kid_bike](#rental-capacity-kid_bike) | How many bikes for children can be rented here?<br/>_{capacity:kid_bike} bikes for children can be rented here_ | bicycle_rental | *[capacity:kid_bike](https://wiki.osm.org/wiki/Key:capacity:kid_bike)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-bmx](#rental-capacity-bmx) | How many BMX bikes can be rented here?<br/>_{capacity:bmx} BMX bikes can be rented here_ | bicycle_rental | *[capacity:bmx](https://wiki.osm.org/wiki/Key:capacity:bmx)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-mtb](#rental-capacity-mtb) | How many mountainbikes can be rented here?<br/>_{capacity:mtb} mountainbikes can be rented here_ | bicycle_rental | *[capacity:mtb](https://wiki.osm.org/wiki/Key:capacity:mtb)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-bicycle_pannier](#rental-capacity-bicycle_pannier) | How many bicycle panniers can be rented here?<br/>_{capacity:bicycle_pannier} bicycle panniers can be rented here_ | bicycle_rental | *[capacity:bicycle_pannier](https://wiki.osm.org/wiki/Key:capacity:bicycle_pannier)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-tandem_bicycle](#rental-capacity-tandem_bicycle) | How many tandem can be rented here?<br/>_{capacity:tandem_bicycle} tandem can be rented here_ | bicycle_rental | *[capacity:tandem_bicycle](https://wiki.osm.org/wiki/Key:capacity:tandem_bicycle)* ([pnat](../SpecialInputElements.md#pnat)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -231,7 +258,11 @@ This tagrendering has labels
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,8 @@ A bike café is a café geared towards cyclists, for example with services such
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [bike_cafe-name](#bike_cafe-name)
- [bike_cafe-bike-pump](#bike_cafe-bike-pump)
@ -26,7 +28,7 @@ A bike café is a café geared towards cyclists, for example with services such
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -50,7 +52,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -63,6 +65,24 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [bike_cafe-name](#bike_cafe-name) | What is the name of this bike cafe?<br/>_This bike cafe is called {name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [bike_cafe-bike-pump](#bike_cafe-bike-pump) | Does this bike cafe offer a bike pump for use by anyone?<br/>2 options | | _Multiple choice only_ |
| [bike_cafe-repair-tools](#bike_cafe-repair-tools) | Are tools offered to repair your own bike?<br/>2 options | | _Multiple choice only_ |
| [bike_cafe-repair-service](#bike_cafe-repair-service) | Does this bike cafe repair bikes?<br/>2 options | | _Multiple choice only_ |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | When it this bike café opened?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -135,7 +155,11 @@ The question is `When it this bike café opened?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,7 @@ A layer showing facilities where one can clean their bike
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [bike_cleaning-service_bicycle_cleaning_charge](#bike_cleaning-service_bicycle_cleaning_charge)
- [bike_cleaning-charge](#bike_cleaning-charge)
@ -45,7 +46,7 @@ Elements must match **any** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -54,6 +55,20 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/automated#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/automated/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [automated](https://wiki.openstreetmap.org/wiki/Key:automated) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automated%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:automated%3Dyes) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/self_service#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/self_service/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [self_service](https://wiki.openstreetmap.org/wiki/Key:self_service) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:self_service%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:self_service%3Dno) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [bike_cleaning-service_bicycle_cleaning_charge](#bike_cleaning-service_bicycle_cleaning_charge) | How much does it cost to use the cleaning service?<br/>_Using the cleaning service costs {service:bicycle:cleaning:charge}_<br/>2 options | | *[service:bicycle:cleaning:charge](https://wiki.osm.org/wiki/Key:service:bicycle:cleaning:charge)* ([string](../SpecialInputElements.md#string)) |
| [bike_cleaning-charge](#bike_cleaning-charge) | How much does it cost to use the cleaning service?<br/>_Using the cleaning service costs {charge}_<br/>2 options | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
| [automated](#automated) | Is this bicycle cleaning service automated?<br/>2 options | | _Multiple choice only_ |
| [self_service](#self_service) | Is this cleaning service self-service?<br/>2 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -100,7 +115,11 @@ This tagrendering is only visible in the popup if the following condition is met
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,8 @@ A layer showing where you can park your bike
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [Bicycle parking type](#bicycle-parking-type)
- [location](#location)
@ -33,7 +35,7 @@ A layer showing where you can park your bike
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -58,7 +60,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -77,6 +79,31 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:cargo_bike#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Acargo_bike/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike) | [nat](../SpecialInputElements.md#nat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/maxstay#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/maxstay/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) | [pnat](../SpecialInputElements.md#pnat) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [Bicycle parking type](#Bicycle parking type) | What is the type of this bicycle parking?<br/>_This is a bicycle parking of the type: {bicycle_parking}_<br/>11 options | | *[bicycle_parking](https://wiki.osm.org/wiki/Key:bicycle_parking)* ([string](../SpecialInputElements.md#string)) |
| [location](#location) | What is the relative location of this bicycle parking?<br/>4 options | | _Multiple choice only_ |
| [covered_and_building](#covered_and_building) | Is this parking covered?<br/>6 options | | _Multiple choice only_ |
| [Capacity](#Capacity) | How many bicycles fit in this bicycle parking?<br/>_Place for {capacity} bikes_ | | *[capacity](https://wiki.osm.org/wiki/Key:capacity)* ([nat](../SpecialInputElements.md#nat)) |
| [Access](#Access) | Who can use this bicycle parking?<br/>_{access}_<br/>4 options | | *[access](https://wiki.osm.org/wiki/Key:access)* ([string](../SpecialInputElements.md#string)) |
| [fee](#fee) | Are these bicycle parkings free to use?<br/>2 options | | _Multiple choice only_ |
| [charge](#charge) | How much does it cost to park your bike here?<br/>_Parking your bike costs {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) |
| [opening_hours_24_7_default](#opening_hours_24_7_default) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7_default))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [operator](#operator) | Who maintains this bicycle parking?<br/>_This bicycle parking is maintained by {operator}_ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
| [operator_phone](#operator_phone) | What is the phone number of the operator of this bicycle parking?<br/>_<a href='tel:{operator:phone}'>{operator:phone}</a>_<br/>2 options | | *[operator:phone](https://wiki.osm.org/wiki/Key:operator:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [operator_website](#operator_website) | What is the website number of the operator of this bicycle parking?<br/>_<a href='{operator:website}'>{operator:website}</a>_<br/>2 options | | *[operator:website](https://wiki.osm.org/wiki/Key:operator:website)* ([url](../SpecialInputElements.md#url)) |
| [operator_email](#operator_email) | What is the email address of the operator of this bicycle parking?<br/>_<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>_ | | *[operator:email](https://wiki.osm.org/wiki/Key:operator:email)* ([email](../SpecialInputElements.md#email)) |
| [Cargo bike spaces?](#Cargo bike spaces?) | Does this bicycle parking have spots for cargo bikes?<br/>3 options | | _Multiple choice only_ |
| [Cargo bike capacity?](#Cargo bike capacity?) | How many cargo bicycles fit in this bicycle parking?<br/>_This parking fits {capacity:cargo_bike} cargo bikes_<br/>1 options | | *[capacity:cargo_bike](https://wiki.osm.org/wiki/Key:capacity:cargo_bike)* ([nat](../SpecialInputElements.md#nat)) |
| [maxstay](#maxstay) | What is the maximum allowed parking duration?<br/>_A bike can be parked here for at most {canonical(maxstay)}_ | | *[maxstay](https://wiki.osm.org/wiki/Key:maxstay)* ([pnat](../SpecialInputElements.md#pnat)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -207,7 +234,11 @@ The question is `What is the maximum allowed parking duration?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,8 @@ A layer showing bicycle pumps and bicycle repair tool stands
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [bike_repair_station-available-services](#bike_repair_station-available-services)
- [Operational status](#operational-status)
@ -33,7 +35,7 @@ A layer showing bicycle pumps and bicycle repair tool stands
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -59,7 +61,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -77,6 +79,35 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/manometer#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/manometer/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [manometer](https://wiki.openstreetmap.org/wiki/Key:manometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno) [broken](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/level#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/level/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [bike_repair_station-available-services](#bike_repair_station-available-services) | Which services are available at this location?<br/>3 options | | _Multiple choice only_ |
| [Operational status](#Operational status) | Is the bike pump still operational?<br/>2 options | | _Multiple choice only_ |
| [opening_hours_24_7](#opening_hours_24_7) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | When is this bicycle repair point open?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [access](#access) | Who is allowed to use this repair station?<br/>5 options | | _Multiple choice only_ |
| [bike_repair_station-operator](#bike_repair_station-operator) | Who maintains this cycle pump?<br/>_Maintained by {operator}_ | operator-info | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
| [bike_repair_station-email](#bike_repair_station-email) | What is the email address of the maintainer?<br/>_<a href='mailto:{email}'>{email}</a>_ | operator-info | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [bike_repair_station-phone](#bike_repair_station-phone) | What is the phone number of the maintainer?<br/>_<a href='tel:{phone}'>{phone}</a>_ | operator-info | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [bike_repair_station-bike-chain-tool](#bike_repair_station-bike-chain-tool) | Does this bike repair station have a special tool to repair your bike chain?<br/>2 options | | _Multiple choice only_ |
| [bike_repair_station-bike-stand](#bike_repair_station-bike-stand) | Does this bike station have a hook to hang your bike on or a stand to raise it?<br/>2 options | | _Multiple choice only_ |
| [send_email_about_broken_pump](#send_email_about_broken_pump) | _{send_email(&LBRACEemail&RBRACE,Broken bicycle pump,Hello&COMMA
With this email&COMMA I'd like to inform you that the bicycle pump located at https://mapcomplete.org/cyclofix?lat=&LBRACE_lat&RBRACE&lon=&LBRACE_lon&RBRACE&z=18#&LBRACEid&RBRACE is broken.
Kind regards,Report this bicycle pump as broken)}_ | | _Multiple choice only_ |
| [bike_repair_station-valves](#bike_repair_station-valves) | What valves are supported?<br/>_This pump supports the following valves: {valves}_<br/>3 options | | *[valves](https://wiki.osm.org/wiki/Key:valves)* ([string](../SpecialInputElements.md#string)) |
| [bike_repair_station-electrical_pump](#bike_repair_station-electrical_pump) | Is this an electric bike pump?<br/>2 options | | _Multiple choice only_ |
| [bike_repair_station-manometer](#bike_repair_station-manometer) | Does the pump have a pressure indicator or manometer?<br/>3 options | | _Multiple choice only_ |
| [repeated](#repeated) <br/> _(Original in [questions](./BuiltinQuestions.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ |
| [single_level](#single_level) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -224,7 +255,11 @@ This tagrendering has labels
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,8 @@ A shop specifically selling bicycles or related items
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [reviews](#reviews)
- [shops-name](#shops-name)
@ -59,7 +61,7 @@ A shop specifically selling bicycles or related items
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -76,17 +78,15 @@ The following options to create new points are included:
Elements must match **any** of the following expressions:
- <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes' target='_blank'>yes</a>
- <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail' target='_blank'>service:bicycle:retail</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes' target='_blank'>yes</a>
- <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand' target='_blank'>service:bicycle:second_hand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes' target='_blank'>yes</a>
- <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle' target='_blank'>bicycle</a>
- (<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail' target='_blank'>service:bicycle:retail</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand' target='_blank'>service:bicycle:second_hand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes' target='_blank'>yes</a>) & amenity!=bicycle_repair_station
- <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports' target='_blank'>sports</a> & (<a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbicycle' target='_blank'>bicycle</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcycling' target='_blank'>cycling</a> | sport=) & service:bicycle:retail!=no & service:bicycle:repair!=no
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22service%3Abicycle%3Arepair%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Aretail%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Asecond_hand%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B%22sport%22%3D%22bicycle%22%5D%5B%22service%3Abicycle%3Aretail%22!%3D%22no%22%5D%5B%22service%3Abicycle%3Arepair%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B%22sport%22%3D%22cycling%22%5D%5B%22service%3Abicycle%3Aretail%22!%3D%22no%22%5D%5B%22service%3Abicycle%3Arepair%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B!%22sport%22%5D%5B%22service%3Abicycle%3Aretail%22!%3D%22no%22%5D%5B%22service%3Abicycle%3Arepair%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22shop%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Arepair%22%3D%22yes%22%5D%5B%22amenity%22!%3D%22bicycle_repair_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Aretail%22%3D%22yes%22%5D%5B%22amenity%22!%3D%22bicycle_repair_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Asecond_hand%22%3D%22yes%22%5D%5B%22amenity%22!%3D%22bicycle_repair_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B%22sport%22%3D%22bicycle%22%5D%5B%22service%3Abicycle%3Aretail%22!%3D%22no%22%5D%5B%22service%3Abicycle%3Arepair%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B%22sport%22%3D%22cycling%22%5D%5B%22service%3Abicycle%3Aretail%22!%3D%22no%22%5D%5B%22service%3Abicycle%3Arepair%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B!%22sport%22%5D%5B%22service%3Abicycle%3Aretail%22!%3D%22no%22%5D%5B%22service%3Abicycle%3Arepair%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -117,7 +117,7 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Adiy/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Donly_sold) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Acleaning/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:cleaning](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes) [diy](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Acleaning%3Acharge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) [terminal;wifi](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wifi) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) [terminal;wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wlan) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Afee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:ssid#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Assid/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/organic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/organic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) |
@ -127,6 +127,57 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/dog#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/dog/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed) [outside](https://wiki.openstreetmap.org/wiki/Tag:dog%3Doutside) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/description#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/description/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [shops](./shops.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [reviews](#reviews) <br/> _(Original in [shops](./shops.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
| [shops-name](#shops-name) <br/> _(Original in [shops](./shops.md#shops-name))_ | What is the name of this shop?<br/>_This shop is called <i>{name}</i>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [shop_types](#shop_types) <br/> _(Original in [shops](./shops.md#shop_types))_ | What kind of shop is this?<br/>_This is a {shop}_<br/>165 options | description | *[shop](https://wiki.osm.org/wiki/Key:shop)* ([string](../SpecialInputElements.md#string)) |
| [brand](#brand) <br/> _(Original in [shops](./shops.md#brand))_ | What is the brand of this shop?<br/>_Part of <b>{brand}</b>_<br/>1 options | | *[brand](https://wiki.osm.org/wiki/Key:brand)* ([string](../SpecialInputElements.md#string)) |
| [second_hand](#second_hand) <br/> _(Original in [shops](./shops.md#second_hand))_ | Does this shop sell second-hand items?<br/>3 options | | _Multiple choice only_ |
| [opening_hours](#opening_hours) <br/> _(Original in [shops](./shops.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [website](#website) <br/> _(Original in [shops](./shops.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [email](#email) <br/> _(Original in [shops](./shops.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [phone](#phone) <br/> _(Original in [shops](./shops.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [payment-options](#payment-options) <br/> _(Original in [shops](./shops.md#payment-options))_ | Which methods of payment are accepted here?<br/>3 options | | _Multiple choice only_ |
| [repeated](#repeated) <br/> _(Original in [shops](./shops.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ |
| [single_level](#single_level) <br/> _(Original in [shops](./shops.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) |
| [copyshop-print-sizes](#copyshop-print-sizes) <br/> _(Original in [shops](./shops.md#copyshop-print-sizes))_ | What paper formats does this shop offer?<br/>5 options | | _Multiple choice only_ |
| [copyshop-binding](#copyshop-binding) <br/> _(Original in [shops](./shops.md#copyshop-binding))_ | Does this shop offer a binding service?<br/>2 options | | _Multiple choice only_ |
| [optometrist_service](#optometrist_service) <br/> _(Original in [shops](./shops.md#optometrist_service))_ | Are medical services available here?<br/>2 options | | _Multiple choice only_ |
| [key_cutter](#key_cutter) <br/> _(Original in [shops](./shops.md#key_cutter))_ | Does this shop offer key cutting?<br/>3 options | | _Multiple choice only_ |
| [sells_new_bikes](#sells_new_bikes) <br/> _(Original in [shops](./shops.md#sells_new_bikes))_ | Does this shop sell bikes?<br/>2 options | | _Multiple choice only_ |
| [bike_second_hand](#bike_second_hand) <br/> _(Original in [shops](./shops.md#bike_second_hand))_ | Does this shop sell second-hand bikes?<br/>3 options | | _Multiple choice only_ |
| [repairs_bikes](#repairs_bikes) <br/> _(Original in [shops](./shops.md#repairs_bikes))_ | Does this shop repair bikes?<br/>4 options | | _Multiple choice only_ |
| [bicycle_rental](#bicycle_rental) <br/> _(Original in [shops](./shops.md#bicycle_rental))_ | Does this shop rent out bikes?<br/>2 options | | _Multiple choice only_ |
| [bicycle-types](#bicycle-types) <br/> _(Original in [shops](./shops.md#bicycle-types))_ | What kind of bicycles and accessories are rented here?<br/>_{rental} is rented here_<br/>9 options | bicycle_rental | *[rental](https://wiki.osm.org/wiki/Key:rental)* ([string](../SpecialInputElements.md#string)) |
| [rental-capacity-city_bike](#rental-capacity-city_bike) <br/> _(Original in [shops](./shops.md#rental-capacity-city_bike))_ | How many city bikes can be rented here?<br/>_{capacity:city_bike} city bikes can be rented here_ | bicycle_rental | *[capacity:city_bike](https://wiki.osm.org/wiki/Key:capacity:city_bike)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-ebike](#rental-capacity-ebike) <br/> _(Original in [shops](./shops.md#rental-capacity-ebike))_ | How many electrical bikes can be rented here?<br/>_{capacity:ebike} electrical bikes can be rented here_ | bicycle_rental | *[capacity:ebike](https://wiki.osm.org/wiki/Key:capacity:ebike)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-kid_bike](#rental-capacity-kid_bike) <br/> _(Original in [shops](./shops.md#rental-capacity-kid_bike))_ | How many bikes for children can be rented here?<br/>_{capacity:kid_bike} bikes for children can be rented here_ | bicycle_rental | *[capacity:kid_bike](https://wiki.osm.org/wiki/Key:capacity:kid_bike)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-bmx](#rental-capacity-bmx) <br/> _(Original in [shops](./shops.md#rental-capacity-bmx))_ | How many BMX bikes can be rented here?<br/>_{capacity:bmx} BMX bikes can be rented here_ | bicycle_rental | *[capacity:bmx](https://wiki.osm.org/wiki/Key:capacity:bmx)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-mtb](#rental-capacity-mtb) <br/> _(Original in [shops](./shops.md#rental-capacity-mtb))_ | How many mountainbikes can be rented here?<br/>_{capacity:mtb} mountainbikes can be rented here_ | bicycle_rental | *[capacity:mtb](https://wiki.osm.org/wiki/Key:capacity:mtb)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-bicycle_pannier](#rental-capacity-bicycle_pannier) <br/> _(Original in [shops](./shops.md#rental-capacity-bicycle_pannier))_ | How many bicycle panniers can be rented here?<br/>_{capacity:bicycle_pannier} bicycle panniers can be rented here_ | bicycle_rental | *[capacity:bicycle_pannier](https://wiki.osm.org/wiki/Key:capacity:bicycle_pannier)* ([pnat](../SpecialInputElements.md#pnat)) |
| [rental-capacity-tandem_bicycle](#rental-capacity-tandem_bicycle) <br/> _(Original in [shops](./shops.md#rental-capacity-tandem_bicycle))_ | How many tandem can be rented here?<br/>_{capacity:tandem_bicycle} tandem can be rented here_ | bicycle_rental | *[capacity:tandem_bicycle](https://wiki.osm.org/wiki/Key:capacity:tandem_bicycle)* ([pnat](../SpecialInputElements.md#pnat)) |
| [bike_pump_service](#bike_pump_service) <br/> _(Original in [shops](./shops.md#bike_pump_service))_ | Does this shop offer a bike pump for use by anyone?<br/>3 options | | _Multiple choice only_ |
| [bike_repair_tools](#bike_repair_tools) <br/> _(Original in [shops](./shops.md#bike_repair_tools))_ | Are there tools here to repair your own bike?<br/>3 options | | _Multiple choice only_ |
| [bike_wash](#bike_wash) <br/> _(Original in [shops](./shops.md#bike_wash))_ | Are bicycles washed here?<br/>3 options | | _Multiple choice only_ |
| [bike_cleaning-service_bicycle_cleaning_charge](#bike_cleaning-service_bicycle_cleaning_charge) <br/> _(Original in [shops](./shops.md#bike_cleaning-service_bicycle_cleaning_charge))_ | How much does it cost to use the cleaning service?<br/>_Using the cleaning service costs {service:bicycle:cleaning:charge}_<br/>2 options | | *[service:bicycle:cleaning:charge](https://wiki.osm.org/wiki/Key:service:bicycle:cleaning:charge)* ([string](../SpecialInputElements.md#string)) |
| [internet](#internet) <br/> _(Original in [shops](./shops.md#internet))_ | Does this place offer internet access?<br/>6 options | internet-all | _Multiple choice only_ |
| [internet-fee](#internet-fee) <br/> _(Original in [shops](./shops.md#internet-fee))_ | Is there a fee for internet access?<br/>3 options | internet-all | _Multiple choice only_ |
| [internet-ssid](#internet-ssid) <br/> _(Original in [shops](./shops.md#internet-ssid))_ | What is the network name for the wireless internet access?<br/>_The network name is <b>{internet_access:ssid}</b>_<br/>1 options | internet-all | *[internet_access:ssid](https://wiki.osm.org/wiki/Key:internet_access:ssid)* ([string](../SpecialInputElements.md#string)) |
| [organic](#organic) <br/> _(Original in [shops](./shops.md#organic))_ | Does this shop offer organic products?<br/>3 options | | _Multiple choice only_ |
| [sugar_free](#sugar_free) <br/> _(Original in [shops](./shops.md#sugar_free))_ | Does this shop have a sugar free offering?<br/>4 options | diets | _Multiple choice only_ |
| [gluten_free](#gluten_free) <br/> _(Original in [shops](./shops.md#gluten_free))_ | Does this shop have a gluten free offering?<br/>4 options | diets | _Multiple choice only_ |
| [lactose_free](#lactose_free) <br/> _(Original in [shops](./shops.md#lactose_free))_ | Does have a lactose-free offering?<br/>4 options | diets | _Multiple choice only_ |
| [dog-access](#dog-access) <br/> _(Original in [shops](./shops.md#dog-access))_ | Are dogs allowed in this business?<br/>5 options | | _Multiple choice only_ |
| [description](#description) <br/> _(Original in [shops](./shops.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.<br/>_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) |
| [leftover-questions](#leftover-questions) <br/> _(Original in [shops](./shops.md#leftover-questions))_ | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) <br/> _(Original in [shops](./shops.md#move-button))_ | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) <br/> _(Original in [shops](./shops.md#delete-button))_ | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [shops](./shops.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -612,7 +663,7 @@ The question is `Does this place offer internet access?`
- *This place offers internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/computer'> *This place offers internet access via a terminal or computer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal' target='_blank'>terminal</a>
- *This place offers wired internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired' target='_blank'>wired</a>
- *This place offers both wireless internet and internet access via a terminal or computer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wifi' target='_blank'>terminal;wifi</a>
- *This place offers both wireless internet and internet access via a terminal or computer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wlan' target='_blank'>terminal;wlan</a>
This tagrendering has labels
`internet-all`
@ -707,7 +758,11 @@ The question is `Is there still some relevant info that the previous questions d
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -11,6 +11,8 @@ A layer with bike-themed objects but who don't match any other layer
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [description](#description)
- [website](#website)
@ -20,7 +22,7 @@ A layer with bike-themed objects but who don't match any other layer
- [Opening hours](#opening-hours)
- [leftover-questions](#leftover-questions)
- [lod](#lod)
4. [Filters](#filters)
5. [Filters](#filters)
## Themes using this layer
@ -45,7 +47,7 @@ Elements must match **any** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -55,6 +57,19 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/phone#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/phone/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [description](#description) <br/> _(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.<br/>_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -106,7 +121,11 @@ The question is `What are the opening hours of {title()}?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### lod

View file

@ -12,6 +12,7 @@ Binoculars
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [binocular-charge](#binocular-charge)
- [binocular-direction](#binocular-direction)
@ -40,13 +41,25 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/direction#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/direction/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [binocular-charge](#binocular-charge) | How much does one have to pay to use these binoculars?<br/>_Using these binoculars costs {charge}_<br/>1 options | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
| [binocular-direction](#binocular-direction) | When looking through this binocular, in what direction does one look?<br/>_Looks towards {direction}°_ | | *[direction](https://wiki.osm.org/wiki/Key:direction)* ([direction](../SpecialInputElements.md#direction)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -67,7 +80,11 @@ The question is `When looking through this binocular, in what direction does one
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,7 @@ A birdhide
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [bird-hide-shelter-or-wall](#bird-hide-shelter-or-wall)
- [bird-hide-wheelchair](#bird-hide-wheelchair)
@ -20,7 +21,7 @@ A birdhide
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -42,7 +43,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -50,6 +51,19 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wheelchair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wheelchair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [bird-hide-shelter-or-wall](#bird-hide-shelter-or-wall) | Is this a bird blind or a bird watching shelter?<br/>4 options | | _Multiple choice only_ |
| [bird-hide-wheelchair](#bird-hide-wheelchair) | Is this bird hide accessible to wheelchair users?<br/>4 options | | _Multiple choice only_ |
| [birdhide-operator](#birdhide-operator) | Who operates this birdhide?<br/>_Operated by {operator}_<br/>2 options | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -84,7 +98,11 @@ The question is `Who operates this birdhide?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,8 @@ An establishment specifically dedicated to prostitution.
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [reviews](#reviews)
- [name](#name)
@ -24,7 +26,7 @@ An establishment specifically dedicated to prostitution.
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -44,7 +46,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -54,6 +56,22 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
| [name](#name) | What is the name of this brothel?<br/>_This brothel is named <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -110,7 +128,11 @@ This tagrendering has labels
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

183
Docs/Layers/building.md Normal file
View file

@ -0,0 +1,183 @@
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
# building
All buildings
- This layer is shown at zoomlevel **18** and higher
## Table of contents
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [architecture](#architecture)
- [construction_date](#construction_date)
- [address_joined](#address_joined)
- [header](#header)
- [housenumber](#housenumber)
- [street](#street)
- [unit](#unit)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [lod](#lod)
## Themes using this layer
- [architecture](https://mapcomplete.org/architecture)
- [personal](https://mapcomplete.org/personal)
## Basic tags for this layer
Elements must match the expression **building~.+**
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22building%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
## Supported attributes
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/building:architecture#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/building%3Aarchitecture/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [building:architecture](https://wiki.openstreetmap.org/wiki/Key:building:architecture) | [string](../SpecialInputElements.md#string) | [islamic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dislamic) [mamluk](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmamluk) [romanesque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dromanesque) [gothic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dgothic) [renaissance](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Drenaissance) [mannerism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmannerism) [ottoman](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dottoman) [baroque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dbaroque) [rococo](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Drococo) [empire](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dempire) [moorish revival](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmoorish revival) [neoclassicism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneoclassicism) [georgian](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dgeorgian) [victorian](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dvictorian) [historicism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dhistoricism) [neo-romanesque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-romanesque) [neo-byzantine](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-byzantine) [neo-gothic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-gothic) [neo-renaissance](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-renaissance) [neo-baroque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-baroque) [art_nouveau](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dart_nouveau) [eclectic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Declectic) [functionalism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dfunctionalism) [cubism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dcubism) [new_objectivity](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dnew_objectivity) [art_deco](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dart_deco) [modern](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmodern) [amsterdam_school](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Damsterdam_school) [international_style](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dinternational_style) [constructivism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dconstructivism) [stalinist_neoclassicism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dstalinist_neoclassicism) [brutalist](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dbrutalist) [postmodern](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dpostmodern) [contemporary](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dcontemporary) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/construction_date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/construction_date/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [construction_date](https://wiki.openstreetmap.org/wiki/Key:construction_date) | [date](../SpecialInputElements.md#date) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:street#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Astreet/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:housenumber#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Ahousenumber/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:street#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Astreet/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:unit#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Aunit/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:unit%3D) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [architecture](#architecture) | What is the architectural style of this building?<br/>_{building:architecture}_<br/>34 options | | *[building:architecture](https://wiki.osm.org/wiki/Key:building:architecture)* ([string](../SpecialInputElements.md#string)) |
| [construction_date](#construction_date) | When was this built?<br/>_Built in <b>{construction_date}</b>_ | | *[construction_date](https://wiki.osm.org/wiki/Key:construction_date)* ([date](../SpecialInputElements.md#date)) |
| [address_joined](#address_joined) <br/> _(Original in [address](./address.md#address_joined))_ | _{group(header,street;housenumber;unit)}_ | address | _Multiple choice only_ |
| [header](#header) <br/> _(Original in [address](./address.md#header))_ | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ |
| [housenumber](#housenumber) <br/> _(Original in [address](./address.md#housenumber))_ | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) |
| [street](#street) <br/> _(Original in [address](./address.md#street))_ | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) |
| [unit](#unit) <br/> _(Original in [address](./address.md#unit))_ | What is the unit number or letter?<br/>_The unit number is <b>{addr:unit}</b>_<br/>1 options | address, hidden | *[addr:unit](https://wiki.osm.org/wiki/Key:addr:unit)* ([string](../SpecialInputElements.md#string)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### architecture
The question is `What is the architectural style of this building?`
*{building:architecture}* is shown if `building:architecture` is set
- *Islamic architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dislamic' target='_blank'>islamic</a>
- *Mamluk architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmamluk' target='_blank'>mamluk</a>
- *Romanesque architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dromanesque' target='_blank'>romanesque</a>
- *Gothic architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dgothic' target='_blank'>gothic</a>
- *Renaissance architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Drenaissance' target='_blank'>renaissance</a>
- *Mannerism* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmannerism' target='_blank'>mannerism</a>
- *Ottoman architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dottoman' target='_blank'>ottoman</a>
- *Baroque architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dbaroque' target='_blank'>baroque</a>
- *Rococo* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Drococo' target='_blank'>rococo</a>
- *Empire style* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dempire' target='_blank'>empire</a>
- *Moorish Revival* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmoorish revival' target='_blank'>moorish revival</a>
- *Neoclassical architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneoclassicism' target='_blank'>neoclassicism</a>
- *Georgian architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dgeorgian' target='_blank'>georgian</a>
- *Victorian architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dvictorian' target='_blank'>victorian</a>
- *Historicism* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dhistoricism' target='_blank'>historicism</a>
- *Romanesque Revival* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-romanesque' target='_blank'>neo-romanesque</a>
- *Byzantine Revival* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-byzantine' target='_blank'>neo-byzantine</a>
- *Gothic Revival* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-gothic' target='_blank'>neo-gothic</a>
- *Renaissance Revival* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-renaissance' target='_blank'>neo-renaissance</a>
- *Baroque Revival* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-baroque' target='_blank'>neo-baroque</a>
- *Art Nouveau* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dart_nouveau' target='_blank'>art_nouveau</a>
- *Eclecticism in architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Declectic' target='_blank'>eclectic</a>
- *Functionalism* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dfunctionalism' target='_blank'>functionalism</a>
- *Cubism* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dcubism' target='_blank'>cubism</a>
- *New Objectivity* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dnew_objectivity' target='_blank'>new_objectivity</a>
- *Art Deco* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dart_deco' target='_blank'>art_deco</a>
- *Modern architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmodern' target='_blank'>modern</a>
- *Amsterdam School* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Damsterdam_school' target='_blank'>amsterdam_school</a>
- *International Style* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dinternational_style' target='_blank'>international_style</a>
- *Constructivism* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dconstructivism' target='_blank'>constructivism</a>
- *Stalinist architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dstalinist_neoclassicism' target='_blank'>stalinist_neoclassicism</a>
- *Brutalist architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dbrutalist' target='_blank'>brutalist</a>
- *Postmodern architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dpostmodern' target='_blank'>postmodern</a>
- *Contemporary architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dcontemporary' target='_blank'>contemporary</a>
### construction_date
The question is `When was this built?`
*Built in <b>{construction_date}</b>* is shown if `construction_date` is set
### address_joined
_This tagrendering has no question and is thus read-only_
*{group(header,street;housenumber;unit)}*
This tagrendering has labels
`address`
### header
_This tagrendering has no question and is thus read-only_
*{addr:street} <b>{addr:housenumber}</b> {addr:unit}*
- *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber=
This tagrendering has labels
`address`
`hidden`
### housenumber
The question is `What is the number of this house?`
*The house number is <b>{addr:housenumber}</b>* is shown if `addr:housenumber` is set
- *This building has no house number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`address`
`hidden`
### street
The question is `What street is this address located in?`
*This address is in street <b>{addr:street}</b>* is shown if `addr:street` is set
This tagrendering has labels
`address`
`hidden`
### unit
The question is `What is the unit number or letter?`
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set
- *No unit number* is shown if with addr:unit=
This tagrendering has labels
`address`
`hidden`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button
_This tagrendering has no question and is thus read-only_
*{move_button()}*
### lod
_This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}*
This tagrendering has labels
`added_by_default`
This document is autogenerated from [assets/layers/building/building.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/building/building.json)

View file

@ -0,0 +1,187 @@
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
# buildings_with_architecture
This layer is based on [building](../Layers/building.md)
All buildings
- This layer is shown at zoomlevel **12** and higher
## Table of contents
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [architecture](#architecture)
- [construction_date](#construction_date)
- [address_joined](#address_joined)
- [header](#header)
- [housenumber](#housenumber)
- [street](#street)
- [unit](#unit)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [lod](#lod)
## Themes using this layer
- [architecture](https://mapcomplete.org/architecture)
## Basic tags for this layer
Elements must match **all** of the following expressions:
0. building~.+
1. building:architecture~.+
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22building%22%5D%5B%22building%3Aarchitecture%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
## Supported attributes
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/building:architecture#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/building%3Aarchitecture/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [building:architecture](https://wiki.openstreetmap.org/wiki/Key:building:architecture) | [string](../SpecialInputElements.md#string) | [islamic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dislamic) [mamluk](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmamluk) [romanesque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dromanesque) [gothic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dgothic) [renaissance](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Drenaissance) [mannerism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmannerism) [ottoman](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dottoman) [baroque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dbaroque) [rococo](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Drococo) [empire](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dempire) [moorish revival](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmoorish revival) [neoclassicism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneoclassicism) [georgian](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dgeorgian) [victorian](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dvictorian) [historicism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dhistoricism) [neo-romanesque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-romanesque) [neo-byzantine](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-byzantine) [neo-gothic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-gothic) [neo-renaissance](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-renaissance) [neo-baroque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-baroque) [art_nouveau](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dart_nouveau) [eclectic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Declectic) [functionalism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dfunctionalism) [cubism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dcubism) [new_objectivity](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dnew_objectivity) [art_deco](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dart_deco) [modern](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmodern) [amsterdam_school](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Damsterdam_school) [international_style](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dinternational_style) [constructivism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dconstructivism) [stalinist_neoclassicism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dstalinist_neoclassicism) [brutalist](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dbrutalist) [postmodern](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dpostmodern) [contemporary](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dcontemporary) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/construction_date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/construction_date/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [construction_date](https://wiki.openstreetmap.org/wiki/Key:construction_date) | [date](../SpecialInputElements.md#date) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:street#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Astreet/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:housenumber#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Ahousenumber/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:street#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Astreet/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:unit#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Aunit/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:unit%3D) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [architecture](#architecture) | What is the architectural style of this building?<br/>_{building:architecture}_<br/>34 options | | *[building:architecture](https://wiki.osm.org/wiki/Key:building:architecture)* ([string](../SpecialInputElements.md#string)) |
| [construction_date](#construction_date) | When was this built?<br/>_Built in <b>{construction_date}</b>_ | | *[construction_date](https://wiki.osm.org/wiki/Key:construction_date)* ([date](../SpecialInputElements.md#date)) |
| [address_joined](#address_joined) <br/> _(Original in [address](./address.md#address_joined))_ | _{group(header,street;housenumber;unit)}_ | address | _Multiple choice only_ |
| [header](#header) <br/> _(Original in [address](./address.md#header))_ | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ |
| [housenumber](#housenumber) <br/> _(Original in [address](./address.md#housenumber))_ | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) |
| [street](#street) <br/> _(Original in [address](./address.md#street))_ | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) |
| [unit](#unit) <br/> _(Original in [address](./address.md#unit))_ | What is the unit number or letter?<br/>_The unit number is <b>{addr:unit}</b>_<br/>1 options | address, hidden | *[addr:unit](https://wiki.osm.org/wiki/Key:addr:unit)* ([string](../SpecialInputElements.md#string)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### architecture
The question is `What is the architectural style of this building?`
*{building:architecture}* is shown if `building:architecture` is set
- *Islamic architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dislamic' target='_blank'>islamic</a>
- *Mamluk architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmamluk' target='_blank'>mamluk</a>
- *Romanesque architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dromanesque' target='_blank'>romanesque</a>
- *Gothic architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dgothic' target='_blank'>gothic</a>
- *Renaissance architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Drenaissance' target='_blank'>renaissance</a>
- *Mannerism* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmannerism' target='_blank'>mannerism</a>
- *Ottoman architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dottoman' target='_blank'>ottoman</a>
- *Baroque architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dbaroque' target='_blank'>baroque</a>
- *Rococo* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Drococo' target='_blank'>rococo</a>
- *Empire style* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dempire' target='_blank'>empire</a>
- *Moorish Revival* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmoorish revival' target='_blank'>moorish revival</a>
- *Neoclassical architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneoclassicism' target='_blank'>neoclassicism</a>
- *Georgian architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dgeorgian' target='_blank'>georgian</a>
- *Victorian architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dvictorian' target='_blank'>victorian</a>
- *Historicism* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dhistoricism' target='_blank'>historicism</a>
- *Romanesque Revival* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-romanesque' target='_blank'>neo-romanesque</a>
- *Byzantine Revival* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-byzantine' target='_blank'>neo-byzantine</a>
- *Gothic Revival* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-gothic' target='_blank'>neo-gothic</a>
- *Renaissance Revival* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-renaissance' target='_blank'>neo-renaissance</a>
- *Baroque Revival* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-baroque' target='_blank'>neo-baroque</a>
- *Art Nouveau* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dart_nouveau' target='_blank'>art_nouveau</a>
- *Eclecticism in architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Declectic' target='_blank'>eclectic</a>
- *Functionalism* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dfunctionalism' target='_blank'>functionalism</a>
- *Cubism* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dcubism' target='_blank'>cubism</a>
- *New Objectivity* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dnew_objectivity' target='_blank'>new_objectivity</a>
- *Art Deco* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dart_deco' target='_blank'>art_deco</a>
- *Modern architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmodern' target='_blank'>modern</a>
- *Amsterdam School* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Damsterdam_school' target='_blank'>amsterdam_school</a>
- *International Style* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dinternational_style' target='_blank'>international_style</a>
- *Constructivism* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dconstructivism' target='_blank'>constructivism</a>
- *Stalinist architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dstalinist_neoclassicism' target='_blank'>stalinist_neoclassicism</a>
- *Brutalist architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dbrutalist' target='_blank'>brutalist</a>
- *Postmodern architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dpostmodern' target='_blank'>postmodern</a>
- *Contemporary architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dcontemporary' target='_blank'>contemporary</a>
### construction_date
The question is `When was this built?`
*Built in <b>{construction_date}</b>* is shown if `construction_date` is set
### address_joined
_This tagrendering has no question and is thus read-only_
*{group(header,street;housenumber;unit)}*
This tagrendering has labels
`address`
### header
_This tagrendering has no question and is thus read-only_
*{addr:street} <b>{addr:housenumber}</b> {addr:unit}*
- *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber=
This tagrendering has labels
`address`
`hidden`
### housenumber
The question is `What is the number of this house?`
*The house number is <b>{addr:housenumber}</b>* is shown if `addr:housenumber` is set
- *This building has no house number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`address`
`hidden`
### street
The question is `What street is this address located in?`
*This address is in street <b>{addr:street}</b>* is shown if `addr:street` is set
This tagrendering has labels
`address`
`hidden`
### unit
The question is `What is the unit number or letter?`
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set
- *No unit number* is shown if with addr:unit=
This tagrendering has labels
`address`
`hidden`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button
_This tagrendering has no question and is thus read-only_
*{move_button()}*
### lod
_This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}*
This tagrendering has labels
`added_by_default`
This document is autogenerated from [assets/themes/architecture/architecture.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/architecture/architecture.json)

View file

@ -12,6 +12,8 @@ A layer showing cafés and pubs where one can gather around a drink. The layer a
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [repeated](#repeated)
- [single_level](#single_level)
@ -36,7 +38,7 @@ A layer showing cafés and pubs where one can gather around a drink. The layer a
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -68,7 +70,7 @@ Elements must match **any** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -83,10 +85,38 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/smoking#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/smoking/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [smoking](https://wiki.openstreetmap.org/wiki/Key:smoking) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dno) [outside](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Doutside) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:electricity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Aelectricity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/dog#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/dog/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed) [outside](https://wiki.openstreetmap.org/wiki/Tag:dog%3Doutside) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) [terminal;wifi](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wifi) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) [terminal;wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wlan) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Afee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:ssid#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Assid/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [repeated](#repeated) <br/> _(Original in [questions](./BuiltinQuestions.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ |
| [single_level](#single_level) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) |
| [Name](#Name) | What is the name of this business?<br/>_This business is named {name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [Classification](#Classification) | What kind of cafe is this?<br/>6 options | | _Multiple choice only_ |
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [payment-options](#payment-options) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options))_ | Which methods of payment are accepted here?<br/>3 options | | _Multiple choice only_ |
| [wheelchair-access](#wheelchair-access) <br/> _(Original in [questions](./BuiltinQuestions.md#wheelchair-access))_ | Is this place accessible with a wheelchair?<br/>4 options | | _Multiple choice only_ |
| [smoking](#smoking) <br/> _(Original in [questions](./BuiltinQuestions.md#smoking))_ | Is smoking allowed at ?<br/>3 options | | _Multiple choice only_ |
| [service:electricity](#service:electricity) <br/> _(Original in [questions](./BuiltinQuestions.md#service:electricity))_ | Does this amenity have electrical outlets, available to customers when they are inside?<br/>4 options | | _Multiple choice only_ |
| [seating](#seating) <br/> _(Original in [questions](./BuiltinQuestions.md#seating))_ | What kind of seating does have?<br/>2 options | | _Multiple choice only_ |
| [dog-access](#dog-access) <br/> _(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?<br/>5 options | | _Multiple choice only_ |
| [internet](#internet) <br/> _(Original in [questions](./BuiltinQuestions.md#internet))_ | Does this place offer internet access?<br/>6 options | internet-all | _Multiple choice only_ |
| [internet-fee](#internet-fee) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-fee))_ | Is there a fee for internet access?<br/>3 options | internet-all | _Multiple choice only_ |
| [internet-ssid](#internet-ssid) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-ssid))_ | What is the network name for the wireless internet access?<br/>_The network name is <b>{internet_access:ssid}</b>_<br/>1 options | internet-all | *[internet_access:ssid](https://wiki.osm.org/wiki/Key:internet_access:ssid)* ([string](../SpecialInputElements.md#string)) |
| [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -229,7 +259,7 @@ The question is `Does this place offer internet access?`
- *This place offers internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/computer'> *This place offers internet access via a terminal or computer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal' target='_blank'>terminal</a>
- *This place offers wired internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired' target='_blank'>wired</a>
- *This place offers both wireless internet and internet access via a terminal or computer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wifi' target='_blank'>terminal;wifi</a>
- *This place offers both wireless internet and internet access via a terminal or computer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wlan' target='_blank'>terminal;wlan</a>
This tagrendering has labels
`internet-all`
@ -265,7 +295,11 @@ _This tagrendering has no question and is thus read-only_
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,18 +12,23 @@ Campsites
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [group_only](#group_only)
- [name](#name)
- [fee](#fee)
- [capacity_persons](#capacity_persons)
- [phone](#phone)
- [email](#email)
- [website](#website)
- [capacity_persons](#capacity_persons)
- [fee](#fee)
- [charge_person_day](#charge_person_day)
- [charge_day](#charge_day)
- [caravansites-toilets](#caravansites-toilets)
- [toilets-wheelchair](#toilets-wheelchair)
- [questions](#questions)
- [mastodon](#mastodon)
- [images](#images)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -45,19 +50,48 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/group_only#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/group_only/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [group_only](https://wiki.openstreetmap.org/wiki/Key:group_only) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:group_only%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:group_only%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:persons#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Apersons/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:persons](https://wiki.openstreetmap.org/wiki/Key:capacity:persons) | [pnat](../SpecialInputElements.md#pnat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/phone#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/phone/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:persons#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Apersons/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:persons](https://wiki.openstreetmap.org/wiki/Key:capacity:persons) | [pnat](../SpecialInputElements.md#pnat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/fee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:wheelchair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Awheelchair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:wheelchair](https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dno) [designated](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Ddesignated) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/contact:mastodon#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/contact%3Amastodon/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [contact:mastodon](https://wiki.openstreetmap.org/wiki/Key:contact:mastodon) | [fediverse](../SpecialInputElements.md#fediverse) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [group_only](#group_only) | Is this campsite exclusively for groups?<br/>2 options | | _Multiple choice only_ |
| [name](#name) | What is the name of this campsite?<br/>_The name of this campsite is {name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [capacity_persons](#capacity_persons) | How many people can stay here?<br/>_{capacity:persons} people can stay here_ | | *[capacity:persons](https://wiki.osm.org/wiki/Key:capacity:persons)* ([pnat](../SpecialInputElements.md#pnat)) |
| [fee](#fee) | Is there a fee?<br/>2 options | | _Multiple choice only_ |
| [charge_person_day](#charge_person_day) | What is the charge per person per day?<br/>_Charge per person per day: {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) |
| [charge_day](#charge_day) | What is the charge per day?<br/>_Charge per day: {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) |
| [caravansites-toilets](#caravansites-toilets) <br/> _(Original in [caravansites](./caravansites.md#caravansites-toilets))_ | Does this place have toilets?<br/>2 options | | _Multiple choice only_ |
| [toilets-wheelchair](#toilets-wheelchair) <br/> _(Original in [toilet_at_amenity](./toilet_at_amenity.md#toilets-wheelchair))_ | Is there a dedicated toilet for wheelchair users?<br/>3 options | wheelchair, hidden | _Multiple choice only_ |
| [questions](#questions) <br/> _(Original in [questions](./BuiltinQuestions.md#questions))_ | _{questions()}_ | | _Multiple choice only_ |
| [mastodon](#mastodon) <br/> _(Original in [questions](./BuiltinQuestions.md#mastodon))_ | What is the Mastodon-handle of ?<br/>_{fediverse_link(contact:mastodon)}_ | | *[contact:mastodon](https://wiki.osm.org/wiki/Key:contact:mastodon)* ([fediverse](../SpecialInputElements.md#fediverse)) |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}*
### group_only
The question is `Is this campsite exclusively for groups?`
@ -70,19 +104,6 @@ The question is `Is this campsite exclusively for groups?`
The question is `What is the name of this campsite?`
*The name of this campsite is {name}* is shown if `name` is set
### fee
The question is `Is a fee charged here?`
*A fee of {charge} should be paid for here* is shown if `charge` is set
- *The campsite is free of charge* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
- *A fee is charged here.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> & charge=
### capacity_persons
The question is `How many people can stay here?`
*{capacity:persons} people can stay here* is shown if `capacity:persons` is set
### phone
The question is `What is the phone number of {title()}?`
@ -114,6 +135,47 @@ The question is `What is the website of {title()}?`
This tagrendering has labels
`contact`
### capacity_persons
The question is `How many people can stay here?`
*{capacity:persons} people can stay here* is shown if `capacity:persons` is set
### fee
The question is `Is there a fee?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/cash.svg'> *The campsite is free of charge* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/cash.svg'> *There is a fee.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
### charge_person_day
The question is `What is the charge per person per day?`
*Charge per person per day: {charge}* is shown if `charge` is set
### charge_day
The question is `What is the charge per day?`
*Charge per day: {charge}* is shown if `charge` is set
### caravansites-toilets
The question is `Does this place have toilets?`
- *This place has toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
- *This place does not have toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a>
### toilets-wheelchair
The question is `Is there a dedicated toilet for wheelchair users?`
- *There is a dedicated toilet for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes' target='_blank'>yes</a>
- *No wheelchair access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dno' target='_blank'>no</a>
- *There is only a dedicated toilet for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Ddesignated' target='_blank'>designated</a>
This tagrendering has labels
`wheelchair`
`hidden`
### questions
Show the questions block at this location
_This tagrendering has no question and is thus read-only_
@ -124,11 +186,6 @@ Shows and asks for the mastodon handle
The question is `What is the Mastodon-handle of {title()}?`
*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}*
### lod
_This tagrendering has no question and is thus read-only_
@ -139,6 +196,11 @@ This tagrendering has labels
## Filters
| id | question | osmTags |
-----|-----|----- |
| fee_filter.0 | *Fee* (default) | |
| fee_filter.1 | free of charge | fee=no |
| id | question | osmTags |
-----|-----|----- |
| capacity_persons_filter.0 | *All capacities* (default) | |
@ -150,6 +212,12 @@ This tagrendering has labels
| capacity_persons_filter.6 | Capacity over 500 persons | capacity:persons>=501 |
| capacity_persons_filter.7 | ? | capacity:persons= |
| id | question | osmTags |
-----|-----|----- |
| toilets_filter.0 | *Toilets* (default) | |
| toilets_filter.1 | Toilets are available. | toilets=yes |
| toilets_filter.2 | There are no toilets. | toilets=no |
This document is autogenerated from [assets/layers/campsite/campsite.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/campsite/campsite.json)

View file

@ -12,6 +12,8 @@ Places where you can rent a car
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [name](#name)
- [website](#website)
@ -22,7 +24,7 @@ Places where you can rent a car
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -42,7 +44,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -52,6 +54,20 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/phone#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/phone/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [name](#name) | What is the name of this car rental?<br/>_This car rental is called {name}_<br/>1 options | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -105,7 +121,11 @@ The question is `What are the opening hours of {title()}?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,7 @@ camper sites
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [caravansites-name](#caravansites-name)
- [caravansites-fee](#caravansites-fee)
@ -51,7 +52,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -67,6 +68,27 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/permanent_camping#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/permanent_camping/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [permanent_camping](https://wiki.openstreetmap.org/wiki/Key:permanent_camping) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/description#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/description/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [caravansites-name](#caravansites-name) | What is this place called?<br/>_This place is called {name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [caravansites-fee](#caravansites-fee) | Does this place charge a fee?<br/>2 options | | _Multiple choice only_ |
| [caravansites-charge](#caravansites-charge) | How much does this place charge?<br/>_This place charges {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
| [caravansites-sanitary-dump](#caravansites-sanitary-dump) | Does this place have a sanitary dump station?<br/>2 options | | _Multiple choice only_ |
| [caravansites-capacity](#caravansites-capacity) | How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)<br/>_{capacity} campers can use this place at the same time_ | | *[capacity](https://wiki.osm.org/wiki/Key:capacity)* ([pnat](../SpecialInputElements.md#pnat)) |
| [caravansites-internet](#caravansites-internet) | Does this place provide internet access?<br/>3 options | | _Multiple choice only_ |
| [caravansites-internet-fee](#caravansites-internet-fee) | Do you have to pay for the internet access?<br/>2 options | | _Multiple choice only_ |
| [caravansites-toilets](#caravansites-toilets) | Does this place have toilets?<br/>2 options | | _Multiple choice only_ |
| [caravansites-website](#caravansites-website) | Does this place have a website?<br/>_Official website: <a href='{website}'>{website}</a>_ | | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [caravansites-long-term](#caravansites-long-term) | Does this place offer spots for long term rental?<br/>3 options | | _Multiple choice only_ |
| [caravansites-description](#caravansites-description) | Would you like to add a general description of this place? (Do not repeat information previously asked or shown above. Please keep it objective - opinions go into the reviews)<br/>_More details about this place: {description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) |
| [questions](#questions) <br/> _(Original in [questions](./BuiltinQuestions.md#questions))_ | _{questions()}_ | | _Multiple choice only_ |
| [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_

View file

@ -12,6 +12,8 @@ Layer showing individual charge points within a charging station
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Technical questions](#technical-questions)
- [images](#images)
- [ref](#ref)
- [capacity](#capacity)
@ -125,7 +127,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -216,6 +218,103 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema_5_20:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema_5_20%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema_5_20:current](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current) | [pfloat](../SpecialInputElements.md#pfloat) | [20](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema_5_20:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema_5_20%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema_5_20:output](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output) | [pfloat](../SpecialInputElements.md#pfloat) | [2.4 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [ref](#ref) | What is the reference number of this charge point?<br/>_The reference of this charge point is {ref}_ | | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) |
| [capacity](#capacity) <br/> _(Original in [charging_station](./charging_station.md#capacity))_ | How much vehicles can be charged here at the same time?<br/>_{capacity} vehicles can be charged here at the same time_ | | *[capacity](https://wiki.osm.org/wiki/Key:capacity)* ([pnat](../SpecialInputElements.md#pnat)) |
| [Available_charging_stations (generated)](#Available_charging_stations (generated)) <br/> _(Original in [charging_station](./charging_station.md#Available_charging_stations (generated)))_ | Which charging connections are available here?<br/>42 options | | _Multiple choice only_ |
| [plugs-amount-socket:schuko](#plugs-amount-socket:schuko) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:schuko))_ | How much plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) are available here?<br/>_There are <b class='text-xl'>{socket:schuko}</b> plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) available here_ | plugs-amount | *[socket:schuko](https://wiki.osm.org/wiki/Key:socket:schuko)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:typee](#plugs-amount-socket:typee) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:typee))_ | How much plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) are available here?<br/>_There are <b class='text-xl'>{socket:typee}</b> plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) available here_ | plugs-amount | *[socket:typee](https://wiki.osm.org/wiki/Key:socket:typee)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:chademo](#plugs-amount-socket:chademo) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:chademo))_ | How much plugs of type <b>Chademo</b> are available here?<br/>_There are <b class='text-xl'>{socket:chademo}</b> plugs of type <b>Chademo</b> available here_ | plugs-amount | *[socket:chademo](https://wiki.osm.org/wiki/Key:socket:chademo)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:type1_cable](#plugs-amount-socket:type1_cable) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:type1_cable))_ | How much plugs of type <b>Type 1 with cable</b> (J1772) are available here?<br/>_There are <b class='text-xl'>{socket:type1_cable}</b> plugs of type <b>Type 1 with cable</b> (J1772) available here_ | plugs-amount | *[socket:type1_cable](https://wiki.osm.org/wiki/Key:socket:type1_cable)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:type1](#plugs-amount-socket:type1) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:type1))_ | How much plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) are available here?<br/>_There are <b class='text-xl'>{socket:type1}</b> plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) available here_ | plugs-amount | *[socket:type1](https://wiki.osm.org/wiki/Key:socket:type1)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:type1_combo](#plugs-amount-socket:type1_combo) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:type1_combo))_ | How much plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) are available here?<br/>_There are <b class='text-xl'>{socket:type1_combo}</b> plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) available here_ | plugs-amount | *[socket:type1_combo](https://wiki.osm.org/wiki/Key:socket:type1_combo)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:tesla_supercharger](#plugs-amount-socket:tesla_supercharger) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:tesla_supercharger))_ | How much plugs of type <b>Tesla Supercharger</b> are available here?<br/>_There are <b class='text-xl'>{socket:tesla_supercharger}</b> plugs of type <b>Tesla Supercharger</b> available here_ | plugs-amount | *[socket:tesla_supercharger](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:type2](#plugs-amount-socket:type2) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:type2))_ | How much plugs of type <b>Type 2</b> (mennekes) are available here?<br/>_There are <b class='text-xl'>{socket:type2}</b> plugs of type <b>Type 2</b> (mennekes) available here_ | plugs-amount | *[socket:type2](https://wiki.osm.org/wiki/Key:socket:type2)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:type2_combo](#plugs-amount-socket:type2_combo) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:type2_combo))_ | How much plugs of type <b>Type 2 CCS</b> (mennekes) are available here?<br/>_There are <b class='text-xl'>{socket:type2_combo}</b> plugs of type <b>Type 2 CCS</b> (mennekes) available here_ | plugs-amount | *[socket:type2_combo](https://wiki.osm.org/wiki/Key:socket:type2_combo)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:type2_cable](#plugs-amount-socket:type2_cable) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:type2_cable))_ | How much plugs of type <b>Type 2 with cable</b> (mennekes) are available here?<br/>_There are <b class='text-xl'>{socket:type2_cable}</b> plugs of type <b>Type 2 with cable</b> (mennekes) available here_ | plugs-amount | *[socket:type2_cable](https://wiki.osm.org/wiki/Key:socket:type2_cable)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:tesla_supercharger_ccs](#plugs-amount-socket:tesla_supercharger_ccs) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:tesla_supercharger_ccs))_ | How much plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) are available here?<br/>_There are <b class='text-xl'>{socket:tesla_supercharger_ccs}</b> plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) available here_ | plugs-amount | *[socket:tesla_supercharger_ccs](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger_ccs)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:tesla_destination_us](#plugs-amount-socket:tesla_destination_us) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:tesla_destination_us))_ | How much plugs of type <b>Tesla Supercharger (destination)</b> are available here?<br/>_There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla Supercharger (destination)</b> available here_ | plugs-amount | *[socket:tesla_destination](https://wiki.osm.org/wiki/Key:socket:tesla_destination)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:tesla_destination](#plugs-amount-socket:tesla_destination) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:tesla_destination))_ | How much plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) are available here?<br/>_There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) available here_ | plugs-amount | *[socket:tesla_destination](https://wiki.osm.org/wiki/Key:socket:tesla_destination)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:USB-A](#plugs-amount-socket:USB-A) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:USB-A))_ | How much plugs of type <b>USB</b> to charge phones and small electronics are available here?<br/>_There are <b class='text-xl'>{socket:USB-A}</b> plugs of type <b>USB</b> to charge phones and small electronics available here_ | plugs-amount | *[socket:USB-A](https://wiki.osm.org/wiki/Key:socket:USB-A)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:bosch_3pin](#plugs-amount-socket:bosch_3pin) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:bosch_3pin))_ | How much plugs of type <b>Bosch Active Connect with 3 pins</b> and cable are available here?<br/>_There are <b class='text-xl'>{socket:bosch_3pin}</b> plugs of type <b>Bosch Active Connect with 3 pins</b> and cable available here_ | plugs-amount | *[socket:bosch_3pin](https://wiki.osm.org/wiki/Key:socket:bosch_3pin)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:bosch_5pin](#plugs-amount-socket:bosch_5pin) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:bosch_5pin))_ | How much plugs of type <b>Bosch Active Connect with 5 pins</b> and cable are available here?<br/>_There are <b class='text-xl'>{socket:bosch_5pin}</b> plugs of type <b>Bosch Active Connect with 5 pins</b> and cable available here_ | plugs-amount | *[socket:bosch_5pin](https://wiki.osm.org/wiki/Key:socket:bosch_5pin)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:bs1363](#plugs-amount-socket:bs1363) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:bs1363))_ | How much plugs of type <b>BS1363</b> (Type G) are available here?<br/>_There are <b class='text-xl'>{socket:bs1363}</b> plugs of type <b>BS1363</b> (Type G) available here_ | plugs-amount | *[socket:bs1363](https://wiki.osm.org/wiki/Key:socket:bs1363)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:nema5_15](#plugs-amount-socket:nema5_15) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:nema5_15))_ | How much plugs of type <b>NEMA 5-15</b> (Type B) are available here?<br/>_There are <b class='text-xl'>{socket:nema5_15}</b> plugs of type <b>NEMA 5-15</b> (Type B) available here_ | plugs-amount | *[socket:nema5_15](https://wiki.osm.org/wiki/Key:socket:nema5_15)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:sev1011_t23](#plugs-amount-socket:sev1011_t23) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:sev1011_t23))_ | How much plugs of type <b>SEV 1011 T23</b> (Type J) are available here?<br/>_There are <b class='text-xl'>{socket:sev1011_t23}</b> plugs of type <b>SEV 1011 T23</b> (Type J) available here_ | plugs-amount | *[socket:sev1011_t23](https://wiki.osm.org/wiki/Key:socket:sev1011_t23)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:as3112](#plugs-amount-socket:as3112) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:as3112))_ | How much plugs of type <b>AS3112</b> (Type I) are available here?<br/>_There are <b class='text-xl'>{socket:as3112}</b> plugs of type <b>AS3112</b> (Type I) available here_ | plugs-amount | *[socket:as3112](https://wiki.osm.org/wiki/Key:socket:as3112)* ([pnat](../SpecialInputElements.md#pnat)) |
| [plugs-amount-socket:nema_5_20](#plugs-amount-socket:nema_5_20) <br/> _(Original in [charging_station](./charging_station.md#plugs-amount-socket:nema_5_20))_ | How much plugs of type <b>NEMA 5-20</b> (Type B) are available here?<br/>_There are <b class='text-xl'>{socket:nema_5_20}</b> plugs of type <b>NEMA 5-20</b> (Type B) available here_ | plugs-amount | *[socket:nema_5_20](https://wiki.osm.org/wiki/Key:socket:nema_5_20)* ([pnat](../SpecialInputElements.md#pnat)) |
| [questions](#questions) <br/> _(Original in [questions](./BuiltinQuestions.md#questions))_ | _{questions()}_ | | _Multiple choice only_ |
| [questions-technical](#questions-technical) <br/> _(Original in [charging_station](./charging_station.md#questions-technical))_ | _<h3>Technical questions</h3>The questions below are very technical. Feel free to ignore them<br/>{questions(technical)}_ | | _Multiple choice only_ |
| [voltage-socket:schuko](#voltage-socket:schuko) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:schuko))_ | What voltage do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?<br/>_<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}_<br/>1 options | technical | *[socket:schuko:voltage](https://wiki.osm.org/wiki/Key:socket:schuko:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:schuko](#current-socket:schuko) <br/> _(Original in [charging_station](./charging_station.md#current-socket:schuko))_ | What current do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?<br/>_<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}_<br/>1 options | technical | *[socket:schuko:current](https://wiki.osm.org/wiki/Key:socket:schuko:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:schuko](#power-output-socket:schuko) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:schuko))_ | What power output does a single plug of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?<br/>_<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}_<br/>1 options | technical | *[socket:schuko:output](https://wiki.osm.org/wiki/Key:socket:schuko:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:typee](#voltage-socket:typee) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:typee))_ | What voltage do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?<br/>_<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}_<br/>1 options | technical | *[socket:typee:voltage](https://wiki.osm.org/wiki/Key:socket:typee:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:typee](#current-socket:typee) <br/> _(Original in [charging_station](./charging_station.md#current-socket:typee))_ | What current do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?<br/>_<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}_<br/>1 options | technical | *[socket:typee:current](https://wiki.osm.org/wiki/Key:socket:typee:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:typee](#power-output-socket:typee) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:typee))_ | What power output does a single plug of type <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?<br/>_<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}_<br/>2 options | technical | *[socket:typee:output](https://wiki.osm.org/wiki/Key:socket:typee:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:chademo](#voltage-socket:chademo) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:chademo))_ | What voltage do the plugs with <b>Chademo</b> offer?<br/>_<b>Chademo</b> outputs {canonical(socket:chademo:voltage)}_<br/>1 options | technical | *[socket:chademo:voltage](https://wiki.osm.org/wiki/Key:socket:chademo:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:chademo](#current-socket:chademo) <br/> _(Original in [charging_station](./charging_station.md#current-socket:chademo))_ | What current do the plugs with <b>Chademo</b> offer?<br/>_<b>Chademo</b> outputs at most {canonical(socket:chademo:current)}_<br/>1 options | technical | *[socket:chademo:current](https://wiki.osm.org/wiki/Key:socket:chademo:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:chademo](#power-output-socket:chademo) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:chademo))_ | What power output does a single plug of type <b>Chademo</b> offer?<br/>_<b>Chademo</b> outputs at most {canonical(socket:chademo:output)}_<br/>1 options | technical | *[socket:chademo:output](https://wiki.osm.org/wiki/Key:socket:chademo:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:type1_cable](#voltage-socket:type1_cable) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:type1_cable))_ | What voltage do the plugs with <b>Type 1 with cable</b> (J1772) offer?<br/>_<b>Type 1 with cable</b> (J1772) outputs {canonical(socket:type1_cable:voltage)}_<br/>2 options | technical | *[socket:type1_cable:voltage](https://wiki.osm.org/wiki/Key:socket:type1_cable:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type1_cable](#current-socket:type1_cable) <br/> _(Original in [charging_station](./charging_station.md#current-socket:type1_cable))_ | What current do the plugs with <b>Type 1 with cable</b> (J1772) offer?<br/>_<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:current)}_<br/>1 options | technical | *[socket:type1_cable:current](https://wiki.osm.org/wiki/Key:socket:type1_cable:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type1_cable](#power-output-socket:type1_cable) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:type1_cable))_ | What power output does a single plug of type <b>Type 1 with cable</b> (J1772) offer?<br/>_<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:output)}_<br/>2 options | technical | *[socket:type1_cable:output](https://wiki.osm.org/wiki/Key:socket:type1_cable:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:type1](#voltage-socket:type1) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:type1))_ | What voltage do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?<br/>_<b>Type 1 <i>without</i> cable</b> (J1772) outputs {canonical(socket:type1:voltage)}_<br/>2 options | technical | *[socket:type1:voltage](https://wiki.osm.org/wiki/Key:socket:type1:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type1](#current-socket:type1) <br/> _(Original in [charging_station](./charging_station.md#current-socket:type1))_ | What current do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?<br/>_<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:current)}_<br/>1 options | technical | *[socket:type1:current](https://wiki.osm.org/wiki/Key:socket:type1:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type1](#power-output-socket:type1) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:type1))_ | What power output does a single plug of type <b>Type 1 <i>without</i> cable</b> (J1772) offer?<br/>_<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:output)}_<br/>4 options | technical | *[socket:type1:output](https://wiki.osm.org/wiki/Key:socket:type1:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:type1_combo](#voltage-socket:type1_combo) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:type1_combo))_ | What voltage do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?<br/>_<b>Type 1 CCS</b> (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}_<br/>2 options | technical | *[socket:type1_combo:voltage](https://wiki.osm.org/wiki/Key:socket:type1_combo:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type1_combo](#current-socket:type1_combo) <br/> _(Original in [charging_station](./charging_station.md#current-socket:type1_combo))_ | What current do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?<br/>_<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}_<br/>2 options | technical | *[socket:type1_combo:current](https://wiki.osm.org/wiki/Key:socket:type1_combo:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type1_combo](#power-output-socket:type1_combo) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:type1_combo))_ | What power output does a single plug of type <b>Type 1 CCS</b> (aka Type 1 Combo) offer?<br/>_<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}_<br/>4 options | technical | *[socket:type1_combo:output](https://wiki.osm.org/wiki/Key:socket:type1_combo:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:tesla_supercharger](#voltage-socket:tesla_supercharger) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:tesla_supercharger))_ | What voltage do the plugs with <b>Tesla Supercharger</b> offer?<br/>_<b>Tesla Supercharger</b> outputs {canonical(socket:tesla_supercharger:voltage)}_<br/>1 options | technical | *[socket:tesla_supercharger:voltage](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:tesla_supercharger](#current-socket:tesla_supercharger) <br/> _(Original in [charging_station](./charging_station.md#current-socket:tesla_supercharger))_ | What current do the plugs with <b>Tesla Supercharger</b> offer?<br/>_<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:current)}_<br/>2 options | technical | *[socket:tesla_supercharger:current](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:tesla_supercharger](#power-output-socket:tesla_supercharger) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:tesla_supercharger))_ | What power output does a single plug of type <b>Tesla Supercharger</b> offer?<br/>_<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:output)}_<br/>3 options | technical | *[socket:tesla_supercharger:output](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:type2](#voltage-socket:type2) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:type2))_ | What voltage do the plugs with <b>Type 2</b> (mennekes) offer?<br/>_<b>Type 2</b> (mennekes) outputs {canonical(socket:type2:voltage)}_<br/>2 options | technical | *[socket:type2:voltage](https://wiki.osm.org/wiki/Key:socket:type2:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type2](#current-socket:type2) <br/> _(Original in [charging_station](./charging_station.md#current-socket:type2))_ | What current do the plugs with <b>Type 2</b> (mennekes) offer?<br/>_<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:current)}_<br/>2 options | technical | *[socket:type2:current](https://wiki.osm.org/wiki/Key:socket:type2:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type2](#power-output-socket:type2) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:type2))_ | What power output does a single plug of type <b>Type 2</b> (mennekes) offer?<br/>_<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:output)}_<br/>2 options | technical | *[socket:type2:output](https://wiki.osm.org/wiki/Key:socket:type2:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:type2_combo](#voltage-socket:type2_combo) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:type2_combo))_ | What voltage do the plugs with <b>Type 2 CCS</b> (mennekes) offer?<br/>_<b>Type 2 CCS</b> (mennekes) outputs {canonical(socket:type2_combo:voltage)}_<br/>2 options | technical | *[socket:type2_combo:voltage](https://wiki.osm.org/wiki/Key:socket:type2_combo:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type2_combo](#current-socket:type2_combo) <br/> _(Original in [charging_station](./charging_station.md#current-socket:type2_combo))_ | What current do the plugs with <b>Type 2 CCS</b> (mennekes) offer?<br/>_<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:current)}_<br/>2 options | technical | *[socket:type2_combo:current](https://wiki.osm.org/wiki/Key:socket:type2_combo:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type2_combo](#power-output-socket:type2_combo) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:type2_combo))_ | What power output does a single plug of type <b>Type 2 CCS</b> (mennekes) offer?<br/>_<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:output)}_<br/>1 options | technical | *[socket:type2_combo:output](https://wiki.osm.org/wiki/Key:socket:type2_combo:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:type2_cable](#voltage-socket:type2_cable) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:type2_cable))_ | What voltage do the plugs with <b>Type 2 with cable</b> (mennekes) offer?<br/>_<b>Type 2 with cable</b> (mennekes) outputs {canonical(socket:type2_cable:voltage)}_<br/>2 options | technical | *[socket:type2_cable:voltage](https://wiki.osm.org/wiki/Key:socket:type2_cable:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type2_cable](#current-socket:type2_cable) <br/> _(Original in [charging_station](./charging_station.md#current-socket:type2_cable))_ | What current do the plugs with <b>Type 2 with cable</b> (mennekes) offer?<br/>_<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:current)}_<br/>2 options | technical | *[socket:type2_cable:current](https://wiki.osm.org/wiki/Key:socket:type2_cable:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type2_cable](#power-output-socket:type2_cable) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:type2_cable))_ | What power output does a single plug of type <b>Type 2 with cable</b> (mennekes) offer?<br/>_<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:output)}_<br/>2 options | technical | *[socket:type2_cable:output](https://wiki.osm.org/wiki/Key:socket:type2_cable:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:tesla_supercharger_ccs](#voltage-socket:tesla_supercharger_ccs) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:tesla_supercharger_ccs))_ | What voltage do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?<br/>_<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}_<br/>2 options | technical | *[socket:tesla_supercharger_ccs:voltage](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger_ccs:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:tesla_supercharger_ccs](#current-socket:tesla_supercharger_ccs) <br/> _(Original in [charging_station](./charging_station.md#current-socket:tesla_supercharger_ccs))_ | What current do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?<br/>_<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}_<br/>2 options | technical | *[socket:tesla_supercharger_ccs:current](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger_ccs:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:tesla_supercharger_ccs](#power-output-socket:tesla_supercharger_ccs) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:tesla_supercharger_ccs))_ | What power output does a single plug of type <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?<br/>_<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}_<br/>1 options | technical | *[socket:tesla_supercharger_ccs:output](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger_ccs:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:tesla_destination_us](#voltage-socket:tesla_destination_us) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:tesla_destination_us))_ | What voltage do the plugs with <b>Tesla Supercharger (destination)</b> offer?<br/>_<b>Tesla Supercharger (destination)</b> outputs {canonical(socket:tesla_destination:voltage)}_<br/>1 options | technical | *[socket:tesla_destination:voltage](https://wiki.osm.org/wiki/Key:socket:tesla_destination:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:tesla_destination_us](#current-socket:tesla_destination_us) <br/> _(Original in [charging_station](./charging_station.md#current-socket:tesla_destination_us))_ | What current do the plugs with <b>Tesla Supercharger (destination)</b> offer?<br/>_<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:current)}_<br/>2 options | technical | *[socket:tesla_destination:current](https://wiki.osm.org/wiki/Key:socket:tesla_destination:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:tesla_destination_us](#power-output-socket:tesla_destination_us) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:tesla_destination_us))_ | What power output does a single plug of type <b>Tesla Supercharger (destination)</b> offer?<br/>_<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:output)}_<br/>3 options | technical | *[socket:tesla_destination:output](https://wiki.osm.org/wiki/Key:socket:tesla_destination:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:tesla_destination](#voltage-socket:tesla_destination) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:tesla_destination))_ | What voltage do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?<br/>_<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}_<br/>2 options | technical | *[socket:tesla_destination:voltage](https://wiki.osm.org/wiki/Key:socket:tesla_destination:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:tesla_destination](#current-socket:tesla_destination) <br/> _(Original in [charging_station](./charging_station.md#current-socket:tesla_destination))_ | What current do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?<br/>_<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}_<br/>2 options | technical | *[socket:tesla_destination:current](https://wiki.osm.org/wiki/Key:socket:tesla_destination:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:tesla_destination](#power-output-socket:tesla_destination) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:tesla_destination))_ | What power output does a single plug of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?<br/>_<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}_<br/>2 options | technical | *[socket:tesla_destination:output](https://wiki.osm.org/wiki/Key:socket:tesla_destination:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:USB-A](#voltage-socket:USB-A) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:USB-A))_ | What voltage do the plugs with <b>USB</b> to charge phones and small electronics offer?<br/>_<b>USB</b> to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}_<br/>1 options | technical | *[socket:USB-A:voltage](https://wiki.osm.org/wiki/Key:socket:USB-A:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:USB-A](#current-socket:USB-A) <br/> _(Original in [charging_station](./charging_station.md#current-socket:USB-A))_ | What current do the plugs with <b>USB</b> to charge phones and small electronics offer?<br/>_<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}_<br/>2 options | technical | *[socket:USB-A:current](https://wiki.osm.org/wiki/Key:socket:USB-A:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:USB-A](#power-output-socket:USB-A) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:USB-A))_ | What power output does a single plug of type <b>USB</b> to charge phones and small electronics offer?<br/>_<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}_<br/>2 options | technical | *[socket:USB-A:output](https://wiki.osm.org/wiki/Key:socket:USB-A:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:bosch_3pin](#voltage-socket:bosch_3pin) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:bosch_3pin))_ | What voltage do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 3 pins</b> and cable outputs {canonical(socket:bosch_3pin:voltage)}_ | technical | *[socket:bosch_3pin:voltage](https://wiki.osm.org/wiki/Key:socket:bosch_3pin:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:bosch_3pin](#current-socket:bosch_3pin) <br/> _(Original in [charging_station](./charging_station.md#current-socket:bosch_3pin))_ | What current do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:current)}_ | technical | *[socket:bosch_3pin:current](https://wiki.osm.org/wiki/Key:socket:bosch_3pin:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:bosch_3pin](#power-output-socket:bosch_3pin) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:bosch_3pin))_ | What power output does a single plug of type <b>Bosch Active Connect with 3 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:output)}_ | technical | *[socket:bosch_3pin:output](https://wiki.osm.org/wiki/Key:socket:bosch_3pin:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:bosch_5pin](#voltage-socket:bosch_5pin) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:bosch_5pin))_ | What voltage do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 5 pins</b> and cable outputs {canonical(socket:bosch_5pin:voltage)}_ | technical | *[socket:bosch_5pin:voltage](https://wiki.osm.org/wiki/Key:socket:bosch_5pin:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:bosch_5pin](#current-socket:bosch_5pin) <br/> _(Original in [charging_station](./charging_station.md#current-socket:bosch_5pin))_ | What current do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:current)}_ | technical | *[socket:bosch_5pin:current](https://wiki.osm.org/wiki/Key:socket:bosch_5pin:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:bosch_5pin](#power-output-socket:bosch_5pin) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:bosch_5pin))_ | What power output does a single plug of type <b>Bosch Active Connect with 5 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:output)}_ | technical | *[socket:bosch_5pin:output](https://wiki.osm.org/wiki/Key:socket:bosch_5pin:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:bs1363](#voltage-socket:bs1363) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:bs1363))_ | What voltage do the plugs with <b>BS1363</b> (Type G) offer?<br/>_<b>BS1363</b> (Type G) outputs {canonical(socket:bs1363:voltage)}_<br/>1 options | technical | *[socket:bs1363:voltage](https://wiki.osm.org/wiki/Key:socket:bs1363:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:bs1363](#current-socket:bs1363) <br/> _(Original in [charging_station](./charging_station.md#current-socket:bs1363))_ | What current do the plugs with <b>BS1363</b> (Type G) offer?<br/>_<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:current)}_<br/>1 options | technical | *[socket:bs1363:current](https://wiki.osm.org/wiki/Key:socket:bs1363:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:bs1363](#power-output-socket:bs1363) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:bs1363))_ | What power output does a single plug of type <b>BS1363</b> (Type G) offer?<br/>_<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:output)}_<br/>1 options | technical | *[socket:bs1363:output](https://wiki.osm.org/wiki/Key:socket:bs1363:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:nema5_15](#voltage-socket:nema5_15) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:nema5_15))_ | What voltage do the plugs with <b>NEMA 5-15</b> (Type B) offer?<br/>_<b>NEMA 5-15</b> (Type B) outputs {canonical(socket:nema5_15:voltage)}_<br/>1 options | technical | *[socket:nema5_15:voltage](https://wiki.osm.org/wiki/Key:socket:nema5_15:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:nema5_15](#current-socket:nema5_15) <br/> _(Original in [charging_station](./charging_station.md#current-socket:nema5_15))_ | What current do the plugs with <b>NEMA 5-15</b> (Type B) offer?<br/>_<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:current)}_<br/>1 options | technical | *[socket:nema5_15:current](https://wiki.osm.org/wiki/Key:socket:nema5_15:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:nema5_15](#power-output-socket:nema5_15) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:nema5_15))_ | What power output does a single plug of type <b>NEMA 5-15</b> (Type B) offer?<br/>_<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:output)}_<br/>1 options | technical | *[socket:nema5_15:output](https://wiki.osm.org/wiki/Key:socket:nema5_15:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:sev1011_t23](#voltage-socket:sev1011_t23) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:sev1011_t23))_ | What voltage do the plugs with <b>SEV 1011 T23</b> (Type J) offer?<br/>_<b>SEV 1011 T23</b> (Type J) outputs {canonical(socket:sev1011_t23:voltage)}_<br/>1 options | technical | *[socket:sev1011_t23:voltage](https://wiki.osm.org/wiki/Key:socket:sev1011_t23:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:sev1011_t23](#current-socket:sev1011_t23) <br/> _(Original in [charging_station](./charging_station.md#current-socket:sev1011_t23))_ | What current do the plugs with <b>SEV 1011 T23</b> (Type J) offer?<br/>_<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:current)}_<br/>1 options | technical | *[socket:sev1011_t23:current](https://wiki.osm.org/wiki/Key:socket:sev1011_t23:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:sev1011_t23](#power-output-socket:sev1011_t23) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:sev1011_t23))_ | What power output does a single plug of type <b>SEV 1011 T23</b> (Type J) offer?<br/>_<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:output)}_<br/>1 options | technical | *[socket:sev1011_t23:output](https://wiki.osm.org/wiki/Key:socket:sev1011_t23:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:as3112](#voltage-socket:as3112) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:as3112))_ | What voltage do the plugs with <b>AS3112</b> (Type I) offer?<br/>_<b>AS3112</b> (Type I) outputs {canonical(socket:as3112:voltage)}_<br/>1 options | technical | *[socket:as3112:voltage](https://wiki.osm.org/wiki/Key:socket:as3112:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:as3112](#current-socket:as3112) <br/> _(Original in [charging_station](./charging_station.md#current-socket:as3112))_ | What current do the plugs with <b>AS3112</b> (Type I) offer?<br/>_<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:current)}_<br/>1 options | technical | *[socket:as3112:current](https://wiki.osm.org/wiki/Key:socket:as3112:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:as3112](#power-output-socket:as3112) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:as3112))_ | What power output does a single plug of type <b>AS3112</b> (Type I) offer?<br/>_<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:output)}_<br/>1 options | technical | *[socket:as3112:output](https://wiki.osm.org/wiki/Key:socket:as3112:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [voltage-socket:nema_5_20](#voltage-socket:nema_5_20) <br/> _(Original in [charging_station](./charging_station.md#voltage-socket:nema_5_20))_ | What voltage do the plugs with <b>NEMA 5-20</b> (Type B) offer?<br/>_<b>NEMA 5-20</b> (Type B) outputs {canonical(socket:nema_5_20:voltage)}_<br/>1 options | technical | *[socket:nema_5_20:voltage](https://wiki.osm.org/wiki/Key:socket:nema_5_20:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:nema_5_20](#current-socket:nema_5_20) <br/> _(Original in [charging_station](./charging_station.md#current-socket:nema_5_20))_ | What current do the plugs with <b>NEMA 5-20</b> (Type B) offer?<br/>_<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:current)}_<br/>1 options | technical | *[socket:nema_5_20:current](https://wiki.osm.org/wiki/Key:socket:nema_5_20:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:nema_5_20](#power-output-socket:nema_5_20) <br/> _(Original in [charging_station](./charging_station.md#power-output-socket:nema_5_20))_ | What power output does a single plug of type <b>NEMA 5-20</b> (Type B) offer?<br/>_<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:output)}_<br/>1 options | technical | *[socket:nema_5_20:output](https://wiki.osm.org/wiki/Key:socket:nema_5_20:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_

View file

@ -12,6 +12,9 @@ A charging station
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [Technical questions](#technical-questions)
- [images](#images)
- [Type](#type)
- [access](#access)
@ -106,6 +109,7 @@ A charging station
- [fee](#fee)
- [charge](#charge)
- [payment-options](#payment-options)
- [app-name](#app-name)
- [Authentication](#authentication)
- [Auth phone](#auth-phone)
- [maxstay](#maxstay)
@ -125,7 +129,7 @@ A charging station
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -155,7 +159,7 @@ Elements must match **any** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -248,6 +252,7 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/fee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/payment:app#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/payment%3Aapp/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [payment:app](https://wiki.openstreetmap.org/wiki/Key:payment:app) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/authentication:phone_call:number#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/authentication%3Aphone_call%3Anumber/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [authentication:phone_call:number](https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call:number) | [phone](../SpecialInputElements.md#phone) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/maxstay#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/maxstay/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) | [pfloat](../SpecialInputElements.md#pfloat) | [unlimited](https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/network#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/network/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) | [AeroVironment](https://wiki.openstreetmap.org/wiki/Tag:network%3DAeroVironment) [Blink](https://wiki.openstreetmap.org/wiki/Tag:network%3DBlink) [EVgo](https://wiki.openstreetmap.org/wiki/Tag:network%3DEVgo) [Allego](https://wiki.openstreetmap.org/wiki/Tag:network%3DAllego) [Blue Corner](https://wiki.openstreetmap.org/wiki/Tag:network%3DBlue Corner) [Tesla](https://wiki.openstreetmap.org/wiki/Tag:network%3DTesla) |
@ -260,6 +265,123 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/planned:amenity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/planned%3Aamenity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [planned:amenity](https://wiki.openstreetmap.org/wiki/Key:planned:amenity) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [charging_station](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3Dcharging_station) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/parking:fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/parking%3Afee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [parking:fee](https://wiki.openstreetmap.org/wiki/Key:parking:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dyes) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [Type](#Type) | Which vehicles are allowed to charge here?<br/>5 options | | _Multiple choice only_ |
| [access](#access) | Who is allowed to use this charging station?<br/>_Access is {access}_<br/>6 options | | *[access](https://wiki.osm.org/wiki/Key:access)* ([string](../SpecialInputElements.md#string)) |
| [capacity](#capacity) | How much vehicles can be charged here at the same time?<br/>_{capacity} vehicles can be charged here at the same time_ | | *[capacity](https://wiki.osm.org/wiki/Key:capacity)* ([pnat](../SpecialInputElements.md#pnat)) |
| [Available_charging_stations (generated)](#Available_charging_stations (generated)) | Which charging connections are available here?<br/>42 options | | _Multiple choice only_ |
| [plugs-amount-socket:schuko](#plugs-amount-socket:schuko) | How much plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) are available here?<br/>_There are <b class='text-xl'>{socket:schuko}</b> plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) available here_ | plugs-amount | *[socket:schuko](https://wiki.osm.org/wiki/Key:socket:schuko)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:schuko](#voltage-socket:schuko) | What voltage do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?<br/>_<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}_<br/>1 options | technical | *[socket:schuko:voltage](https://wiki.osm.org/wiki/Key:socket:schuko:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:schuko](#current-socket:schuko) | What current do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?<br/>_<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}_<br/>1 options | technical | *[socket:schuko:current](https://wiki.osm.org/wiki/Key:socket:schuko:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:schuko](#power-output-socket:schuko) | What power output does a single plug of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?<br/>_<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}_<br/>1 options | technical | *[socket:schuko:output](https://wiki.osm.org/wiki/Key:socket:schuko:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:typee](#plugs-amount-socket:typee) | How much plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) are available here?<br/>_There are <b class='text-xl'>{socket:typee}</b> plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) available here_ | plugs-amount | *[socket:typee](https://wiki.osm.org/wiki/Key:socket:typee)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:typee](#voltage-socket:typee) | What voltage do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?<br/>_<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}_<br/>1 options | technical | *[socket:typee:voltage](https://wiki.osm.org/wiki/Key:socket:typee:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:typee](#current-socket:typee) | What current do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?<br/>_<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}_<br/>1 options | technical | *[socket:typee:current](https://wiki.osm.org/wiki/Key:socket:typee:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:typee](#power-output-socket:typee) | What power output does a single plug of type <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?<br/>_<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}_<br/>2 options | technical | *[socket:typee:output](https://wiki.osm.org/wiki/Key:socket:typee:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:chademo](#plugs-amount-socket:chademo) | How much plugs of type <b>Chademo</b> are available here?<br/>_There are <b class='text-xl'>{socket:chademo}</b> plugs of type <b>Chademo</b> available here_ | plugs-amount | *[socket:chademo](https://wiki.osm.org/wiki/Key:socket:chademo)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:chademo](#voltage-socket:chademo) | What voltage do the plugs with <b>Chademo</b> offer?<br/>_<b>Chademo</b> outputs {canonical(socket:chademo:voltage)}_<br/>1 options | technical | *[socket:chademo:voltage](https://wiki.osm.org/wiki/Key:socket:chademo:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:chademo](#current-socket:chademo) | What current do the plugs with <b>Chademo</b> offer?<br/>_<b>Chademo</b> outputs at most {canonical(socket:chademo:current)}_<br/>1 options | technical | *[socket:chademo:current](https://wiki.osm.org/wiki/Key:socket:chademo:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:chademo](#power-output-socket:chademo) | What power output does a single plug of type <b>Chademo</b> offer?<br/>_<b>Chademo</b> outputs at most {canonical(socket:chademo:output)}_<br/>1 options | technical | *[socket:chademo:output](https://wiki.osm.org/wiki/Key:socket:chademo:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:type1_cable](#plugs-amount-socket:type1_cable) | How much plugs of type <b>Type 1 with cable</b> (J1772) are available here?<br/>_There are <b class='text-xl'>{socket:type1_cable}</b> plugs of type <b>Type 1 with cable</b> (J1772) available here_ | plugs-amount | *[socket:type1_cable](https://wiki.osm.org/wiki/Key:socket:type1_cable)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:type1_cable](#voltage-socket:type1_cable) | What voltage do the plugs with <b>Type 1 with cable</b> (J1772) offer?<br/>_<b>Type 1 with cable</b> (J1772) outputs {canonical(socket:type1_cable:voltage)}_<br/>2 options | technical | *[socket:type1_cable:voltage](https://wiki.osm.org/wiki/Key:socket:type1_cable:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type1_cable](#current-socket:type1_cable) | What current do the plugs with <b>Type 1 with cable</b> (J1772) offer?<br/>_<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:current)}_<br/>1 options | technical | *[socket:type1_cable:current](https://wiki.osm.org/wiki/Key:socket:type1_cable:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type1_cable](#power-output-socket:type1_cable) | What power output does a single plug of type <b>Type 1 with cable</b> (J1772) offer?<br/>_<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:output)}_<br/>2 options | technical | *[socket:type1_cable:output](https://wiki.osm.org/wiki/Key:socket:type1_cable:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:type1](#plugs-amount-socket:type1) | How much plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) are available here?<br/>_There are <b class='text-xl'>{socket:type1}</b> plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) available here_ | plugs-amount | *[socket:type1](https://wiki.osm.org/wiki/Key:socket:type1)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:type1](#voltage-socket:type1) | What voltage do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?<br/>_<b>Type 1 <i>without</i> cable</b> (J1772) outputs {canonical(socket:type1:voltage)}_<br/>2 options | technical | *[socket:type1:voltage](https://wiki.osm.org/wiki/Key:socket:type1:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type1](#current-socket:type1) | What current do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?<br/>_<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:current)}_<br/>1 options | technical | *[socket:type1:current](https://wiki.osm.org/wiki/Key:socket:type1:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type1](#power-output-socket:type1) | What power output does a single plug of type <b>Type 1 <i>without</i> cable</b> (J1772) offer?<br/>_<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:output)}_<br/>4 options | technical | *[socket:type1:output](https://wiki.osm.org/wiki/Key:socket:type1:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:type1_combo](#plugs-amount-socket:type1_combo) | How much plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) are available here?<br/>_There are <b class='text-xl'>{socket:type1_combo}</b> plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) available here_ | plugs-amount | *[socket:type1_combo](https://wiki.osm.org/wiki/Key:socket:type1_combo)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:type1_combo](#voltage-socket:type1_combo) | What voltage do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?<br/>_<b>Type 1 CCS</b> (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}_<br/>2 options | technical | *[socket:type1_combo:voltage](https://wiki.osm.org/wiki/Key:socket:type1_combo:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type1_combo](#current-socket:type1_combo) | What current do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?<br/>_<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}_<br/>2 options | technical | *[socket:type1_combo:current](https://wiki.osm.org/wiki/Key:socket:type1_combo:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type1_combo](#power-output-socket:type1_combo) | What power output does a single plug of type <b>Type 1 CCS</b> (aka Type 1 Combo) offer?<br/>_<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}_<br/>4 options | technical | *[socket:type1_combo:output](https://wiki.osm.org/wiki/Key:socket:type1_combo:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:tesla_supercharger](#plugs-amount-socket:tesla_supercharger) | How much plugs of type <b>Tesla Supercharger</b> are available here?<br/>_There are <b class='text-xl'>{socket:tesla_supercharger}</b> plugs of type <b>Tesla Supercharger</b> available here_ | plugs-amount | *[socket:tesla_supercharger](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:tesla_supercharger](#voltage-socket:tesla_supercharger) | What voltage do the plugs with <b>Tesla Supercharger</b> offer?<br/>_<b>Tesla Supercharger</b> outputs {canonical(socket:tesla_supercharger:voltage)}_<br/>1 options | technical | *[socket:tesla_supercharger:voltage](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:tesla_supercharger](#current-socket:tesla_supercharger) | What current do the plugs with <b>Tesla Supercharger</b> offer?<br/>_<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:current)}_<br/>2 options | technical | *[socket:tesla_supercharger:current](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:tesla_supercharger](#power-output-socket:tesla_supercharger) | What power output does a single plug of type <b>Tesla Supercharger</b> offer?<br/>_<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:output)}_<br/>3 options | technical | *[socket:tesla_supercharger:output](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:type2](#plugs-amount-socket:type2) | How much plugs of type <b>Type 2</b> (mennekes) are available here?<br/>_There are <b class='text-xl'>{socket:type2}</b> plugs of type <b>Type 2</b> (mennekes) available here_ | plugs-amount | *[socket:type2](https://wiki.osm.org/wiki/Key:socket:type2)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:type2](#voltage-socket:type2) | What voltage do the plugs with <b>Type 2</b> (mennekes) offer?<br/>_<b>Type 2</b> (mennekes) outputs {canonical(socket:type2:voltage)}_<br/>2 options | technical | *[socket:type2:voltage](https://wiki.osm.org/wiki/Key:socket:type2:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type2](#current-socket:type2) | What current do the plugs with <b>Type 2</b> (mennekes) offer?<br/>_<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:current)}_<br/>2 options | technical | *[socket:type2:current](https://wiki.osm.org/wiki/Key:socket:type2:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type2](#power-output-socket:type2) | What power output does a single plug of type <b>Type 2</b> (mennekes) offer?<br/>_<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:output)}_<br/>2 options | technical | *[socket:type2:output](https://wiki.osm.org/wiki/Key:socket:type2:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:type2_combo](#plugs-amount-socket:type2_combo) | How much plugs of type <b>Type 2 CCS</b> (mennekes) are available here?<br/>_There are <b class='text-xl'>{socket:type2_combo}</b> plugs of type <b>Type 2 CCS</b> (mennekes) available here_ | plugs-amount | *[socket:type2_combo](https://wiki.osm.org/wiki/Key:socket:type2_combo)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:type2_combo](#voltage-socket:type2_combo) | What voltage do the plugs with <b>Type 2 CCS</b> (mennekes) offer?<br/>_<b>Type 2 CCS</b> (mennekes) outputs {canonical(socket:type2_combo:voltage)}_<br/>2 options | technical | *[socket:type2_combo:voltage](https://wiki.osm.org/wiki/Key:socket:type2_combo:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type2_combo](#current-socket:type2_combo) | What current do the plugs with <b>Type 2 CCS</b> (mennekes) offer?<br/>_<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:current)}_<br/>2 options | technical | *[socket:type2_combo:current](https://wiki.osm.org/wiki/Key:socket:type2_combo:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type2_combo](#power-output-socket:type2_combo) | What power output does a single plug of type <b>Type 2 CCS</b> (mennekes) offer?<br/>_<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:output)}_<br/>1 options | technical | *[socket:type2_combo:output](https://wiki.osm.org/wiki/Key:socket:type2_combo:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:type2_cable](#plugs-amount-socket:type2_cable) | How much plugs of type <b>Type 2 with cable</b> (mennekes) are available here?<br/>_There are <b class='text-xl'>{socket:type2_cable}</b> plugs of type <b>Type 2 with cable</b> (mennekes) available here_ | plugs-amount | *[socket:type2_cable](https://wiki.osm.org/wiki/Key:socket:type2_cable)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:type2_cable](#voltage-socket:type2_cable) | What voltage do the plugs with <b>Type 2 with cable</b> (mennekes) offer?<br/>_<b>Type 2 with cable</b> (mennekes) outputs {canonical(socket:type2_cable:voltage)}_<br/>2 options | technical | *[socket:type2_cable:voltage](https://wiki.osm.org/wiki/Key:socket:type2_cable:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type2_cable](#current-socket:type2_cable) | What current do the plugs with <b>Type 2 with cable</b> (mennekes) offer?<br/>_<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:current)}_<br/>2 options | technical | *[socket:type2_cable:current](https://wiki.osm.org/wiki/Key:socket:type2_cable:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type2_cable](#power-output-socket:type2_cable) | What power output does a single plug of type <b>Type 2 with cable</b> (mennekes) offer?<br/>_<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:output)}_<br/>2 options | technical | *[socket:type2_cable:output](https://wiki.osm.org/wiki/Key:socket:type2_cable:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:tesla_supercharger_ccs](#plugs-amount-socket:tesla_supercharger_ccs) | How much plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) are available here?<br/>_There are <b class='text-xl'>{socket:tesla_supercharger_ccs}</b> plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) available here_ | plugs-amount | *[socket:tesla_supercharger_ccs](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger_ccs)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:tesla_supercharger_ccs](#voltage-socket:tesla_supercharger_ccs) | What voltage do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?<br/>_<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}_<br/>2 options | technical | *[socket:tesla_supercharger_ccs:voltage](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger_ccs:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:tesla_supercharger_ccs](#current-socket:tesla_supercharger_ccs) | What current do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?<br/>_<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}_<br/>2 options | technical | *[socket:tesla_supercharger_ccs:current](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger_ccs:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:tesla_supercharger_ccs](#power-output-socket:tesla_supercharger_ccs) | What power output does a single plug of type <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?<br/>_<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}_<br/>1 options | technical | *[socket:tesla_supercharger_ccs:output](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger_ccs:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:tesla_destination_us](#plugs-amount-socket:tesla_destination_us) | How much plugs of type <b>Tesla Supercharger (destination)</b> are available here?<br/>_There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla Supercharger (destination)</b> available here_ | plugs-amount | *[socket:tesla_destination](https://wiki.osm.org/wiki/Key:socket:tesla_destination)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:tesla_destination_us](#voltage-socket:tesla_destination_us) | What voltage do the plugs with <b>Tesla Supercharger (destination)</b> offer?<br/>_<b>Tesla Supercharger (destination)</b> outputs {canonical(socket:tesla_destination:voltage)}_<br/>1 options | technical | *[socket:tesla_destination:voltage](https://wiki.osm.org/wiki/Key:socket:tesla_destination:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:tesla_destination_us](#current-socket:tesla_destination_us) | What current do the plugs with <b>Tesla Supercharger (destination)</b> offer?<br/>_<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:current)}_<br/>2 options | technical | *[socket:tesla_destination:current](https://wiki.osm.org/wiki/Key:socket:tesla_destination:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:tesla_destination_us](#power-output-socket:tesla_destination_us) | What power output does a single plug of type <b>Tesla Supercharger (destination)</b> offer?<br/>_<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:output)}_<br/>3 options | technical | *[socket:tesla_destination:output](https://wiki.osm.org/wiki/Key:socket:tesla_destination:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:tesla_destination](#plugs-amount-socket:tesla_destination) | How much plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) are available here?<br/>_There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) available here_ | plugs-amount | *[socket:tesla_destination](https://wiki.osm.org/wiki/Key:socket:tesla_destination)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:tesla_destination](#voltage-socket:tesla_destination) | What voltage do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?<br/>_<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}_<br/>2 options | technical | *[socket:tesla_destination:voltage](https://wiki.osm.org/wiki/Key:socket:tesla_destination:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:tesla_destination](#current-socket:tesla_destination) | What current do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?<br/>_<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}_<br/>2 options | technical | *[socket:tesla_destination:current](https://wiki.osm.org/wiki/Key:socket:tesla_destination:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:tesla_destination](#power-output-socket:tesla_destination) | What power output does a single plug of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?<br/>_<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}_<br/>2 options | technical | *[socket:tesla_destination:output](https://wiki.osm.org/wiki/Key:socket:tesla_destination:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:USB-A](#plugs-amount-socket:USB-A) | How much plugs of type <b>USB</b> to charge phones and small electronics are available here?<br/>_There are <b class='text-xl'>{socket:USB-A}</b> plugs of type <b>USB</b> to charge phones and small electronics available here_ | plugs-amount | *[socket:USB-A](https://wiki.osm.org/wiki/Key:socket:USB-A)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:USB-A](#voltage-socket:USB-A) | What voltage do the plugs with <b>USB</b> to charge phones and small electronics offer?<br/>_<b>USB</b> to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}_<br/>1 options | technical | *[socket:USB-A:voltage](https://wiki.osm.org/wiki/Key:socket:USB-A:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:USB-A](#current-socket:USB-A) | What current do the plugs with <b>USB</b> to charge phones and small electronics offer?<br/>_<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}_<br/>2 options | technical | *[socket:USB-A:current](https://wiki.osm.org/wiki/Key:socket:USB-A:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:USB-A](#power-output-socket:USB-A) | What power output does a single plug of type <b>USB</b> to charge phones and small electronics offer?<br/>_<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}_<br/>2 options | technical | *[socket:USB-A:output](https://wiki.osm.org/wiki/Key:socket:USB-A:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:bosch_3pin](#plugs-amount-socket:bosch_3pin) | How much plugs of type <b>Bosch Active Connect with 3 pins</b> and cable are available here?<br/>_There are <b class='text-xl'>{socket:bosch_3pin}</b> plugs of type <b>Bosch Active Connect with 3 pins</b> and cable available here_ | plugs-amount | *[socket:bosch_3pin](https://wiki.osm.org/wiki/Key:socket:bosch_3pin)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:bosch_3pin](#voltage-socket:bosch_3pin) | What voltage do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 3 pins</b> and cable outputs {canonical(socket:bosch_3pin:voltage)}_ | technical | *[socket:bosch_3pin:voltage](https://wiki.osm.org/wiki/Key:socket:bosch_3pin:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:bosch_3pin](#current-socket:bosch_3pin) | What current do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:current)}_ | technical | *[socket:bosch_3pin:current](https://wiki.osm.org/wiki/Key:socket:bosch_3pin:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:bosch_3pin](#power-output-socket:bosch_3pin) | What power output does a single plug of type <b>Bosch Active Connect with 3 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:output)}_ | technical | *[socket:bosch_3pin:output](https://wiki.osm.org/wiki/Key:socket:bosch_3pin:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:bosch_5pin](#plugs-amount-socket:bosch_5pin) | How much plugs of type <b>Bosch Active Connect with 5 pins</b> and cable are available here?<br/>_There are <b class='text-xl'>{socket:bosch_5pin}</b> plugs of type <b>Bosch Active Connect with 5 pins</b> and cable available here_ | plugs-amount | *[socket:bosch_5pin](https://wiki.osm.org/wiki/Key:socket:bosch_5pin)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:bosch_5pin](#voltage-socket:bosch_5pin) | What voltage do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 5 pins</b> and cable outputs {canonical(socket:bosch_5pin:voltage)}_ | technical | *[socket:bosch_5pin:voltage](https://wiki.osm.org/wiki/Key:socket:bosch_5pin:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:bosch_5pin](#current-socket:bosch_5pin) | What current do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:current)}_ | technical | *[socket:bosch_5pin:current](https://wiki.osm.org/wiki/Key:socket:bosch_5pin:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:bosch_5pin](#power-output-socket:bosch_5pin) | What power output does a single plug of type <b>Bosch Active Connect with 5 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:output)}_ | technical | *[socket:bosch_5pin:output](https://wiki.osm.org/wiki/Key:socket:bosch_5pin:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:bs1363](#plugs-amount-socket:bs1363) | How much plugs of type <b>BS1363</b> (Type G) are available here?<br/>_There are <b class='text-xl'>{socket:bs1363}</b> plugs of type <b>BS1363</b> (Type G) available here_ | plugs-amount | *[socket:bs1363](https://wiki.osm.org/wiki/Key:socket:bs1363)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:bs1363](#voltage-socket:bs1363) | What voltage do the plugs with <b>BS1363</b> (Type G) offer?<br/>_<b>BS1363</b> (Type G) outputs {canonical(socket:bs1363:voltage)}_<br/>1 options | technical | *[socket:bs1363:voltage](https://wiki.osm.org/wiki/Key:socket:bs1363:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:bs1363](#current-socket:bs1363) | What current do the plugs with <b>BS1363</b> (Type G) offer?<br/>_<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:current)}_<br/>1 options | technical | *[socket:bs1363:current](https://wiki.osm.org/wiki/Key:socket:bs1363:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:bs1363](#power-output-socket:bs1363) | What power output does a single plug of type <b>BS1363</b> (Type G) offer?<br/>_<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:output)}_<br/>1 options | technical | *[socket:bs1363:output](https://wiki.osm.org/wiki/Key:socket:bs1363:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:nema5_15](#plugs-amount-socket:nema5_15) | How much plugs of type <b>NEMA 5-15</b> (Type B) are available here?<br/>_There are <b class='text-xl'>{socket:nema5_15}</b> plugs of type <b>NEMA 5-15</b> (Type B) available here_ | plugs-amount | *[socket:nema5_15](https://wiki.osm.org/wiki/Key:socket:nema5_15)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:nema5_15](#voltage-socket:nema5_15) | What voltage do the plugs with <b>NEMA 5-15</b> (Type B) offer?<br/>_<b>NEMA 5-15</b> (Type B) outputs {canonical(socket:nema5_15:voltage)}_<br/>1 options | technical | *[socket:nema5_15:voltage](https://wiki.osm.org/wiki/Key:socket:nema5_15:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:nema5_15](#current-socket:nema5_15) | What current do the plugs with <b>NEMA 5-15</b> (Type B) offer?<br/>_<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:current)}_<br/>1 options | technical | *[socket:nema5_15:current](https://wiki.osm.org/wiki/Key:socket:nema5_15:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:nema5_15](#power-output-socket:nema5_15) | What power output does a single plug of type <b>NEMA 5-15</b> (Type B) offer?<br/>_<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:output)}_<br/>1 options | technical | *[socket:nema5_15:output](https://wiki.osm.org/wiki/Key:socket:nema5_15:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:sev1011_t23](#plugs-amount-socket:sev1011_t23) | How much plugs of type <b>SEV 1011 T23</b> (Type J) are available here?<br/>_There are <b class='text-xl'>{socket:sev1011_t23}</b> plugs of type <b>SEV 1011 T23</b> (Type J) available here_ | plugs-amount | *[socket:sev1011_t23](https://wiki.osm.org/wiki/Key:socket:sev1011_t23)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:sev1011_t23](#voltage-socket:sev1011_t23) | What voltage do the plugs with <b>SEV 1011 T23</b> (Type J) offer?<br/>_<b>SEV 1011 T23</b> (Type J) outputs {canonical(socket:sev1011_t23:voltage)}_<br/>1 options | technical | *[socket:sev1011_t23:voltage](https://wiki.osm.org/wiki/Key:socket:sev1011_t23:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:sev1011_t23](#current-socket:sev1011_t23) | What current do the plugs with <b>SEV 1011 T23</b> (Type J) offer?<br/>_<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:current)}_<br/>1 options | technical | *[socket:sev1011_t23:current](https://wiki.osm.org/wiki/Key:socket:sev1011_t23:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:sev1011_t23](#power-output-socket:sev1011_t23) | What power output does a single plug of type <b>SEV 1011 T23</b> (Type J) offer?<br/>_<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:output)}_<br/>1 options | technical | *[socket:sev1011_t23:output](https://wiki.osm.org/wiki/Key:socket:sev1011_t23:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:as3112](#plugs-amount-socket:as3112) | How much plugs of type <b>AS3112</b> (Type I) are available here?<br/>_There are <b class='text-xl'>{socket:as3112}</b> plugs of type <b>AS3112</b> (Type I) available here_ | plugs-amount | *[socket:as3112](https://wiki.osm.org/wiki/Key:socket:as3112)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:as3112](#voltage-socket:as3112) | What voltage do the plugs with <b>AS3112</b> (Type I) offer?<br/>_<b>AS3112</b> (Type I) outputs {canonical(socket:as3112:voltage)}_<br/>1 options | technical | *[socket:as3112:voltage](https://wiki.osm.org/wiki/Key:socket:as3112:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:as3112](#current-socket:as3112) | What current do the plugs with <b>AS3112</b> (Type I) offer?<br/>_<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:current)}_<br/>1 options | technical | *[socket:as3112:current](https://wiki.osm.org/wiki/Key:socket:as3112:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:as3112](#power-output-socket:as3112) | What power output does a single plug of type <b>AS3112</b> (Type I) offer?<br/>_<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:output)}_<br/>1 options | technical | *[socket:as3112:output](https://wiki.osm.org/wiki/Key:socket:as3112:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:nema_5_20](#plugs-amount-socket:nema_5_20) | How much plugs of type <b>NEMA 5-20</b> (Type B) are available here?<br/>_There are <b class='text-xl'>{socket:nema_5_20}</b> plugs of type <b>NEMA 5-20</b> (Type B) available here_ | plugs-amount | *[socket:nema_5_20](https://wiki.osm.org/wiki/Key:socket:nema_5_20)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:nema_5_20](#voltage-socket:nema_5_20) | What voltage do the plugs with <b>NEMA 5-20</b> (Type B) offer?<br/>_<b>NEMA 5-20</b> (Type B) outputs {canonical(socket:nema_5_20:voltage)}_<br/>1 options | technical | *[socket:nema_5_20:voltage](https://wiki.osm.org/wiki/Key:socket:nema_5_20:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:nema_5_20](#current-socket:nema_5_20) | What current do the plugs with <b>NEMA 5-20</b> (Type B) offer?<br/>_<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:current)}_<br/>1 options | technical | *[socket:nema_5_20:current](https://wiki.osm.org/wiki/Key:socket:nema_5_20:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:nema_5_20](#power-output-socket:nema_5_20) | What power output does a single plug of type <b>NEMA 5-20</b> (Type B) offer?<br/>_<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:output)}_<br/>1 options | technical | *[socket:nema_5_20:output](https://wiki.osm.org/wiki/Key:socket:nema_5_20:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [OH](#OH) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | When is this charging station opened?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [fee](#fee) | Does one have to pay to use this charging station?<br/>5 options | | _Multiple choice only_ |
| [charge](#charge) | How much does one have to pay to use this charging station?<br/>_Using this charging station costs <b>{charge}</b>_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
| [payment-options](#payment-options) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options-advanced))_ | Which methods of payment are accepted here?<br/>6 options | | _Multiple choice only_ |
| [app-name](#app-name) | What is the name of the app used for payment?<br/>_Payment can be done using the app <b>{payment:app}</b>_ | | *[payment:app](https://wiki.osm.org/wiki/Key:payment:app)* ([string](../SpecialInputElements.md#string)) |
| [Authentication](#Authentication) | What kind of authentication is available at the charging station?<br/>8 options | | _Multiple choice only_ |
| [Auth phone](#Auth phone) | What's the phone number for authentication call or SMS?<br/>_Authenticate by calling or SMS'ing to <a href='tel:{authentication:phone_call:number}'>{authentication:phone_call:number}</a>_ | | *[authentication:phone_call:number](https://wiki.osm.org/wiki/Key:authentication:phone_call:number)* ([phone](../SpecialInputElements.md#phone)) |
| [maxstay](#maxstay) <br/> _(Original in [questions](./BuiltinQuestions.md#maxstay))_ | What is the maximum amount of time one is allowed to stay here?<br/>_One can stay at most <b>{canonical(maxstay)}</b>_<br/>1 options | | *[maxstay](https://wiki.osm.org/wiki/Key:maxstay)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [Network](#Network) | Is this charging station part of a network?<br/>_Part of the network <b>{network}</b>_<br/>8 options | | *[network](https://wiki.osm.org/wiki/Key:network)* ([string](../SpecialInputElements.md#string)) |
| [Operator](#Operator) | Who is the operator of this charging station?<br/>_This charging station is operated by {operator}_<br/>1 options | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
| [phone](#phone) | What number can one call if there is a problem with this charging station?<br/>_In case of problems, call <a href='tel:{phone}'>{phone}</a>_ | | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) | What is the email address of the operator?<br/>_In case of problems, send an email to <a href='mailto:{email}'>{email}</a>_ | | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [website](#website) | What is the website where one can find more information about this charging station?<br/>_More info on <a href='{website}'>{website}</a>_ | | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [repeated](#repeated) <br/> _(Original in [questions](./BuiltinQuestions.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ |
| [single_level](#single_level) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) |
| [ref](#ref) | What is the reference number of this charging station?<br/>_Reference number is <b>{ref}</b>_ | | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) |
| [Operational status](#Operational status) | Is this charging point in use?<br/>5 options | | _Multiple choice only_ |
| [Parking:fee](#Parking:fee) | Does one have to pay a parking fee while charging?<br/>2 options | | _Multiple choice only_ |
| [questions](#questions) <br/> _(Original in [questions](./BuiltinQuestions.md#questions))_ | _{questions()}_ | | _Multiple choice only_ |
| [questions-technical](#questions-technical) | _<h3>Technical questions</h3>The questions below are very technical. Feel free to ignore them<br/>{questions(technical)}_ | | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -1276,9 +1398,17 @@ The question is `Which methods of payment are accepted here?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/qrcode.svg'> *Payment by QR-code is possible here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/smartphone.svg'> *Payment is done using a dedicated app* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/nfc_card.svg'> *Payment is done using a membership card* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/smartphone.svg'> *Payment is done using a dedicated app* is shown if with payment:app~.+ & payment:app!=no & payment:app!=yes. _This option cannot be chosen as answer_
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> | charge~.+
### app-name
The question is `What is the name of the app used for payment?`
*Payment can be done using the app <b>{payment:app}</b>* is shown if `payment:app` is set
This tagrendering is only visible in the popup if the following condition is met: payment:app~.+ & payment:app!=no
### Authentication
The question is `What kind of authentication is available at the charging station?`

View file

@ -13,6 +13,9 @@ A charging station
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [Technical questions](#technical-questions)
- [images](#images)
- [Type](#type)
- [access](#access)
@ -107,6 +110,7 @@ A charging station
- [fee](#fee)
- [charge](#charge)
- [payment-options](#payment-options)
- [app-name](#app-name)
- [Authentication](#authentication)
- [Auth phone](#auth-phone)
- [maxstay](#maxstay)
@ -126,7 +130,7 @@ A charging station
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
4. [Filters](#filters)
5. [Filters](#filters)
## Themes using this layer
@ -144,7 +148,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -237,6 +241,7 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/fee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/payment:app#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/payment%3Aapp/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [payment:app](https://wiki.openstreetmap.org/wiki/Key:payment:app) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/authentication:phone_call:number#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/authentication%3Aphone_call%3Anumber/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [authentication:phone_call:number](https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call:number) | [phone](../SpecialInputElements.md#phone) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/maxstay#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/maxstay/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) | [pfloat](../SpecialInputElements.md#pfloat) | [unlimited](https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/network#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/network/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) | [AeroVironment](https://wiki.openstreetmap.org/wiki/Tag:network%3DAeroVironment) [Blink](https://wiki.openstreetmap.org/wiki/Tag:network%3DBlink) [EVgo](https://wiki.openstreetmap.org/wiki/Tag:network%3DEVgo) [Allego](https://wiki.openstreetmap.org/wiki/Tag:network%3DAllego) [Blue Corner](https://wiki.openstreetmap.org/wiki/Tag:network%3DBlue Corner) [Tesla](https://wiki.openstreetmap.org/wiki/Tag:network%3DTesla) |
@ -249,6 +254,123 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/planned:amenity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/planned%3Aamenity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [planned:amenity](https://wiki.openstreetmap.org/wiki/Key:planned:amenity) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [charging_station](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3Dcharging_station) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/parking:fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/parking%3Afee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [parking:fee](https://wiki.openstreetmap.org/wiki/Key:parking:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dyes) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [Type](#Type) | Which vehicles are allowed to charge here?<br/>5 options | | _Multiple choice only_ |
| [access](#access) | Who is allowed to use this charging station?<br/>_Access is {access}_<br/>6 options | | *[access](https://wiki.osm.org/wiki/Key:access)* ([string](../SpecialInputElements.md#string)) |
| [capacity](#capacity) | How much vehicles can be charged here at the same time?<br/>_{capacity} vehicles can be charged here at the same time_ | | *[capacity](https://wiki.osm.org/wiki/Key:capacity)* ([pnat](../SpecialInputElements.md#pnat)) |
| [Available_charging_stations (generated)](#Available_charging_stations (generated)) | Which charging connections are available here?<br/>42 options | | _Multiple choice only_ |
| [plugs-amount-socket:schuko](#plugs-amount-socket:schuko) | How much plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) are available here?<br/>_There are <b class='text-xl'>{socket:schuko}</b> plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) available here_ | plugs-amount | *[socket:schuko](https://wiki.osm.org/wiki/Key:socket:schuko)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:schuko](#voltage-socket:schuko) | What voltage do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?<br/>_<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}_<br/>1 options | technical | *[socket:schuko:voltage](https://wiki.osm.org/wiki/Key:socket:schuko:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:schuko](#current-socket:schuko) | What current do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?<br/>_<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}_<br/>1 options | technical | *[socket:schuko:current](https://wiki.osm.org/wiki/Key:socket:schuko:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:schuko](#power-output-socket:schuko) | What power output does a single plug of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?<br/>_<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}_<br/>1 options | technical | *[socket:schuko:output](https://wiki.osm.org/wiki/Key:socket:schuko:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:typee](#plugs-amount-socket:typee) | How much plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) are available here?<br/>_There are <b class='text-xl'>{socket:typee}</b> plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) available here_ | plugs-amount | *[socket:typee](https://wiki.osm.org/wiki/Key:socket:typee)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:typee](#voltage-socket:typee) | What voltage do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?<br/>_<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}_<br/>1 options | technical | *[socket:typee:voltage](https://wiki.osm.org/wiki/Key:socket:typee:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:typee](#current-socket:typee) | What current do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?<br/>_<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}_<br/>1 options | technical | *[socket:typee:current](https://wiki.osm.org/wiki/Key:socket:typee:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:typee](#power-output-socket:typee) | What power output does a single plug of type <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?<br/>_<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}_<br/>2 options | technical | *[socket:typee:output](https://wiki.osm.org/wiki/Key:socket:typee:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:chademo](#plugs-amount-socket:chademo) | How much plugs of type <b>Chademo</b> are available here?<br/>_There are <b class='text-xl'>{socket:chademo}</b> plugs of type <b>Chademo</b> available here_ | plugs-amount | *[socket:chademo](https://wiki.osm.org/wiki/Key:socket:chademo)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:chademo](#voltage-socket:chademo) | What voltage do the plugs with <b>Chademo</b> offer?<br/>_<b>Chademo</b> outputs {canonical(socket:chademo:voltage)}_<br/>1 options | technical | *[socket:chademo:voltage](https://wiki.osm.org/wiki/Key:socket:chademo:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:chademo](#current-socket:chademo) | What current do the plugs with <b>Chademo</b> offer?<br/>_<b>Chademo</b> outputs at most {canonical(socket:chademo:current)}_<br/>1 options | technical | *[socket:chademo:current](https://wiki.osm.org/wiki/Key:socket:chademo:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:chademo](#power-output-socket:chademo) | What power output does a single plug of type <b>Chademo</b> offer?<br/>_<b>Chademo</b> outputs at most {canonical(socket:chademo:output)}_<br/>1 options | technical | *[socket:chademo:output](https://wiki.osm.org/wiki/Key:socket:chademo:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:type1_cable](#plugs-amount-socket:type1_cable) | How much plugs of type <b>Type 1 with cable</b> (J1772) are available here?<br/>_There are <b class='text-xl'>{socket:type1_cable}</b> plugs of type <b>Type 1 with cable</b> (J1772) available here_ | plugs-amount | *[socket:type1_cable](https://wiki.osm.org/wiki/Key:socket:type1_cable)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:type1_cable](#voltage-socket:type1_cable) | What voltage do the plugs with <b>Type 1 with cable</b> (J1772) offer?<br/>_<b>Type 1 with cable</b> (J1772) outputs {canonical(socket:type1_cable:voltage)}_<br/>2 options | technical | *[socket:type1_cable:voltage](https://wiki.osm.org/wiki/Key:socket:type1_cable:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type1_cable](#current-socket:type1_cable) | What current do the plugs with <b>Type 1 with cable</b> (J1772) offer?<br/>_<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:current)}_<br/>1 options | technical | *[socket:type1_cable:current](https://wiki.osm.org/wiki/Key:socket:type1_cable:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type1_cable](#power-output-socket:type1_cable) | What power output does a single plug of type <b>Type 1 with cable</b> (J1772) offer?<br/>_<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:output)}_<br/>2 options | technical | *[socket:type1_cable:output](https://wiki.osm.org/wiki/Key:socket:type1_cable:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:type1](#plugs-amount-socket:type1) | How much plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) are available here?<br/>_There are <b class='text-xl'>{socket:type1}</b> plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) available here_ | plugs-amount | *[socket:type1](https://wiki.osm.org/wiki/Key:socket:type1)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:type1](#voltage-socket:type1) | What voltage do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?<br/>_<b>Type 1 <i>without</i> cable</b> (J1772) outputs {canonical(socket:type1:voltage)}_<br/>2 options | technical | *[socket:type1:voltage](https://wiki.osm.org/wiki/Key:socket:type1:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type1](#current-socket:type1) | What current do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?<br/>_<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:current)}_<br/>1 options | technical | *[socket:type1:current](https://wiki.osm.org/wiki/Key:socket:type1:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type1](#power-output-socket:type1) | What power output does a single plug of type <b>Type 1 <i>without</i> cable</b> (J1772) offer?<br/>_<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:output)}_<br/>4 options | technical | *[socket:type1:output](https://wiki.osm.org/wiki/Key:socket:type1:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:type1_combo](#plugs-amount-socket:type1_combo) | How much plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) are available here?<br/>_There are <b class='text-xl'>{socket:type1_combo}</b> plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) available here_ | plugs-amount | *[socket:type1_combo](https://wiki.osm.org/wiki/Key:socket:type1_combo)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:type1_combo](#voltage-socket:type1_combo) | What voltage do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?<br/>_<b>Type 1 CCS</b> (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}_<br/>2 options | technical | *[socket:type1_combo:voltage](https://wiki.osm.org/wiki/Key:socket:type1_combo:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type1_combo](#current-socket:type1_combo) | What current do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?<br/>_<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}_<br/>2 options | technical | *[socket:type1_combo:current](https://wiki.osm.org/wiki/Key:socket:type1_combo:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type1_combo](#power-output-socket:type1_combo) | What power output does a single plug of type <b>Type 1 CCS</b> (aka Type 1 Combo) offer?<br/>_<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}_<br/>4 options | technical | *[socket:type1_combo:output](https://wiki.osm.org/wiki/Key:socket:type1_combo:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:tesla_supercharger](#plugs-amount-socket:tesla_supercharger) | How much plugs of type <b>Tesla Supercharger</b> are available here?<br/>_There are <b class='text-xl'>{socket:tesla_supercharger}</b> plugs of type <b>Tesla Supercharger</b> available here_ | plugs-amount | *[socket:tesla_supercharger](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:tesla_supercharger](#voltage-socket:tesla_supercharger) | What voltage do the plugs with <b>Tesla Supercharger</b> offer?<br/>_<b>Tesla Supercharger</b> outputs {canonical(socket:tesla_supercharger:voltage)}_<br/>1 options | technical | *[socket:tesla_supercharger:voltage](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:tesla_supercharger](#current-socket:tesla_supercharger) | What current do the plugs with <b>Tesla Supercharger</b> offer?<br/>_<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:current)}_<br/>2 options | technical | *[socket:tesla_supercharger:current](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:tesla_supercharger](#power-output-socket:tesla_supercharger) | What power output does a single plug of type <b>Tesla Supercharger</b> offer?<br/>_<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:output)}_<br/>3 options | technical | *[socket:tesla_supercharger:output](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:type2](#plugs-amount-socket:type2) | How much plugs of type <b>Type 2</b> (mennekes) are available here?<br/>_There are <b class='text-xl'>{socket:type2}</b> plugs of type <b>Type 2</b> (mennekes) available here_ | plugs-amount | *[socket:type2](https://wiki.osm.org/wiki/Key:socket:type2)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:type2](#voltage-socket:type2) | What voltage do the plugs with <b>Type 2</b> (mennekes) offer?<br/>_<b>Type 2</b> (mennekes) outputs {canonical(socket:type2:voltage)}_<br/>2 options | technical | *[socket:type2:voltage](https://wiki.osm.org/wiki/Key:socket:type2:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type2](#current-socket:type2) | What current do the plugs with <b>Type 2</b> (mennekes) offer?<br/>_<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:current)}_<br/>2 options | technical | *[socket:type2:current](https://wiki.osm.org/wiki/Key:socket:type2:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type2](#power-output-socket:type2) | What power output does a single plug of type <b>Type 2</b> (mennekes) offer?<br/>_<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:output)}_<br/>2 options | technical | *[socket:type2:output](https://wiki.osm.org/wiki/Key:socket:type2:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:type2_combo](#plugs-amount-socket:type2_combo) | How much plugs of type <b>Type 2 CCS</b> (mennekes) are available here?<br/>_There are <b class='text-xl'>{socket:type2_combo}</b> plugs of type <b>Type 2 CCS</b> (mennekes) available here_ | plugs-amount | *[socket:type2_combo](https://wiki.osm.org/wiki/Key:socket:type2_combo)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:type2_combo](#voltage-socket:type2_combo) | What voltage do the plugs with <b>Type 2 CCS</b> (mennekes) offer?<br/>_<b>Type 2 CCS</b> (mennekes) outputs {canonical(socket:type2_combo:voltage)}_<br/>2 options | technical | *[socket:type2_combo:voltage](https://wiki.osm.org/wiki/Key:socket:type2_combo:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type2_combo](#current-socket:type2_combo) | What current do the plugs with <b>Type 2 CCS</b> (mennekes) offer?<br/>_<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:current)}_<br/>2 options | technical | *[socket:type2_combo:current](https://wiki.osm.org/wiki/Key:socket:type2_combo:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type2_combo](#power-output-socket:type2_combo) | What power output does a single plug of type <b>Type 2 CCS</b> (mennekes) offer?<br/>_<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:output)}_<br/>1 options | technical | *[socket:type2_combo:output](https://wiki.osm.org/wiki/Key:socket:type2_combo:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:type2_cable](#plugs-amount-socket:type2_cable) | How much plugs of type <b>Type 2 with cable</b> (mennekes) are available here?<br/>_There are <b class='text-xl'>{socket:type2_cable}</b> plugs of type <b>Type 2 with cable</b> (mennekes) available here_ | plugs-amount | *[socket:type2_cable](https://wiki.osm.org/wiki/Key:socket:type2_cable)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:type2_cable](#voltage-socket:type2_cable) | What voltage do the plugs with <b>Type 2 with cable</b> (mennekes) offer?<br/>_<b>Type 2 with cable</b> (mennekes) outputs {canonical(socket:type2_cable:voltage)}_<br/>2 options | technical | *[socket:type2_cable:voltage](https://wiki.osm.org/wiki/Key:socket:type2_cable:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:type2_cable](#current-socket:type2_cable) | What current do the plugs with <b>Type 2 with cable</b> (mennekes) offer?<br/>_<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:current)}_<br/>2 options | technical | *[socket:type2_cable:current](https://wiki.osm.org/wiki/Key:socket:type2_cable:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:type2_cable](#power-output-socket:type2_cable) | What power output does a single plug of type <b>Type 2 with cable</b> (mennekes) offer?<br/>_<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:output)}_<br/>2 options | technical | *[socket:type2_cable:output](https://wiki.osm.org/wiki/Key:socket:type2_cable:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:tesla_supercharger_ccs](#plugs-amount-socket:tesla_supercharger_ccs) | How much plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) are available here?<br/>_There are <b class='text-xl'>{socket:tesla_supercharger_ccs}</b> plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) available here_ | plugs-amount | *[socket:tesla_supercharger_ccs](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger_ccs)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:tesla_supercharger_ccs](#voltage-socket:tesla_supercharger_ccs) | What voltage do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?<br/>_<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}_<br/>2 options | technical | *[socket:tesla_supercharger_ccs:voltage](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger_ccs:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:tesla_supercharger_ccs](#current-socket:tesla_supercharger_ccs) | What current do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?<br/>_<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}_<br/>2 options | technical | *[socket:tesla_supercharger_ccs:current](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger_ccs:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:tesla_supercharger_ccs](#power-output-socket:tesla_supercharger_ccs) | What power output does a single plug of type <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?<br/>_<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}_<br/>1 options | technical | *[socket:tesla_supercharger_ccs:output](https://wiki.osm.org/wiki/Key:socket:tesla_supercharger_ccs:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:tesla_destination_us](#plugs-amount-socket:tesla_destination_us) | How much plugs of type <b>Tesla Supercharger (destination)</b> are available here?<br/>_There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla Supercharger (destination)</b> available here_ | plugs-amount | *[socket:tesla_destination](https://wiki.osm.org/wiki/Key:socket:tesla_destination)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:tesla_destination_us](#voltage-socket:tesla_destination_us) | What voltage do the plugs with <b>Tesla Supercharger (destination)</b> offer?<br/>_<b>Tesla Supercharger (destination)</b> outputs {canonical(socket:tesla_destination:voltage)}_<br/>1 options | technical | *[socket:tesla_destination:voltage](https://wiki.osm.org/wiki/Key:socket:tesla_destination:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:tesla_destination_us](#current-socket:tesla_destination_us) | What current do the plugs with <b>Tesla Supercharger (destination)</b> offer?<br/>_<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:current)}_<br/>2 options | technical | *[socket:tesla_destination:current](https://wiki.osm.org/wiki/Key:socket:tesla_destination:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:tesla_destination_us](#power-output-socket:tesla_destination_us) | What power output does a single plug of type <b>Tesla Supercharger (destination)</b> offer?<br/>_<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:output)}_<br/>3 options | technical | *[socket:tesla_destination:output](https://wiki.osm.org/wiki/Key:socket:tesla_destination:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:tesla_destination](#plugs-amount-socket:tesla_destination) | How much plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) are available here?<br/>_There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) available here_ | plugs-amount | *[socket:tesla_destination](https://wiki.osm.org/wiki/Key:socket:tesla_destination)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:tesla_destination](#voltage-socket:tesla_destination) | What voltage do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?<br/>_<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}_<br/>2 options | technical | *[socket:tesla_destination:voltage](https://wiki.osm.org/wiki/Key:socket:tesla_destination:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:tesla_destination](#current-socket:tesla_destination) | What current do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?<br/>_<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}_<br/>2 options | technical | *[socket:tesla_destination:current](https://wiki.osm.org/wiki/Key:socket:tesla_destination:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:tesla_destination](#power-output-socket:tesla_destination) | What power output does a single plug of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?<br/>_<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}_<br/>2 options | technical | *[socket:tesla_destination:output](https://wiki.osm.org/wiki/Key:socket:tesla_destination:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:USB-A](#plugs-amount-socket:USB-A) | How much plugs of type <b>USB</b> to charge phones and small electronics are available here?<br/>_There are <b class='text-xl'>{socket:USB-A}</b> plugs of type <b>USB</b> to charge phones and small electronics available here_ | plugs-amount | *[socket:USB-A](https://wiki.osm.org/wiki/Key:socket:USB-A)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:USB-A](#voltage-socket:USB-A) | What voltage do the plugs with <b>USB</b> to charge phones and small electronics offer?<br/>_<b>USB</b> to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}_<br/>1 options | technical | *[socket:USB-A:voltage](https://wiki.osm.org/wiki/Key:socket:USB-A:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:USB-A](#current-socket:USB-A) | What current do the plugs with <b>USB</b> to charge phones and small electronics offer?<br/>_<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}_<br/>2 options | technical | *[socket:USB-A:current](https://wiki.osm.org/wiki/Key:socket:USB-A:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:USB-A](#power-output-socket:USB-A) | What power output does a single plug of type <b>USB</b> to charge phones and small electronics offer?<br/>_<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}_<br/>2 options | technical | *[socket:USB-A:output](https://wiki.osm.org/wiki/Key:socket:USB-A:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:bosch_3pin](#plugs-amount-socket:bosch_3pin) | How much plugs of type <b>Bosch Active Connect with 3 pins</b> and cable are available here?<br/>_There are <b class='text-xl'>{socket:bosch_3pin}</b> plugs of type <b>Bosch Active Connect with 3 pins</b> and cable available here_ | plugs-amount | *[socket:bosch_3pin](https://wiki.osm.org/wiki/Key:socket:bosch_3pin)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:bosch_3pin](#voltage-socket:bosch_3pin) | What voltage do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 3 pins</b> and cable outputs {canonical(socket:bosch_3pin:voltage)}_ | technical | *[socket:bosch_3pin:voltage](https://wiki.osm.org/wiki/Key:socket:bosch_3pin:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:bosch_3pin](#current-socket:bosch_3pin) | What current do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:current)}_ | technical | *[socket:bosch_3pin:current](https://wiki.osm.org/wiki/Key:socket:bosch_3pin:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:bosch_3pin](#power-output-socket:bosch_3pin) | What power output does a single plug of type <b>Bosch Active Connect with 3 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:output)}_ | technical | *[socket:bosch_3pin:output](https://wiki.osm.org/wiki/Key:socket:bosch_3pin:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:bosch_5pin](#plugs-amount-socket:bosch_5pin) | How much plugs of type <b>Bosch Active Connect with 5 pins</b> and cable are available here?<br/>_There are <b class='text-xl'>{socket:bosch_5pin}</b> plugs of type <b>Bosch Active Connect with 5 pins</b> and cable available here_ | plugs-amount | *[socket:bosch_5pin](https://wiki.osm.org/wiki/Key:socket:bosch_5pin)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:bosch_5pin](#voltage-socket:bosch_5pin) | What voltage do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 5 pins</b> and cable outputs {canonical(socket:bosch_5pin:voltage)}_ | technical | *[socket:bosch_5pin:voltage](https://wiki.osm.org/wiki/Key:socket:bosch_5pin:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:bosch_5pin](#current-socket:bosch_5pin) | What current do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:current)}_ | technical | *[socket:bosch_5pin:current](https://wiki.osm.org/wiki/Key:socket:bosch_5pin:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:bosch_5pin](#power-output-socket:bosch_5pin) | What power output does a single plug of type <b>Bosch Active Connect with 5 pins</b> and cable offer?<br/>_<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:output)}_ | technical | *[socket:bosch_5pin:output](https://wiki.osm.org/wiki/Key:socket:bosch_5pin:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:bs1363](#plugs-amount-socket:bs1363) | How much plugs of type <b>BS1363</b> (Type G) are available here?<br/>_There are <b class='text-xl'>{socket:bs1363}</b> plugs of type <b>BS1363</b> (Type G) available here_ | plugs-amount | *[socket:bs1363](https://wiki.osm.org/wiki/Key:socket:bs1363)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:bs1363](#voltage-socket:bs1363) | What voltage do the plugs with <b>BS1363</b> (Type G) offer?<br/>_<b>BS1363</b> (Type G) outputs {canonical(socket:bs1363:voltage)}_<br/>1 options | technical | *[socket:bs1363:voltage](https://wiki.osm.org/wiki/Key:socket:bs1363:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:bs1363](#current-socket:bs1363) | What current do the plugs with <b>BS1363</b> (Type G) offer?<br/>_<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:current)}_<br/>1 options | technical | *[socket:bs1363:current](https://wiki.osm.org/wiki/Key:socket:bs1363:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:bs1363](#power-output-socket:bs1363) | What power output does a single plug of type <b>BS1363</b> (Type G) offer?<br/>_<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:output)}_<br/>1 options | technical | *[socket:bs1363:output](https://wiki.osm.org/wiki/Key:socket:bs1363:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:nema5_15](#plugs-amount-socket:nema5_15) | How much plugs of type <b>NEMA 5-15</b> (Type B) are available here?<br/>_There are <b class='text-xl'>{socket:nema5_15}</b> plugs of type <b>NEMA 5-15</b> (Type B) available here_ | plugs-amount | *[socket:nema5_15](https://wiki.osm.org/wiki/Key:socket:nema5_15)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:nema5_15](#voltage-socket:nema5_15) | What voltage do the plugs with <b>NEMA 5-15</b> (Type B) offer?<br/>_<b>NEMA 5-15</b> (Type B) outputs {canonical(socket:nema5_15:voltage)}_<br/>1 options | technical | *[socket:nema5_15:voltage](https://wiki.osm.org/wiki/Key:socket:nema5_15:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:nema5_15](#current-socket:nema5_15) | What current do the plugs with <b>NEMA 5-15</b> (Type B) offer?<br/>_<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:current)}_<br/>1 options | technical | *[socket:nema5_15:current](https://wiki.osm.org/wiki/Key:socket:nema5_15:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:nema5_15](#power-output-socket:nema5_15) | What power output does a single plug of type <b>NEMA 5-15</b> (Type B) offer?<br/>_<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:output)}_<br/>1 options | technical | *[socket:nema5_15:output](https://wiki.osm.org/wiki/Key:socket:nema5_15:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:sev1011_t23](#plugs-amount-socket:sev1011_t23) | How much plugs of type <b>SEV 1011 T23</b> (Type J) are available here?<br/>_There are <b class='text-xl'>{socket:sev1011_t23}</b> plugs of type <b>SEV 1011 T23</b> (Type J) available here_ | plugs-amount | *[socket:sev1011_t23](https://wiki.osm.org/wiki/Key:socket:sev1011_t23)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:sev1011_t23](#voltage-socket:sev1011_t23) | What voltage do the plugs with <b>SEV 1011 T23</b> (Type J) offer?<br/>_<b>SEV 1011 T23</b> (Type J) outputs {canonical(socket:sev1011_t23:voltage)}_<br/>1 options | technical | *[socket:sev1011_t23:voltage](https://wiki.osm.org/wiki/Key:socket:sev1011_t23:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:sev1011_t23](#current-socket:sev1011_t23) | What current do the plugs with <b>SEV 1011 T23</b> (Type J) offer?<br/>_<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:current)}_<br/>1 options | technical | *[socket:sev1011_t23:current](https://wiki.osm.org/wiki/Key:socket:sev1011_t23:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:sev1011_t23](#power-output-socket:sev1011_t23) | What power output does a single plug of type <b>SEV 1011 T23</b> (Type J) offer?<br/>_<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:output)}_<br/>1 options | technical | *[socket:sev1011_t23:output](https://wiki.osm.org/wiki/Key:socket:sev1011_t23:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:as3112](#plugs-amount-socket:as3112) | How much plugs of type <b>AS3112</b> (Type I) are available here?<br/>_There are <b class='text-xl'>{socket:as3112}</b> plugs of type <b>AS3112</b> (Type I) available here_ | plugs-amount | *[socket:as3112](https://wiki.osm.org/wiki/Key:socket:as3112)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:as3112](#voltage-socket:as3112) | What voltage do the plugs with <b>AS3112</b> (Type I) offer?<br/>_<b>AS3112</b> (Type I) outputs {canonical(socket:as3112:voltage)}_<br/>1 options | technical | *[socket:as3112:voltage](https://wiki.osm.org/wiki/Key:socket:as3112:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:as3112](#current-socket:as3112) | What current do the plugs with <b>AS3112</b> (Type I) offer?<br/>_<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:current)}_<br/>1 options | technical | *[socket:as3112:current](https://wiki.osm.org/wiki/Key:socket:as3112:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:as3112](#power-output-socket:as3112) | What power output does a single plug of type <b>AS3112</b> (Type I) offer?<br/>_<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:output)}_<br/>1 options | technical | *[socket:as3112:output](https://wiki.osm.org/wiki/Key:socket:as3112:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [plugs-amount-socket:nema_5_20](#plugs-amount-socket:nema_5_20) | How much plugs of type <b>NEMA 5-20</b> (Type B) are available here?<br/>_There are <b class='text-xl'>{socket:nema_5_20}</b> plugs of type <b>NEMA 5-20</b> (Type B) available here_ | plugs-amount | *[socket:nema_5_20](https://wiki.osm.org/wiki/Key:socket:nema_5_20)* ([pnat](../SpecialInputElements.md#pnat)) |
| [voltage-socket:nema_5_20](#voltage-socket:nema_5_20) | What voltage do the plugs with <b>NEMA 5-20</b> (Type B) offer?<br/>_<b>NEMA 5-20</b> (Type B) outputs {canonical(socket:nema_5_20:voltage)}_<br/>1 options | technical | *[socket:nema_5_20:voltage](https://wiki.osm.org/wiki/Key:socket:nema_5_20:voltage)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [current-socket:nema_5_20](#current-socket:nema_5_20) | What current do the plugs with <b>NEMA 5-20</b> (Type B) offer?<br/>_<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:current)}_<br/>1 options | technical | *[socket:nema_5_20:current](https://wiki.osm.org/wiki/Key:socket:nema_5_20:current)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [power-output-socket:nema_5_20](#power-output-socket:nema_5_20) | What power output does a single plug of type <b>NEMA 5-20</b> (Type B) offer?<br/>_<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:output)}_<br/>1 options | technical | *[socket:nema_5_20:output](https://wiki.osm.org/wiki/Key:socket:nema_5_20:output)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [OH](#OH) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | When is this charging station opened?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [fee](#fee) | Does one have to pay to use this charging station?<br/>5 options | | _Multiple choice only_ |
| [charge](#charge) | How much does one have to pay to use this charging station?<br/>_Using this charging station costs <b>{charge}</b>_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
| [payment-options](#payment-options) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options-advanced))_ | Which methods of payment are accepted here?<br/>6 options | | _Multiple choice only_ |
| [app-name](#app-name) | What is the name of the app used for payment?<br/>_Payment can be done using the app <b>{payment:app}</b>_ | | *[payment:app](https://wiki.osm.org/wiki/Key:payment:app)* ([string](../SpecialInputElements.md#string)) |
| [Authentication](#Authentication) | What kind of authentication is available at the charging station?<br/>8 options | | _Multiple choice only_ |
| [Auth phone](#Auth phone) | What's the phone number for authentication call or SMS?<br/>_Authenticate by calling or SMS'ing to <a href='tel:{authentication:phone_call:number}'>{authentication:phone_call:number}</a>_ | | *[authentication:phone_call:number](https://wiki.osm.org/wiki/Key:authentication:phone_call:number)* ([phone](../SpecialInputElements.md#phone)) |
| [maxstay](#maxstay) <br/> _(Original in [questions](./BuiltinQuestions.md#maxstay))_ | What is the maximum amount of time one is allowed to stay here?<br/>_One can stay at most <b>{canonical(maxstay)}</b>_<br/>1 options | | *[maxstay](https://wiki.osm.org/wiki/Key:maxstay)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [Network](#Network) | Is this charging station part of a network?<br/>_Part of the network <b>{network}</b>_<br/>8 options | | *[network](https://wiki.osm.org/wiki/Key:network)* ([string](../SpecialInputElements.md#string)) |
| [Operator](#Operator) | Who is the operator of this charging station?<br/>_This charging station is operated by {operator}_<br/>1 options | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
| [phone](#phone) | What number can one call if there is a problem with this charging station?<br/>_In case of problems, call <a href='tel:{phone}'>{phone}</a>_ | | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) | What is the email address of the operator?<br/>_In case of problems, send an email to <a href='mailto:{email}'>{email}</a>_ | | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [website](#website) | What is the website where one can find more information about this charging station?<br/>_More info on <a href='{website}'>{website}</a>_ | | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [repeated](#repeated) <br/> _(Original in [questions](./BuiltinQuestions.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ |
| [single_level](#single_level) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) |
| [ref](#ref) | What is the reference number of this charging station?<br/>_Reference number is <b>{ref}</b>_ | | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) |
| [Operational status](#Operational status) | Is this charging point in use?<br/>5 options | | _Multiple choice only_ |
| [Parking:fee](#Parking:fee) | Does one have to pay a parking fee while charging?<br/>2 options | | _Multiple choice only_ |
| [questions](#questions) <br/> _(Original in [questions](./BuiltinQuestions.md#questions))_ | _{questions()}_ | | _Multiple choice only_ |
| [questions-technical](#questions-technical) | _<h3>Technical questions</h3>The questions below are very technical. Feel free to ignore them<br/>{questions(technical)}_ | | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -1265,9 +1387,17 @@ The question is `Which methods of payment are accepted here?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/qrcode.svg'> *Payment by QR-code is possible here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/smartphone.svg'> *Payment is done using a dedicated app* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/nfc_card.svg'> *Payment is done using a membership card* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/smartphone.svg'> *Payment is done using a dedicated app* is shown if with payment:app~.+ & payment:app!=no & payment:app!=yes. _This option cannot be chosen as answer_
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> | charge~.+
### app-name
The question is `What is the name of the app used for payment?`
*Payment can be done using the app <b>{payment:app}</b>* is shown if `payment:app` is set
This tagrendering is only visible in the popup if the following condition is met: payment:app~.+ & payment:app!=no
### Authentication
The question is `What kind of authentication is available at the charging station?`

View file

@ -12,6 +12,8 @@ Shows kindergartens and preschools. Both are grouped in one layer, as they are r
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [name](#name)
- [website](#website)
- [email](#email)
@ -23,7 +25,7 @@ Shows kindergartens and preschools. Both are grouped in one layer, as they are r
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -44,7 +46,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -55,6 +57,21 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [name](#name) | What is the name of this facility?<br/>_This facility is named <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | When is this childcare opened?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [capacity](#capacity) | How much kids (at most) can be enrolled here?<br/>_This facility has room for {capacity} kids_ | | *[capacity](https://wiki.osm.org/wiki/Key:capacity)* ([pnat](../SpecialInputElements.md#pnat)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### name
The question is `What is the name of this facility?`
@ -108,7 +125,11 @@ The question is `How much kids (at most) can be enrolled here?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -11,6 +11,7 @@ A place showing movies (films), generally open to the public for a fee. Commonly
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [reviews](#reviews)
- [phone](#phone)
@ -34,7 +35,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -44,6 +45,21 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cinema#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cinema/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cinema](https://wiki.openstreetmap.org/wiki/Key:cinema) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:cinema%3D) [erotic](https://wiki.openstreetmap.org/wiki/Tag:cinema%3Derotic) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [wikipedia](#wikipedia) <br/> _(Original in [questions](./BuiltinQuestions.md#wikipedia))_ | What is the corresponding Wikidata entity?<br/>_{wikipedia():max-height:25rem}_<br/>2 options | | *[wikidata](https://wiki.osm.org/wiki/Key:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [cinema_type](#cinema_type) | What type of cinema is this?<br/>2 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -90,7 +106,7 @@ Shows a wikipedia box with the corresponding wikipedia article; the wikidata-ite
The question is `What is the corresponding Wikidata entity?`
*{wikipedia():max-height:25rem}* is shown if `wikidata` is set
- *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_
- *No Wikipedia page has been linked yet* is shown if with wikipedia~.+. _This option cannot be chosen as answer_
- *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_
### cinema_type
@ -103,7 +119,11 @@ The question is `What type of cinema is this?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -13,6 +13,10 @@ An area where climbing is possible, e.g. a crag, site, boulder, … Contains agg
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Length overview](#length-overview)
- [Grades overview](#grades-overview)
- [Contains {_contained_climbing_routes_count} routes](#contains-{_contained_climbing_routes_count}-routes)
- [images](#images)
- [minimap](#minimap)
- [Contained routes length hist](#contained-routes-length-hist)
@ -56,7 +60,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -67,6 +71,25 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing:boulder#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing%3Aboulder/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing:boulder](https://wiki.openstreetmap.org/wiki/Key:climbing:boulder) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [minimap](#minimap) | _{minimap(18, id, _contained_climbing_route_ids): height: 9rem; overflow: hidden; border-radius:3rem; }_ | | _Multiple choice only_ |
| [Contained routes length hist](#Contained routes length hist) | _<h3>Length overview</h3>{histogram(_length_hist)}_ | | _Multiple choice only_ |
| [Contained routes hist](#Contained routes hist) | _<h3>Grades overview</h3>{histogram(_difficulty_hist)}_ | | _Multiple choice only_ |
| [Contained_climbing_routes](#Contained_climbing_routes) | _<h3>Contains {_contained_climbing_routes_count} routes</h3> <ul>{_contained_climbing_routes}</ul>_ | | _Multiple choice only_ |
| [name](#name) | What is the name of this climbing opportunity?<br/>_<strong>{name}</strong>_<br/>1 options | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [Type](#Type) | What kind of climbing opportunity is this?<br/>3 options | | _Multiple choice only_ |
| [Rock type (crag/rock/cliff only)](#Rock type (crag/rock/cliff only)) | What is the rock type here?<br/>_The rock type is {rock}_<br/>1 options | | *[rock](https://wiki.osm.org/wiki/Key:rock)* ([string](../SpecialInputElements.md#string)) |
| [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
| [website](#website) <br/> _(Original in [climbing](./climbing.md#website))_ | Is there a (unofficial) website with more informations (e.g. topos)?<br/>_<a href='{url}' target='_blank' rel='noopener'>{url}</a>_ | | *[url](https://wiki.osm.org/wiki/Key:url)* ([url](../SpecialInputElements.md#url)) |
| [fee](#fee) <br/> _(Original in [climbing](./climbing.md#fee))_ | Is a fee required to climb here?<br/>_A fee of {charge} should be paid for climbing here_<br/>2 options | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
| [bouldering](#bouldering) <br/> _(Original in [climbing](./climbing.md#bouldering))_ | Is bouldering possible here?<br/>4 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -150,7 +173,11 @@ The question is `Is bouldering possible here?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### lod

View file

@ -12,6 +12,8 @@ A climbing club or organisation
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [climbing_club-name](#climbing_club-name)
- [website](#website)
- [email](#email)
@ -21,7 +23,7 @@ A climbing club or organisation
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -46,7 +48,7 @@ Elements must match **any** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -56,6 +58,19 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/phone#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/phone/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [climbing_club-name](#climbing_club-name) | What is the name of this climbing club or NGO?<br/>_<strong>{name}</strong>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### climbing_club-name
The question is `What is the name of this climbing club or NGO?`
@ -102,7 +117,11 @@ The question is `What are the opening hours of {title()}?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,8 @@ A climbing gym
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images)
- [name](#name)
- [website](#website)
@ -43,7 +45,7 @@ A climbing gym
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -67,7 +69,7 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -91,10 +93,45 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing:bolts:max#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing%3Abolts%3Amax/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing:bolts:max](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts:max) | [pnat](../SpecialInputElements.md#pnat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing:speed#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing%3Aspeed/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing:speed](https://wiki.openstreetmap.org/wiki/Key:climbing:speed) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/shower#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/shower/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [shower](https://wiki.openstreetmap.org/wiki/Key:shower) | Multiple choice | [hot](https://wiki.openstreetmap.org/wiki/Tag:shower%3Dhot) [cold](https://wiki.openstreetmap.org/wiki/Tag:shower%3Dcold) [yes](https://wiki.openstreetmap.org/wiki/Tag:shower%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:shower%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) [terminal;wifi](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wifi) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) [terminal;wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wlan) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Afee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:ssid#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Assid/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [name](#name) | What is the name of this climbing gym?<br/>_<strong>{name}</strong>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [fee](#fee) <br/> _(Original in [climbing](./climbing.md#fee))_ | Is a fee required to climb here?<br/>_A fee of {charge} should be paid for climbing here_<br/>2 options | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
| [payment-options](#payment-options) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options))_ | Which methods of payment are accepted here?<br/>3 options | | _Multiple choice only_ |
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
| [bouldering](#bouldering) <br/> _(Original in [climbing](./climbing.md#bouldering))_ | Is bouldering possible here?<br/>4 options | | _Multiple choice only_ |
| [sportclimbing](#sportclimbing) <br/> _(Original in [climbing](./climbing.md#sportclimbing))_ | Is sport climbing possible here on fixed anchors?<br/>3 options | | _Multiple choice only_ |
| [toprope](#toprope) <br/> _(Original in [climbing](./climbing.md#toprope))_ | Is toprope climbing possible here?<br/>3 options | | _Multiple choice only_ |
| [shoe_rental](#shoe_rental) | Can one rent climbing shoes here to use in the gym?<br/>4 options | | _Multiple choice only_ |
| [harness_rental](#harness_rental) | Can one rent a climbing harness here to use in the gym?<br/>4 options | | _Multiple choice only_ |
| [auto_belay_toprope](#auto_belay_toprope) | Are there auto belays for top roping here?<br/>_There are {climbing:autobelay:toprope} auto belay devices for top roping_<br/>4 options | | *[climbing:autobelay:toprope](https://wiki.osm.org/wiki/Key:climbing:autobelay:toprope)* ([nat](../SpecialInputElements.md#nat)) |
| [auto_belay_lead](#auto_belay_lead) | Are there auto belays for lead climbing here?<br/>_There are {climbing:autobelay:sport} auto belays for lead climbing_<br/>3 options | | *[climbing:autobelay:sport](https://wiki.osm.org/wiki/Key:climbing:autobelay:sport)* ([nat](../SpecialInputElements.md#nat)) |
| [belay_device_rental](#belay_device_rental) | Can one rent a belay device here to use in the gym?<br/>5 options | | _Multiple choice only_ |
| [rope_rental](#rope_rental) | Can one rent a climbing rope here to use in the gym?<br/>4 options | | _Multiple choice only_ |
| [average_length](#average_length) <br/> _(Original in [climbing](./climbing.md#average_length))_ | What is the (average) length of the routes in meters?<br/>_The routes are <b>{canonical(climbing:length)}</b> long on average_ | | *[climbing:length](https://wiki.osm.org/wiki/Key:climbing:length)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [min_difficulty](#min_difficulty) <br/> _(Original in [climbing](./climbing.md#min_difficulty))_ | What is the grade of the easiest route here, according to the french classification system?<br/>_The lowest grade is {climbing:grade:french:min} according to the french/belgian system_ | | *[climbing:grade:french:min](https://wiki.osm.org/wiki/Key:climbing:grade:french:min)* ([string](../SpecialInputElements.md#string)) |
| [max_difficulty](#max_difficulty) <br/> _(Original in [climbing](./climbing.md#max_difficulty))_ | What is the highest grade route here, according to the french classification system?<br/>_The highest grade is {climbing:grade:french:max} according to the french/belgian system_ | | *[climbing:grade:french:max](https://wiki.osm.org/wiki/Key:climbing:grade:french:max)* ([string](../SpecialInputElements.md#string)) |
| [max_bolts](#max_bolts) <br/> _(Original in [climbing](./climbing.md#max_bolts))_ | How many bolts do routes in have at most?<br/>_The sport climbing routes here have at most {climbing:bolts:max} bolts. <div class='subtle'>This is without belay stations and indicates how much quickdraws a climber needs.</div>_ | | *[climbing:bolts:max](https://wiki.osm.org/wiki/Key:climbing:bolts:max)* ([pnat](../SpecialInputElements.md#pnat)) |
| [Speed climbing?](#Speed climbing?) | Is there a speed climbing wall?<br/>3 options | | _Multiple choice only_ |
| [shower](#shower) <br/> _(Original in [questions](./BuiltinQuestions.md#shower))_ | Does this facility offer showers?<br/>4 options | | _Multiple choice only_ |
| [internet](#internet) <br/> _(Original in [questions](./BuiltinQuestions.md#internet))_ | Does this place offer internet access?<br/>6 options | internet-all | _Multiple choice only_ |
| [internet-fee](#internet-fee) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-fee))_ | Is there a fee for internet access?<br/>3 options | internet-all | _Multiple choice only_ |
| [internet-ssid](#internet-ssid) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-ssid))_ | What is the network name for the wireless internet access?<br/>_The network name is <b>{internet_access:ssid}</b>_<br/>1 options | internet-all | *[internet_access:ssid](https://wiki.osm.org/wiki/Key:internet_access:ssid)* ([string](../SpecialInputElements.md#string)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -283,6 +320,8 @@ The question is `Is there a speed climbing wall?`
- *There is no speed climbing wall* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:speed' target='_blank'>climbing:speed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dno' target='_blank'>no</a>
- *There are {climbing:speed} speed climbing walls* is shown if with climbing:speed~.+. _This option cannot be chosen as answer_
This tagrendering is only visible in the popup if the following condition is met: climbing:toprope~.+ & climbing:toprope!=no
### shower
The question is `Does this facility offer showers?`
@ -301,7 +340,7 @@ The question is `Does this place offer internet access?`
- *This place offers internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/computer'> *This place offers internet access via a terminal or computer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal' target='_blank'>terminal</a>
- *This place offers wired internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired' target='_blank'>wired</a>
- *This place offers both wireless internet and internet access via a terminal or computer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wifi' target='_blank'>terminal;wifi</a>
- *This place offers both wireless internet and internet access via a terminal or computer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wlan' target='_blank'>terminal;wlan</a>
This tagrendering has labels
`internet-all`
@ -332,7 +371,11 @@ This tagrendering has labels
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -12,6 +12,7 @@ Fallback layer with items on which climbing _might_ be possible. It is loaded wh
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [climbing-opportunity-name](#climbing-opportunity-name)
- [climbing-possible](#climbing-possible)
- [leftover-questions](#leftover-questions)
@ -34,6 +35,15 @@ Elements must match **all** of the following expressions:
## Supported attributes
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [climbing-opportunity-name](#climbing-opportunity-name) | _<strong>{name}</strong>_ | | _Multiple choice only_ |
| [climbing-possible](#climbing-possible) | Is climbing possible here?<br/>3 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### climbing-opportunity-name
_This tagrendering has no question and is thus read-only_
@ -52,7 +62,11 @@ The question is `Is climbing possible here?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### lod

View file

@ -14,6 +14,7 @@ A single climbing route and its properties. Some properties are derived from the
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [Name](#name)
- [Length](#length)
@ -44,7 +45,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -55,6 +56,21 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/description#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/description/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/_embedding_features_with_rock:rock#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/_embedding_features_with_rock%3Arock/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock) | [string](../SpecialInputElements.md#string) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [Name](#Name) | What is the name of this climbing route?<br/>_<strong>{name}</strong>_<br/>1 options | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [Length](#Length) | How long is this climbing route (in meters)?<br/>_This route is {canonical(climbing:length)} long_ | | *[climbing:length](https://wiki.osm.org/wiki/Key:climbing:length)* ([pnat](../SpecialInputElements.md#pnat)) |
| [Difficulty](#Difficulty) | What is the grade of this climbing route according to the french/belgian system?<br/>_The grade is {climbing:grade:french} according to the french/belgian system_ | | *[climbing:grade:french](https://wiki.osm.org/wiki/Key:climbing:grade:french)* ([string](../SpecialInputElements.md#string)) |
| [bolts](#bolts) | How many bolts does this route have before reaching the anchor?<br/>_This route has {climbing:bolts} bolts. <div class='subtle'>This is without belay stations and indicates how much quickdraws a climber needs.</div>_<br/>1 options | | *[climbing:bolts](https://wiki.osm.org/wiki/Key:climbing:bolts)* ([pnat](../SpecialInputElements.md#pnat)) |
| [description](#description) <br/> _(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.<br/>_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) |
| [Rock type via embedded feature](#Rock type via embedded feature) | _The rock type is {_embedding_features_with_rock:rock} as stated <a href='#{_embedding_features_with_rock:id}'>on the surrounding crag</a>_ | | *[_embedding_features_with_rock:rock](https://wiki.osm.org/wiki/Key:_embedding_features_with_rock:rock)* ([string](../SpecialInputElements.md#string)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -97,7 +113,11 @@ _This tagrendering has no question and is thus read-only_
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -14,6 +14,7 @@ Layer with public clocks
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [support](#support)
- [display](#display)
@ -28,7 +29,7 @@ Layer with public clocks
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -52,7 +53,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -66,6 +67,25 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/hygrometer#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/hygrometer/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [hygrometer](https://wiki.openstreetmap.org/wiki/Key:hygrometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hygrometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hygrometer%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/faces#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/faces/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [faces](https://wiki.openstreetmap.org/wiki/Key:faces) | [pnat](../SpecialInputElements.md#pnat) | [1](https://wiki.openstreetmap.org/wiki/Tag:faces%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:faces%3D2) [4](https://wiki.openstreetmap.org/wiki/Tag:faces%3D4) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [support](#support) | In what way is the clock mounted?<br/>5 options | | _Multiple choice only_ |
| [display](#display) | How does this clock display the time?<br/>4 options | | _Multiple choice only_ |
| [indoor](#indoor) <br/> _(Original in [questions](./BuiltinQuestions.md#indoor))_ | Is this clock indoors?<br/>2 options | | _Multiple choice only_ |
| [visibility](#visibility) | How visible is this clock?<br/>3 options | | _Multiple choice only_ |
| [date](#date) | Does this clock also display the date?<br/>3 options | | _Multiple choice only_ |
| [thermometer](#thermometer) | Does this clock also display the temperature?<br/>3 options | | _Multiple choice only_ |
| [barometer](#barometer) | Does this clock also display the air pressure?<br/>3 options | | _Multiple choice only_ |
| [hygrometer](#hygrometer) | Does this clock also display the humidity?<br/>3 options | | _Multiple choice only_ |
| [faces](#faces) | How many faces does this clock have?<br/>_This clock has {faces} faces_<br/>3 options | | *[faces](https://wiki.osm.org/wiki/Key:faces)* ([pnat](../SpecialInputElements.md#pnat)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
@ -149,7 +169,11 @@ The question is `How many faces does this clock have?`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -16,6 +16,7 @@ This layer is loaded from an external source, namely
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [render_crab](#render_crab)
- [leftover-questions](#leftover-questions)
- [lod](#lod)
@ -32,6 +33,14 @@ Elements must match the expression **HUISNR~.+**
## Supported attributes
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [render_crab](#render_crab) | _Volgens het CRAB ligt hier <b>{STRAATNM}</b> {HUISNR} (label: {HNRLABEL})_ | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### render_crab
_This tagrendering has no question and is thus read-only_
@ -40,7 +49,11 @@ _This tagrendering has no question and is thus read-only_
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### lod

View file

@ -14,8 +14,9 @@ Crossings for pedestrians and cyclists
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [crossing-type](#crossing-type)
- [signals](#signals)
- [markings](#markings)
- [crossing-bicycle-allowed](#crossing-bicycle-allowed)
- [crossing-has-island](#crossing-has-island)
@ -30,7 +31,7 @@ Crossings for pedestrians and cyclists
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -56,15 +57,15 @@ Elements must match **any** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/crossing#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/crossing/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/crossing:signals#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/crossing%3Asignals/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [crossing:signals](https://wiki.openstreetmap.org/wiki/Key:crossing:signals) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:signals%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:crossing:signals%3Dyes) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/crossing:markings#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/crossing%3Amarkings/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [crossing:markings](https://wiki.openstreetmap.org/wiki/Key:crossing:markings) | [string](../SpecialInputElements.md#string) | [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dno) [zebra](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra) [lines](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dlines) [ladder](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder) [dashes](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Ddashes) [dots](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Ddots) [surface](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dsurface) [ladder:skewed](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder:skewed) [zebra:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:paired) [zebra:bicolour](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:bicolour) [zebra:double](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:double) [pictograms](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dpictograms) [ladder:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder:paired) [lines:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dlines:paired) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bicycle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bicycle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/crossing:island#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/crossing%3Aisland/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [crossing:island](https://wiki.openstreetmap.org/wiki/Key:crossing:island) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/tactile_paving#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/tactile_paving/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/tactile_paving#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/tactile_paving/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) [partial](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dpartial) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/button_operated#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/button_operated/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [button_operated](https://wiki.openstreetmap.org/wiki/Key:button_operated) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/traffic_signals:sound#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/traffic_signals%3Asound/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [traffic_signals:sound](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:sound) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dno) [locate](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dlocate) [walk](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dwalk) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/traffic_signals:vibration#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/traffic_signals%3Avibration/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [traffic_signals:vibration](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:vibration) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:vibration%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:vibration%3Dno) |
@ -73,19 +74,39 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/red_turn:right:bicycle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/red_turn%3Aright%3Abicycle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [red_turn:right:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/red_turn:straight:bicycle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/red_turn%3Astraight%3Abicycle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [red_turn:straight:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [signals](#signals) | Are there traffic signals at this crossing?<br/>3 options | | _Multiple choice only_ |
| [markings](#markings) | What kind of markings does this crossing have?<br/>_This crossing has {crossing:markings} markings_<br/>15 options | | *[crossing:markings](https://wiki.osm.org/wiki/Key:crossing:markings)* ([string](../SpecialInputElements.md#string)) |
| [crossing-bicycle-allowed](#crossing-bicycle-allowed) | Is this crossing also for bicycles?<br/>2 options | | _Multiple choice only_ |
| [crossing-has-island](#crossing-has-island) | Does this crossing have an island in the middle?<br/>2 options | | _Multiple choice only_ |
| [crossing-tactile](#crossing-tactile) | Does this crossing have tactile paving?<br/>4 options | | _Multiple choice only_ |
| [crossing-button](#crossing-button) | Does this traffic light have a button to request green light?<br/>2 options | | _Multiple choice only_ |
| [crossing-sound](#crossing-sound) | Does this traffic light have sound signals to aid crossing?<br/>4 options | | _Multiple choice only_ |
| [crossing-vibration](#crossing-vibration) | Does this traffic light have vibration signals to aid crossing? (usually located at the bottom of the crossing button)<br/>2 options | | _Multiple choice only_ |
| [crossing-arrow](#crossing-arrow) | Does this traffic light have an arrow pointing in the direction of crossing?<br/>2 options | | _Multiple choice only_ |
| [crossing-minimap](#crossing-minimap) | Does this traffic light have a tactile map showing the layout of the crossing?<br/>2 options | | _Multiple choice only_ |
| [crossing-right-turn-through-red](#crossing-right-turn-through-red) | Can a cyclist turn right when the light is red?<br/>3 options | | _Multiple choice only_ |
| [crossing-continue-through-red](#crossing-continue-through-red) | Can a cyclist go straight on when the light is red?<br/>3 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}*
### crossing-type
### signals
The question is `What kind of crossing is this?`
The question is `Are there traffic signals at this crossing?`
- *Crossing, without traffic lights* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled' target='_blank'>uncontrolled</a>
- *Crossing with traffic signals* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals' target='_blank'>traffic_signals</a>
- *Zebra crossing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dzebra' target='_blank'>zebra</a>. _This option cannot be chosen as answer_
- *Crossing without crossing markings* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked' target='_blank'>unmarked</a>. _This option cannot be chosen as answer_
- *There are no traffic signals at this crossing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:signals' target='_blank'>crossing:signals</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:signals%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/traffic_lights.svg'> *There are traffic signals at this crossing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:signals' target='_blank'>crossing:signals</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:signals%3Dyes' target='_blank'>yes</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/traffic_lights.svg'> *There are traffic signals at this crossing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals' target='_blank'>traffic_signals</a>. _This option cannot be chosen as answer_
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcrossing' target='_blank'>crossing</a>
@ -110,6 +131,8 @@ The question is `What kind of markings does this crossing have?`
- *This crossing has lines on either side of the crossing, along with bars connecting them, with an interruption in every bar* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:markings' target='_blank'>crossing:markings</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder:paired' target='_blank'>ladder:paired</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/markings_lines_paired.png'> *This crossing has double lines on either side of the crossing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:markings' target='_blank'>crossing:markings</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dlines:paired' target='_blank'>lines:paired</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcrossing' target='_blank'>crossing</a>
### crossing-bicycle-allowed
The question is `Is this crossing also for bicycles?`
@ -135,6 +158,7 @@ The question is `Does this crossing have tactile paving?`
- *This crossing has tactile paving* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes' target='_blank'>yes</a>
- *This crossing does not have tactile paving* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno' target='_blank'>no</a>
- *This crossing has tactile paving, but is not correct* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dincorrect' target='_blank'>incorrect</a>. _This option cannot be chosen as answer_
- *This crrosing has tactile paving, but only on one side* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dpartial' target='_blank'>partial</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcrossing' target='_blank'>crossing</a>
@ -208,7 +232,11 @@ This tagrendering is only visible in the popup if the following condition is met
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -15,8 +15,9 @@ Crossings for pedestrians and cyclists
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [crossing-type](#crossing-type)
- [signals](#signals)
- [markings](#markings)
- [crossing-bicycle-allowed](#crossing-bicycle-allowed)
- [crossing-has-island](#crossing-has-island)
@ -31,7 +32,7 @@ Crossings for pedestrians and cyclists
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [lod](#lod)
5. [Filters](#filters)
6. [Filters](#filters)
## Themes using this layer
@ -51,15 +52,15 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/crossing#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/crossing/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/crossing:signals#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/crossing%3Asignals/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [crossing:signals](https://wiki.openstreetmap.org/wiki/Key:crossing:signals) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:signals%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:crossing:signals%3Dyes) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/crossing:markings#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/crossing%3Amarkings/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [crossing:markings](https://wiki.openstreetmap.org/wiki/Key:crossing:markings) | [string](../SpecialInputElements.md#string) | [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dno) [zebra](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra) [lines](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dlines) [ladder](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder) [dashes](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Ddashes) [dots](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Ddots) [surface](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dsurface) [ladder:skewed](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder:skewed) [zebra:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:paired) [zebra:bicolour](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:bicolour) [zebra:double](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:double) [pictograms](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dpictograms) [ladder:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder:paired) [lines:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dlines:paired) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bicycle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bicycle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/crossing:island#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/crossing%3Aisland/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [crossing:island](https://wiki.openstreetmap.org/wiki/Key:crossing:island) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/tactile_paving#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/tactile_paving/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/tactile_paving#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/tactile_paving/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) [partial](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dpartial) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/button_operated#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/button_operated/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [button_operated](https://wiki.openstreetmap.org/wiki/Key:button_operated) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/traffic_signals:sound#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/traffic_signals%3Asound/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [traffic_signals:sound](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:sound) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dno) [locate](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dlocate) [walk](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dwalk) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/traffic_signals:vibration#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/traffic_signals%3Avibration/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [traffic_signals:vibration](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:vibration) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:vibration%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:vibration%3Dno) |
@ -68,19 +69,39 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/red_turn:right:bicycle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/red_turn%3Aright%3Abicycle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [red_turn:right:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/red_turn:straight:bicycle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/red_turn%3Astraight%3Abicycle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [red_turn:straight:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [signals](#signals) | Are there traffic signals at this crossing?<br/>3 options | | _Multiple choice only_ |
| [markings](#markings) | What kind of markings does this crossing have?<br/>_This crossing has {crossing:markings} markings_<br/>15 options | | *[crossing:markings](https://wiki.osm.org/wiki/Key:crossing:markings)* ([string](../SpecialInputElements.md#string)) |
| [crossing-bicycle-allowed](#crossing-bicycle-allowed) | Is this crossing also for bicycles?<br/>2 options | | _Multiple choice only_ |
| [crossing-has-island](#crossing-has-island) | Does this crossing have an island in the middle?<br/>2 options | | _Multiple choice only_ |
| [crossing-tactile](#crossing-tactile) | Does this crossing have tactile paving?<br/>4 options | | _Multiple choice only_ |
| [crossing-button](#crossing-button) | Does this traffic light have a button to request green light?<br/>2 options | | _Multiple choice only_ |
| [crossing-sound](#crossing-sound) | Does this traffic light have sound signals to aid crossing?<br/>4 options | | _Multiple choice only_ |
| [crossing-vibration](#crossing-vibration) | Does this traffic light have vibration signals to aid crossing? (usually located at the bottom of the crossing button)<br/>2 options | | _Multiple choice only_ |
| [crossing-arrow](#crossing-arrow) | Does this traffic light have an arrow pointing in the direction of crossing?<br/>2 options | | _Multiple choice only_ |
| [crossing-minimap](#crossing-minimap) | Does this traffic light have a tactile map showing the layout of the crossing?<br/>2 options | | _Multiple choice only_ |
| [crossing-right-turn-through-red](#crossing-right-turn-through-red) | Can a cyclist turn right when the light is red?<br/>3 options | | _Multiple choice only_ |
| [crossing-continue-through-red](#crossing-continue-through-red) | Can a cyclist go straight on when the light is red?<br/>3 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}*
### crossing-type
### signals
The question is `What kind of crossing is this?`
The question is `Are there traffic signals at this crossing?`
- *Crossing, without traffic lights* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled' target='_blank'>uncontrolled</a>
- *Crossing with traffic signals* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals' target='_blank'>traffic_signals</a>
- *Zebra crossing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dzebra' target='_blank'>zebra</a>. _This option cannot be chosen as answer_
- *Crossing without crossing markings* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked' target='_blank'>unmarked</a>. _This option cannot be chosen as answer_
- *There are no traffic signals at this crossing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:signals' target='_blank'>crossing:signals</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:signals%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/traffic_lights.svg'> *There are traffic signals at this crossing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:signals' target='_blank'>crossing:signals</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:signals%3Dyes' target='_blank'>yes</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/traffic_lights.svg'> *There are traffic signals at this crossing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals' target='_blank'>traffic_signals</a>. _This option cannot be chosen as answer_
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcrossing' target='_blank'>crossing</a>
@ -105,6 +126,8 @@ The question is `What kind of markings does this crossing have?`
- *This crossing has lines on either side of the crossing, along with bars connecting them, with an interruption in every bar* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:markings' target='_blank'>crossing:markings</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder:paired' target='_blank'>ladder:paired</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/markings_lines_paired.png'> *This crossing has double lines on either side of the crossing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:markings' target='_blank'>crossing:markings</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dlines:paired' target='_blank'>lines:paired</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcrossing' target='_blank'>crossing</a>
### crossing-bicycle-allowed
The question is `Is this crossing also for bicycles?`
@ -130,6 +153,7 @@ The question is `Does this crossing have tactile paving?`
- *This crossing has tactile paving* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes' target='_blank'>yes</a>
- *This crossing does not have tactile paving* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno' target='_blank'>no</a>
- *This crossing has tactile paving, but is not correct* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dincorrect' target='_blank'>incorrect</a>. _This option cannot be chosen as answer_
- *This crrosing has tactile paving, but only on one side* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dpartial' target='_blank'>partial</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcrossing' target='_blank'>crossing</a>
@ -203,7 +227,11 @@ This tagrendering is only visible in the popup if the following condition is met
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button

View file

@ -13,13 +13,16 @@ All objects which have an etymology known
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Wikipedia article of the name giver](#wikipedia-article-of-the-name-giver)
- [etymology-images-from-wikipedia](#etymology-images-from-wikipedia)
- [wikipedia-etymology](#wikipedia-etymology)
- [Wikipedia article of the name giver](#wikipedia-article-of-the-name-giver)
- [zoeken op inventaris onroerend erfgoed](#zoeken-op-inventaris-onroerend-erfgoed)
- [simple etymology](#simple-etymology)
- [questions](#questions)
- [street-name-sign-image](#street-name-sign-image)
- [streetsign-image-carousel](#streetsign-image-carousel)
- [streetsign-upload](#streetsign-upload)
- [minimap](#minimap)
- [etymology_multi_apply](#etymology_multi_apply)
- [wikipedia](#wikipedia)
@ -40,13 +43,29 @@ Elements must match **all** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/name%3Aetymology%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/name:etymology#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/name%3Aetymology/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [text](../SpecialInputElements.md#text) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [etymology-images-from-wikipedia](#etymology-images-from-wikipedia) | _{image_carousel(name:etymology:wikidata)}_ | | _Multiple choice only_ |
| [wikipedia-etymology](#wikipedia-etymology) | What is the Wikidata-item that this object is named after?<br/>_<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}_ | | *[name:etymology:wikidata](https://wiki.osm.org/wiki/Key:name:etymology:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [zoeken op inventaris onroerend erfgoed](#zoeken op inventaris onroerend erfgoed) | _<a href='https://inventaris.onroerenderfgoed.be/erfgoedobjecten?tekst={name}' target='_blank'>Search on inventaris onroerend erfgoed</a>_ | | _Multiple choice only_ |
| [simple etymology](#simple etymology) | What is this object named after?<br/>_Named after {name:etymology}_<br/>1 options | | *[name:etymology](https://wiki.osm.org/wiki/Key:name:etymology)* ([text](../SpecialInputElements.md#text)) |
| [questions](#questions) <br/> _(Original in [questions](./BuiltinQuestions.md#questions))_ | _{questions()}_ | | _Multiple choice only_ |
| [streetsign-image-carousel](#streetsign-image-carousel) | _{image_carousel(image:streetsign;panoramax:streetsign)}_ | | _Multiple choice only_ |
| [streetsign-upload](#streetsign-upload) | _{image_upload(image:streetsign,Add image of a street name sign,)}_ | | _Multiple choice only_ |
| [minimap](#minimap) | _{minimap(18, id, _same_name_ids):height:10rem}_ | | _Multiple choice only_ |
| [etymology_multi_apply](#etymology_multi_apply) | _{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}_ | | _Multiple choice only_ |
| [wikipedia](#wikipedia) | _A Wikipedia article about this <b>street</b> exists:<br/>{wikipedia():max-height:25rem}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### etymology-images-from-wikipedia
_This tagrendering has no question and is thus read-only_
@ -76,10 +95,15 @@ Show the questions block at this location
_This tagrendering has no question and is thus read-only_
*{questions()}*
### street-name-sign-image
### streetsign-image-carousel
_This tagrendering has no question and is thus read-only_
*{image_carousel(image:streetsign)}<br/>{image_upload(image:streetsign, Add image of a street name sign)}*
*{image_carousel(image:streetsign;panoramax:streetsign)}*
### streetsign-upload
_This tagrendering has no question and is thus read-only_
*{image_upload(image:streetsign,Add image of a street name sign,)}*
### minimap

View file

@ -10,6 +10,7 @@
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [cycle_highways-name](#cycle_highways-name)
- [cycle_highways-ref](#cycle_highways-ref)
- [cycle_highways-state](#cycle_highways-state)
@ -18,7 +19,7 @@
- [all_tags](#all_tags)
- [leftover-questions](#leftover-questions)
- [lod](#lod)
4. [Filters](#filters)
5. [Filters](#filters)
## Themes using this layer
@ -32,7 +33,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
@ -41,6 +42,19 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/state#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/state/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [state](https://wiki.openstreetmap.org/wiki/Key:state) | [string](../SpecialInputElements.md#string) | [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [temporary](https://wiki.openstreetmap.org/wiki/Tag:state%3Dtemporary) [](https://wiki.openstreetmap.org/wiki/Tag:state%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [cycle_highways-name](#cycle_highways-name) | What is the name of this cycle highway?<br/>_The name is <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [cycle_highways-ref](#cycle_highways-ref) | What is the reference number of this cycle highway?<br/>_Referentienummer is <b>{ref}</b>_ | | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) |
| [cycle_highways-state](#cycle_highways-state) | What is the state of this link?<br/>_The current state of this link is {state}_<br/>5 options | | *[state](https://wiki.osm.org/wiki/Key:state)* ([string](../SpecialInputElements.md#string)) |
| [cycle-highway-length](#cycle-highway-length) | _This part is {_length:km}km long_ | | _Multiple choice only_ |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [all_tags](#all_tags) <br/> _(Original in [questions](./BuiltinQuestions.md#all_tags))_ | _{all_tags()}_ | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### cycle_highways-name
The question is `What is the name of this cycle highway?`
@ -85,7 +99,11 @@ _This tagrendering has no question and is thus read-only_
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### lod

View file

@ -1,6 +1,6 @@
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
# fietsstraat
# cyclestreets
A cyclestreet is a street where motorized traffic is not allowed to overtake a cyclist
@ -11,10 +11,11 @@ A cyclestreet is a street where motorized traffic is not allowed to overtake a c
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [images](#images)
- [is_cyclestreet](#is_cyclestreet)
- [supplementary_sign](#supplementary_sign)
- [future_cyclestreet](#future_cyclestreet)
- [images](#images)
- [leftover-questions](#leftover-questions)
- [split_button](#split_button)
- [lod](#lod)
@ -22,6 +23,7 @@ A cyclestreet is a street where motorized traffic is not allowed to overtake a c
## Themes using this layer
- [cyclestreets](https://mapcomplete.org/cyclestreets)
- [personal](https://mapcomplete.org/personal)
## Basic tags for this layer
@ -34,13 +36,30 @@ Elements must match **any** of the following expressions:
## Supported attributes
**Warning:**,this quick overview is incomplete,
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/traffic_sign#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/traffic_sign/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [traffic_sign](https://wiki.openstreetmap.org/wiki/Key:traffic_sign) | Multiple choice | [DE:244.1,1020-30](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1020-30) [DE:244.1,1022-12,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12,1024-10) [DE:244.1,1022-12](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12) [DE:244.1,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1024-10) [DE:244.1](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cyclestreet:start_date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cyclestreet%3Astart_date/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date) | [date](../SpecialInputElements.md#date) | |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [is_cyclestreet](#is_cyclestreet) | Is the street <b></b> a cyclestreet?<br/>7 options | | _Multiple choice only_ |
| [supplementary_sign](#supplementary_sign) | What sign does this bicycle road have?<br/>5 options | | _Multiple choice only_ |
| [future_cyclestreet](#future_cyclestreet) | When will this street become a cyclestreet?<br/>_This street will become a cyclestreet at {cyclestreet:start_date}_ | | *[cyclestreet:start_date](https://wiki.osm.org/wiki/Key:cyclestreet:start_date)* ([date](../SpecialInputElements.md#date)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [split_button](#split_button) <br/> _(Original in [questions](./BuiltinQuestions.md#split_button))_ | _{split_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}*
### is_cyclestreet
The question is `Is the street <b>{name}</b> a cyclestreet?`