forked from MapComplete/MapComplete
Merge remote-tracking branch 'upstream/develop' into layer_scouting_groups
This commit is contained in:
commit
8ce1566a67
32831 changed files with 2869248 additions and 137357 deletions
67
.forgejo/workflows/deploy_hosted.yml
Normal file
67
.forgejo/workflows/deploy_hosted.yml
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
name: Deploy develop on dev.mapcomplete.org
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- build/*
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
deploy_on_hosted:
|
||||
runs-on: [ubuntu-latest, hetzner-access]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
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
|
||||
shell: bash
|
||||
|
||||
- name: create dependencies
|
||||
run: npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker; npm run download:editor-layer-index
|
||||
shell: bash
|
||||
|
||||
- name: sync translations
|
||||
run: npm run generate:translations
|
||||
shell: bash
|
||||
|
||||
- name: Prepare build
|
||||
run: npm run generate:service-worker && ./scripts/prepare-build.sh
|
||||
shell: bash
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
# This is the same as `npm run test`, but `vitest` doesn't want to run within npm :shrug:
|
||||
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
|
||||
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 }}/*
|
||||
|
||||
- name: uploading file
|
||||
run: scp ${{ github.ref_name }}.zip hetzner:/root/staging/
|
||||
|
||||
- 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"
|
||||
|
||||
|
||||
|
||||
57
.forgejo/workflows/deploy_single_theme.yml
Normal file
57
.forgejo/workflows/deploy_single_theme.yml
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
name: Deploy develop on theme.mapcomplete.org
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- build/*
|
||||
|
||||
jobs:
|
||||
deploy_on_hetzner_single:
|
||||
runs-on: [ ubuntu-latest, hetzner-access ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
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
|
||||
shell: bash
|
||||
|
||||
- name: create dependencies
|
||||
run: npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker; npm run download:editor-layer-index
|
||||
shell: bash
|
||||
|
||||
- name: sync translations
|
||||
run: npm run generate:translations
|
||||
shell: bash
|
||||
|
||||
- name: Prepare build
|
||||
run: |
|
||||
BRANCH=${{ github.ref_name }}
|
||||
THEME=${BRANCH:6}
|
||||
npm run generate:service-worker && ./scripts/single_build.sh $THEME
|
||||
shell: bash
|
||||
|
||||
- name: Zipping dist file
|
||||
run: |
|
||||
BRANCH=${{ github.ref_name }}
|
||||
THEME=${BRANCH:6}
|
||||
mv "dist_$THEME" ${{ github.ref_name }}
|
||||
zip ${{ github.ref_name }}.zip -r ${{ github.ref_name }}/*
|
||||
|
||||
- name: uploading file
|
||||
run: scp ${{ github.ref_name }}.zip hetzner:/root/staging/
|
||||
|
||||
- name: unzipping remote file
|
||||
run: ssh hetzner "cd /root/staging && unzip ${{ github.ref_name }}.zip && rm -rf /root/single_theme_builds/${{ github.ref_name }} && mv /root/staging/${{ github.ref_name }}/ /root/single_theme_builds/ && rm ${{ github.ref_name }}.zip"
|
||||
|
||||
|
||||
|
||||
46
.github/actions/setup-and-validate/action.yml
vendored
46
.github/actions/setup-and-validate/action.yml
vendored
|
|
@ -1,46 +0,0 @@
|
|||
name: "Theme Validation"
|
||||
description: "Validate the themes"
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "20"
|
||||
cache: "npm"
|
||||
cache-dependency-path: package-lock.json
|
||||
|
||||
- name: print actor
|
||||
shell: bash
|
||||
run: echo ${{ github.actor }}
|
||||
|
||||
- name: install deps
|
||||
run: npm ci
|
||||
shell: bash
|
||||
|
||||
- name: REUSE compliance check
|
||||
uses: fsfe/reuse-action@952281636420dd0b691786c93e9d3af06032f138
|
||||
|
||||
- name: create generated dir
|
||||
run: mkdir ./assets/generated
|
||||
shell: bash
|
||||
|
||||
- name: create dependencies
|
||||
run: npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker
|
||||
shell: bash
|
||||
|
||||
- name: sync translations
|
||||
run: npm run generate:translations
|
||||
shell: bash
|
||||
|
||||
- name: generate layeroverview
|
||||
run: npm run reset:layeroverview
|
||||
shell: bash
|
||||
|
||||
- name: run tests
|
||||
run: npm run test
|
||||
shell: bash
|
||||
|
||||
- name: Prepare deploy
|
||||
run: npm run prepare-deploy
|
||||
shell: bash
|
||||
77
.github/workflows/deploy_dev.yml
vendored
77
.github/workflows/deploy_dev.yml
vendored
|
|
@ -1,77 +0,0 @@
|
|||
name: Deploy develop on dev.mapcomplete.org
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- develop
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
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
|
||||
shell: bash
|
||||
|
||||
- name: create dependencies
|
||||
run: npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker; npm run download:editor-layer-index
|
||||
shell: bash
|
||||
|
||||
- name: sync translations
|
||||
run: npm run generate:translations
|
||||
shell: bash
|
||||
|
||||
- name: Prepare deploy
|
||||
run: npm run prepare-deploy
|
||||
shell: bash
|
||||
|
||||
- name: run tests
|
||||
run: npm run test
|
||||
shell: bash
|
||||
|
||||
- name: Clone deployment repo
|
||||
env:
|
||||
DEPLOY_KEY_PIETERVDVN: ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
|
||||
run: |
|
||||
echo "Cloning destination repo"
|
||||
git config --global user.email "pietervdvn@posteo.net"
|
||||
git config --global user.name "pietervdvn"
|
||||
git clone --depth 1 --single-branch --branch main "https://x-access-token:$DEPLOY_KEY_PIETERVDVN@github.com/MapComplete/mapcomplete-dev.git"
|
||||
echo "Destination repo is cloned"
|
||||
|
||||
- name: Sync repo
|
||||
env:
|
||||
DEPLOY_KEY_PIETERVDVN: ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
|
||||
run: |
|
||||
cd mapcomplete-dev
|
||||
git pull
|
||||
|
||||
- name: "Copying files"
|
||||
run: |
|
||||
echo "Deploying"
|
||||
rm -rf mapcomplete-dev/*
|
||||
cp -r dist/* mapcomplete-dev/
|
||||
cd mapcomplete-dev/
|
||||
echo "dev.mapcomplete.org" > CNAME
|
||||
touch .nojekyll
|
||||
git add *
|
||||
if git status | grep -q "Changes to be committed"
|
||||
then
|
||||
git commit -am "Deploying a new version"
|
||||
git push
|
||||
else
|
||||
echo "No changes to commit"
|
||||
fi
|
||||
|
||||
98
.github/workflows/deploy_pietervdvn.yml
vendored
98
.github/workflows/deploy_pietervdvn.yml
vendored
|
|
@ -1,98 +0,0 @@
|
|||
name: Deployment on pietervdvn
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- feature/*
|
||||
- theme/*
|
||||
- refactoring/*
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.actor != 'weblate' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: print actor
|
||||
shell: bash
|
||||
run: echo ${{ github.actor }}
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
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
|
||||
shell: bash
|
||||
|
||||
- name: create dependencies
|
||||
run: npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker; npm run download:editor-layer-index
|
||||
shell: bash
|
||||
|
||||
- name: sync translations
|
||||
run: npm run generate:translations
|
||||
shell: bash
|
||||
|
||||
- name: generate layeroverview
|
||||
run: npm run reset:layeroverview
|
||||
shell: bash
|
||||
|
||||
- name: run tests
|
||||
run: npm run test
|
||||
shell: bash
|
||||
|
||||
- name: Prepare deploy
|
||||
run: npm run prepare-deploy
|
||||
shell: bash
|
||||
|
||||
- name: Clone deployment repo
|
||||
env:
|
||||
DEPLOY_KEY_PIETERVDVN: ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
|
||||
run: |
|
||||
echo "Cloning destination repo"
|
||||
git config --global user.email "pietervdvn@posteo.net"
|
||||
git config --global user.name "pietervdvn"
|
||||
git clone --depth 1 --single-branch --branch master "https://x-access-token:$DEPLOY_KEY_PIETERVDVN@github.com/pietervdvn/pietervdvn.github.io.git"
|
||||
echo "Destination repo is cloned"
|
||||
|
||||
- name: Sync repo
|
||||
env:
|
||||
DEPLOY_KEY_PIETERVDVN: ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
|
||||
run: |
|
||||
cd pietervdvn.github.io
|
||||
git pull
|
||||
|
||||
- name: get branch name
|
||||
run: echo TARGET_BRANCH=${GITHUB_REF:11} >> $GITHUB_ENV
|
||||
|
||||
- name: "Copying files"
|
||||
run: |
|
||||
echo "Deploying"
|
||||
rm -rf pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }}/*
|
||||
mkdir -p pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }}/
|
||||
cp -r dist/* pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }}/
|
||||
cd pietervdvn.github.io/
|
||||
git add *
|
||||
if git status | grep -q "Changes to be committed"
|
||||
then
|
||||
git commit -am "Deploying a new version of mapcomplete"
|
||||
git push
|
||||
else
|
||||
echo "No changes to commit"
|
||||
fi
|
||||
env:
|
||||
TARGET_BRANCH: ${{ env.TARGET_BRANCH }}
|
||||
|
||||
- uses: mshick/add-pr-comment@a96c578acba98b60f16c6866d5f20478dc4ef68b
|
||||
name: Comment the PR with the review URL
|
||||
if: ${{ success() && github.ref != 'refs/heads/develop' && github.ref != 'refs/heads/master' }}
|
||||
with:
|
||||
message: |
|
||||
[🚀 Preview Branch](https://pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }})
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
40
.github/workflows/validate-pr.yml
vendored
40
.github/workflows/validate-pr.yml
vendored
|
|
@ -1,40 +0,0 @@
|
|||
name: Build and validate PR (but don't deploy)
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
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
|
||||
shell: bash
|
||||
|
||||
- name: create dependencies
|
||||
run: npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker
|
||||
shell: bash
|
||||
|
||||
- name: sync translations
|
||||
run: npm run generate:translations
|
||||
shell: bash
|
||||
|
||||
- name: generate layeroverview
|
||||
run: npm run reset:layeroverview
|
||||
shell: bash
|
||||
|
||||
- name: run tests
|
||||
run: npm run test
|
||||
shell: bash
|
||||
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -4,9 +4,10 @@ node_modules
|
|||
.cache/*
|
||||
.idea/*
|
||||
scratch
|
||||
src/assets/editor-layer-index.json
|
||||
src/assets/generated/
|
||||
assets/editor-layer-index.json
|
||||
assets/generated/*
|
||||
src/assets/generated/
|
||||
assets/layers/favourite/favourite.json
|
||||
public/*.webmanifest
|
||||
/*.html
|
||||
|
|
@ -20,8 +21,6 @@ missing_translations.txt
|
|||
.DS_Store
|
||||
Svg.ts
|
||||
data/
|
||||
src/assets/generated/nsi_stats/brand.json
|
||||
src/assets/generated/nsi_stats/brand.summarized.json
|
||||
|
||||
Folder.DotSettings.user
|
||||
index_*.ts
|
||||
|
|
@ -29,7 +28,6 @@ index_*.ts
|
|||
*.doctest.ts
|
||||
service-worker.js
|
||||
.env
|
||||
src/assets/editor-layer-index.json
|
||||
|
||||
error_changeset_*
|
||||
|
||||
|
|
@ -53,3 +51,4 @@ public/assets/langs/*
|
|||
android/
|
||||
dist-full/
|
||||
public/assets/icons/*.webp
|
||||
uploaded_images.json
|
||||
|
|
|
|||
|
|
@ -20,6 +20,6 @@
|
|||
{"type": "perf", "hidden": true},
|
||||
{"type": "test", "hidden": true}
|
||||
],
|
||||
"commitUrlFormat": "https://github.com/pietervdvn/mapcomplete/commits{{hash}}",
|
||||
"commitUrlFormat": "https://github.com/pietervdvn/mapcomplete/commits/{{hash}}",
|
||||
"compareUrlFormat": "https://github.com/pietervdvn/mapcomplete/compare/{{previousTag}}...{{currentTag}}"
|
||||
}
|
||||
|
|
|
|||
4
.vscode/extensions.json
vendored
4
.vscode/extensions.json
vendored
|
|
@ -2,10 +2,10 @@
|
|||
"recommendations": [
|
||||
"esbenp.prettier-vscode",
|
||||
"eamodio.gitlens",
|
||||
"github.vscode-pull-request-github",
|
||||
"svelte.svelte-vscode",
|
||||
"bradlc.vscode-tailwindcss",
|
||||
"editorconfig.editorconfig",
|
||||
"dbaeumer.vscode-eslint"
|
||||
"dbaeumer.vscode-eslint",
|
||||
"robin-van-der-linde.mapcompletevscode"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
|
|
@ -53,8 +53,5 @@
|
|||
"[svelte]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"editor.formatOnSave": true,
|
||||
"files.associations": {
|
||||
"*.protojson": "json"
|
||||
}
|
||||
"editor.formatOnSave": true
|
||||
}
|
||||
|
|
|
|||
78
404.html
78
404.html
|
|
@ -1,57 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta content="width=device-width, initial-scale=1.0, user-scalable=no" name="viewport">
|
||||
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' https://gc.zgo.at/; img-src *; connect-src 'self' https://www.openstreetmap.org/ https://api.openstreetmap.org/;">
|
||||
<link href="./css/mobile.css" rel="stylesheet"/>
|
||||
<link href="./css/tagrendering.css" rel="stylesheet"/>
|
||||
<link href="./css/index-tailwind-output.css" rel="stylesheet"/>
|
||||
<meta content="website" property="og:type">
|
||||
<meta charset="UTF-8">
|
||||
<meta content="width=device-width, initial-scale=1.0, user-scalable=no" name="viewport">
|
||||
<meta http-equiv="Content-Security-Policy"
|
||||
content="default-src 'self'; script-src 'self' https://gc.zgo.at/; img-src *; connect-src 'self' https://www.openstreetmap.org/ https://api.openstreetmap.org/;">
|
||||
<link href="./css/mobile.css" rel="stylesheet" />
|
||||
<link href="./css/tagrendering.css" rel="stylesheet" />
|
||||
<link href="./css/index-tailwind-output.css" rel="stylesheet" />
|
||||
<meta content="website" property="og:type">
|
||||
|
||||
<title>MapComplete - page not found</title>
|
||||
<link href="./index.manifest" rel="manifest">
|
||||
<link href="./assets/svg/add.svg" rel="icon" sizes="any" type="image/svg+xml">
|
||||
<meta content="MapComplete - Page not found" property="og:title">
|
||||
<meta content="MapComplete is a platform to visualize OpenStreetMap on a specific topic and to easily contribute data back to it."
|
||||
property="og:description">
|
||||
<title>MapComplete - page not found</title>
|
||||
<link href="./index.manifest" rel="manifest">
|
||||
<link href="./assets/svg/add.svg" rel="icon" sizes="any" type="image/svg+xml">
|
||||
<meta content="MapComplete - Page not found" property="og:title">
|
||||
<meta
|
||||
content="MapComplete is a platform to visualize OpenStreetMap on a specific topic and to easily contribute data back to it."
|
||||
property="og:description">
|
||||
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo512.png" rel="apple-touch-icon" sizes="512x512">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo384.png" rel="apple-touch-icon" sizes="384x384">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo192.png" rel="apple-touch-icon" sizes="192x192">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo180.png" rel="apple-touch-icon" sizes="180x180">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo152.png" rel="apple-touch-icon" sizes="152x152">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo144.png" rel="apple-touch-icon" sizes="144x144">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo128.png" rel="apple-touch-icon" sizes="128x128">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo120.png" rel="apple-touch-icon" sizes="120x120">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo96.png" rel="apple-touch-icon" sizes="96x96">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo72.png" rel="apple-touch-icon" sizes="72x72">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo512.png" rel="apple-touch-icon" sizes="512x512">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo384.png" rel="apple-touch-icon" sizes="384x384">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo192.png" rel="apple-touch-icon" sizes="192x192">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo180.png" rel="apple-touch-icon" sizes="180x180">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo152.png" rel="apple-touch-icon" sizes="152x152">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo144.png" rel="apple-touch-icon" sizes="144x144">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo128.png" rel="apple-touch-icon" sizes="128x128">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo120.png" rel="apple-touch-icon" sizes="120x120">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo96.png" rel="apple-touch-icon" sizes="96x96">
|
||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo72.png" rel="apple-touch-icon" sizes="72x72">
|
||||
|
||||
|
||||
<style>
|
||||
#decoration-desktop img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
<style>
|
||||
#decoration-desktop img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="decoration-desktop" style="position: fixed; left: 1em; bottom: 1em; width:35vh; height:35vh;">
|
||||
<!-- A nice decoration while loading or on errors -->
|
||||
<!-- DECORATION 0 START -->
|
||||
<img src="./assets/svg/add.svg"/>
|
||||
<!-- DECORATION 0 END -->
|
||||
</div>
|
||||
|
||||
<div class="clutter absolute h-24 left-24 right-24 top-56 text-xl text-center"
|
||||
id="maindiv" style="z-index: 4000">
|
||||
Not found...
|
||||
</div>
|
||||
|
||||
<div id="maindiv" class="h-screen"></div>
|
||||
<script type="module" src="./src/notfound.ts"></script>
|
||||
<script async data-goatcounter="https://pietervdvn.goatcounter.com/count" src="//gc.zgo.at/count.js" crossorigin="anonymous" integrity="sha384-QfJMxHNngbaF6IXH2kBwubsLYh7GVSFmJOX1O1YKJBq+zv1VVypB9BysTzyG1D1U"></script>
|
||||
<script async data-goatcounter="https://pietervdvn.goatcounter.com/count" src="//gc.zgo.at/count.js"
|
||||
crossorigin="anonymous"
|
||||
integrity="sha384-QfJMxHNngbaF6IXH2kBwubsLYh7GVSFmJOX1O1YKJBq+zv1VVypB9BysTzyG1D1U"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
432
CHANGELOG.md
432
CHANGELOG.md
|
|
@ -2,248 +2,446 @@
|
|||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
### [0.48.3](https://github.com/pietervdvn/mapcomplete/compare/v0.48.0...v0.48.3) (2025-01-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* actually parse theme file ([3f80930](https://github.com/pietervdvn/mapcomplete/commits/3f80930d48df10b403a5f59ce9159d0a7f97d922))
|
||||
* also show default layers when loading an official theme via theme.html ([b844a07](https://github.com/pietervdvn/mapcomplete/commits/b844a0700e32d52660bef09bc15d2439cf54e9c2))
|
||||
* correct usage of userdetails ([436b99a](https://github.com/pietervdvn/mapcomplete/commits/436b99a53a003f3bc700fdd50be3608146581eb1))
|
||||
* don't open login page upon first visit of MapComplete ([0910992](https://github.com/pietervdvn/mapcomplete/commits/09109925bc295130e669ccaec6768957220bd656))
|
||||
* fix crash ([a451fac](https://github.com/pietervdvn/mapcomplete/commits/a451fac8f2d6c5dabffccc2bc8411846e02876f6))
|
||||
* NSI now explicitly has extensions ([96c3944](https://github.com/pietervdvn/mapcomplete/commits/96c39447163617766e14c5517ff124194ad79a88))
|
||||
* restore "_loggedIn" metatag ([18c19e5](https://github.com/pietervdvn/mapcomplete/commits/18c19e55f3ed800110f4c45ee97a53d510bdeb9d))
|
||||
* **studio:** add check for incorrect suggestions, fix incorrect suggestion which breaks setting a 'marker' ([143dd70](https://github.com/pietervdvn/mapcomplete/commits/143dd70973d49882ee314d3b09505c1c18c96aa7))
|
||||
* tests ([392e96e](https://github.com/pietervdvn/mapcomplete/commits/392e96e4f5d184d8af64beae2f115a7a15c9f25d))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* automatically remove filters that are useless because they would filter everything or nothing; fix some logic bugs and add tests ([50ef2ba](https://github.com/pietervdvn/mapcomplete/commits/50ef2ba63674d8e543649b85b0098658ac3f52ed))
|
||||
* **pets:** add dog toilets ([860fc99](https://github.com/pietervdvn/mapcomplete/commits/860fc9994bd529ceb1917757b8ac4fea6af5efaa))
|
||||
* **pets:** add waste baskets with doggy bag dispensers as layer ([1b3066c](https://github.com/pietervdvn/mapcomplete/commits/1b3066cc28a999b2fd74cc8d7acb0397d6415156))
|
||||
* **pets:** bring pets theme more in line (visually and logically) with the other themes ([cdc170b](https://github.com/pietervdvn/mapcomplete/commits/cdc170b128ae293d66f779192b6fda7867689a4e))
|
||||
* **shops:** add dog-access question ([244c976](https://github.com/pietervdvn/mapcomplete/commits/244c976af628e4c9fe2c3d98d09e4c40911284d1))
|
||||
|
||||
### [0.48.2](https://github.com/pietervdvn/mapcomplete/compare/v0.48.0...v0.48.2) (2025-01-19)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **studio:** add check for incorrect suggestions, fix incorrect suggestion which breaks setting a 'marker' ([89b4f02](https://github.com/pietervdvn/mapcomplete/commits/89b4f02aa630c378f752f4a1c35866c915481e7d))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **pets:** bring pets theme more in line (visually and logically) with the other themes ([cdc170b](https://github.com/pietervdvn/mapcomplete/commits/cdc170b128ae293d66f779192b6fda7867689a4e))
|
||||
* **shops:** add dog-access question ([244c976](https://github.com/pietervdvn/mapcomplete/commits/244c976af628e4c9fe2c3d98d09e4c40911284d1))
|
||||
|
||||
### [0.48.1](https://github.com/pietervdvn/mapcomplete/compare/v0.48.0...v0.48.1) (2025-01-18)
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **pets:** bring pets theme more in line (visually and logically) with the other themes ([9dd252d](https://github.com/pietervdvn/mapcomplete/commits/9dd252dc862b1f6fd7638076fb238f4849d93b5c))
|
||||
* **shops:** add dog-access question ([da25464](https://github.com/pietervdvn/mapcomplete/commits/da2546465f939f28db3b602fc3f88e05041176e2))
|
||||
|
||||
## [0.48.0](https://github.com/pietervdvn/mapcomplete/compare/v0.47.14...v0.48.0) (2025-01-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add missing data ([bd228a6](https://github.com/pietervdvn/mapcomplete/commits/bd228a6129e5e95feaf58cfbd438ca8011a69a3f))
|
||||
* Add question block ([0c5ab25](https://github.com/pietervdvn/mapcomplete/commits/0c5ab259e845f852e30202a196aacd225a70b928))
|
||||
* attempt to fix build ([6bc786d](https://github.com/pietervdvn/mapcomplete/commits/6bc786dc783d2b06af94ca1a034c18d3bf1e41f3))
|
||||
* build ([a278234](https://github.com/pietervdvn/mapcomplete/commits/a2782348a7a5a65a62056b566cb8ce5e83cf48c7))
|
||||
* don't crash if an initial hash is given from a non-matching layer ([551235a](https://github.com/pietervdvn/mapcomplete/commits/551235a185c2f54f561c82b79c34aaf1f171e217))
|
||||
* fix https://source.mapcomplete.org/MapComplete/MapComplete/issues/2293 ([b22015e](https://github.com/pietervdvn/mapcomplete/commits/b22015e2c829187b710f0ceddf3ff3754bb7f3c1))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **charging_station:** add charge_point layer ([67b3fb3](https://github.com/pietervdvn/mapcomplete/commits/67b3fb3740af55172dba647a5a198902ebd27328))
|
||||
* **charging_station:** Remove units for V and A (gh[#2320](https://github.com/pietervdvn/MapComplete/issues/2320)), fix stray A ([5a9c53e](https://github.com/pietervdvn/mapcomplete/commits/5a9c53e4d632dcae58c49c34cd9a5a8e0c0ca293))
|
||||
* **drinking_water:** add temperature question ([5617630](https://github.com/pietervdvn/mapcomplete/commits/5617630d690d3a229be13be0104a24316950c0e3))
|
||||
* move generated themes into assets, remove known_themes, support pruning of borrowed icons ([ee64d84](https://github.com/pietervdvn/mapcomplete/commits/ee64d84d270f141b0dafb2ac2726899afce5297e))
|
||||
* **scouting:** cleanup, use NSI ([1f384e7](https://github.com/pietervdvn/mapcomplete/commits/1f384e754b92bbc3c45b1251222145004b3614b7))
|
||||
* **shops:** revert to ID-presets for icons, add "vacant" as shop option ([622049f](https://github.com/pietervdvn/mapcomplete/commits/622049f21f2a43812ff31709dd91cfbe71e9197d))
|
||||
* **toilets:** add ratings ([5276442](https://github.com/pietervdvn/mapcomplete/commits/527644220984593b0379b1a17fa8c2a39936bef4))
|
||||
* **waste:** Fix broken translations (fj[#2297](https://github.com/pietervdvn/MapComplete/issues/2297)) ([8c6619a](https://github.com/pietervdvn/mapcomplete/commits/8c6619a1722430ce3e4a93770c1af44cffc34a8e))
|
||||
|
||||
### [0.47.14](https://github.com/pietervdvn/mapcomplete/compare/v0.47.13...v0.47.14) (2025-01-02)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Add velopark link ([23ac962](https://github.com/pietervdvn/mapcomplete/commits/23ac96251cbd67372b9ad8d2cbf75773b8e2bb65))
|
||||
* clean up minzoomVisible in some themes (gh[#2279](https://github.com/pietervdvn/MapComplete/issues/2279)) ([2a6e118](https://github.com/pietervdvn/mapcomplete/commits/2a6e118b5ba91ed4e3dfd9737cbf3ab96f937cff))
|
||||
* deduplicate .gitignore and reorder ([9d6036b](https://github.com/pietervdvn/mapcomplete/commits/9d6036be8797df4c92b2f0a02fcb349e1877f819))
|
||||
* deduplicate .gitignore and reorder ([8c1a73c](https://github.com/pietervdvn/mapcomplete/commits/8c1a73c9d50824b668dd0a31b435bbed2b15ffc1))
|
||||
* fix classes argument ([46ac716](https://github.com/pietervdvn/mapcomplete/commits/46ac71639596831926224c05d3f507d99321a5e9))
|
||||
* fix inspector ([e0931dc](https://github.com/pietervdvn/mapcomplete/commits/e0931dcebadb1d42b282131c78c9a87cbc486af1))
|
||||
* fix inspector ([4830527](https://github.com/pietervdvn/mapcomplete/commits/48305273e52ac85667b85b69ac2f6d13b0de8d19))
|
||||
* fix special visualisations ([9c686fe](https://github.com/pietervdvn/mapcomplete/commits/9c686fed89fb3ee8a3de21706aee37fa17ac3205))
|
||||
* imagepreview: improve typing; fix comparison tool ([2de8b54](https://github.com/pietervdvn/mapcomplete/commits/2de8b544570f7c983d67d51684ab9b31ddabe44d))
|
||||
* imagepreview: improve typing; fix comparison tool ([6cb1687](https://github.com/pietervdvn/mapcomplete/commits/6cb16877e8e27a70c1e1c327d965be1e0ab45788))
|
||||
* order of commands in npm run init ([33efe4f](https://github.com/pietervdvn/mapcomplete/commits/33efe4f2c25eda7dc179e572313e02b72de0e96a))
|
||||
* order of commands in npm run init ([3759134](https://github.com/pietervdvn/mapcomplete/commits/375913492cf6da22389d27a2458e817fa5c19d37))
|
||||
* remove checked-in file that is covered by .gitignore ([bccd744](https://github.com/pietervdvn/mapcomplete/commits/bccd74408659cf2377bbfa98e1d02b8e2b186937))
|
||||
* remove checked-in file that is covered by .gitignore ([c88ffda](https://github.com/pietervdvn/mapcomplete/commits/c88ffdae5513e57cdbaf702116714496d6fb3380))
|
||||
* remove obsolete "SetClass"-calls which don't work anyway ([4fcdd8b](https://github.com/pietervdvn/mapcomplete/commits/4fcdd8ba5a9cbfb06e160a77f51b59f5ee302914))
|
||||
* tests ([5b43316](https://github.com/pietervdvn/mapcomplete/commits/5b43316f10f07383c4bd2f1c5b12373bfd4e52dc))
|
||||
* various small fixes ([5284d94](https://github.com/pietervdvn/mapcomplete/commits/5284d94427df74bd8fed85f9d506d147d068cdb3))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **bicycle_parking:** add more nuance to ([87cb88d](https://github.com/pietervdvn/mapcomplete/commits/87cb88d7f35558283d8d27eb5fe5e7942b901d6b))
|
||||
* **cycleways_and_roads:** use 'width' instead of 'width:carriageway', fix [#2318](https://github.com/pietervdvn/MapComplete/issues/2318) ([90626c6](https://github.com/pietervdvn/mapcomplete/commits/90626c632aee2be3b6d0a5e31d514b92ceccc4ab))
|
||||
* **shops:** add optometrist service ([76831c4](https://github.com/pietervdvn/mapcomplete/commits/76831c4e855b98f233ca85320c069226eb107e4a))
|
||||
* **shops:** change 'optomotetrist'-service into multiple other services ([4925e21](https://github.com/pietervdvn/mapcomplete/commits/4925e216b8d273868787c7b057391c10ab474267))
|
||||
* **shops:** change 'optomotetrist'-service into multiple other services ([80776f5](https://github.com/pietervdvn/mapcomplete/commits/80776f5943704b36dfc7d5047e4b0aa8be6f552d))
|
||||
|
||||
### [0.47.13](https://github.com/pietervdvn/mapcomplete/compare/v0.47.12...v0.47.13) (2024-12-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* attributed image doesn't open fullscreen if no ID given ([b272c1c](https://github.com/pietervdvn/mapcomplete/commits/b272c1cda7352a4a78e4f61dbd39fe2f80ae204d))
|
||||
* don't report an unneeded error ([79314e1](https://github.com/pietervdvn/mapcomplete/commits/79314e1747ee74544975948ba35fb499c203a061))
|
||||
* fix [#2309](https://github.com/pietervdvn/MapComplete/issues/2309) ([83a9184](https://github.com/pietervdvn/mapcomplete/commits/83a918477f24fd86bc2783e266ac59a4c687020f))
|
||||
* fix [#2309](https://github.com/pietervdvn/MapComplete/issues/2309) ([fe2a6ca](https://github.com/pietervdvn/mapcomplete/commits/fe2a6ca065b8ace2f466a6cac549f6d84ee35044))
|
||||
* fix changelog links ([0471fd7](https://github.com/pietervdvn/mapcomplete/commits/0471fd7779329da051400a62d16162bd21dc0324))
|
||||
* fix possible failing upload (error report postmortem) ([22c348a](https://github.com/pietervdvn/mapcomplete/commits/22c348af27677cd97f124dc45f63276d91b40152))
|
||||
* linked data vis for velopark does no longer rely on country codes ([c26b9ae](https://github.com/pietervdvn/mapcomplete/commits/c26b9ae7f7fa3de69d499451db14be61e4698721))
|
||||
* **linkeddata:** velopark deals with sections, fix image loading ([ef1d2c9](https://github.com/pietervdvn/mapcomplete/commits/ef1d2c9f56fc07f87255c557b05daf5e0451fdc5))
|
||||
* remove 'id' attribute ([926ea0b](https://github.com/pietervdvn/mapcomplete/commits/926ea0b6e46f9966d1b1b9a4157c6ca6708b82fa))
|
||||
* server config (CORS) ([2c877dd](https://github.com/pietervdvn/mapcomplete/commits/2c877dd52532b24066907a5ae9676e26371e48f0))
|
||||
* typing ([565e92a](https://github.com/pietervdvn/mapcomplete/commits/565e92a37dde751e21d7f3e2abc69fa57b27d30f))
|
||||
|
||||
### [0.47.12](https://github.com/pietervdvn/mapcomplete/compare/v0.47.11...v0.47.12) (2024-12-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add ignored file ([a6d07c5](https://github.com/pietervdvn/mapcomplete/commits/a6d07c50a1d11bbe8a2d78201ad85bb5f2e606e5))
|
||||
* attempt to add more EXIF-fields, see [#2296](https://github.com/pietervdvn/MapComplete/issues/2296) ([a87e9e2](https://github.com/pietervdvn/mapcomplete/commits/a87e9e2e98f0a703e3b50570183edfa5ad858719))
|
||||
* attempt to get runners working ([a7e729a](https://github.com/pietervdvn/mapcomplete/commits/a7e729a2dee0dd4e961067f62e52662b085ad161))
|
||||
* attempt to get runners working ([4a6efe8](https://github.com/pietervdvn/mapcomplete/commits/4a6efe8bfb35215aa7d2763bd8b906052a0341a3))
|
||||
* attempt to get runners working ([221c136](https://github.com/pietervdvn/mapcomplete/commits/221c13679a90b688867be4a83f43614cff3a8b93))
|
||||
* attempt to get runners working ([142cf9a](https://github.com/pietervdvn/mapcomplete/commits/142cf9a1174fd7006ccfdd141d2b051de0b28348))
|
||||
* don't show tags in filter view if not logged in ([a07c792](https://github.com/pietervdvn/mapcomplete/commits/a07c79289b7f6c5d3f14101d15b985c931a42b44))
|
||||
* don't show walls-and-buildings if the layer is disabled ([130ede8](https://github.com/pietervdvn/mapcomplete/commits/130ede896cdeea39bf9ca17d4a451d3d861905af))
|
||||
* Enable recycling:waste option [#2280](https://github.com/pietervdvn/MapComplete/issues/2280) ([673322d](https://github.com/pietervdvn/mapcomplete/commits/673322d15bab4789b6d62facbc9d96dce7997480))
|
||||
* fix [#2304](https://github.com/pietervdvn/MapComplete/issues/2304) ([0a001d3](https://github.com/pietervdvn/mapcomplete/commits/0a001d3c7d337a2838c3f2b7493d4a3b218fe9a5))
|
||||
* fix [#2306](https://github.com/pietervdvn/MapComplete/issues/2306) by using a cutoff of 150m ([9ab8d99](https://github.com/pietervdvn/mapcomplete/commits/9ab8d99e56d8ae9653921c21e2f3559d69cc675f))
|
||||
* fix [#2306](https://github.com/pietervdvn/MapComplete/issues/2306) by using a cutoff of 150m ([73f0fff](https://github.com/pietervdvn/mapcomplete/commits/73f0ffff5d21703bb1e24ba920d65994e3993100))
|
||||
* image upload will now fail less for newly created points ([b91bd78](https://github.com/pietervdvn/mapcomplete/commits/b91bd78762f6eb3bd6555cc0fb3bfb244fe3340b))
|
||||
* improve typing and probably fix broken settings (https://source.mapcomplete.org/MapComplete/MapComplete/issues/2281) ([4b121e4](https://github.com/pietervdvn/mapcomplete/commits/4b121e474ce6998f03e9743e4b52e2de1288b71a))
|
||||
* linking images is not possible for notes or non-openstreetmap elements ([7f9f7e7](https://github.com/pietervdvn/mapcomplete/commits/7f9f7e753443e779b16a544bc6312214ae26dab4))
|
||||
* Missing import ([c4c93bc](https://github.com/pietervdvn/mapcomplete/commits/c4c93bc49bd10b7043e81227ea5d1113e7c75ede))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* new [insect hotels theme](https://mapcomplete.org/insects.html) ([07a53e9](https://github.com/pietervdvn/mapcomplete/commits/07a53e9373f7341fc03f32c2815538f72afa6fdb))
|
||||
* **blind_osm:** Differentiate escalators more ([#2247](https://github.com/pietervdvn/MapComplete/issues/2247)) ([d19b2de](https://github.com/pietervdvn/mapcomplete/commits/d19b2de1cdb32388229d6ae2eb432cd59b58abad))
|
||||
* **climbing:** Add auto belay tags ([9b8235e](https://github.com/pietervdvn/mapcomplete/commits/9b8235e51f3b115bdd3788dc9dfe3e3e99a4a1e4))
|
||||
* **climbing:** Add auto belay tags ([026825a](https://github.com/pietervdvn/mapcomplete/commits/026825aa3d37650b8b0121e2a5d39c6d55d42d63))
|
||||
* **climbing:** Change conditions for gear rental questions ([a424398](https://github.com/pietervdvn/mapcomplete/commits/a4243986eab087128ab09032319b3f8f699a1f0a))
|
||||
* **climbing:** Clarify questions about gear rental ([12f0ec9](https://github.com/pietervdvn/mapcomplete/commits/12f0ec98fbcf540626328e97b5c2cf4e87cbd4be))
|
||||
* **climbing:** Recognize leisure=sports_hall ([2a135f9](https://github.com/pietervdvn/mapcomplete/commits/2a135f9eef5164c2b2af9ae46bb9608b764d1654))
|
||||
* **cyclofix:** don't count shops in overview ([b615c34](https://github.com/pietervdvn/mapcomplete/commits/b615c3487947eafe2a0ce555fe380101323f66ab))
|
||||
* **cyclofix:** show shops which sell second-hand bicycles in bicycle layer, see https://source.mapcomplete.org/MapComplete/MapComplete/issues/2279 ([67aba6d](https://github.com/pietervdvn/mapcomplete/commits/67aba6d034a6673d8c7efedef0d26d88c723d12b))
|
||||
* **etymology:** add parks, fix [#2292](https://github.com/pietervdvn/MapComplete/issues/2292) ([ceadd9f](https://github.com/pietervdvn/mapcomplete/commits/ceadd9fdefa9843cf766935368aa01b3c96dbe76))
|
||||
* **food:** Add question about drive-through ([9e5ace0](https://github.com/pietervdvn/mapcomplete/commits/9e5ace07d46959dbc3972a5f0948dc989c2b73f6))
|
||||
* **food:** Add question about seating ([#1976](https://github.com/pietervdvn/MapComplete/issues/1976)) ([a50d1eb](https://github.com/pietervdvn/mapcomplete/commits/a50d1ebe7de1fcbdf6d90136adf4b66f109f824d))
|
||||
* **note:** don't show notes which have _no_ comments; these are probably redacted. Fix [#2299](https://github.com/pietervdvn/MapComplete/issues/2299) ([ec7b166](https://github.com/pietervdvn/mapcomplete/commits/ec7b16638da2475e4cbca097ce08f566e46ba054))
|
||||
|
||||
### [0.47.11](https://github.com/pietervdvn/mapcomplete/compare/v0.47.10...v0.47.11) (2024-11-28)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* allow to disable questions (and to enable them again), fix [#256](https://github.com/pietervdvn/MapComplete/issues/256) ([93ebdd8](https://github.com/pietervdvn/mapcomplete/commits/93ebdd8e1688d2424f0e67d03271d46b4c6640b9))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add prevent-defaults ([afce4cb](https://github.com/pietervdvn/mapcomplete/commits/afce4cb5ba6c77c3e076b5390640eb5ed505cf64))
|
||||
* allow to move items more then 50 meter if relocated ([f63f886](https://github.com/pietervdvn/mapcomplete/commits/f63f886ea57d5ca2fca352b455a4d833537422a5))
|
||||
* apply refactoring ([140e966](https://github.com/pietervdvn/mapcomplete/commits/140e966de12689b374acc1ec7feaf69065bb1250))
|
||||
* attempt to fix image upload on stripped coordinates, see [#2202](https://github.com/pietervdvn/MapComplete/issues/2202) ([a94a7ec](https://github.com/pietervdvn/mapcomplete/commits/a94a7ecd7162b5f49f689d77c5e40219ae7fda05))
|
||||
* don't show all items if favourites is shown ([3292307](https://github.com/pietervdvn/mapcomplete/commits/32923072081961b5ef9b899267be99b354265d59))
|
||||
* fix [#2254](https://github.com/pietervdvn/MapComplete/issues/2254); an image carousel with a different key would not show up due to caching ([c0b11a8](https://github.com/pietervdvn/mapcomplete/commits/c0b11a81e91db1c4eb130db1a722e20211f4ba5e))
|
||||
* fix [#2272](https://github.com/pietervdvn/MapComplete/issues/2272) : correct link ([44355f5](https://github.com/pietervdvn/mapcomplete/commits/44355f566762a234942b678a21b8686341b2087b))
|
||||
* fix [#2278](https://github.com/pietervdvn/MapComplete/issues/2278) ([540e2c2](https://github.com/pietervdvn/mapcomplete/commits/540e2c227e5327a501c8ab46fc8c56d0d4bc27bc))
|
||||
* fix [#2281](https://github.com/pietervdvn/MapComplete/issues/2281) ([8ef7af6](https://github.com/pietervdvn/mapcomplete/commits/8ef7af613f20f265386ccb3d301c43ff49108cb1))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **maps:** add tactile maps and tactile models to map theme, fix [#2277](https://github.com/pietervdvn/MapComplete/issues/2277) ([12926e1](https://github.com/pietervdvn/mapcomplete/commits/12926e1e9cc3fef81811b6df011f83e2013d3ad5))
|
||||
* **stairs:** fix [#2248](https://github.com/pietervdvn/MapComplete/issues/2248) ([a0c63b2](https://github.com/pietervdvn/mapcomplete/commits/a0c63b273423bef6a3aba1106880015b135e4542))
|
||||
* **surveillance:** fix tagging ([208d7ec](https://github.com/pietervdvn/mapcomplete/commits/208d7ecf4e4386ddbd9d58a71a0b6e4fcb26beaa))
|
||||
|
||||
### [0.47.10](https://github.com/pietervdvn/mapcomplete/compare/v0.47.9...v0.47.10) (2024-11-14)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* actually download all OSM-data when downloading as geojson or CSV ([05298c2](https://github.com/pietervdvn/mapcomplete/commits/05298c2498bb908860f49f057b7466f4a8feb5ba))
|
||||
* don't show `maxstay=30 days` in velopark, this is actually 'unknown' ([d2237cf](https://github.com/pietervdvn/mapcomplete/commits/d2237cf26c1e3af034f0c3b72bd5ffa878ef1c64))
|
||||
* fix image upload ([f1106ad](https://github.com/pietervdvn/mapcomplete/commits/f1106ad4a816c9fb84a92974cb7d88e9aae7633b))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **surveillance:** add doorbell as option ([88a4bd5](https://github.com/pietervdvn/mapcomplete/commits/88a4bd561952b3d9d0cd8e4ebaab123b739909e8))
|
||||
|
||||
### [0.47.9](https://github.com/pietervdvn/mapcomplete/compare/v0.47.8...v0.47.9) (2024-11-07)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **filters:** show tags that are filtered on, deal with multi-answer tags to allow having this option with auto-filters ([69a6ec6](https://github.com/pietervdvn/mapcomplete/commits69a6ec6b0291bf1a5ec0bdcece605c7cf9f6ea0a))
|
||||
* **filters:** show tags that are filtered on, deal with multi-answer tags to allow having this option with auto-filters ([69a6ec6](https://github.com/pietervdvn/mapcomplete/commits/69a6ec6b0291bf1a5ec0bdcece605c7cf9f6ea0a))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* better support for complicated regex tags ([b4817f7](https://github.com/pietervdvn/mapcomplete/commitsb4817f7a7faafffe716619a4d6908c013d58efd6))
|
||||
* build ([70612f1](https://github.com/pietervdvn/mapcomplete/commits70612f1c12ef69209205a29828694c16a9bbc177))
|
||||
* build by fixing licenses ([62936b9](https://github.com/pietervdvn/mapcomplete/commits62936b916b238f7ddf4edb841383d4e2cb1bf3da))
|
||||
* deal with dashes in the path ([5127609](https://github.com/pietervdvn/mapcomplete/commits51276091203d48cecb154271e69be0ce784ed01d))
|
||||
* fix build by having correct regextag.asJson() ([0dd96f4](https://github.com/pietervdvn/mapcomplete/commits0dd96f469b8ed7fd83da4543998b0b473bcc2206))
|
||||
* fix fediverse link ([3683780](https://github.com/pietervdvn/mapcomplete/commits3683780f9d19016ee0972cffb6ee55997a0b60c5))
|
||||
* hide items if the layer is disabled and favourites is enabled ([7bdd308](https://github.com/pietervdvn/mapcomplete/commits7bdd30879b870406cf5ebf3a23edfc3fbeb52a47))
|
||||
* increase timeout when opening a new POI ([e8e4ae1](https://github.com/pietervdvn/mapcomplete/commitse8e4ae1f47514b1b7769e701bdf5a7581c231aa8))
|
||||
* show favourites in loaded layers if favourites are enabled ([e65f61d](https://github.com/pietervdvn/mapcomplete/commitse65f61d2962eba8301afa51e27f0e085e8db2ff7))
|
||||
* when using Chronic, check the `aslong` condition before actually running instead of using it to reset the clock. ([10e9416](https://github.com/pietervdvn/mapcomplete/commits10e9416f8f1abe4cda334242821157bd7c486986))
|
||||
* better support for complicated regex tags ([b4817f7](https://github.com/pietervdvn/mapcomplete/commits/b4817f7a7faafffe716619a4d6908c013d58efd6))
|
||||
* build ([70612f1](https://github.com/pietervdvn/mapcomplete/commits/70612f1c12ef69209205a29828694c16a9bbc177))
|
||||
* build by fixing licenses ([62936b9](https://github.com/pietervdvn/mapcomplete/commits/62936b916b238f7ddf4edb841383d4e2cb1bf3da))
|
||||
* deal with dashes in the path ([5127609](https://github.com/pietervdvn/mapcomplete/commits/51276091203d48cecb154271e69be0ce784ed01d))
|
||||
* fix build by having correct regextag.asJson() ([0dd96f4](https://github.com/pietervdvn/mapcomplete/commits/0dd96f469b8ed7fd83da4543998b0b473bcc2206))
|
||||
* fix fediverse link ([3683780](https://github.com/pietervdvn/mapcomplete/commits/3683780f9d19016ee0972cffb6ee55997a0b60c5))
|
||||
* hide items if the layer is disabled and favourites is enabled ([7bdd308](https://github.com/pietervdvn/mapcomplete/commits/7bdd30879b870406cf5ebf3a23edfc3fbeb52a47))
|
||||
* increase timeout when opening a new POI ([e8e4ae1](https://github.com/pietervdvn/mapcomplete/commits/e8e4ae1f47514b1b7769e701bdf5a7581c231aa8))
|
||||
* show favourites in loaded layers if favourites are enabled ([e65f61d](https://github.com/pietervdvn/mapcomplete/commits/e65f61d2962eba8301afa51e27f0e085e8db2ff7))
|
||||
* when using Chronic, check the `aslong` condition before actually running instead of using it to reset the clock. ([10e9416](https://github.com/pietervdvn/mapcomplete/commits/10e9416f8f1abe4cda334242821157bd7c486986))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **education:** add images, move contact information up ([d77bb7e](https://github.com/pietervdvn/mapcomplete/commitsd77bb7e22525aef3b64ce3a9aa57a39351ebb441))
|
||||
* **memorial:** add filter on type of memorial, remove obsolete 'memorial:type=stolperstein' ([1415fcd](https://github.com/pietervdvn/mapcomplete/commits1415fcdfecb4be757ea9611b08a1b473e5d50be7))
|
||||
* **playgrounds:** don't show counts for small POI, only for playgrounds; make icons smaller ([f3335c9](https://github.com/pietervdvn/mapcomplete/commitsf3335c93711bd224ad3dfa611b95a40039596746))
|
||||
* **postboxes:** add contact info, add condition for post partner ([8fcc747](https://github.com/pietervdvn/mapcomplete/commits8fcc747370fab69e93fac2e00c1886261cb6e08f))
|
||||
* **postboxes:** add option to snap to wall and rendering, add "operator" to post boxes ([f7b5db9](https://github.com/pietervdvn/mapcomplete/commitsf7b5db9ec34676f834a3b2d8966649f09b34c1b1))
|
||||
* **education:** add images, move contact information up ([d77bb7e](https://github.com/pietervdvn/mapcomplete/commits/d77bb7e22525aef3b64ce3a9aa57a39351ebb441))
|
||||
* **memorial:** add filter on type of memorial, remove obsolete 'memorial:type=stolperstein' ([1415fcd](https://github.com/pietervdvn/mapcomplete/commits/1415fcdfecb4be757ea9611b08a1b473e5d50be7))
|
||||
* **playgrounds:** don't show counts for small POI, only for playgrounds; make icons smaller ([f3335c9](https://github.com/pietervdvn/mapcomplete/commits/f3335c93711bd224ad3dfa611b95a40039596746))
|
||||
* **postboxes:** add contact info, add condition for post partner ([8fcc747](https://github.com/pietervdvn/mapcomplete/commits/8fcc747370fab69e93fac2e00c1886261cb6e08f))
|
||||
* **postboxes:** add option to snap to wall and rendering, add "operator" to post boxes ([f7b5db9](https://github.com/pietervdvn/mapcomplete/commits/f7b5db9ec34676f834a3b2d8966649f09b34c1b1))
|
||||
|
||||
### [0.47.8](https://github.com/pietervdvn/mapcomplete/compare/v0.47.7...v0.47.8) (2024-11-01)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* fix uploading images in the 'notes' theme ([5fd0314](https://github.com/pietervdvn/mapcomplete/commits5fd03144080aa32fe500333b64575069e93e8b79))
|
||||
* fix uploading images in the 'notes' theme ([5fd0314](https://github.com/pietervdvn/mapcomplete/commits/5fd03144080aa32fe500333b64575069e93e8b79))
|
||||
|
||||
### [0.47.7](https://github.com/pietervdvn/mapcomplete/compare/v0.47.6...v0.47.7) (2024-10-28)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add script to upload images to panoramax and remove 'imgur'-links ([4233bd7](https://github.com/pietervdvn/mapcomplete/commits4233bd7618e69e71c00ef027bbb4afc199c29fa9))
|
||||
* panoramax uploads in testmode are sent to a different sequence ([834b6b1](https://github.com/pietervdvn/mapcomplete/commits834b6b18ff985cd1a79e725af915e307525d221e))
|
||||
* remove possibility to load a custom theme via the hash, no longer necessary with a theme server ([a016a8f](https://github.com/pietervdvn/mapcomplete/commitsa016a8f771ca3cfb210b5f5f92b136a011d08543))
|
||||
* update update script ([d27c38d](https://github.com/pietervdvn/mapcomplete/commitsd27c38d0e48d653675ffa44bc3812e6f8e05f5f8))
|
||||
* upload to specified panoramax instance ([3df0f9c](https://github.com/pietervdvn/mapcomplete/commits3df0f9ca94f8df6314322359edbfb4276c971419))
|
||||
* add script to upload images to panoramax and remove 'imgur'-links ([4233bd7](https://github.com/pietervdvn/mapcomplete/commits/4233bd7618e69e71c00ef027bbb4afc199c29fa9))
|
||||
* panoramax uploads in testmode are sent to a different sequence ([834b6b1](https://github.com/pietervdvn/mapcomplete/commits/834b6b18ff985cd1a79e725af915e307525d221e))
|
||||
* remove possibility to load a custom theme via the hash, no longer necessary with a theme server ([a016a8f](https://github.com/pietervdvn/mapcomplete/commits/a016a8f771ca3cfb210b5f5f92b136a011d08543))
|
||||
* update update script ([d27c38d](https://github.com/pietervdvn/mapcomplete/commits/d27c38d0e48d653675ffa44bc3812e6f8e05f5f8))
|
||||
* upload to specified panoramax instance ([3df0f9c](https://github.com/pietervdvn/mapcomplete/commits/3df0f9ca94f8df6314322359edbfb4276c971419))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add missing import ([9bf013c](https://github.com/pietervdvn/mapcomplete/commits9bf013cd47468c88bbc9ad90376f9240d0e921c0))
|
||||
* attempt to fix build ([571791d](https://github.com/pietervdvn/mapcomplete/commits571791d06349cc9a409ddede0737f04824186210))
|
||||
* attempt to fix panoramax upload, see [#2202](https://github.com/pietervdvn/MapComplete/issues/2202) ([07c1cc0](https://github.com/pietervdvn/mapcomplete/commits07c1cc0beea816d4f328adaa9ac15d32676380c4))
|
||||
* bing layer, see [#2222](https://github.com/pietervdvn/MapComplete/issues/2222) ([51608fb](https://github.com/pietervdvn/mapcomplete/commits51608fb22348a79b7459a7d3558202edb68ec773))
|
||||
* build ([01c8d63](https://github.com/pietervdvn/mapcomplete/commits01c8d63943c0df74892e2ae02720a469bf3bdb89))
|
||||
* don't index 'all_streets' ([c1c2390](https://github.com/pietervdvn/mapcomplete/commitsc1c2390694ab145524dae96cd7dff5a866e4b865))
|
||||
* fix [#2212](https://github.com/pietervdvn/MapComplete/issues/2212). ([91f5c8f](https://github.com/pietervdvn/mapcomplete/commits91f5c8f1669a448c36876e0fda374165f5b60886))
|
||||
* fix [#2213](https://github.com/pietervdvn/MapComplete/issues/2213), remove image-license from usersettings.json ([90a34ab](https://github.com/pietervdvn/mapcomplete/commits90a34ab31f23be942e27ba4cbcd60528c591f7df))
|
||||
* fix [#2222](https://github.com/pietervdvn/MapComplete/issues/2222), restore global background layers which were not included in the connect-src ([905f176](https://github.com/pietervdvn/mapcomplete/commits905f1768f2b994fa83af31224447c96003ab70ce))
|
||||
* **panoramax:** stabilize loading images ([8480f94](https://github.com/pietervdvn/mapcomplete/commits8480f9417c6fa11ab21bc06d15e4a5a5baeaa1f4))
|
||||
* see [#2212](https://github.com/pietervdvn/MapComplete/issues/2212): actually save custom themes as visited ([9427083](https://github.com/pietervdvn/mapcomplete/commits9427083939bb6958b07e6fd48f5356101f06e681))
|
||||
* special quicksearch for osmcha ([01cfc5f](https://github.com/pietervdvn/mapcomplete/commits01cfc5fe4db17362b3e3317f0eba7e0bf954a689))
|
||||
* translations ([d10f894](https://github.com/pietervdvn/mapcomplete/commitsd10f89469a7de5e91bc613ae4527054c502b966a))
|
||||
* translations ([ab8835b](https://github.com/pietervdvn/mapcomplete/commitsab8835b279a9c3aecf04a367464cc1bde25ac1d8))
|
||||
* Use alternative way to read coordinates from exif data ([6257c24](https://github.com/pietervdvn/mapcomplete/commits6257c2415a6fff2859168bb671f54e700f0b3152))
|
||||
* use popup when in an iframe ([63162c5](https://github.com/pietervdvn/mapcomplete/commits63162c58e147aaf9c1c4c77d5187b13aaa8cf13a))
|
||||
* add missing import ([9bf013c](https://github.com/pietervdvn/mapcomplete/commits/9bf013cd47468c88bbc9ad90376f9240d0e921c0))
|
||||
* attempt to fix build ([571791d](https://github.com/pietervdvn/mapcomplete/commits/571791d06349cc9a409ddede0737f04824186210))
|
||||
* attempt to fix panoramax upload, see [#2202](https://github.com/pietervdvn/MapComplete/issues/2202) ([07c1cc0](https://github.com/pietervdvn/mapcomplete/commits/07c1cc0beea816d4f328adaa9ac15d32676380c4))
|
||||
* bing layer, see [#2222](https://github.com/pietervdvn/MapComplete/issues/2222) ([51608fb](https://github.com/pietervdvn/mapcomplete/commits/51608fb22348a79b7459a7d3558202edb68ec773))
|
||||
* build ([01c8d63](https://github.com/pietervdvn/mapcomplete/commits/01c8d63943c0df74892e2ae02720a469bf3bdb89))
|
||||
* don't index 'all_streets' ([c1c2390](https://github.com/pietervdvn/mapcomplete/commits/c1c2390694ab145524dae96cd7dff5a866e4b865))
|
||||
* fix [#2212](https://github.com/pietervdvn/MapComplete/issues/2212). ([91f5c8f](https://github.com/pietervdvn/mapcomplete/commits/91f5c8f1669a448c36876e0fda374165f5b60886))
|
||||
* fix [#2213](https://github.com/pietervdvn/MapComplete/issues/2213), remove image-license from usersettings.json ([90a34ab](https://github.com/pietervdvn/mapcomplete/commits/90a34ab31f23be942e27ba4cbcd60528c591f7df))
|
||||
* fix [#2222](https://github.com/pietervdvn/MapComplete/issues/2222), restore global background layers which were not included in the connect-src ([905f176](https://github.com/pietervdvn/mapcomplete/commits/905f1768f2b994fa83af31224447c96003ab70ce))
|
||||
* **panoramax:** stabilize loading images ([8480f94](https://github.com/pietervdvn/mapcomplete/commits/8480f9417c6fa11ab21bc06d15e4a5a5baeaa1f4))
|
||||
* see [#2212](https://github.com/pietervdvn/MapComplete/issues/2212): actually save custom themes as visited ([9427083](https://github.com/pietervdvn/mapcomplete/commits/9427083939bb6958b07e6fd48f5356101f06e681))
|
||||
* special quicksearch for osmcha ([01cfc5f](https://github.com/pietervdvn/mapcomplete/commits/01cfc5fe4db17362b3e3317f0eba7e0bf954a689))
|
||||
* translations ([d10f894](https://github.com/pietervdvn/mapcomplete/commits/d10f89469a7de5e91bc613ae4527054c502b966a))
|
||||
* translations ([ab8835b](https://github.com/pietervdvn/mapcomplete/commits/ab8835b279a9c3aecf04a367464cc1bde25ac1d8))
|
||||
* Use alternative way to read coordinates from exif data ([6257c24](https://github.com/pietervdvn/mapcomplete/commits/6257c2415a6fff2859168bb671f54e700f0b3152))
|
||||
* use popup when in an iframe ([63162c5](https://github.com/pietervdvn/mapcomplete/commits/63162c58e147aaf9c1c4c77d5187b13aaa8cf13a))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **bike_parking:** add lean_and_stick type ([9e1bd7f](https://github.com/pietervdvn/mapcomplete/commits9e1bd7fa9d9e3b2d5242fbe7b073234b7fa04cbd))
|
||||
* **bikeparking:** update text of access=private, sync translation ([4ce5a40](https://github.com/pietervdvn/mapcomplete/commits4ce5a40eb4b3b3d350873ff2bf9a2a7d9b3a5d15))
|
||||
* **cycle_infra:** add minzoom for all layers ([94bc478](https://github.com/pietervdvn/mapcomplete/commits94bc478b9e5cfdbbb9e062b3950433984bfd752b))
|
||||
* **items_with_image:** include 'panoramax' and 'mapillary' as tags for items with image, fix [#2225](https://github.com/pietervdvn/MapComplete/issues/2225) ([899312b](https://github.com/pietervdvn/mapcomplete/commits899312ba7cb2b9b00fc8c4483ffe57955f08cdf2))
|
||||
* **shops:** support `shop=sports` together with 'shop=sport' ([98470ef](https://github.com/pietervdvn/mapcomplete/commits98470ef8ac1c38cb54cdbae1bd07cbab825be795))
|
||||
* **velopark:** hide NMBS-maproulette items ([0a0d0a1](https://github.com/pietervdvn/mapcomplete/commits0a0d0a15cb546dd390bd2c388fafb43d13bda327))
|
||||
* **velopark:** properly hide NMBS-maproulette items with a filter ([4840816](https://github.com/pietervdvn/mapcomplete/commits4840816b1768cd3c4d43ef01d07c852cd32f1d3e))
|
||||
* **bike_parking:** add lean_and_stick type ([9e1bd7f](https://github.com/pietervdvn/mapcomplete/commits/9e1bd7fa9d9e3b2d5242fbe7b073234b7fa04cbd))
|
||||
* **bikeparking:** update text of access=private, sync translation ([4ce5a40](https://github.com/pietervdvn/mapcomplete/commits/4ce5a40eb4b3b3d350873ff2bf9a2a7d9b3a5d15))
|
||||
* **cycle_infra:** add minzoom for all layers ([94bc478](https://github.com/pietervdvn/mapcomplete/commits/94bc478b9e5cfdbbb9e062b3950433984bfd752b))
|
||||
* **items_with_image:** include 'panoramax' and 'mapillary' as tags for items with image, fix [#2225](https://github.com/pietervdvn/MapComplete/issues/2225) ([899312b](https://github.com/pietervdvn/mapcomplete/commits/899312ba7cb2b9b00fc8c4483ffe57955f08cdf2))
|
||||
* **shops:** support `shop=sports` together with 'shop=sport' ([98470ef](https://github.com/pietervdvn/mapcomplete/commits/98470ef8ac1c38cb54cdbae1bd07cbab825be795))
|
||||
* **velopark:** hide NMBS-maproulette items ([0a0d0a1](https://github.com/pietervdvn/mapcomplete/commits/0a0d0a15cb546dd390bd2c388fafb43d13bda327))
|
||||
* **velopark:** properly hide NMBS-maproulette items with a filter ([4840816](https://github.com/pietervdvn/mapcomplete/commits/4840816b1768cd3c4d43ef01d07c852cd32f1d3e))
|
||||
|
||||
### [0.47.6](https://github.com/pietervdvn/mapcomplete/compare/v0.47.5...v0.47.6) (2024-10-15)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* remove 'noteImportLayer', they are not used enough for the big performance and maintenance impact they have ([e35df65](https://github.com/pietervdvn/mapcomplete/commitse35df654d7f2a0ef7c12c0ceef27cb3a1a7a1027))
|
||||
* remove 'noteImportLayer', they are not used enough for the big performance and maintenance impact they have ([e35df65](https://github.com/pietervdvn/mapcomplete/commits/e35df654d7f2a0ef7c12c0ceef27cb3a1a7a1027))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add error reporting when image upload fails, see [#2202](https://github.com/pietervdvn/MapComplete/issues/2202) ([368d785](https://github.com/pietervdvn/mapcomplete/commits368d7857a055c92109ec6d5155078aabaef230ac))
|
||||
* add nvm path ([7d83cb1](https://github.com/pietervdvn/mapcomplete/commits7d83cb1a7fdaad23d4a1343edb75145f60bf771f))
|
||||
* add spaces to opening hours picker for PH ([8a8b2e2](https://github.com/pietervdvn/mapcomplete/commits8a8b2e20aebe8019af86aca02e6bcc4d90896b4f))
|
||||
* attempt to workaround for [#2202](https://github.com/pietervdvn/MapComplete/issues/2202) ([66465fd](https://github.com/pietervdvn/mapcomplete/commits66465fdc9893fa4c3f0c1f5b8279a51c33a1e407))
|
||||
* bug in error reporting ([4794032](https://github.com/pietervdvn/mapcomplete/commits4794032e49a4b5b2d3fdceac8a2b8a75994e94ea))
|
||||
* build: add generated file which is needed for some steps ([016908f](https://github.com/pietervdvn/mapcomplete/commits016908fb940a65dc863cddca5be8d681b9370c49))
|
||||
* explicitly use version number in update script ([977c6ff](https://github.com/pietervdvn/mapcomplete/commits977c6ff9fb30267f47c39aa55fb0a0f2e6028564))
|
||||
* fix [#2207](https://github.com/pietervdvn/MapComplete/issues/2207) ([ca17d3d](https://github.com/pietervdvn/mapcomplete/commitsca17d3da1b772e4976414b54406816a68ef0e175))
|
||||
* fix [#2209](https://github.com/pietervdvn/MapComplete/issues/2209), remove lingering incorrect translations ([fbcbdc5](https://github.com/pietervdvn/mapcomplete/commitsfbcbdc571edd848106885f9148e473c816990a67))
|
||||
* fix loading of preferences ([7060f7c](https://github.com/pietervdvn/mapcomplete/commits7060f7cf6cac807877efb8babc8586eabfc79351))
|
||||
* remove truly unrecoverable changes from report logging ([f2b681c](https://github.com/pietervdvn/mapcomplete/commitsf2b681caa59a419c4c217e705ad6d1a7ac271128))
|
||||
* reset translations ([6a4166f](https://github.com/pietervdvn/mapcomplete/commits6a4166febb5ce386beac8bbb06cd7527b90c6a12))
|
||||
* set max image size (100 MB) ([cc6ce3c](https://github.com/pietervdvn/mapcomplete/commitscc6ce3c271475759a7a2062b1ca7e4668ca4a230))
|
||||
* some fixes to studio ([c795e74](https://github.com/pietervdvn/mapcomplete/commitsc795e74037ca1aa222fdba6eb2cc4a32a78a8eb7))
|
||||
* tests ([c95999b](https://github.com/pietervdvn/mapcomplete/commitsc95999b50b84d294476783573baf21d46318cb16))
|
||||
* add error reporting when image upload fails, see [#2202](https://github.com/pietervdvn/MapComplete/issues/2202) ([368d785](https://github.com/pietervdvn/mapcomplete/commits/368d7857a055c92109ec6d5155078aabaef230ac))
|
||||
* add nvm path ([7d83cb1](https://github.com/pietervdvn/mapcomplete/commits/7d83cb1a7fdaad23d4a1343edb75145f60bf771f))
|
||||
* add spaces to opening hours picker for PH ([8a8b2e2](https://github.com/pietervdvn/mapcomplete/commits/8a8b2e20aebe8019af86aca02e6bcc4d90896b4f))
|
||||
* attempt to workaround for [#2202](https://github.com/pietervdvn/MapComplete/issues/2202) ([66465fd](https://github.com/pietervdvn/mapcomplete/commits/66465fdc9893fa4c3f0c1f5b8279a51c33a1e407))
|
||||
* bug in error reporting ([4794032](https://github.com/pietervdvn/mapcomplete/commits/4794032e49a4b5b2d3fdceac8a2b8a75994e94ea))
|
||||
* build: add generated file which is needed for some steps ([016908f](https://github.com/pietervdvn/mapcomplete/commits/016908fb940a65dc863cddca5be8d681b9370c49))
|
||||
* explicitly use version number in update script ([977c6ff](https://github.com/pietervdvn/mapcomplete/commits/977c6ff9fb30267f47c39aa55fb0a0f2e6028564))
|
||||
* fix [#2207](https://github.com/pietervdvn/MapComplete/issues/2207) ([ca17d3d](https://github.com/pietervdvn/mapcomplete/commits/ca17d3da1b772e4976414b54406816a68ef0e175))
|
||||
* fix [#2209](https://github.com/pietervdvn/MapComplete/issues/2209), remove lingering incorrect translations ([fbcbdc5](https://github.com/pietervdvn/mapcomplete/commits/fbcbdc571edd848106885f9148e473c816990a67))
|
||||
* fix loading of preferences ([7060f7c](https://github.com/pietervdvn/mapcomplete/commits/7060f7cf6cac807877efb8babc8586eabfc79351))
|
||||
* remove truly unrecoverable changes from report logging ([f2b681c](https://github.com/pietervdvn/mapcomplete/commits/f2b681caa59a419c4c217e705ad6d1a7ac271128))
|
||||
* reset translations ([6a4166f](https://github.com/pietervdvn/mapcomplete/commits/6a4166febb5ce386beac8bbb06cd7527b90c6a12))
|
||||
* set max image size (100 MB) ([cc6ce3c](https://github.com/pietervdvn/mapcomplete/commits/cc6ce3c271475759a7a2062b1ca7e4668ca4a230))
|
||||
* some fixes to studio ([c795e74](https://github.com/pietervdvn/mapcomplete/commits/c795e74037ca1aa222fdba6eb2cc4a32a78a8eb7))
|
||||
* tests ([c95999b](https://github.com/pietervdvn/mapcomplete/commits/c95999b50b84d294476783573baf21d46318cb16))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* don't do face blurring for some layers (artwork, memorials, ghost_bikes) ([15176a1](https://github.com/pietervdvn/mapcomplete/commits15176a16825d52e26a52f92567cf3977382ce213))
|
||||
* **food:** fix vegan questions, show vegan/vegetarian badge if `=only`, fix shops layer ([f8ef32f](https://github.com/pietervdvn/mapcomplete/commitsf8ef32f123340cb9db0060cdca7f4622cd55c228))
|
||||
* don't do face blurring for some layers (artwork, memorials, ghost_bikes) ([15176a1](https://github.com/pietervdvn/mapcomplete/commits/15176a16825d52e26a52f92567cf3977382ce213))
|
||||
* **food:** fix vegan questions, show vegan/vegetarian badge if `=only`, fix shops layer ([f8ef32f](https://github.com/pietervdvn/mapcomplete/commits/f8ef32f123340cb9db0060cdca7f4622cd55c228))
|
||||
|
||||
### [0.47.5](https://github.com/pietervdvn/mapcomplete/compare/v0.47.4...v0.47.5) (2024-10-08)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add DWG-block support ([c28baaa](https://github.com/pietervdvn/mapcomplete/commitsc28baaab62585838a4f6a652b922d170b4cfff02))
|
||||
* add panoramax link to 'browse nearby images' ([06363e8](https://github.com/pietervdvn/mapcomplete/commits06363e808ff16fae528d620e16a0972f9f8b5053))
|
||||
* add panoramax to status page ([9e9d5e8](https://github.com/pietervdvn/mapcomplete/commits9e9d5e80d891e41c77ded60c59e122ef734ed31d))
|
||||
* add DWG-block support ([c28baaa](https://github.com/pietervdvn/mapcomplete/commits/c28baaab62585838a4f6a652b922d170b4cfff02))
|
||||
* add panoramax link to 'browse nearby images' ([06363e8](https://github.com/pietervdvn/mapcomplete/commits/06363e808ff16fae528d620e16a0972f9f8b5053))
|
||||
* add panoramax to status page ([9e9d5e8](https://github.com/pietervdvn/mapcomplete/commits/9e9d5e80d891e41c77ded60c59e122ef734ed31d))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* actually use prefix and postfix ([0461ca1](https://github.com/pietervdvn/mapcomplete/commits0461ca176de3f1aad222105a1393882264bb8f80))
|
||||
* fix [#2197](https://github.com/pietervdvn/MapComplete/issues/2197) ([c2f7b1e](https://github.com/pietervdvn/mapcomplete/commitsc2f7b1e8c11dcc844131da4d368cc114c99e7601))
|
||||
* fix download panel ([fb3bf98](https://github.com/pietervdvn/mapcomplete/commitsfb3bf98f1923db4bbba02728d23360a12319a08c))
|
||||
* fix filters in statistics.html ([5048da5](https://github.com/pietervdvn/mapcomplete/commits5048da58e7cb6446716ca143b93e98e946f940b8))
|
||||
* mention license of panoramax ([86af270](https://github.com/pietervdvn/mapcomplete/commits86af270aa0a0bcb49843eb009fccee47a54012cd))
|
||||
* should improve 2193 ([15856d7](https://github.com/pietervdvn/mapcomplete/commits15856d7047e05f29f3e37dc8f9c9eb47ae81d9f7))
|
||||
* tests ([ba46736](https://github.com/pietervdvn/mapcomplete/commitsba46736ed9cf51161c8da99cb85f5d307e90e084))
|
||||
* use textContent instead of inntertext, fixes tests ([591e992](https://github.com/pietervdvn/mapcomplete/commits591e992839592d3037f31e6e0d33f7f7f19d0aa4))
|
||||
* actually use prefix and postfix ([0461ca1](https://github.com/pietervdvn/mapcomplete/commits/0461ca176de3f1aad222105a1393882264bb8f80))
|
||||
* fix [#2197](https://github.com/pietervdvn/MapComplete/issues/2197) ([c2f7b1e](https://github.com/pietervdvn/mapcomplete/commits/c2f7b1e8c11dcc844131da4d368cc114c99e7601))
|
||||
* fix download panel ([fb3bf98](https://github.com/pietervdvn/mapcomplete/commits/fb3bf98f1923db4bbba02728d23360a12319a08c))
|
||||
* fix filters in statistics.html ([5048da5](https://github.com/pietervdvn/mapcomplete/commits/5048da58e7cb6446716ca143b93e98e946f940b8))
|
||||
* mention license of panoramax ([86af270](https://github.com/pietervdvn/mapcomplete/commits/86af270aa0a0bcb49843eb009fccee47a54012cd))
|
||||
* should improve 2193 ([15856d7](https://github.com/pietervdvn/mapcomplete/commits/15856d7047e05f29f3e37dc8f9c9eb47ae81d9f7))
|
||||
* tests ([ba46736](https://github.com/pietervdvn/mapcomplete/commits/ba46736ed9cf51161c8da99cb85f5d307e90e084))
|
||||
* use textContent instead of inntertext, fixes tests ([591e992](https://github.com/pietervdvn/mapcomplete/commits/591e992839592d3037f31e6e0d33f7f7f19d0aa4))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **charging stations:** add keywords in search ([e502c15](https://github.com/pietervdvn/mapcomplete/commitse502c1519d2f9a021c01ebd7fcfa7ad289a30d01))
|
||||
* **fritures:** Add 'diet:vegan=only' and 'diet:vegetarian=only' options to fritures, fix [#2191](https://github.com/pietervdvn/MapComplete/issues/2191) ([17e95ca](https://github.com/pietervdvn/mapcomplete/commits17e95ca5946782894304cf4d9d811bb4c9dd3bec))
|
||||
* **shops:** add labels to icecream, refactor label for shps ([1ade2ed](https://github.com/pietervdvn/mapcomplete/commits1ade2ed45b1fdd2e4fa6acccc889f939f68c4fa2))
|
||||
* **charging stations:** add keywords in search ([e502c15](https://github.com/pietervdvn/mapcomplete/commits/e502c1519d2f9a021c01ebd7fcfa7ad289a30d01))
|
||||
* **fritures:** Add 'diet:vegan=only' and 'diet:vegetarian=only' options to fritures, fix [#2191](https://github.com/pietervdvn/MapComplete/issues/2191) ([17e95ca](https://github.com/pietervdvn/mapcomplete/commits/17e95ca5946782894304cf4d9d811bb4c9dd3bec))
|
||||
* **shops:** add labels to icecream, refactor label for shps ([1ade2ed](https://github.com/pietervdvn/mapcomplete/commits/1ade2ed45b1fdd2e4fa6acccc889f939f68c4fa2))
|
||||
|
||||
### [0.47.4](https://github.com/pietervdvn/mapcomplete/compare/v0.46.12...v0.47.4) (2024-09-30)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **studio:** add possibility to directly write into the theme files ([0be7c64](https://github.com/pietervdvn/mapcomplete/commits0be7c64ea1dae928ef658b0ef91ad6ad662f0f36))
|
||||
* **studio:** add possibility to directly write into the theme files ([0be7c64](https://github.com/pietervdvn/mapcomplete/commits/0be7c64ea1dae928ef658b0ef91ad6ad662f0f36))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* enable summary server again ([d6eca37](https://github.com/pietervdvn/mapcomplete/commitsd6eca3717a7fb3ac8d17d20861870d17a0da44bb))
|
||||
* fix [#2183](https://github.com/pietervdvn/MapComplete/issues/2183) by updating wikidata-sdk to latest wikibase-sdk ([021e5f2](https://github.com/pietervdvn/mapcomplete/commits021e5f2734c46de3d51860f6c717b667dd8d1427))
|
||||
* enable summary server again ([d6eca37](https://github.com/pietervdvn/mapcomplete/commits/d6eca3717a7fb3ac8d17d20861870d17a0da44bb))
|
||||
* fix [#2183](https://github.com/pietervdvn/MapComplete/issues/2183) by updating wikidata-sdk to latest wikibase-sdk ([021e5f2](https://github.com/pietervdvn/mapcomplete/commits/021e5f2734c46de3d51860f6c717b667dd8d1427))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **bicycle_counter:** add images, fix center location ([ea133c5](https://github.com/pietervdvn/mapcomplete/commitsea133c5effeaad3f5e09e6e2991f0f1f6a12bbc4))
|
||||
* **police:** add jail and checkpoint icons ([169ee29](https://github.com/pietervdvn/mapcomplete/commits169ee2941498e9968dfbf42f65c8504b6bcb7f37))
|
||||
* **shops:** make 'shops' only appear on zoomlevel 15 ([c4ae41e](https://github.com/pietervdvn/mapcomplete/commitsc4ae41e0e1fffa925f293f2a65c277979308a694))
|
||||
* tighten minzooms ([1aef862](https://github.com/pietervdvn/mapcomplete/commits1aef862b11dfcb1a359144c70cd7d26db51dd6f2))
|
||||
* **bicycle_counter:** add images, fix center location ([ea133c5](https://github.com/pietervdvn/mapcomplete/commits/ea133c5effeaad3f5e09e6e2991f0f1f6a12bbc4))
|
||||
* **police:** add jail and checkpoint icons ([169ee29](https://github.com/pietervdvn/mapcomplete/commits/169ee2941498e9968dfbf42f65c8504b6bcb7f37))
|
||||
* **shops:** make 'shops' only appear on zoomlevel 15 ([c4ae41e](https://github.com/pietervdvn/mapcomplete/commits/c4ae41e0e1fffa925f293f2a65c277979308a694))
|
||||
* tighten minzooms ([1aef862](https://github.com/pietervdvn/mapcomplete/commits/1aef862b11dfcb1a359144c70cd7d26db51dd6f2))
|
||||
|
||||
### [0.47.2](https://github.com/pietervdvn/mapcomplete/compare/v0.47.1...v0.47.2) (2024-09-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* correctly apply previous refactoring ([2a53f99](https://github.com/pietervdvn/mapcomplete/commits2a53f99dd50695768ff9b625665ca69bf0bec4c1))
|
||||
* delete entry from 'localStorage' ([22c8a45](https://github.com/pietervdvn/mapcomplete/commits22c8a45012be60dad215f8b0d72501133665454e))
|
||||
* don't add buildings to database, reevaluate builddb script ([ce87edf](https://github.com/pietervdvn/mapcomplete/commitsce87edf80009bd65c9f185d9ff68b023c5486adc))
|
||||
* fix wrong location in theme ([8b0b24b](https://github.com/pietervdvn/mapcomplete/commits8b0b24b01eefa5dbe86d97ac9c3baf38fd2fad0d))
|
||||
* remove stray word ([a6598fd](https://github.com/pietervdvn/mapcomplete/commitsa6598fd52d588ba7a5a6b05e2df8ff8ae460a37b))
|
||||
* use 'isCounted' instead of 'doCount', add check for this ([3a8fc42](https://github.com/pietervdvn/mapcomplete/commits3a8fc4248b7aa6a9cea8c2529a02a7cc11325cc8))
|
||||
* correctly apply previous refactoring ([2a53f99](https://github.com/pietervdvn/mapcomplete/commits/2a53f99dd50695768ff9b625665ca69bf0bec4c1))
|
||||
* delete entry from 'localStorage' ([22c8a45](https://github.com/pietervdvn/mapcomplete/commits/22c8a45012be60dad215f8b0d72501133665454e))
|
||||
* don't add buildings to database, reevaluate builddb script ([ce87edf](https://github.com/pietervdvn/mapcomplete/commits/ce87edf80009bd65c9f185d9ff68b023c5486adc))
|
||||
* fix wrong location in theme ([8b0b24b](https://github.com/pietervdvn/mapcomplete/commits/8b0b24b01eefa5dbe86d97ac9c3baf38fd2fad0d))
|
||||
* remove stray word ([a6598fd](https://github.com/pietervdvn/mapcomplete/commits/a6598fd52d588ba7a5a6b05e2df8ff8ae460a37b))
|
||||
* use 'isCounted' instead of 'doCount', add check for this ([3a8fc42](https://github.com/pietervdvn/mapcomplete/commits/3a8fc4248b7aa6a9cea8c2529a02a7cc11325cc8))
|
||||
|
||||
### [0.47.1](https://github.com/pietervdvn/mapcomplete/compare/v0.47.0...v0.47.1) (2024-09-19)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* actually read preferences ([a5b3342](https://github.com/pietervdvn/mapcomplete/commitsa5b3342415e843d5a33b1d3eb2dce4a95b14932a))
|
||||
* use correct overflow ([c668698](https://github.com/pietervdvn/mapcomplete/commitsc668698b1eb16f0d96c5ae0e4e7e79209b6abd95))
|
||||
* actually read preferences ([a5b3342](https://github.com/pietervdvn/mapcomplete/commits/a5b3342415e843d5a33b1d3eb2dce4a95b14932a))
|
||||
* use correct overflow ([c668698](https://github.com/pietervdvn/mapcomplete/commits/c668698b1eb16f0d96c5ae0e4e7e79209b6abd95))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **food:** add search keywords ([53b7597](https://github.com/pietervdvn/mapcomplete/commits53b75973f6734bcad6d1081299e826d2e00e0551))
|
||||
* **sport:** add sport pitches filter on sports, fix [#2159](https://github.com/pietervdvn/MapComplete/issues/2159) ([58cec96](https://github.com/pietervdvn/mapcomplete/commits58cec96fb50284dca79716ffe43d0a75b4cb6597))
|
||||
* **food:** add search keywords ([53b7597](https://github.com/pietervdvn/mapcomplete/commits/53b75973f6734bcad6d1081299e826d2e00e0551))
|
||||
* **sport:** add sport pitches filter on sports, fix [#2159](https://github.com/pietervdvn/MapComplete/issues/2159) ([58cec96](https://github.com/pietervdvn/mapcomplete/commits/58cec96fb50284dca79716ffe43d0a75b4cb6597))
|
||||
|
||||
## [0.47.0](https://github.com/pietervdvn/mapcomplete/compare/v0.46.9...v0.47.0) (2024-09-17)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add download as json to 'allTags'-panel (for debugging) ([af2905d](https://github.com/pietervdvn/mapcomplete/commitsaf2905dc6d1cbbcfb2d9cd2583369eebd90ced70))
|
||||
* add download as json to 'allTags'-panel (for debugging) ([af2905d](https://github.com/pietervdvn/mapcomplete/commits/af2905dc6d1cbbcfb2d9cd2583369eebd90ced70))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* actually search for keywords in theme view ([cdc1e05](https://github.com/pietervdvn/mapcomplete/commitscdc1e05499ffc41d093503ccd24defa347eea50e))
|
||||
* actually search for keywords in theme view ([cdc1e05](https://github.com/pietervdvn/mapcomplete/commits/cdc1e05499ffc41d093503ccd24defa347eea50e))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* allow to disable auto filters ([b349293](https://github.com/pietervdvn/mapcomplete/commitsb3492930b8e5090e9a9d3449d6e9abc365fc1780))
|
||||
* **healthcare:** add payment options to pharmacy layer ([6c5b619](https://github.com/pietervdvn/mapcomplete/commits6c5b61924a63e8bb82afd2dc963cc4fe38caa9ad))
|
||||
* **shop:** 'open_now' filter is introduced automatically ([ed2bec1](https://github.com/pietervdvn/mapcomplete/commitsed2bec139cf4e4094973aba2f4734522802898f3))
|
||||
* **shop:** don't show trolley bay on low zoom levels ([cdb62df](https://github.com/pietervdvn/mapcomplete/commitscdb62dfe58f5a6264c17e9d88bb590ea3f984b09))
|
||||
* some tweaks for the search feature ([bc52c05](https://github.com/pietervdvn/mapcomplete/commitsbc52c05a9b47ba6dbf8c3f79a131f8281b8c5197))
|
||||
* **waste:** add filter for 'recycling centre' ([5da63bf](https://github.com/pietervdvn/mapcomplete/commits5da63bf83aa7d8b230c8dbc082be3fba33344289))
|
||||
* allow to disable auto filters ([b349293](https://github.com/pietervdvn/mapcomplete/commits/b3492930b8e5090e9a9d3449d6e9abc365fc1780))
|
||||
* **healthcare:** add payment options to pharmacy layer ([6c5b619](https://github.com/pietervdvn/mapcomplete/commits/6c5b61924a63e8bb82afd2dc963cc4fe38caa9ad))
|
||||
* **shop:** 'open_now' filter is introduced automatically ([ed2bec1](https://github.com/pietervdvn/mapcomplete/commits/ed2bec139cf4e4094973aba2f4734522802898f3))
|
||||
* **shop:** don't show trolley bay on low zoom levels ([cdb62df](https://github.com/pietervdvn/mapcomplete/commits/cdb62dfe58f5a6264c17e9d88bb590ea3f984b09))
|
||||
* some tweaks for the search feature ([bc52c05](https://github.com/pietervdvn/mapcomplete/commits/bc52c05a9b47ba6dbf8c3f79a131f8281b8c5197))
|
||||
* **waste:** add filter for 'recycling centre' ([5da63bf](https://github.com/pietervdvn/mapcomplete/commits/5da63bf83aa7d8b230c8dbc082be3fba33344289))
|
||||
|
||||
### [0.47.2](https://github.com/pietervdvn/mapcomplete/compare/v0.47.1...v0.47.2) (2024-09-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* correctly apply previous refactoring ([2a53f99](https://github.com/pietervdvn/mapcomplete/commits2a53f99dd50695768ff9b625665ca69bf0bec4c1))
|
||||
* delete entry from 'localStorage' ([22c8a45](https://github.com/pietervdvn/mapcomplete/commits22c8a45012be60dad215f8b0d72501133665454e))
|
||||
* don't add buildings to database, reevaluate builddb script ([ce87edf](https://github.com/pietervdvn/mapcomplete/commitsce87edf80009bd65c9f185d9ff68b023c5486adc))
|
||||
* filtering for dates now works again ([bea9f66](https://github.com/pietervdvn/mapcomplete/commitsbea9f66b9aac9d2f13bca74b7a35cde7dd217e12))
|
||||
* fix wrong location in theme ([8b0b24b](https://github.com/pietervdvn/mapcomplete/commits8b0b24b01eefa5dbe86d97ac9c3baf38fd2fad0d))
|
||||
* remove stray word ([a6598fd](https://github.com/pietervdvn/mapcomplete/commitsa6598fd52d588ba7a5a6b05e2df8ff8ae460a37b))
|
||||
* studio now handles arrays better (might fix [#2102](https://github.com/pietervdvn/MapComplete/issues/2102)) ([0c9e41a](https://github.com/pietervdvn/mapcomplete/commits0c9e41a6ce4508ba3bc767f5eb5bd3cdb88201b2))
|
||||
* use 'isCounted' instead of 'doCount', add check for this ([3a8fc42](https://github.com/pietervdvn/mapcomplete/commits3a8fc4248b7aa6a9cea8c2529a02a7cc11325cc8))
|
||||
* correctly apply previous refactoring ([2a53f99](https://github.com/pietervdvn/mapcomplete/commits/2a53f99dd50695768ff9b625665ca69bf0bec4c1))
|
||||
* delete entry from 'localStorage' ([22c8a45](https://github.com/pietervdvn/mapcomplete/commits/22c8a45012be60dad215f8b0d72501133665454e))
|
||||
* don't add buildings to database, reevaluate builddb script ([ce87edf](https://github.com/pietervdvn/mapcomplete/commits/ce87edf80009bd65c9f185d9ff68b023c5486adc))
|
||||
* filtering for dates now works again ([bea9f66](https://github.com/pietervdvn/mapcomplete/commits/bea9f66b9aac9d2f13bca74b7a35cde7dd217e12))
|
||||
* fix wrong location in theme ([8b0b24b](https://github.com/pietervdvn/mapcomplete/commits/8b0b24b01eefa5dbe86d97ac9c3baf38fd2fad0d))
|
||||
* remove stray word ([a6598fd](https://github.com/pietervdvn/mapcomplete/commits/a6598fd52d588ba7a5a6b05e2df8ff8ae460a37b))
|
||||
* studio now handles arrays better (might fix [#2102](https://github.com/pietervdvn/MapComplete/issues/2102)) ([0c9e41a](https://github.com/pietervdvn/mapcomplete/commits/0c9e41a6ce4508ba3bc767f5eb5bd3cdb88201b2))
|
||||
* use 'isCounted' instead of 'doCount', add check for this ([3a8fc42](https://github.com/pietervdvn/mapcomplete/commits/3a8fc4248b7aa6a9cea8c2529a02a7cc11325cc8))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **ghostsigns:** streamline ghostsigns theme, fix [#2168](https://github.com/pietervdvn/MapComplete/issues/2168), fix [#2167](https://github.com/pietervdvn/MapComplete/issues/2167) ([392fe3b](https://github.com/pietervdvn/mapcomplete/commits392fe3b190975b9e3c5cb4aadb4d1543aa686d9e))
|
||||
* **vending_machine:** add better 'fixme' if freeform for 'vending' is used ([dfce217](https://github.com/pietervdvn/mapcomplete/commitsdfce217288957be2b27c198d640fd2dd5d53c9fb))
|
||||
* **ghostsigns:** streamline ghostsigns theme, fix [#2168](https://github.com/pietervdvn/MapComplete/issues/2168), fix [#2167](https://github.com/pietervdvn/MapComplete/issues/2167) ([392fe3b](https://github.com/pietervdvn/mapcomplete/commits/392fe3b190975b9e3c5cb4aadb4d1543aa686d9e))
|
||||
* **vending_machine:** add better 'fixme' if freeform for 'vending' is used ([dfce217](https://github.com/pietervdvn/mapcomplete/commits/dfce217288957be2b27c198d640fd2dd5d53c9fb))
|
||||
|
||||
### [0.47.1](https://github.com/pietervdvn/mapcomplete/compare/v0.47.0...v0.47.1) (2024-09-19)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* actually read preferences ([a5b3342](https://github.com/pietervdvn/mapcomplete/commitsa5b3342415e843d5a33b1d3eb2dce4a95b14932a))
|
||||
* fix loading images for CSP, fix [#2161](https://github.com/pietervdvn/MapComplete/issues/2161) ([2569d0c](https://github.com/pietervdvn/mapcomplete/commits2569d0cb66e411228d9d25cf50dc3278a83d0de5))
|
||||
* use correct overflow ([c668698](https://github.com/pietervdvn/mapcomplete/commitsc668698b1eb16f0d96c5ae0e4e7e79209b6abd95))
|
||||
* actually read preferences ([a5b3342](https://github.com/pietervdvn/mapcomplete/commits/a5b3342415e843d5a33b1d3eb2dce4a95b14932a))
|
||||
* fix loading images for CSP, fix [#2161](https://github.com/pietervdvn/MapComplete/issues/2161) ([2569d0c](https://github.com/pietervdvn/mapcomplete/commits/2569d0cb66e411228d9d25cf50dc3278a83d0de5))
|
||||
* use correct overflow ([c668698](https://github.com/pietervdvn/mapcomplete/commits/c668698b1eb16f0d96c5ae0e4e7e79209b6abd95))
|
||||
|
||||
|
||||
### Theme improvements
|
||||
|
||||
* **food:** add search keywords ([53b7597](https://github.com/pietervdvn/mapcomplete/commits53b75973f6734bcad6d1081299e826d2e00e0551))
|
||||
* **sport:** add sport pitches filter on sports, fix [#2159](https://github.com/pietervdvn/MapComplete/issues/2159) ([58cec96](https://github.com/pietervdvn/mapcomplete/commits58cec96fb50284dca79716ffe43d0a75b4cb6597))
|
||||
* **food:** add search keywords ([53b7597](https://github.com/pietervdvn/mapcomplete/commits/53b75973f6734bcad6d1081299e826d2e00e0551))
|
||||
* **sport:** add sport pitches filter on sports, fix [#2159](https://github.com/pietervdvn/MapComplete/issues/2159) ([58cec96](https://github.com/pietervdvn/mapcomplete/commits/58cec96fb50284dca79716ffe43d0a75b4cb6597))
|
||||
|
||||
## [0.47.0](https://github.com/pietervdvn/MapComplete/compare/v0.46.9...v0.47.0) (2024-09-17)
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ Hi! Thanks for checking out how to contribute to MapComplete!
|
|||
There are multiple ways to contribute:
|
||||
|
||||
- Translating MapComplete to your own language can be done
|
||||
on [the Weblate website](https://hosted.weblate.org/projects/mapcomplete/)
|
||||
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
|
||||
- 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)
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
- bank
|
||||
- barrier
|
||||
- bbq
|
||||
- beehive
|
||||
- bench
|
||||
- bench_at_pt
|
||||
- bicycle_counter
|
||||
|
|
@ -32,6 +33,7 @@
|
|||
- cafe_pub
|
||||
- car_rental
|
||||
- caravansites
|
||||
- charge_point
|
||||
- charging_station
|
||||
- cinema
|
||||
- climbing_area
|
||||
|
|
@ -68,6 +70,7 @@
|
|||
- ice_cream
|
||||
- indoors
|
||||
- information_board
|
||||
- insect_hotel
|
||||
- item_with_image
|
||||
- kerbs
|
||||
- lighthouse
|
||||
|
|
@ -324,6 +327,7 @@
|
|||
- police
|
||||
- postoffices
|
||||
- school
|
||||
- scouting_group
|
||||
- stripclub
|
||||
- tool_library
|
||||
- tourism_accomodation
|
||||
|
|
@ -332,6 +336,7 @@
|
|||
|
||||
- assisted_repair
|
||||
- hackerspace
|
||||
- scouting_group
|
||||
|
||||
### facebook
|
||||
|
||||
|
|
@ -452,6 +457,11 @@
|
|||
- cafe_pub
|
||||
- food
|
||||
|
||||
### seating
|
||||
|
||||
- cafe_pub
|
||||
- food
|
||||
|
||||
### dog-access
|
||||
|
||||
- cafe_pub
|
||||
|
|
@ -482,14 +492,41 @@
|
|||
### questions
|
||||
|
||||
- caravansites
|
||||
- charge_point
|
||||
- charging_station
|
||||
- etymology
|
||||
- favourite
|
||||
- hackerspace
|
||||
- play_forest
|
||||
- playground
|
||||
- scouting_group
|
||||
- sport_pitch
|
||||
|
||||
### charging_station.capacity
|
||||
|
||||
- charge_point
|
||||
|
||||
### charging_station.Available_charging_stations (generated)
|
||||
|
||||
- charge_point
|
||||
|
||||
### charging_station.plugs-amount
|
||||
|
||||
- charge_point
|
||||
|
||||
### charging_station.questions-technical
|
||||
|
||||
- charge_point
|
||||
|
||||
### charging_station.technical
|
||||
|
||||
- charge_point
|
||||
|
||||
### maxstay
|
||||
|
||||
- charging_station
|
||||
- parking
|
||||
|
||||
### climbing.website
|
||||
|
||||
- climbing_area
|
||||
|
|
@ -644,6 +681,10 @@
|
|||
- ticket_machine
|
||||
- vending_machine
|
||||
|
||||
### wheelchair
|
||||
|
||||
- pharmacy
|
||||
|
||||
### {preset_type_select()}
|
||||
|
||||
- police
|
||||
|
|
|
|||
|
|
@ -68,6 +68,9 @@ This is a special layer - data is not sourced from OpenStreetMap
|
|||
- [preset_description](#preset_description)
|
||||
- [brand](#brand)
|
||||
- [indoor](#indoor)
|
||||
- [seating](#seating)
|
||||
- [maxstay](#maxstay)
|
||||
- [name](#name)
|
||||
2. [Filters](#filters)
|
||||
|
||||
## Supported attributes
|
||||
|
|
@ -109,6 +112,8 @@ This is a special layer - data is not sourced from OpenStreetMap
|
|||
| <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/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/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/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) | |
|
||||
|
||||
### questions
|
||||
Show the questions block at this location
|
||||
|
|
@ -549,6 +554,25 @@ The question is `Is this object located indoors?`
|
|||
- *This object 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 object 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>
|
||||
|
||||
### seating
|
||||
|
||||
The question is `What kind of seating does {title()} have?`
|
||||
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/outdoor_seating/outdoor_seating.svg' style='width: 3rem; height: 3rem'> *This place has outdoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dno' target='_blank'>no</a>
|
||||
- *This place has indoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dno' target='_blank'>no</a>
|
||||
|
||||
### maxstay
|
||||
|
||||
The question is `What is the maximum amount of time one is allowed to stay here?`
|
||||
*One can stay at most <b>{canonical(maxstay)}</b>* is shown if `maxstay` is set
|
||||
|
||||
- *There is no limit to the amount of time one can stay here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxstay' target='_blank'>maxstay</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited' target='_blank'>unlimited</a>
|
||||
|
||||
### name
|
||||
|
||||
The question is `What is the name of this place?`
|
||||
*<b>{name}</b>* is shown if `name` is set
|
||||
|
||||
## Filters
|
||||
|
||||
| id | question | osmTags |
|
||||
|
|
@ -559,7 +583,7 @@ The question is `Is this object located indoors?`
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -106,6 +106,12 @@ If you want to deploy your fork:
|
|||
2. Copy the entire `dist` folder to where you host your website. Visiting `index.html` gives you the landing page,
|
||||
visiting `yourwebsite/<theme>` should bring you to the appropriate theme.
|
||||
|
||||
### Getting your own API-keys
|
||||
|
||||
Some services are bound to `https://mapcomplete.org`. In `package.json/config`, search for "#fork" and read the instructions.
|
||||
|
||||
|
||||
|
||||
Weird errors
|
||||
------------
|
||||
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
|
|||
| South_Africa-CapeTown-Aerial-2018 | City of Cape Town Aerial Imagery (2018) | historicphoto | | City of Cape Town Aerial |
|
||||
| South_Africa-CapeTown-Aerial-2021 | City of Cape Town Aerial Imagery (2021) | historicphoto | | City of Cape Town Aerial |
|
||||
| South_Africa-CapeTown-Aerial-2023 | City of Cape Town Aerial Imagery (2023) | photo | ⭐ | City of Cape Town Aerial |
|
||||
| South_Africa-CapeTown-Aerial-2024 | City of Cape Town Aerial Imagery (2024) | photo | ⭐ | City of Cape Town Aerial |
|
||||
| osm-cambodia_laos_thailand_vietnam-bilingual | Cambodia, Laos, Thailand, Vietnam, Malaysia, Myanmar bilingual | osmbasedmap | | © osm-tools.org & OpenStreetMap contributors, CC-BY-SA |
|
||||
| India-PMGSY | PMGSY GeoSadak - India Rural Roads Open Data | map | | <a href='https://geosadak-pmgsy.nic.in/opendata/' target='_blank'>PMGSY Rural Connectivity Dataset, Government Open Data License</a> | <a href='https://www.mapbox.com/about/maps/' target='_blank' title='Mapbox' aria-label='Mapbox'>© Mapbox</a> | <a href='https://www.openstreetmap.org/about/' target='_blank' title='OpenStreetMap' aria-label='OpenStreetMap'>© OpenStreetMap</a> | <a href='https://www.maxar.com/' target='_blank' title='Maxar' aria-label='Maxar'>© Maxar</a> |
|
||||
| Plateau_orthophoto_official | MLIT Plateau Official | photo | | MLIT_PLATEAU |
|
||||
|
|
@ -309,6 +310,8 @@ This table gives a summary of ids, names and other metainformation. [See the onl
|
|||
| Tours-Orthophoto-2008_2010 | Tours - Orthophotos 2008-2010 | historicphoto | | Orthophoto Tour(s) Plus 2008 |
|
||||
| fr.dpt.84.2010 | Vaucluse 2010 | historicphoto | | ORTHO 2010 © PACA-04-05-84 |
|
||||
| Vercors-Orthophotos-1999 | Vercors (Réserve naturelle des Hauts-Plateaux du Vercors) - Orthophoto - 1999 - 1 m | historicphoto | | Parc Naturel Régional du Vercors |
|
||||
| EA_LIDAR_DSM_1m_2022 | EA LiDAR Digital Surface Model 1m (2022) | elevation | | Environment Agency |
|
||||
| EA_LIDAR_DTM_1m_2022 | EA LiDAR Digital Terrain Model 1m (2022) | elevation | | Environment Agency |
|
||||
| Hampshire-Aerial-FCIR | Hampshire Aerial FCIR | photo | | |
|
||||
| Hampshire-Aerial-RGB | Hampshire Aerial RGB | photo | | |
|
||||
| NLS-OS-NatGrid-11250-1940-60 | NLS - OS 1:1,250 National Grid Maps, 1940s-1960s | historicmap | | National Library of Scotland Historic Maps |
|
||||
|
|
@ -519,6 +522,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
|
|||
| UkraineVinnytsiaTG2021 | Ukraine - Vinnytsia TG 2021 | photo | | © Вінницька міська рада |
|
||||
| Canvec_French | Canvec - French | map | | |
|
||||
| Canvec | Canvec - English | map | | |
|
||||
| Toronto-Imagery-Most-Current-Year | Toronto Latest Orthoimagery | photo | | Contains information licensed under the Open Government Licence – Toronto |
|
||||
| Geobase_Roads_French | Geobase Roads - French | other | | |
|
||||
| Geobase_Roads | Geobase Roads - English | other | | |
|
||||
| canaan_drone_red_cross_201712 | Canaan - American Red Cross, Dec-2017 | photo | | American Red Cross |
|
||||
|
|
@ -597,7 +601,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
|
|||
| Delaware2012Orthophotography | Delaware 2012 Orthophotography | historicphoto | | Digital Aerial Solutions, LLC, FirstMap |
|
||||
| DE_Orthophotography_2017_NC | Delaware 2017 Orthophotography (Natural Color) | historicphoto | | Surdex Corp, FirstMap |
|
||||
| Delaware_FirstMap_2021 | Delaware FirstMap 2021 | historicphoto | | Hexagon, FirstMap |
|
||||
| Delaware_FirstMap_2022 | Delaware FirstMap 2022 | photo | | Sanborn Map Company, FirstMap |
|
||||
| Delaware_FirstMap_2022 | Delaware FirstMap 2022 | photo | ⭐ | Sanborn Map Company, FirstMap |
|
||||
| Delaware_Parks_2022 | Delaware Parks 2022 | photo | | Sanborn Map Company, FirstMap |
|
||||
| Alachua_Ortho_2020 | Alachua County Orthoimagery (2020) | historicphoto | | Alachua County Property Appraiser’s Office |
|
||||
| Alachua_Ortho_2023 | Alachua County Orthoimagery (2023) | photo | | Alachua County Property Appraiser’s Office |
|
||||
|
|
@ -766,7 +770,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
|
|||
| Greene_OH_2023 | Greene County Orthoimagery (2023) | historicphoto | | Greene County, State of Ohio |
|
||||
| Greene_OH_2024 | Greene County Orthoimagery (2024) | photo | | Greene County, State of Ohio |
|
||||
| Licking_OH_2023 | Licking County Orthoimagery (2023) | photo | | Licking County, State of Ohio |
|
||||
| Lorain_OH_2024 | Lorain County Orthoimagery (2024) | photo | | Lorain County, State of Ohio |
|
||||
| Lorain_OH_2024 | Lorain County Orthoimagery (2024) | photo | ⭐ | Lorain County, State of Ohio |
|
||||
| Lucas_OH_2023 | Lucas County Orthoimagery (2023) | photo | | Lucas County, State of Ohio |
|
||||
| Mercer_OH_2021 | Mercer County Orthoimagery (2021) | photo | | Mercer County, State of Ohio |
|
||||
| Miami_OH_2023 | Miami County Orthoimagery (2023) | photo | | Miami County, State of Ohio |
|
||||
|
|
@ -791,7 +795,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
|
|||
| DVRPC_2020_MontgomeryPA | DVRPC Orthoimagery 2020 - Montgomery County (1ft) | photo | | Delaware Valley Regional Planning Commission |
|
||||
| DVRPC_2020_PhiladelphiaPA | DVRPC Orthoimagery 2020 - Philadelphia County (1ft) | photo | | Delaware Valley Regional Planning Commission |
|
||||
| PEMA_Orthoimagery | PEMA Orthoimagery (2018-2020) | historicphoto | | Pennsylvania Emergency Management Agency |
|
||||
| PEMA_Orthoimagery_2022 | PEMA Orthoimagery (Western) [2022] | photo | ⭐ | Pennsylvania Emergency Management Agency |
|
||||
| PEMA_Orthoimagery_2023 | PEMA Orthoimagery Cycle 2 (2021-2023) | photo | | Pennsylvania Emergency Management Agency |
|
||||
| Philadelphia_Ortho_2020 | Philadelphia Orthoimagery 2020 (3in) | historicphoto | | City of Philadelphia |
|
||||
| Philadelphia_Ortho_2022 | Philadelphia Orthoimagery 2022 (2in) | historicphoto | | City of Philadelphia |
|
||||
| Philadelphia_Ortho_2023 | Philadelphia Orthoimagery 2023 | photo | ⭐ | City of Philadelphia |
|
||||
|
|
@ -836,7 +840,8 @@ This table gives a summary of ids, names and other metainformation. [See the onl
|
|||
| ACT202305 | ACTmapi Imagery May 2023 | photo | | Aerial Imagery from ACTMapi ©ACT Government and MetroMap |
|
||||
| ACT202309 | ACTmapi Imagery Sep 2023 | photo | | Aerial Imagery from ACTMapi ©ACT Government and MetroMap |
|
||||
| ACT202311 | ACTmapi Imagery Nov 2023 | photo | | Aerial Imagery from ACTMapi ©ACT Government and MetroMap |
|
||||
| ACT202402 | ACTmapi Imagery Feb 2024 | photo | ⭐ | Aerial Imagery from ACTMapi ©ACT Government and MetroMap |
|
||||
| ACT202402 | ACTmapi Imagery Feb 2024 | photo | | Aerial Imagery from ACTMapi ©ACT Government and MetroMap |
|
||||
| ACT202409 | ACTmapi Imagery Sep 2024 | photo | ⭐ | Aerial Imagery from ACTMapi ©ACT Government and MetroMap |
|
||||
| Maxar_19-20_Australian_Bushfires_PreEvent | Maxar 2019-2020 Australian Bushfires Pre-event | photo | | ©2020 DigitalGlobe |
|
||||
| NSW_LPI_BaseMap | DCS NSW Base Map | map | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
||||
| DCS_NSW_Floods2021 | DCS NSW Floods 2021 | photo | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
(Originally published as diary-entry)
|
||||
|
||||
|
||||
In my [little OpenStreetMap-editor](https://mapcomplete.org) translations are provided by contributors on [hosted weblate](https://hosted.weblate.org/projects/mapcomplete/), where thousands of text snippets have been translated already in the past year - which is awesome.
|
||||
In my [little OpenStreetMap-editor](https://mapcomplete.org) translations are provided by contributors on [hosted weblate](https://translate.mapcomplete.org/projects/mapcomplete/), where thousands of text snippets have been translated already in the past year - which is awesome.
|
||||
|
||||
However, the language picker was a bit dry: it used to have codes for every language, e.g. `nl`, `en`, `ja`, 'pt_BR', 'zh_Hant'... Quite boring and not really user-friendly - but easy to implement.
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
We will complete data from advertising features with reference, operator and lit
|
||||
|
||||
- This layer is shown at zoomlevel **15** and higher
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: preset `a billboard mounted to a wall` snaps to this layer (advertising.presets[1])
|
||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: preset `a poster box mounted on a wall` snaps to this layer (advertising.presets[3])
|
||||
- This layer will automatically load [shelter](./shelter.md) into the layout as it depends on it: preset `a poster box part of a public transport shelter` snaps to this layer (advertising.presets[4])
|
||||
|
|
|
|||
|
|
@ -67,9 +67,9 @@ The question is `What type of aerialway is this?`
|
|||
- *A drag lift with T-shaped carriers for two passengers at a time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dt-bar' target='_blank'>t-bar</a>
|
||||
- *A drag lift with L-shaped bars for a single passenger at a time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dj-bar' target='_blank'>j-bar</a>
|
||||
- *A drag lift with a platter to drag a single passenger at a time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dplatter' target='_blank'>platter</a>
|
||||
- *A tow line which which drags skieers* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Drope_tow' target='_blank'>rope_tow</a>
|
||||
- *A tow line which skiers hold on to or attach themselves onto* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Drope_tow' target='_blank'>rope_tow</a>
|
||||
- *A magic carpet (a conveyor belt on the ground)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dmagic_carpet' target='_blank'>magic_carpet</a>
|
||||
- *A zip line. (A touristical attraction where adventurous people go down at high speeds) * is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dzip_line' target='_blank'>zip_line</a>
|
||||
- *A zip line. (A touristic attraction where adventurous people go down at high speeds)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dzip_line' target='_blank'>zip_line</a>
|
||||
|
||||
### duration
|
||||
|
||||
|
|
@ -117,7 +117,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -296,7 +296,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -160,7 +160,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# assisted_repair
|
||||
|
||||
A self-assisted workshop is a location where people can come and repair their goods with help of volunteers and with the tools available at the given location. A repair café is a type of event organized regularly along the same principles.
|
||||
A self-assisted workshop is a location where people can come and repair their goods with help of volunteers and with the tools available at the given location. A repair café is a type of event organized regularly along the same principles.
|
||||
|
||||
- This layer is shown at zoomlevel **1** and higher
|
||||
|
||||
|
|
@ -163,7 +163,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -57,30 +57,30 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
### access
|
||||
|
||||
The question is `What is the permitted access?`
|
||||
The question is `Who is allowed to use this barbecue?`
|
||||
|
||||
- *Public* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- *No access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>
|
||||
- *Private* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>
|
||||
- *Access until revoked* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermissive' target='_blank'>permissive</a>
|
||||
- *Access only for customers* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- *Access only for authorized persons* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit' target='_blank'>permit</a>
|
||||
- *This barbecue can be used by anyone* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- *This barbecue can't be used by anyone* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>
|
||||
- *This barbecue is private* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>
|
||||
- *This barbecue can be used by anyone, but the owner can revoke access at any time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermissive' target='_blank'>permissive</a>
|
||||
- *This barbecue can only be used by customers* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- *This barbecue can only be used by authorized persons* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit' target='_blank'>permit</a>
|
||||
|
||||
### covered
|
||||
|
||||
The question is `Is the grill covered?`
|
||||
The question is `Is this barbecue covered?`
|
||||
|
||||
- *The grill is not covered* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno' target='_blank'>no</a>
|
||||
- *The grill is covered* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes' target='_blank'>yes</a>
|
||||
- *This barbecue is not covered* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno' target='_blank'>no</a>
|
||||
- *This barbecue is covered* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### fuel
|
||||
|
||||
The question is `How ist the grill fueled?`
|
||||
The question is `How is this barbecue fuelled?`
|
||||
|
||||
- *Wood* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fuel' target='_blank'>fuel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dwood' target='_blank'>wood</a>
|
||||
- *Charcoal* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fuel' target='_blank'>fuel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dcharcoal' target='_blank'>charcoal</a>
|
||||
- *Electric* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fuel' target='_blank'>fuel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fuel%3Delectric' target='_blank'>electric</a>
|
||||
- *Gas* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fuel' target='_blank'>fuel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dgas' target='_blank'>gas</a>
|
||||
- *This barbecue uses wood as fuel* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fuel' target='_blank'>fuel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dwood' target='_blank'>wood</a>
|
||||
- *This barbecue uses charcoal as fuel* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fuel' target='_blank'>fuel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dcharcoal' target='_blank'>charcoal</a>
|
||||
- *This barbecue is powered by electricity* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fuel' target='_blank'>fuel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fuel%3Delectric' target='_blank'>electric</a>
|
||||
- *This barbecue uses gas as fuel* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fuel' target='_blank'>fuel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dgas' target='_blank'>gas</a>
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
|
|
|||
83
Docs/Layers/beehive.md
Normal file
83
Docs/Layers/beehive.md
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
# beehive
|
||||
|
||||
Layer showing beehives
|
||||
|
||||
- This layer is shown at zoomlevel **11** and higher
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [Themes using this layer](#themes-using-this-layer)
|
||||
2. [Presets](#presets)
|
||||
3. [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
4. [Supported attributes](#supported-attributes)
|
||||
- [images](#images)
|
||||
- [capacity](#capacity)
|
||||
- [leftover-questions](#leftover-questions)
|
||||
- [move-button](#move-button)
|
||||
- [delete-button](#delete-button)
|
||||
- [lod](#lod)
|
||||
|
||||
## Themes using this layer
|
||||
|
||||
- [insects](https://mapcomplete.org/insects)
|
||||
- [personal](https://mapcomplete.org/personal)
|
||||
|
||||
## Presets
|
||||
|
||||
The following options to create new points are included:
|
||||
|
||||
- **a beehive** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:man_made' target='_blank'>man_made</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:man_made%3Dbeehive' target='_blank'>beehive</a>
|
||||
|
||||
## Basic tags for this layer
|
||||
|
||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:man_made' target='_blank'>man_made</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:man_made%3Dbeehive' target='_blank'>beehive</a>**
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22man_made%22%3D%22beehive%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/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) |
|
||||
|
||||
### 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()}*
|
||||
|
||||
### capacity
|
||||
|
||||
The question is `How many beehives are there?`
|
||||
*There are {capacity} beehives* is shown if `capacity` is set
|
||||
|
||||
- *There is 1 beehive* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:capacity' target='_blank'>capacity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:capacity%3D1' target='_blank'>1</a>
|
||||
|
||||
### leftover-questions
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{questions( ,)}*
|
||||
|
||||
### move-button
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{move_button()}*
|
||||
|
||||
### delete-button
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{delete_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/beehive/beehive.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/beehive/beehive.json)
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
This layer is based on [assisted_repair](../Layers/assisted_repair.md)
|
||||
|
||||
A self-assisted workshop is a location where people can come and repair their goods with help of volunteers and with the tools available at the given location. A repair café is a type of event organized regularly along the same principles.
|
||||
A self-assisted workshop is a location where people can come and repair their goods with help of volunteers and with the tools available at the given location. A repair café is a type of event organized regularly along the same principles.
|
||||
|
||||
- This layer is shown at zoomlevel **11** and higher
|
||||
|
||||
|
|
@ -160,7 +160,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -40,10 +40,10 @@ The following options to create new points are included:
|
|||
|
||||
Elements must match **all** of the following expressions:
|
||||
|
||||
0. <a href='https://wiki.openstreetmap.org/wiki/Key:man_made' target='_blank'>man_made</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:man_made%3Dmonitoring_station' target='_blank'>monitoring_station</a>
|
||||
1. <a href='https://wiki.openstreetmap.org/wiki/Key:monitoring:bicycle' target='_blank'>monitoring:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:monitoring:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
0. <a href='https://wiki.openstreetmap.org/wiki/Key:monitoring:bicycle' target='_blank'>monitoring:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:monitoring:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
1. <a href='https://wiki.openstreetmap.org/wiki/Key:man_made' target='_blank'>man_made</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:man_made%3Dmonitoring_station' target='_blank'>monitoring_station</a>
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22man_made%22%3D%22monitoring_station%22%5D%5B%22monitoring%3Abicycle%22%3D%22yes%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%22monitoring%3Abicycle%22%3D%22yes%22%5D%5B%22man_made%22%3D%22monitoring_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
## Supported attributes
|
||||
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -267,7 +267,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -255,7 +255,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -159,7 +159,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -14,8 +14,8 @@ A layer showing where you can park your bike
|
|||
4. [Supported attributes](#supported-attributes)
|
||||
- [images](#images)
|
||||
- [Bicycle parking type](#bicycle-parking-type)
|
||||
- [Underground?](#underground)
|
||||
- [Is covered?](#is-covered)
|
||||
- [location](#location)
|
||||
- [covered_and_building](#covered_and_building)
|
||||
- [Capacity](#capacity)
|
||||
- [Access](#access)
|
||||
- [fee](#fee)
|
||||
|
|
@ -62,9 +62,8 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
|
|||
|
||||
| attribute | type | values which are supported by this layer |
|
||||
-----|-----|----- |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bicycle_parking#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bicycle_parking/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking) | [string](../SpecialInputElements.md#string) | [stands](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands) [safe_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dsafe_loops) [wall_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dwall_loops) [handlebar_holder](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dhandlebar_holder) [rack](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Drack) [two_tier](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dtwo_tier) [shed](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dshed) [bollard](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard) [floor](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor) [lockers](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlockers) [lean_and_stick](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlean_and_stick) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bicycle_parking#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bicycle_parking/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking) | [string](../SpecialInputElements.md#string) | [stands](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands) [safe_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dsafe_loops) [wall_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dwall_loops) [handlebar_holder](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dhandlebar_holder) [rack](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Drack) [two_tier](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dtwo_tier) [bollard](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard) [floor](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor) [lockers](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlockers) [lean_and_stick](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlean_and_stick) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/location#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/location/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [location](https://wiki.openstreetmap.org/wiki/Key:location) | Multiple choice | [underground](https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground) [surface](https://wiki.openstreetmap.org/wiki/Tag:location%3Dsurface) [rooftop](https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop) |
|
||||
| <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 | [yes](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno) |
|
||||
| <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) | [nat](../SpecialInputElements.md#nat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) |
|
||||
| <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 | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) |
|
||||
|
|
@ -94,13 +93,13 @@ The question is `What is the type of this bicycle parking?`
|
|||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/bike_parking/handlebar_holder.svg' style='width: 3rem; height: 3rem'> *Handlebar holder* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dhandlebar_holder' target='_blank'>handlebar_holder</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/bike_parking/rack.svg' style='width: 3rem; height: 3rem'> *Rack* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Drack' target='_blank'>rack</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/bike_parking/two_tier.svg' style='width: 3rem; height: 3rem'> *Two-tiered* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dtwo_tier' target='_blank'>two_tier</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/bike_parking/shed.svg' style='width: 3rem; height: 3rem'> *Shed* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dshed' target='_blank'>shed</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/bike_parking/shed.svg' style='width: 3rem; height: 3rem'> *Shed* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dshed' target='_blank'>shed</a>. _This option cannot be chosen as answer_
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/bike_parking/bollard.svg' style='width: 3rem; height: 3rem'> *Bollard* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard' target='_blank'>bollard</a>
|
||||
- *An area on the floor which is marked for bicycle parking* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor' target='_blank'>floor</a>
|
||||
- *A locker - the bicycles are enclosed completely individually or with a few bicycles together. The locker is too small to fit a person standing..* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlockers' target='_blank'>lockers</a>
|
||||
- *A lean-to bracket with possibility to use a lock through eyelet. The seat tube can be held by the stand by an anchor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlean_and_stick' target='_blank'>lean_and_stick</a>
|
||||
|
||||
### Underground?
|
||||
### location
|
||||
|
||||
The question is `What is the relative location of this bicycle parking?`
|
||||
|
||||
|
|
@ -109,10 +108,14 @@ The question is `What is the relative location of this bicycle parking?`
|
|||
- *Rooftop parking* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop' target='_blank'>rooftop</a>
|
||||
- *Surface level parking* is shown if with location=. _This option cannot be chosen as answer_
|
||||
|
||||
### Is covered?
|
||||
### covered_and_building
|
||||
|
||||
The question is `Is this parking covered? Also select "covered" for indoor parkings.`
|
||||
The question is `Is this parking covered?`
|
||||
|
||||
- *This is a bicycle shed (with walls on at least three sides)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dbicycle_shed' target='_blank'>bicycle_shed</a>
|
||||
- *This is a bicycle parking under a roof; the roof only serves the bicycle parking* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Droof' target='_blank'>roof</a>
|
||||
- *This bicycle parking is located in a building behind a door or gate* 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 bicycle parking is under (a part of) a building* 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> & <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes' target='_blank'>yes</a>
|
||||
- *This parking is covered (it has a roof)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes' target='_blank'>yes</a>
|
||||
- *This parking is not covered* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
|
@ -228,7 +231,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -248,7 +248,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ A shop specifically selling bicycles or related items
|
|||
- [single_level](#single_level)
|
||||
- [copyshop-print-sizes](#copyshop-print-sizes)
|
||||
- [copyshop-binding](#copyshop-binding)
|
||||
- [optometrist_service](#optometrist_service)
|
||||
- [key_cutter](#key_cutter)
|
||||
- [sells_new_bikes](#sells_new_bikes)
|
||||
- [bike_second_hand](#bike_second_hand)
|
||||
|
|
@ -76,10 +77,11 @@ 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: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%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%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)
|
||||
|
||||
## Supported attributes
|
||||
|
||||
|
|
@ -97,6 +99,7 @@ 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/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/service:binding#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abinding/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/healthcare#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/healthcare/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Aretail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:second_hand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Asecond_hand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Arepair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) |
|
||||
|
|
@ -306,6 +309,7 @@ The question is `What kind of shop is this?`
|
|||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-shop.svg' style='width: 3rem; height: 3rem'> *Wig Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs' target='_blank'>wigs</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/temaki-window.svg' style='width: 3rem; height: 3rem'> *Window Blind Store* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind' target='_blank'>window_blind</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-alcohol-shop.svg' style='width: 3rem; height: 3rem'> *Wine Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine' target='_blank'>wine</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/shops/shop-disused.svg' style='width: 3rem; height: 3rem'> *This shop is no longer used. It is vacant* is shown if with disused:shop=
|
||||
|
||||
This tagrendering has labels
|
||||
`description`
|
||||
|
|
@ -417,6 +421,15 @@ The question is `Does this shop offer a binding service?`
|
|||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:print' target='_blank'>service:print</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print%3Dyes' target='_blank'>yes</a> | shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$
|
||||
|
||||
### optometrist_service
|
||||
|
||||
The question is `Are medical services available here?`
|
||||
|
||||
- *This shop offers eye exams by certified optometrists* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist' target='_blank'>optometrist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healtcare' target='_blank'>not:healtcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healtcare%3Doptometrist' target='_blank'>optometrist</a>
|
||||
- *This shop offers hearing tests by a certified audiologist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist' target='_blank'>audiologist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healthcare' target='_blank'>not:healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healthcare%3Daudiologist' target='_blank'>audiologist</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician' target='_blank'>optician</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aid' target='_blank'>hearing_aid</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply' target='_blank'>medical_supply</a>
|
||||
|
||||
### key_cutter
|
||||
|
||||
The question is `Does this shop offer key cutting?`
|
||||
|
|
@ -714,7 +727,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -120,7 +120,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -134,7 +134,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ A layer showing cafés and pubs where one can gather around a drink. The layer a
|
|||
- [wheelchair-access](#wheelchair-access)
|
||||
- [smoking](#smoking)
|
||||
- [service:electricity](#serviceelectricity)
|
||||
- [seating](#seating)
|
||||
- [dog-access](#dog-access)
|
||||
- [internet](#internet)
|
||||
- [internet-fee](#internet-fee)
|
||||
|
|
@ -202,6 +203,13 @@ The question is `Does this amenity have electrical outlets, available to custome
|
|||
- *There are no sockets available indoors to customers, but charging might be possible if the staff is asked* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>
|
||||
- *There are a no domestic sockets available to customers seated indoors* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>
|
||||
|
||||
### seating
|
||||
|
||||
The question is `What kind of seating does {title()} have?`
|
||||
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/outdoor_seating/outdoor_seating.svg' style='width: 3rem; height: 3rem'> *This place has outdoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dno' target='_blank'>no</a>
|
||||
- *This place has indoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dno' target='_blank'>no</a>
|
||||
|
||||
### dog-access
|
||||
|
||||
The question is `Are dogs allowed in this business?`
|
||||
|
|
@ -281,7 +289,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
@ -299,6 +307,14 @@ This tagrendering has labels
|
|||
-----|-----|----- |
|
||||
| has_electricity.0 | Offers electricity | service:electricity=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| outdoor_seating.0 | Has outdoor seating | outdoor_seating=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| indoor_seating.0 | Has indoor seating | indoor_seating=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| dogs.0 | *No preference towards dogs* (default) | |
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
1208
Docs/Layers/charge_point.md
Normal file
1208
Docs/Layers/charge_point.md
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -162,60 +162,60 @@ Elements must match **any** of the following expressions:
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [key](https://wiki.openstreetmap.org/wiki/Tag:access%3Dkey) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) [permissive](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermissive) |
|
||||
| <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) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:schuko#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aschuko/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:schuko](https://wiki.openstreetmap.org/wiki/Key:socket:schuko) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:schuko:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aschuko%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:schuko:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:schuko:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aschuko%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:schuko:current](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:schuko:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aschuko%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:schuko:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:schuko:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aschuko%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:schuko:current](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:schuko:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aschuko%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:schuko:output](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.6 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:typee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atypee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:typee](https://wiki.openstreetmap.org/wiki/Key:socket:typee) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:typee:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atypee%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:typee:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:typee:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atypee%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:typee:current](https://wiki.openstreetmap.org/wiki/Key:socket:typee:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:typee:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atypee%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:typee:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:typee:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atypee%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:typee:current](https://wiki.openstreetmap.org/wiki/Key:socket:typee:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:typee:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atypee%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:typee:output](https://wiki.openstreetmap.org/wiki/Key:socket:typee:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:chademo#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Achademo/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:chademo](https://wiki.openstreetmap.org/wiki/Key:socket:chademo) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:chademo:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Achademo%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:chademo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:chademo:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Achademo%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:chademo:current](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [120 A](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:chademo:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Achademo%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:chademo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:chademo:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Achademo%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:chademo:current](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [120](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:chademo:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Achademo%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:chademo:output](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_cable#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_cable/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_cable:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_cable%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200 V) [240 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_cable:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_cable%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_cable:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_cable%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200) [240](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_cable:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_cable%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_cable:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_cable%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW) [7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1](https://wiki.openstreetmap.org/wiki/Key:socket:type1) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200 V) [240 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200) [240](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW) [6.6 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW) [7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7 kW) [7.2 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7.2 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_combo#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_combo/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_combo:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_combo%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400 V) [1000 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_combo:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_combo%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [50 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50 A) [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_combo:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_combo%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [400](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400) [1000](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_combo:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_combo%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [50](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50) [125](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_combo:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_combo%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW) [62.5 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D150 kW) [350 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D350 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125) [350](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW) [250 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D250 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2](https://wiki.openstreetmap.org/wiki/Key:socket:type2) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230) [400](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16) [32](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_combo#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_combo/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_combo:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_combo%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500 V) [920 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_combo:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_combo%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_combo:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_combo%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500) [920](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_combo:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_combo%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125) [350](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_combo:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_combo%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_cable#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_cable/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_cable:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_cable%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_cable:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_cable%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_cable:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_cable%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230) [400](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_cable:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_cable%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16) [32](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_cable:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_cable%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger_ccs/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger_ccs](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger_ccs%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger_ccs:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500 V) [920 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger_ccs%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger_ccs:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger_ccs%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger_ccs:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500) [920](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger_ccs%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger_ccs:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125) [350](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger_ccs%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger_ccs:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125) [350](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW) [250 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D250 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230) [400](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16) [32](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:USB-A#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3AUSB-A/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:USB-A](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:USB-A:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3AUSB-A%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:USB-A:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [5 V](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:USB-A:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3AUSB-A%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:USB-A:current](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current) | [pfloat](../SpecialInputElements.md#pfloat) | [1 A](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1 A) [2 A](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:USB-A:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3AUSB-A%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:USB-A:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [5](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:USB-A:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3AUSB-A%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:USB-A:current](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current) | [pfloat](../SpecialInputElements.md#pfloat) | [1](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:USB-A:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3AUSB-A%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:USB-A:output](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output) | [pfloat](../SpecialInputElements.md#pfloat) | [5W](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W) [10W](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bosch_3pin#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abosch_3pin/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bosch_3pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abosch_3pin%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bosch_3pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | |
|
||||
|
|
@ -226,24 +226,24 @@ Elements must match **any** of the following expressions:
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abosch_5pin%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bosch_5pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:current) | [pfloat](../SpecialInputElements.md#pfloat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abosch_5pin%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bosch_5pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:output) | [pfloat](../SpecialInputElements.md#pfloat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bs1363#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abs1363/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bs1363](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bs1363:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abs1363%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bs1363:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bs1363:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abs1363%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bs1363:current](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current) | [pfloat](../SpecialInputElements.md#pfloat) | [13 A](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bs1363:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abs1363%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bs1363:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bs1363:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abs1363%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bs1363:current](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current) | [pfloat](../SpecialInputElements.md#pfloat) | [13](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bs1363:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abs1363%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bs1363:output](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3kW](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema5_15#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema5_15/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema5_15](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema5_15:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema5_15%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema5_15:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [120 V](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema5_15:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema5_15%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema5_15:current](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current) | [pfloat](../SpecialInputElements.md#pfloat) | [15 A](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema5_15:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema5_15%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema5_15:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [120](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema5_15:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema5_15%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema5_15:current](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current) | [pfloat](../SpecialInputElements.md#pfloat) | [15](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema5_15:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema5_15%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema5_15:output](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output) | [pfloat](../SpecialInputElements.md#pfloat) | [1.8 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:sev1011_t23#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Asev1011_t23/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:sev1011_t23](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Asev1011_t23%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:sev1011_t23:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Asev1011_t23%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:sev1011_t23:current](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Asev1011_t23%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:sev1011_t23:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Asev1011_t23%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:sev1011_t23:current](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Asev1011_t23%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:sev1011_t23:output](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:as3112#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aas3112/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:as3112](https://wiki.openstreetmap.org/wiki/Key:socket:as3112) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:as3112:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aas3112%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:as3112:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:as3112:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aas3112%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:as3112:current](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current) | [pfloat](../SpecialInputElements.md#pfloat) | [10 A](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:as3112:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aas3112%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:as3112:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:as3112:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aas3112%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:as3112:current](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current) | [pfloat](../SpecialInputElements.md#pfloat) | [10](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:as3112:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aas3112%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:as3112:output](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output) | [pfloat](../SpecialInputElements.md#pfloat) | [2.3 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema_5_20#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/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema_5_20](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema_5_20:voltage#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%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema_5_20:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [120 V](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120 V) |
|
||||
| <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 A](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema_5_20:voltage#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%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema_5_20:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [120](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120) |
|
||||
| <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) |
|
||||
| <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) |
|
||||
|
|
@ -345,13 +345,15 @@ The question is `How much plugs of type <b>Schuko wall plug</b> without ground p
|
|||
*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* is shown if `socket:schuko` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:schuko
|
||||
|
||||
The question is `What voltage do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
|
||||
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set
|
||||
|
||||
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage' target='_blank'>socket:schuko:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage' target='_blank'>socket:schuko:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230' target='_blank'>230</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -362,7 +364,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
|
||||
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set
|
||||
|
||||
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current' target='_blank'>socket:schuko:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16 A' target='_blank'>16 A</a>
|
||||
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current' target='_blank'>socket:schuko:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16' target='_blank'>16</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -373,7 +375,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
|
||||
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set
|
||||
|
||||
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 3.6 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output' target='_blank'>socket:schuko:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW' target='_blank'>3.6 kW</a>
|
||||
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output' target='_blank'>socket:schuko:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW' target='_blank'>3.6 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -385,13 +387,15 @@ The question is `How much plugs of type <b>European wall plug</b> with ground pi
|
|||
*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* is shown if `socket:typee` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:typee
|
||||
|
||||
The question is `What voltage do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
|
||||
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set
|
||||
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage' target='_blank'>socket:typee:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage' target='_blank'>socket:typee:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230' target='_blank'>230</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -402,7 +406,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
|
||||
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set
|
||||
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:current' target='_blank'>socket:typee:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16 A' target='_blank'>16 A</a>
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:current' target='_blank'>socket:typee:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16' target='_blank'>16</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -413,8 +417,8 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
|
||||
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set
|
||||
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 3 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW' target='_blank'>3 kW</a>
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 22 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW' target='_blank'>3 kW</a>
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -426,13 +430,15 @@ The question is `How much plugs of type <b>Chademo</b> are available here?`
|
|||
*There are <b class='text-xl'>{socket:chademo}</b> plugs of type <b>Chademo</b> available here* is shown if `socket:chademo` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:chademo
|
||||
|
||||
The question is `What voltage do the plugs with <b>Chademo</b> offer?`
|
||||
*<b>Chademo</b> outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set
|
||||
|
||||
- *<b>Chademo</b> outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage' target='_blank'>socket:chademo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500 V' target='_blank'>500 V</a>
|
||||
- *<b>Chademo</b> outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage' target='_blank'>socket:chademo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500' target='_blank'>500</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -443,7 +449,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Chademo</b> offer?`
|
||||
*<b>Chademo</b> outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set
|
||||
|
||||
- *<b>Chademo</b> outputs at most 120 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current' target='_blank'>socket:chademo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120 A' target='_blank'>120 A</a>
|
||||
- *<b>Chademo</b> outputs at most 120 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current' target='_blank'>socket:chademo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120' target='_blank'>120</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -454,7 +460,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Chademo</b> offer?`
|
||||
*<b>Chademo</b> outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set
|
||||
|
||||
- *<b>Chademo</b> outputs at most 50 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output' target='_blank'>socket:chademo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
- *<b>Chademo</b> outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output' target='_blank'>socket:chademo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -466,14 +472,16 @@ The question is `How much plugs of type <b>Type 1 with cable</b> (J1772) are ava
|
|||
*There are <b class='text-xl'>{socket:type1_cable}</b> plugs of type <b>Type 1 with cable</b> (J1772) available here* is shown if `socket:type1_cable` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:type1_cable
|
||||
|
||||
The question is `What voltage do the plugs with <b>Type 1 with cable</b> (J1772) offer?`
|
||||
*<b>Type 1 with cable</b> (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set
|
||||
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200 V' target='_blank'>200 V</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240 V' target='_blank'>240 V</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200' target='_blank'>200</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240' target='_blank'>240</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -484,7 +492,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Type 1 with cable</b> (J1772) offer?`
|
||||
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set
|
||||
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current' target='_blank'>socket:type1_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32 A' target='_blank'>32 A</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current' target='_blank'>socket:type1_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32' target='_blank'>32</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -495,8 +503,8 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Type 1 with cable</b> (J1772) offer?`
|
||||
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set
|
||||
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs at most 3.7 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW' target='_blank'>3.7 kW</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs at most 7 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW' target='_blank'>7 kW</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW' target='_blank'>3.7 kW</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs at most 7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW' target='_blank'>7 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -508,14 +516,16 @@ The question is `How much plugs of type <b>Type 1 <i>without</i> cable</b> (J177
|
|||
*There are <b class='text-xl'>{socket:type1}</b> plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) available here* is shown if `socket:type1` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:type1
|
||||
|
||||
The question is `What voltage do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
|
||||
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set
|
||||
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200 V' target='_blank'>200 V</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240 V' target='_blank'>240 V</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200' target='_blank'>200</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240' target='_blank'>240</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -526,7 +536,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
|
||||
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set
|
||||
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:current' target='_blank'>socket:type1:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32 A' target='_blank'>32 A</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:current' target='_blank'>socket:type1:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32' target='_blank'>32</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -537,10 +547,10 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
|
||||
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set
|
||||
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 3.7 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW' target='_blank'>3.7 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 6.6 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW' target='_blank'>6.6 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 7 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7 kW' target='_blank'>7 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 7.2 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7.2 kW' target='_blank'>7.2 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW' target='_blank'>3.7 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 6.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW' target='_blank'>6.6 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7 kW' target='_blank'>7 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 7.2 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7.2 kW' target='_blank'>7.2 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -552,14 +562,16 @@ The question is `How much plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) are
|
|||
*There are <b class='text-xl'>{socket:type1_combo}</b> plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:type1_combo
|
||||
|
||||
The question is `What voltage do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
|
||||
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set
|
||||
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400 V' target='_blank'>400 V</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 1000 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000 V' target='_blank'>1000 V</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400' target='_blank'>400</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 1000 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000' target='_blank'>1000</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -570,8 +582,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
|
||||
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set
|
||||
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50 A' target='_blank'>50 A</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125 A' target='_blank'>125 A</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50' target='_blank'>50</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125' target='_blank'>125</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -582,10 +594,10 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
|
||||
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set
|
||||
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 62.5 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW' target='_blank'>62.5 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 150 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D150 kW' target='_blank'>150 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 350 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D350 kW' target='_blank'>350 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW' target='_blank'>62.5 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D150 kW' target='_blank'>150 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 350 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D350 kW' target='_blank'>350 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -597,13 +609,15 @@ The question is `How much plugs of type <b>Tesla Supercharger</b> are available
|
|||
*There are <b class='text-xl'>{socket:tesla_supercharger}</b> plugs of type <b>Tesla Supercharger</b> available here* is shown if `socket:tesla_supercharger` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:tesla_supercharger
|
||||
|
||||
The question is `What voltage do the plugs with <b>Tesla Supercharger</b> offer?`
|
||||
*<b>Tesla Supercharger</b> outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set
|
||||
|
||||
- *<b>Tesla Supercharger</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage' target='_blank'>socket:tesla_supercharger:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480 V' target='_blank'>480 V</a>
|
||||
- *<b>Tesla Supercharger</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage' target='_blank'>socket:tesla_supercharger:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480' target='_blank'>480</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -614,8 +628,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Tesla Supercharger</b> offer?`
|
||||
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set
|
||||
|
||||
- *<b>Tesla Supercharger</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125 A' target='_blank'>125 A</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350 A' target='_blank'>350 A</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125' target='_blank'>125</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350' target='_blank'>350</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -626,9 +640,9 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Tesla Supercharger</b> offer?`
|
||||
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set
|
||||
|
||||
- *<b>Tesla Supercharger</b> outputs at most 120 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW' target='_blank'>120 kW</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 150 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW' target='_blank'>150 kW</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 250 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D250 kW' target='_blank'>250 kW</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW' target='_blank'>120 kW</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW' target='_blank'>150 kW</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 250 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D250 kW' target='_blank'>250 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -640,14 +654,16 @@ The question is `How much plugs of type <b>Type 2</b> (mennekes) are available h
|
|||
*There are <b class='text-xl'>{socket:type2}</b> plugs of type <b>Type 2</b> (mennekes) available here* is shown if `socket:type2` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:type2
|
||||
|
||||
The question is `What voltage do the plugs with <b>Type 2</b> (mennekes) offer?`
|
||||
*<b>Type 2</b> (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set
|
||||
|
||||
- *<b>Type 2</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400 V' target='_blank'>400 V</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230' target='_blank'>230</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400' target='_blank'>400</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -658,8 +674,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Type 2</b> (mennekes) offer?`
|
||||
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set
|
||||
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16 A' target='_blank'>16 A</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32 A' target='_blank'>32 A</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16' target='_blank'>16</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32' target='_blank'>32</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -670,8 +686,8 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Type 2</b> (mennekes) offer?`
|
||||
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set
|
||||
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 11 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW' target='_blank'>11 kW</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 22 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW' target='_blank'>11 kW</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -683,14 +699,16 @@ The question is `How much plugs of type <b>Type 2 CCS</b> (mennekes) are availab
|
|||
*There are <b class='text-xl'>{socket:type2_combo}</b> plugs of type <b>Type 2 CCS</b> (mennekes) available here* is shown if `socket:type2_combo` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:type2_combo
|
||||
|
||||
The question is `What voltage do the plugs with <b>Type 2 CCS</b> (mennekes) offer?`
|
||||
*<b>Type 2 CCS</b> (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set
|
||||
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500 V' target='_blank'>500 V</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920 V' target='_blank'>920 V</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500' target='_blank'>500</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920' target='_blank'>920</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -701,8 +719,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Type 2 CCS</b> (mennekes) offer?`
|
||||
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set
|
||||
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125 A' target='_blank'>125 A</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350 A' target='_blank'>350 A</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125' target='_blank'>125</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350' target='_blank'>350</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -713,7 +731,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Type 2 CCS</b> (mennekes) offer?`
|
||||
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set
|
||||
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs at most 50 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output' target='_blank'>socket:type2_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output' target='_blank'>socket:type2_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -725,14 +743,16 @@ The question is `How much plugs of type <b>Type 2 with cable</b> (mennekes) are
|
|||
*There are <b class='text-xl'>{socket:type2_cable}</b> plugs of type <b>Type 2 with cable</b> (mennekes) available here* is shown if `socket:type2_cable` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:type2_cable
|
||||
|
||||
The question is `What voltage do the plugs with <b>Type 2 with cable</b> (mennekes) offer?`
|
||||
*<b>Type 2 with cable</b> (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set
|
||||
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400 V' target='_blank'>400 V</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230' target='_blank'>230</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400' target='_blank'>400</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -743,8 +763,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Type 2 with cable</b> (mennekes) offer?`
|
||||
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set
|
||||
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16 A' target='_blank'>16 A</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32 A' target='_blank'>32 A</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16' target='_blank'>16</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32' target='_blank'>32</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -755,8 +775,8 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Type 2 with cable</b> (mennekes) offer?`
|
||||
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set
|
||||
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 11 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW' target='_blank'>11 kW</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 22 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW' target='_blank'>11 kW</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -768,14 +788,16 @@ The question is `How much plugs of type <b>Tesla Supercharger CCS</b> (a branded
|
|||
*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* is shown if `socket:tesla_supercharger_ccs` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:tesla_supercharger_ccs
|
||||
|
||||
The question is `What voltage do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
|
||||
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set
|
||||
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500 V' target='_blank'>500 V</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920 V' target='_blank'>920 V</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500' target='_blank'>500</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920' target='_blank'>920</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -786,8 +808,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
|
||||
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set
|
||||
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125 A' target='_blank'>125 A</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350 A' target='_blank'>350 A</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125' target='_blank'>125</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350' target='_blank'>350</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -798,7 +820,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
|
||||
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set
|
||||
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 50 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output' target='_blank'>socket:tesla_supercharger_ccs:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output' target='_blank'>socket:tesla_supercharger_ccs:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -810,13 +832,15 @@ The question is `How much plugs of type <b>Tesla Supercharger (destination)</b>
|
|||
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla Supercharger (destination)</b> available here* is shown if `socket:tesla_destination` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:tesla_destination_us
|
||||
|
||||
The question is `What voltage do the plugs with <b>Tesla Supercharger (destination)</b> offer?`
|
||||
*<b>Tesla Supercharger (destination)</b> outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set
|
||||
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480 V' target='_blank'>480 V</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480' target='_blank'>480</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -827,8 +851,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Tesla Supercharger (destination)</b> offer?`
|
||||
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set
|
||||
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125 A' target='_blank'>125 A</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350 A' target='_blank'>350 A</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125' target='_blank'>125</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350' target='_blank'>350</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -839,9 +863,9 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Tesla Supercharger (destination)</b> offer?`
|
||||
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set
|
||||
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 120 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW' target='_blank'>120 kW</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 150 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW' target='_blank'>150 kW</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 250 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D250 kW' target='_blank'>250 kW</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW' target='_blank'>120 kW</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW' target='_blank'>150 kW</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 250 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D250 kW' target='_blank'>250 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -853,14 +877,16 @@ The question is `How much plugs of type <b>Tesla supercharger (destination)</b>
|
|||
*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* is shown if `socket:tesla_destination` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:tesla_destination
|
||||
|
||||
The question is `What voltage do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
|
||||
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set
|
||||
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400 V' target='_blank'>400 V</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230' target='_blank'>230</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400' target='_blank'>400</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -871,8 +897,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
|
||||
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set
|
||||
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16 A' target='_blank'>16 A</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32 A' target='_blank'>32 A</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16' target='_blank'>16</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32' target='_blank'>32</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -883,8 +909,8 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
|
||||
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set
|
||||
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 11 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW' target='_blank'>11 kW</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 22 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW' target='_blank'>11 kW</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -896,13 +922,15 @@ The question is `How much plugs of type <b>USB</b> to charge phones and small el
|
|||
*There are <b class='text-xl'>{socket:USB-A}</b> plugs of type <b>USB</b> to charge phones and small electronics available here* is shown if `socket:USB-A` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:USB-A
|
||||
|
||||
The question is `What voltage do the plugs with <b>USB</b> to charge phones and small electronics offer?`
|
||||
*<b>USB</b> to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set
|
||||
|
||||
- *<b>USB</b> to charge phones and small electronics outputs 5 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage' target='_blank'>socket:USB-A:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5 V' target='_blank'>5 V</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs 5 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage' target='_blank'>socket:USB-A:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5' target='_blank'>5</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -913,8 +941,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>USB</b> to charge phones and small electronics offer?`
|
||||
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set
|
||||
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 1 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1 A' target='_blank'>1 A</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 2 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2 A' target='_blank'>2 A</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 1 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1' target='_blank'>1</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 2 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2' target='_blank'>2</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -925,8 +953,8 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>USB</b> to charge phones and small electronics offer?`
|
||||
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set
|
||||
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 5W A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W' target='_blank'>5W</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 10W A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W' target='_blank'>10W</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 5W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W' target='_blank'>5W</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 10W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W' target='_blank'>10W</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -938,6 +966,8 @@ The question is `How much plugs of type <b>Bosch Active Connect with 3 pins</b>
|
|||
*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* is shown if `socket:bosch_3pin` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:bosch_3pin
|
||||
|
||||
|
|
@ -972,6 +1002,8 @@ The question is `How much plugs of type <b>Bosch Active Connect with 5 pins</b>
|
|||
*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* is shown if `socket:bosch_5pin` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:bosch_5pin
|
||||
|
||||
|
|
@ -1006,13 +1038,15 @@ The question is `How much plugs of type <b>BS1363</b> (Type G) are available her
|
|||
*There are <b class='text-xl'>{socket:bs1363}</b> plugs of type <b>BS1363</b> (Type G) available here* is shown if `socket:bs1363` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:bs1363
|
||||
|
||||
The question is `What voltage do the plugs with <b>BS1363</b> (Type G) offer?`
|
||||
*<b>BS1363</b> (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set
|
||||
|
||||
- *<b>BS1363</b> (Type G) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage' target='_blank'>socket:bs1363:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>BS1363</b> (Type G) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage' target='_blank'>socket:bs1363:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230' target='_blank'>230</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1023,7 +1057,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>BS1363</b> (Type G) offer?`
|
||||
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set
|
||||
|
||||
- *<b>BS1363</b> (Type G) outputs at most 13 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current' target='_blank'>socket:bs1363:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13 A' target='_blank'>13 A</a>
|
||||
- *<b>BS1363</b> (Type G) outputs at most 13 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current' target='_blank'>socket:bs1363:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13' target='_blank'>13</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1034,7 +1068,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>BS1363</b> (Type G) offer?`
|
||||
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set
|
||||
|
||||
- *<b>BS1363</b> (Type G) outputs at most 3kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output' target='_blank'>socket:bs1363:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW' target='_blank'>3kW</a>
|
||||
- *<b>BS1363</b> (Type G) outputs at most 3kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output' target='_blank'>socket:bs1363:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW' target='_blank'>3kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1046,13 +1080,15 @@ The question is `How much plugs of type <b>NEMA 5-15</b> (Type B) are available
|
|||
*There are <b class='text-xl'>{socket:nema5_15}</b> plugs of type <b>NEMA 5-15</b> (Type B) available here* is shown if `socket:nema5_15` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:nema5_15
|
||||
|
||||
The question is `What voltage do the plugs with <b>NEMA 5-15</b> (Type B) offer?`
|
||||
*<b>NEMA 5-15</b> (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set
|
||||
|
||||
- *<b>NEMA 5-15</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage' target='_blank'>socket:nema5_15:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120 V' target='_blank'>120 V</a>
|
||||
- *<b>NEMA 5-15</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage' target='_blank'>socket:nema5_15:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120' target='_blank'>120</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1063,7 +1099,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>NEMA 5-15</b> (Type B) offer?`
|
||||
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set
|
||||
|
||||
- *<b>NEMA 5-15</b> (Type B) outputs at most 15 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current' target='_blank'>socket:nema5_15:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15 A' target='_blank'>15 A</a>
|
||||
- *<b>NEMA 5-15</b> (Type B) outputs at most 15 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current' target='_blank'>socket:nema5_15:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15' target='_blank'>15</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1074,7 +1110,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>NEMA 5-15</b> (Type B) offer?`
|
||||
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set
|
||||
|
||||
- *<b>NEMA 5-15</b> (Type B) outputs at most 1.8 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output' target='_blank'>socket:nema5_15:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW' target='_blank'>1.8 kW</a>
|
||||
- *<b>NEMA 5-15</b> (Type B) outputs at most 1.8 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output' target='_blank'>socket:nema5_15:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW' target='_blank'>1.8 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1086,13 +1122,15 @@ The question is `How much plugs of type <b>SEV 1011 T23</b> (Type J) are availab
|
|||
*There are <b class='text-xl'>{socket:sev1011_t23}</b> plugs of type <b>SEV 1011 T23</b> (Type J) available here* is shown if `socket:sev1011_t23` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:sev1011_t23
|
||||
|
||||
The question is `What voltage do the plugs with <b>SEV 1011 T23</b> (Type J) offer?`
|
||||
*<b>SEV 1011 T23</b> (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set
|
||||
|
||||
- *<b>SEV 1011 T23</b> (Type J) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage' target='_blank'>socket:sev1011_t23:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>SEV 1011 T23</b> (Type J) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage' target='_blank'>socket:sev1011_t23:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230' target='_blank'>230</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1103,7 +1141,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>SEV 1011 T23</b> (Type J) offer?`
|
||||
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set
|
||||
|
||||
- *<b>SEV 1011 T23</b> (Type J) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current' target='_blank'>socket:sev1011_t23:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16 A' target='_blank'>16 A</a>
|
||||
- *<b>SEV 1011 T23</b> (Type J) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current' target='_blank'>socket:sev1011_t23:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16' target='_blank'>16</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1114,7 +1152,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>SEV 1011 T23</b> (Type J) offer?`
|
||||
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set
|
||||
|
||||
- *<b>SEV 1011 T23</b> (Type J) outputs at most 3.7 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output' target='_blank'>socket:sev1011_t23:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW' target='_blank'>3.7 kW</a>
|
||||
- *<b>SEV 1011 T23</b> (Type J) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output' target='_blank'>socket:sev1011_t23:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW' target='_blank'>3.7 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1126,13 +1164,15 @@ The question is `How much plugs of type <b>AS3112</b> (Type I) are available her
|
|||
*There are <b class='text-xl'>{socket:as3112}</b> plugs of type <b>AS3112</b> (Type I) available here* is shown if `socket:as3112` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:as3112
|
||||
|
||||
The question is `What voltage do the plugs with <b>AS3112</b> (Type I) offer?`
|
||||
*<b>AS3112</b> (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set
|
||||
|
||||
- *<b>AS3112</b> (Type I) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage' target='_blank'>socket:as3112:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>AS3112</b> (Type I) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage' target='_blank'>socket:as3112:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230' target='_blank'>230</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1143,7 +1183,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>AS3112</b> (Type I) offer?`
|
||||
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set
|
||||
|
||||
- *<b>AS3112</b> (Type I) outputs at most 10 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current' target='_blank'>socket:as3112:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10 A' target='_blank'>10 A</a>
|
||||
- *<b>AS3112</b> (Type I) outputs at most 10 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current' target='_blank'>socket:as3112:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10' target='_blank'>10</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1154,7 +1194,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>AS3112</b> (Type I) offer?`
|
||||
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set
|
||||
|
||||
- *<b>AS3112</b> (Type I) outputs at most 2.3 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output' target='_blank'>socket:as3112:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW' target='_blank'>2.3 kW</a>
|
||||
- *<b>AS3112</b> (Type I) outputs at most 2.3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output' target='_blank'>socket:as3112:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW' target='_blank'>2.3 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1166,13 +1206,15 @@ The question is `How much plugs of type <b>NEMA 5-20</b> (Type B) are available
|
|||
*There are <b class='text-xl'>{socket:nema_5_20}</b> plugs of type <b>NEMA 5-20</b> (Type B) available here* is shown if `socket:nema_5_20` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:nema_5_20
|
||||
|
||||
The question is `What voltage do the plugs with <b>NEMA 5-20</b> (Type B) offer?`
|
||||
*<b>NEMA 5-20</b> (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set
|
||||
|
||||
- *<b>NEMA 5-20</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage' target='_blank'>socket:nema_5_20:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120 V' target='_blank'>120 V</a>
|
||||
- *<b>NEMA 5-20</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage' target='_blank'>socket:nema_5_20:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120' target='_blank'>120</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1183,7 +1225,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>NEMA 5-20</b> (Type B) offer?`
|
||||
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set
|
||||
|
||||
- *<b>NEMA 5-20</b> (Type B) outputs at most 20 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current' target='_blank'>socket:nema_5_20:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20 A' target='_blank'>20 A</a>
|
||||
- *<b>NEMA 5-20</b> (Type B) outputs at most 20 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current' target='_blank'>socket:nema_5_20:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20' target='_blank'>20</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1194,7 +1236,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>NEMA 5-20</b> (Type B) offer?`
|
||||
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set
|
||||
|
||||
- *<b>NEMA 5-20</b> (Type B) outputs at most 2.4 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output' target='_blank'>socket:nema_5_20:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW' target='_blank'>2.4 kW</a>
|
||||
- *<b>NEMA 5-20</b> (Type B) outputs at most 2.4 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output' target='_blank'>socket:nema_5_20:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW' target='_blank'>2.4 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1262,9 +1304,9 @@ This tagrendering is only visible in the popup if the following condition is met
|
|||
The question is `What is the maximum amount of time one is allowed to stay here?`
|
||||
*One can stay at most <b>{canonical(maxstay)}</b>* is shown if `maxstay` is set
|
||||
|
||||
- *No timelimit on leaving your vehicle here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxstay' target='_blank'>maxstay</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited' target='_blank'>unlimited</a>
|
||||
- *There is no limit to the amount of time one can stay here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxstay' target='_blank'>maxstay</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited' target='_blank'>unlimited</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:bus' target='_blank'>bus</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bus%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:hgv' target='_blank'>hgv</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hgv%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:motorcar' target='_blank'>motorcar</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:motorcar%3Dyes' target='_blank'>yes</a> | maxstay~.+
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:bus' target='_blank'>bus</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bus%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:hgv' target='_blank'>hgv</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hgv%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:motorcar' target='_blank'>motorcar</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:motorcar%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### Network
|
||||
|
||||
|
|
@ -1416,7 +1458,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -151,60 +151,60 @@ Elements must match **all** of the following expressions:
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [key](https://wiki.openstreetmap.org/wiki/Tag:access%3Dkey) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) [permissive](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermissive) |
|
||||
| <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) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:schuko#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aschuko/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:schuko](https://wiki.openstreetmap.org/wiki/Key:socket:schuko) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:schuko:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aschuko%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:schuko:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:schuko:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aschuko%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:schuko:current](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:schuko:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aschuko%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:schuko:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:schuko:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aschuko%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:schuko:current](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:schuko:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aschuko%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:schuko:output](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.6 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:typee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atypee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:typee](https://wiki.openstreetmap.org/wiki/Key:socket:typee) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:typee:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atypee%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:typee:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:typee:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atypee%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:typee:current](https://wiki.openstreetmap.org/wiki/Key:socket:typee:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:typee:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atypee%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:typee:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:typee:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atypee%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:typee:current](https://wiki.openstreetmap.org/wiki/Key:socket:typee:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:typee:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atypee%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:typee:output](https://wiki.openstreetmap.org/wiki/Key:socket:typee:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:chademo#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Achademo/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:chademo](https://wiki.openstreetmap.org/wiki/Key:socket:chademo) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:chademo:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Achademo%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:chademo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:chademo:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Achademo%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:chademo:current](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [120 A](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:chademo:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Achademo%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:chademo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:chademo:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Achademo%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:chademo:current](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [120](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:chademo:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Achademo%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:chademo:output](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_cable#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_cable/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_cable:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_cable%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200 V) [240 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_cable:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_cable%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_cable:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_cable%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200) [240](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_cable:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_cable%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_cable:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_cable%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW) [7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1](https://wiki.openstreetmap.org/wiki/Key:socket:type1) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200 V) [240 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200) [240](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW) [6.6 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW) [7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7 kW) [7.2 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7.2 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_combo#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_combo/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_combo:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_combo%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400 V) [1000 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_combo:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_combo%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [50 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50 A) [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_combo:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_combo%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [400](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400) [1000](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_combo:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_combo%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [50](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50) [125](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type1_combo:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype1_combo%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type1_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW) [62.5 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D150 kW) [350 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D350 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125) [350](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW) [250 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D250 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2](https://wiki.openstreetmap.org/wiki/Key:socket:type2) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230) [400](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16) [32](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_combo#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_combo/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_combo:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_combo%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500 V) [920 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_combo:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_combo%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_combo:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_combo%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500) [920](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_combo:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_combo%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125) [350](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_combo:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_combo%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_cable#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_cable/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_cable:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_cable%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_cable:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_cable%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_cable:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_cable%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230) [400](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_cable:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_cable%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16) [32](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:type2_cable:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atype2_cable%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:type2_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger_ccs/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger_ccs](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger_ccs%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger_ccs:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500 V) [920 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger_ccs%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger_ccs:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger_ccs%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger_ccs:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500) [920](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger_ccs%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger_ccs:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125) [350](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_supercharger_ccs%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_supercharger_ccs:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125) [350](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW) [250 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D250 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230) [400](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16) [32](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Atesla_destination%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:USB-A#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3AUSB-A/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:USB-A](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:USB-A:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3AUSB-A%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:USB-A:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [5 V](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:USB-A:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3AUSB-A%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:USB-A:current](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current) | [pfloat](../SpecialInputElements.md#pfloat) | [1 A](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1 A) [2 A](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:USB-A:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3AUSB-A%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:USB-A:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [5](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:USB-A:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3AUSB-A%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:USB-A:current](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current) | [pfloat](../SpecialInputElements.md#pfloat) | [1](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:USB-A:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3AUSB-A%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:USB-A:output](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output) | [pfloat](../SpecialInputElements.md#pfloat) | [5W](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W) [10W](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bosch_3pin#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abosch_3pin/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bosch_3pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abosch_3pin%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bosch_3pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | |
|
||||
|
|
@ -215,24 +215,24 @@ Elements must match **all** of the following expressions:
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abosch_5pin%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bosch_5pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:current) | [pfloat](../SpecialInputElements.md#pfloat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abosch_5pin%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bosch_5pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:output) | [pfloat](../SpecialInputElements.md#pfloat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bs1363#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abs1363/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bs1363](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bs1363:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abs1363%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bs1363:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bs1363:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abs1363%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bs1363:current](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current) | [pfloat](../SpecialInputElements.md#pfloat) | [13 A](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bs1363:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abs1363%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bs1363:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bs1363:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abs1363%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bs1363:current](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current) | [pfloat](../SpecialInputElements.md#pfloat) | [13](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:bs1363:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Abs1363%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:bs1363:output](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3kW](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema5_15#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema5_15/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema5_15](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema5_15:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema5_15%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema5_15:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [120 V](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema5_15:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema5_15%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema5_15:current](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current) | [pfloat](../SpecialInputElements.md#pfloat) | [15 A](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema5_15:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema5_15%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema5_15:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [120](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema5_15:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema5_15%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema5_15:current](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current) | [pfloat](../SpecialInputElements.md#pfloat) | [15](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema5_15:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Anema5_15%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema5_15:output](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output) | [pfloat](../SpecialInputElements.md#pfloat) | [1.8 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:sev1011_t23#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Asev1011_t23/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:sev1011_t23](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Asev1011_t23%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:sev1011_t23:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Asev1011_t23%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:sev1011_t23:current](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Asev1011_t23%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:sev1011_t23:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Asev1011_t23%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:sev1011_t23:current](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Asev1011_t23%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:sev1011_t23:output](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:as3112#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aas3112/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:as3112](https://wiki.openstreetmap.org/wiki/Key:socket:as3112) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:as3112:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aas3112%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:as3112:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230 V) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:as3112:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aas3112%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:as3112:current](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current) | [pfloat](../SpecialInputElements.md#pfloat) | [10 A](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:as3112:voltage#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aas3112%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:as3112:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:as3112:current#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aas3112%3Acurrent/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:as3112:current](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current) | [pfloat](../SpecialInputElements.md#pfloat) | [10](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:as3112:output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/socket%3Aas3112%3Aoutput/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:as3112:output](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output) | [pfloat](../SpecialInputElements.md#pfloat) | [2.3 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema_5_20#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/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema_5_20](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema_5_20:voltage#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%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema_5_20:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [120 V](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120 V) |
|
||||
| <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 A](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20 A) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/socket:nema_5_20:voltage#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%3Avoltage/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [socket:nema_5_20:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [120](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120) |
|
||||
| <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) |
|
||||
| <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) |
|
||||
|
|
@ -334,13 +334,15 @@ The question is `How much plugs of type <b>Schuko wall plug</b> without ground p
|
|||
*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* is shown if `socket:schuko` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:schuko
|
||||
|
||||
The question is `What voltage do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
|
||||
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set
|
||||
|
||||
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage' target='_blank'>socket:schuko:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage' target='_blank'>socket:schuko:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230' target='_blank'>230</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -351,7 +353,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
|
||||
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set
|
||||
|
||||
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current' target='_blank'>socket:schuko:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16 A' target='_blank'>16 A</a>
|
||||
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current' target='_blank'>socket:schuko:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16' target='_blank'>16</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -362,7 +364,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
|
||||
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set
|
||||
|
||||
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 3.6 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output' target='_blank'>socket:schuko:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW' target='_blank'>3.6 kW</a>
|
||||
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output' target='_blank'>socket:schuko:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW' target='_blank'>3.6 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -374,13 +376,15 @@ The question is `How much plugs of type <b>European wall plug</b> with ground pi
|
|||
*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* is shown if `socket:typee` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:typee
|
||||
|
||||
The question is `What voltage do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
|
||||
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set
|
||||
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage' target='_blank'>socket:typee:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage' target='_blank'>socket:typee:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230' target='_blank'>230</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -391,7 +395,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
|
||||
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set
|
||||
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:current' target='_blank'>socket:typee:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16 A' target='_blank'>16 A</a>
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:current' target='_blank'>socket:typee:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16' target='_blank'>16</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -402,8 +406,8 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
|
||||
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set
|
||||
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 3 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW' target='_blank'>3 kW</a>
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 22 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW' target='_blank'>3 kW</a>
|
||||
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -415,13 +419,15 @@ The question is `How much plugs of type <b>Chademo</b> are available here?`
|
|||
*There are <b class='text-xl'>{socket:chademo}</b> plugs of type <b>Chademo</b> available here* is shown if `socket:chademo` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:chademo
|
||||
|
||||
The question is `What voltage do the plugs with <b>Chademo</b> offer?`
|
||||
*<b>Chademo</b> outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set
|
||||
|
||||
- *<b>Chademo</b> outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage' target='_blank'>socket:chademo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500 V' target='_blank'>500 V</a>
|
||||
- *<b>Chademo</b> outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage' target='_blank'>socket:chademo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500' target='_blank'>500</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -432,7 +438,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Chademo</b> offer?`
|
||||
*<b>Chademo</b> outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set
|
||||
|
||||
- *<b>Chademo</b> outputs at most 120 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current' target='_blank'>socket:chademo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120 A' target='_blank'>120 A</a>
|
||||
- *<b>Chademo</b> outputs at most 120 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current' target='_blank'>socket:chademo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120' target='_blank'>120</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -443,7 +449,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Chademo</b> offer?`
|
||||
*<b>Chademo</b> outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set
|
||||
|
||||
- *<b>Chademo</b> outputs at most 50 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output' target='_blank'>socket:chademo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
- *<b>Chademo</b> outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output' target='_blank'>socket:chademo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -455,14 +461,16 @@ The question is `How much plugs of type <b>Type 1 with cable</b> (J1772) are ava
|
|||
*There are <b class='text-xl'>{socket:type1_cable}</b> plugs of type <b>Type 1 with cable</b> (J1772) available here* is shown if `socket:type1_cable` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:type1_cable
|
||||
|
||||
The question is `What voltage do the plugs with <b>Type 1 with cable</b> (J1772) offer?`
|
||||
*<b>Type 1 with cable</b> (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set
|
||||
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200 V' target='_blank'>200 V</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240 V' target='_blank'>240 V</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200' target='_blank'>200</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240' target='_blank'>240</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -473,7 +481,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Type 1 with cable</b> (J1772) offer?`
|
||||
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set
|
||||
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current' target='_blank'>socket:type1_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32 A' target='_blank'>32 A</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current' target='_blank'>socket:type1_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32' target='_blank'>32</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -484,8 +492,8 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Type 1 with cable</b> (J1772) offer?`
|
||||
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set
|
||||
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs at most 3.7 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW' target='_blank'>3.7 kW</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs at most 7 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW' target='_blank'>7 kW</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW' target='_blank'>3.7 kW</a>
|
||||
- *<b>Type 1 with cable</b> (J1772) outputs at most 7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW' target='_blank'>7 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -497,14 +505,16 @@ The question is `How much plugs of type <b>Type 1 <i>without</i> cable</b> (J177
|
|||
*There are <b class='text-xl'>{socket:type1}</b> plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) available here* is shown if `socket:type1` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:type1
|
||||
|
||||
The question is `What voltage do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
|
||||
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set
|
||||
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200 V' target='_blank'>200 V</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240 V' target='_blank'>240 V</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200' target='_blank'>200</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240' target='_blank'>240</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -515,7 +525,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
|
||||
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set
|
||||
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:current' target='_blank'>socket:type1:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32 A' target='_blank'>32 A</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:current' target='_blank'>socket:type1:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32' target='_blank'>32</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -526,10 +536,10 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
|
||||
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set
|
||||
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 3.7 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW' target='_blank'>3.7 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 6.6 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW' target='_blank'>6.6 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 7 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7 kW' target='_blank'>7 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 7.2 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7.2 kW' target='_blank'>7.2 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW' target='_blank'>3.7 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 6.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW' target='_blank'>6.6 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7 kW' target='_blank'>7 kW</a>
|
||||
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 7.2 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7.2 kW' target='_blank'>7.2 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -541,14 +551,16 @@ The question is `How much plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) are
|
|||
*There are <b class='text-xl'>{socket:type1_combo}</b> plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:type1_combo
|
||||
|
||||
The question is `What voltage do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
|
||||
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set
|
||||
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400 V' target='_blank'>400 V</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 1000 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000 V' target='_blank'>1000 V</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400' target='_blank'>400</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 1000 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000' target='_blank'>1000</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -559,8 +571,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
|
||||
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set
|
||||
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50 A' target='_blank'>50 A</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125 A' target='_blank'>125 A</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50' target='_blank'>50</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125' target='_blank'>125</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -571,10 +583,10 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
|
||||
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set
|
||||
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 62.5 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW' target='_blank'>62.5 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 150 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D150 kW' target='_blank'>150 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 350 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D350 kW' target='_blank'>350 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW' target='_blank'>62.5 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D150 kW' target='_blank'>150 kW</a>
|
||||
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 350 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D350 kW' target='_blank'>350 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -586,13 +598,15 @@ The question is `How much plugs of type <b>Tesla Supercharger</b> are available
|
|||
*There are <b class='text-xl'>{socket:tesla_supercharger}</b> plugs of type <b>Tesla Supercharger</b> available here* is shown if `socket:tesla_supercharger` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:tesla_supercharger
|
||||
|
||||
The question is `What voltage do the plugs with <b>Tesla Supercharger</b> offer?`
|
||||
*<b>Tesla Supercharger</b> outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set
|
||||
|
||||
- *<b>Tesla Supercharger</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage' target='_blank'>socket:tesla_supercharger:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480 V' target='_blank'>480 V</a>
|
||||
- *<b>Tesla Supercharger</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage' target='_blank'>socket:tesla_supercharger:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480' target='_blank'>480</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -603,8 +617,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Tesla Supercharger</b> offer?`
|
||||
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set
|
||||
|
||||
- *<b>Tesla Supercharger</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125 A' target='_blank'>125 A</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350 A' target='_blank'>350 A</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125' target='_blank'>125</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350' target='_blank'>350</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -615,9 +629,9 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Tesla Supercharger</b> offer?`
|
||||
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set
|
||||
|
||||
- *<b>Tesla Supercharger</b> outputs at most 120 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW' target='_blank'>120 kW</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 150 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW' target='_blank'>150 kW</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 250 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D250 kW' target='_blank'>250 kW</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW' target='_blank'>120 kW</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW' target='_blank'>150 kW</a>
|
||||
- *<b>Tesla Supercharger</b> outputs at most 250 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D250 kW' target='_blank'>250 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -629,14 +643,16 @@ The question is `How much plugs of type <b>Type 2</b> (mennekes) are available h
|
|||
*There are <b class='text-xl'>{socket:type2}</b> plugs of type <b>Type 2</b> (mennekes) available here* is shown if `socket:type2` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:type2
|
||||
|
||||
The question is `What voltage do the plugs with <b>Type 2</b> (mennekes) offer?`
|
||||
*<b>Type 2</b> (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set
|
||||
|
||||
- *<b>Type 2</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400 V' target='_blank'>400 V</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230' target='_blank'>230</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400' target='_blank'>400</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -647,8 +663,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Type 2</b> (mennekes) offer?`
|
||||
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set
|
||||
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16 A' target='_blank'>16 A</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32 A' target='_blank'>32 A</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16' target='_blank'>16</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32' target='_blank'>32</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -659,8 +675,8 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Type 2</b> (mennekes) offer?`
|
||||
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set
|
||||
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 11 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW' target='_blank'>11 kW</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 22 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW' target='_blank'>11 kW</a>
|
||||
- *<b>Type 2</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -672,14 +688,16 @@ The question is `How much plugs of type <b>Type 2 CCS</b> (mennekes) are availab
|
|||
*There are <b class='text-xl'>{socket:type2_combo}</b> plugs of type <b>Type 2 CCS</b> (mennekes) available here* is shown if `socket:type2_combo` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:type2_combo
|
||||
|
||||
The question is `What voltage do the plugs with <b>Type 2 CCS</b> (mennekes) offer?`
|
||||
*<b>Type 2 CCS</b> (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set
|
||||
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500 V' target='_blank'>500 V</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920 V' target='_blank'>920 V</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500' target='_blank'>500</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920' target='_blank'>920</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -690,8 +708,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Type 2 CCS</b> (mennekes) offer?`
|
||||
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set
|
||||
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125 A' target='_blank'>125 A</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350 A' target='_blank'>350 A</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125' target='_blank'>125</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350' target='_blank'>350</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -702,7 +720,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Type 2 CCS</b> (mennekes) offer?`
|
||||
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set
|
||||
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs at most 50 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output' target='_blank'>socket:type2_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
- *<b>Type 2 CCS</b> (mennekes) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output' target='_blank'>socket:type2_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -714,14 +732,16 @@ The question is `How much plugs of type <b>Type 2 with cable</b> (mennekes) are
|
|||
*There are <b class='text-xl'>{socket:type2_cable}</b> plugs of type <b>Type 2 with cable</b> (mennekes) available here* is shown if `socket:type2_cable` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:type2_cable
|
||||
|
||||
The question is `What voltage do the plugs with <b>Type 2 with cable</b> (mennekes) offer?`
|
||||
*<b>Type 2 with cable</b> (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set
|
||||
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400 V' target='_blank'>400 V</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230' target='_blank'>230</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400' target='_blank'>400</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -732,8 +752,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Type 2 with cable</b> (mennekes) offer?`
|
||||
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set
|
||||
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16 A' target='_blank'>16 A</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32 A' target='_blank'>32 A</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16' target='_blank'>16</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32' target='_blank'>32</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -744,8 +764,8 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Type 2 with cable</b> (mennekes) offer?`
|
||||
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set
|
||||
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 11 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW' target='_blank'>11 kW</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 22 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW' target='_blank'>11 kW</a>
|
||||
- *<b>Type 2 with cable</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -757,14 +777,16 @@ The question is `How much plugs of type <b>Tesla Supercharger CCS</b> (a branded
|
|||
*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* is shown if `socket:tesla_supercharger_ccs` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:tesla_supercharger_ccs
|
||||
|
||||
The question is `What voltage do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
|
||||
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set
|
||||
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500 V' target='_blank'>500 V</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920 V' target='_blank'>920 V</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500' target='_blank'>500</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920' target='_blank'>920</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -775,8 +797,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
|
||||
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set
|
||||
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125 A' target='_blank'>125 A</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350 A' target='_blank'>350 A</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125' target='_blank'>125</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350' target='_blank'>350</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -787,7 +809,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
|
||||
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set
|
||||
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 50 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output' target='_blank'>socket:tesla_supercharger_ccs:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output' target='_blank'>socket:tesla_supercharger_ccs:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW' target='_blank'>50 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -799,13 +821,15 @@ The question is `How much plugs of type <b>Tesla Supercharger (destination)</b>
|
|||
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla Supercharger (destination)</b> available here* is shown if `socket:tesla_destination` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:tesla_destination_us
|
||||
|
||||
The question is `What voltage do the plugs with <b>Tesla Supercharger (destination)</b> offer?`
|
||||
*<b>Tesla Supercharger (destination)</b> outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set
|
||||
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480 V' target='_blank'>480 V</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480' target='_blank'>480</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -816,8 +840,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Tesla Supercharger (destination)</b> offer?`
|
||||
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set
|
||||
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125 A' target='_blank'>125 A</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350 A' target='_blank'>350 A</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125' target='_blank'>125</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350' target='_blank'>350</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -828,9 +852,9 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Tesla Supercharger (destination)</b> offer?`
|
||||
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set
|
||||
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 120 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW' target='_blank'>120 kW</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 150 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW' target='_blank'>150 kW</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 250 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D250 kW' target='_blank'>250 kW</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW' target='_blank'>120 kW</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW' target='_blank'>150 kW</a>
|
||||
- *<b>Tesla Supercharger (destination)</b> outputs at most 250 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D250 kW' target='_blank'>250 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -842,14 +866,16 @@ The question is `How much plugs of type <b>Tesla supercharger (destination)</b>
|
|||
*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* is shown if `socket:tesla_destination` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:tesla_destination
|
||||
|
||||
The question is `What voltage do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
|
||||
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set
|
||||
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400 V' target='_blank'>400 V</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230' target='_blank'>230</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400' target='_blank'>400</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -860,8 +886,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
|
||||
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set
|
||||
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16 A' target='_blank'>16 A</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32 A' target='_blank'>32 A</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16' target='_blank'>16</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32' target='_blank'>32</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -872,8 +898,8 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
|
||||
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set
|
||||
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 11 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW' target='_blank'>11 kW</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 22 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW' target='_blank'>11 kW</a>
|
||||
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW' target='_blank'>22 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -885,13 +911,15 @@ The question is `How much plugs of type <b>USB</b> to charge phones and small el
|
|||
*There are <b class='text-xl'>{socket:USB-A}</b> plugs of type <b>USB</b> to charge phones and small electronics available here* is shown if `socket:USB-A` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:USB-A
|
||||
|
||||
The question is `What voltage do the plugs with <b>USB</b> to charge phones and small electronics offer?`
|
||||
*<b>USB</b> to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set
|
||||
|
||||
- *<b>USB</b> to charge phones and small electronics outputs 5 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage' target='_blank'>socket:USB-A:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5 V' target='_blank'>5 V</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs 5 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage' target='_blank'>socket:USB-A:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5' target='_blank'>5</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -902,8 +930,8 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>USB</b> to charge phones and small electronics offer?`
|
||||
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set
|
||||
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 1 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1 A' target='_blank'>1 A</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 2 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2 A' target='_blank'>2 A</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 1 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1' target='_blank'>1</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 2 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2' target='_blank'>2</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -914,8 +942,8 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>USB</b> to charge phones and small electronics offer?`
|
||||
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set
|
||||
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 5W A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W' target='_blank'>5W</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 10W A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W' target='_blank'>10W</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 5W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W' target='_blank'>5W</a>
|
||||
- *<b>USB</b> to charge phones and small electronics outputs at most 10W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W' target='_blank'>10W</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -927,6 +955,8 @@ The question is `How much plugs of type <b>Bosch Active Connect with 3 pins</b>
|
|||
*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* is shown if `socket:bosch_3pin` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:bosch_3pin
|
||||
|
||||
|
|
@ -961,6 +991,8 @@ The question is `How much plugs of type <b>Bosch Active Connect with 5 pins</b>
|
|||
*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* is shown if `socket:bosch_5pin` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:bosch_5pin
|
||||
|
||||
|
|
@ -995,13 +1027,15 @@ The question is `How much plugs of type <b>BS1363</b> (Type G) are available her
|
|||
*There are <b class='text-xl'>{socket:bs1363}</b> plugs of type <b>BS1363</b> (Type G) available here* is shown if `socket:bs1363` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:bs1363
|
||||
|
||||
The question is `What voltage do the plugs with <b>BS1363</b> (Type G) offer?`
|
||||
*<b>BS1363</b> (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set
|
||||
|
||||
- *<b>BS1363</b> (Type G) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage' target='_blank'>socket:bs1363:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>BS1363</b> (Type G) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage' target='_blank'>socket:bs1363:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230' target='_blank'>230</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1012,7 +1046,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>BS1363</b> (Type G) offer?`
|
||||
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set
|
||||
|
||||
- *<b>BS1363</b> (Type G) outputs at most 13 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current' target='_blank'>socket:bs1363:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13 A' target='_blank'>13 A</a>
|
||||
- *<b>BS1363</b> (Type G) outputs at most 13 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current' target='_blank'>socket:bs1363:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13' target='_blank'>13</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1023,7 +1057,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>BS1363</b> (Type G) offer?`
|
||||
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set
|
||||
|
||||
- *<b>BS1363</b> (Type G) outputs at most 3kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output' target='_blank'>socket:bs1363:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW' target='_blank'>3kW</a>
|
||||
- *<b>BS1363</b> (Type G) outputs at most 3kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output' target='_blank'>socket:bs1363:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW' target='_blank'>3kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1035,13 +1069,15 @@ The question is `How much plugs of type <b>NEMA 5-15</b> (Type B) are available
|
|||
*There are <b class='text-xl'>{socket:nema5_15}</b> plugs of type <b>NEMA 5-15</b> (Type B) available here* is shown if `socket:nema5_15` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:nema5_15
|
||||
|
||||
The question is `What voltage do the plugs with <b>NEMA 5-15</b> (Type B) offer?`
|
||||
*<b>NEMA 5-15</b> (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set
|
||||
|
||||
- *<b>NEMA 5-15</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage' target='_blank'>socket:nema5_15:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120 V' target='_blank'>120 V</a>
|
||||
- *<b>NEMA 5-15</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage' target='_blank'>socket:nema5_15:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120' target='_blank'>120</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1052,7 +1088,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>NEMA 5-15</b> (Type B) offer?`
|
||||
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set
|
||||
|
||||
- *<b>NEMA 5-15</b> (Type B) outputs at most 15 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current' target='_blank'>socket:nema5_15:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15 A' target='_blank'>15 A</a>
|
||||
- *<b>NEMA 5-15</b> (Type B) outputs at most 15 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current' target='_blank'>socket:nema5_15:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15' target='_blank'>15</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1063,7 +1099,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>NEMA 5-15</b> (Type B) offer?`
|
||||
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set
|
||||
|
||||
- *<b>NEMA 5-15</b> (Type B) outputs at most 1.8 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output' target='_blank'>socket:nema5_15:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW' target='_blank'>1.8 kW</a>
|
||||
- *<b>NEMA 5-15</b> (Type B) outputs at most 1.8 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output' target='_blank'>socket:nema5_15:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW' target='_blank'>1.8 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1075,13 +1111,15 @@ The question is `How much plugs of type <b>SEV 1011 T23</b> (Type J) are availab
|
|||
*There are <b class='text-xl'>{socket:sev1011_t23}</b> plugs of type <b>SEV 1011 T23</b> (Type J) available here* is shown if `socket:sev1011_t23` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:sev1011_t23
|
||||
|
||||
The question is `What voltage do the plugs with <b>SEV 1011 T23</b> (Type J) offer?`
|
||||
*<b>SEV 1011 T23</b> (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set
|
||||
|
||||
- *<b>SEV 1011 T23</b> (Type J) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage' target='_blank'>socket:sev1011_t23:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>SEV 1011 T23</b> (Type J) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage' target='_blank'>socket:sev1011_t23:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230' target='_blank'>230</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1092,7 +1130,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>SEV 1011 T23</b> (Type J) offer?`
|
||||
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set
|
||||
|
||||
- *<b>SEV 1011 T23</b> (Type J) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current' target='_blank'>socket:sev1011_t23:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16 A' target='_blank'>16 A</a>
|
||||
- *<b>SEV 1011 T23</b> (Type J) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current' target='_blank'>socket:sev1011_t23:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16' target='_blank'>16</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1103,7 +1141,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>SEV 1011 T23</b> (Type J) offer?`
|
||||
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set
|
||||
|
||||
- *<b>SEV 1011 T23</b> (Type J) outputs at most 3.7 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output' target='_blank'>socket:sev1011_t23:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW' target='_blank'>3.7 kW</a>
|
||||
- *<b>SEV 1011 T23</b> (Type J) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output' target='_blank'>socket:sev1011_t23:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW' target='_blank'>3.7 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1115,13 +1153,15 @@ The question is `How much plugs of type <b>AS3112</b> (Type I) are available her
|
|||
*There are <b class='text-xl'>{socket:as3112}</b> plugs of type <b>AS3112</b> (Type I) available here* is shown if `socket:as3112` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:as3112
|
||||
|
||||
The question is `What voltage do the plugs with <b>AS3112</b> (Type I) offer?`
|
||||
*<b>AS3112</b> (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set
|
||||
|
||||
- *<b>AS3112</b> (Type I) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage' target='_blank'>socket:as3112:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230 V' target='_blank'>230 V</a>
|
||||
- *<b>AS3112</b> (Type I) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage' target='_blank'>socket:as3112:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230' target='_blank'>230</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1132,7 +1172,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>AS3112</b> (Type I) offer?`
|
||||
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set
|
||||
|
||||
- *<b>AS3112</b> (Type I) outputs at most 10 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current' target='_blank'>socket:as3112:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10 A' target='_blank'>10 A</a>
|
||||
- *<b>AS3112</b> (Type I) outputs at most 10 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current' target='_blank'>socket:as3112:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10' target='_blank'>10</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1143,7 +1183,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>AS3112</b> (Type I) offer?`
|
||||
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set
|
||||
|
||||
- *<b>AS3112</b> (Type I) outputs at most 2.3 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output' target='_blank'>socket:as3112:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW' target='_blank'>2.3 kW</a>
|
||||
- *<b>AS3112</b> (Type I) outputs at most 2.3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output' target='_blank'>socket:as3112:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW' target='_blank'>2.3 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1155,13 +1195,15 @@ The question is `How much plugs of type <b>NEMA 5-20</b> (Type B) are available
|
|||
*There are <b class='text-xl'>{socket:nema_5_20}</b> plugs of type <b>NEMA 5-20</b> (Type B) available here* is shown if `socket:nema_5_20` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0
|
||||
This tagrendering has labels
|
||||
`plugs-amount`
|
||||
|
||||
### voltage-socket:nema_5_20
|
||||
|
||||
The question is `What voltage do the plugs with <b>NEMA 5-20</b> (Type B) offer?`
|
||||
*<b>NEMA 5-20</b> (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set
|
||||
|
||||
- *<b>NEMA 5-20</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage' target='_blank'>socket:nema_5_20:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120 V' target='_blank'>120 V</a>
|
||||
- *<b>NEMA 5-20</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage' target='_blank'>socket:nema_5_20:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120' target='_blank'>120</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1172,7 +1214,7 @@ This tagrendering has labels
|
|||
The question is `What current do the plugs with <b>NEMA 5-20</b> (Type B) offer?`
|
||||
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set
|
||||
|
||||
- *<b>NEMA 5-20</b> (Type B) outputs at most 20 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current' target='_blank'>socket:nema_5_20:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20 A' target='_blank'>20 A</a>
|
||||
- *<b>NEMA 5-20</b> (Type B) outputs at most 20 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current' target='_blank'>socket:nema_5_20:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20' target='_blank'>20</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1183,7 +1225,7 @@ This tagrendering has labels
|
|||
The question is `What power output does a single plug of type <b>NEMA 5-20</b> (Type B) offer?`
|
||||
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set
|
||||
|
||||
- *<b>NEMA 5-20</b> (Type B) outputs at most 2.4 kW A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output' target='_blank'>socket:nema_5_20:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW' target='_blank'>2.4 kW</a>
|
||||
- *<b>NEMA 5-20</b> (Type B) outputs at most 2.4 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output' target='_blank'>socket:nema_5_20:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW' target='_blank'>2.4 kW</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0
|
||||
This tagrendering has labels
|
||||
|
|
@ -1251,9 +1293,9 @@ This tagrendering is only visible in the popup if the following condition is met
|
|||
The question is `What is the maximum amount of time one is allowed to stay here?`
|
||||
*One can stay at most <b>{canonical(maxstay)}</b>* is shown if `maxstay` is set
|
||||
|
||||
- *No timelimit on leaving your vehicle here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxstay' target='_blank'>maxstay</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited' target='_blank'>unlimited</a>
|
||||
- *There is no limit to the amount of time one can stay here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxstay' target='_blank'>maxstay</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited' target='_blank'>unlimited</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:bus' target='_blank'>bus</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bus%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:hgv' target='_blank'>hgv</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hgv%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:motorcar' target='_blank'>motorcar</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:motorcar%3Dyes' target='_blank'>yes</a> | maxstay~.+
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:bus' target='_blank'>bus</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bus%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:hgv' target='_blank'>hgv</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hgv%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:motorcar' target='_blank'>motorcar</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:motorcar%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### Network
|
||||
|
||||
|
|
@ -1370,7 +1412,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# cinema
|
||||
|
||||
A place showing movies (films), generally open to the public for a fee. Commonly referred to as a movie theater in the US
|
||||
A place showing movies (films), generally open to the public for a fee. Commonly referred to as a movie theater in the US.
|
||||
|
||||
- This layer is shown at zoomlevel **10** and higher
|
||||
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,8 @@ A climbing gym
|
|||
- [toprope](#toprope)
|
||||
- [shoe_rental](#shoe_rental)
|
||||
- [harness_rental](#harness_rental)
|
||||
- [auto_belay_toprope](#auto_belay_toprope)
|
||||
- [auto_belay_lead](#auto_belay_lead)
|
||||
- [belay_device_rental](#belay_device_rental)
|
||||
- [rope_rental](#rope_rental)
|
||||
- [average_length](#average_length)
|
||||
|
|
@ -59,9 +61,9 @@ The following options to create new points are included:
|
|||
Elements must match **all** of the following expressions:
|
||||
|
||||
0. <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing' target='_blank'>climbing</a>
|
||||
1. <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dsports_centre' target='_blank'>sports_centre</a>
|
||||
1. <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dsports_centre' target='_blank'>sports_centre</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dsports_hall' target='_blank'>sports_hall</a>
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22leisure%22%3D%22sports_centre%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%22sport%22%3D%22climbing%22%5D%5B%22leisure%22%3D%22sports_centre%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22leisure%22%3D%22sports_hall%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
## Supported attributes
|
||||
|
||||
|
|
@ -80,6 +82,8 @@ Elements must match **all** of the following expressions:
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing:toprope#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing%3Atoprope/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing:toprope](https://wiki.openstreetmap.org/wiki/Key:climbing:toprope) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:climbing_shoes:rental#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Aclimbing_shoes%3Arental/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:climbing_shoes:rental](https://wiki.openstreetmap.org/wiki/Key:service:climbing_shoes:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:rental%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:rental%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:climbing_harness:rental#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Aclimbing_harness%3Arental/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:climbing_harness:rental](https://wiki.openstreetmap.org/wiki/Key:service:climbing_harness:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing:autobelay:toprope#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing%3Aautobelay%3Atoprope/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing:autobelay:toprope](https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:toprope) | [nat](../SpecialInputElements.md#nat) | [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:toprope%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:toprope%3Dyes) [all](https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:toprope%3Dall) [only](https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:toprope%3Donly) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing:autobelay:sport#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing%3Aautobelay%3Asport/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing:autobelay:sport](https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:sport) | [nat](../SpecialInputElements.md#nat) | [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:sport%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:sport%3Dyes) [all](https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:sport%3Dall) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:climbing_rope:rental#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Aclimbing_rope%3Arental/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:climbing_rope:rental](https://wiki.openstreetmap.org/wiki/Key:service:climbing_rope:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_rope:rental%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_rope:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_rope:rental%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing:length#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing%3Alength/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pfloat](../SpecialInputElements.md#pfloat) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing:grade:french:min#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing%3Agrade%3Afrench%3Amin/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min) | [string](../SpecialInputElements.md#string) | |
|
||||
|
|
@ -187,7 +191,7 @@ The question is `Is toprope climbing possible here?`
|
|||
|
||||
### shoe_rental
|
||||
|
||||
The question is `Can one rent climbing shoes here?`
|
||||
The question is `Can one rent climbing shoes here to use in the gym?`
|
||||
|
||||
- *Climbing shoes can be borrowed for free here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_shoes:rental' target='_blank'>service:climbing_shoes:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:rental%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_shoes:rental:fee' target='_blank'>service:climbing_shoes:rental:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:rental:fee%3Dno' target='_blank'>no</a>
|
||||
- *Climbing shoes can be rented here for {service:climbing_shoes:rental:charge}* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_shoes:rental' target='_blank'>service:climbing_shoes:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:rental%3Dyes' target='_blank'>yes</a> & service:climbing_shoes:rental:charge~.+. _This option cannot be chosen as answer_
|
||||
|
|
@ -196,16 +200,41 @@ The question is `Can one rent climbing shoes here?`
|
|||
|
||||
### harness_rental
|
||||
|
||||
The question is `Can one rent a climbing harness here?`
|
||||
The question is `Can one rent a climbing harness here to use in the gym?`
|
||||
|
||||
- *A climbing harness can be borrowed for free here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_harness:rental' target='_blank'>service:climbing_harness:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_harness:rental:fee' target='_blank'>service:climbing_harness:rental:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental:fee%3Dno' target='_blank'>no</a>
|
||||
- *A climbing harness can be rented here for {service:climbing_harness:rental:charge}* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_harness:rental' target='_blank'>service:climbing_harness:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dyes' target='_blank'>yes</a> & service:climbing_harness:rental:charge~.+. _This option cannot be chosen as answer_
|
||||
- *A climbing harness can be rented here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_harness:rental' target='_blank'>service:climbing_harness:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dyes' target='_blank'>yes</a>
|
||||
- *A climbing harness can <b>not</b> be rented here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_harness:rental' target='_blank'>service:climbing_harness:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dno' target='_blank'>no</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no) | (climbing:speed~.+ & climbing:speed!=no)
|
||||
|
||||
### auto_belay_toprope
|
||||
|
||||
The question is `Are there auto belays for top roping here?`
|
||||
*There are {climbing:autobelay:toprope} auto belay devices for top roping* is shown if `climbing:autobelay:toprope` is set
|
||||
|
||||
- *There are no auto belays for top roping* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:toprope' target='_blank'>climbing:autobelay:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:toprope%3Dno' target='_blank'>no</a>
|
||||
- *There are a number of auto belays for top roping* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:toprope' target='_blank'>climbing:autobelay:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:toprope%3Dyes' target='_blank'>yes</a>
|
||||
- *There is an auto belay for every top rope route but manual belaying is also possible* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:toprope' target='_blank'>climbing:autobelay:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:toprope%3Dall' target='_blank'>all</a>
|
||||
- *Top rope routes can only be climbed on auto belay* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:toprope' target='_blank'>climbing:autobelay:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:toprope%3Donly' target='_blank'>only</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: climbing:toprope~.+ & climbing:toprope!=no
|
||||
|
||||
### auto_belay_lead
|
||||
|
||||
The question is `Are there auto belays for lead climbing here?`
|
||||
*There are {climbing:autobelay:sport} auto belays for lead climbing* is shown if `climbing:autobelay:sport` is set
|
||||
|
||||
- *There are no auto belays for lead climbing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:sport' target='_blank'>climbing:autobelay:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:sport%3Dno' target='_blank'>no</a>
|
||||
- *There is a number of auto belays for lead climbing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:sport' target='_blank'>climbing:autobelay:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:sport%3Dyes' target='_blank'>yes</a>
|
||||
- *There is an auto belay for every lead climbing route* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:sport' target='_blank'>climbing:autobelay:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:sport%3Dall' target='_blank'>all</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: climbing:sport~.+ & climbing:sport!=no
|
||||
|
||||
### belay_device_rental
|
||||
|
||||
The question is `Can one rent a belay device here?`
|
||||
The question is `Can one rent a belay device here to use in the gym?`
|
||||
|
||||
- *Belay devices are provided at each rope* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_belay_device:provided_at_each_rope' target='_blank'>service:climbing_belay_device:provided_at_each_rope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_belay_device:provided_at_each_rope%3Dyes' target='_blank'>yes</a>
|
||||
- *A belay device can be borrowed for free here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_belay_device:rental' target='_blank'>service:climbing_belay_device:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_belay_device:rental%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_belay_device:rental:fee' target='_blank'>service:climbing_belay_device:rental:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_belay_device:rental:fee%3Dno' target='_blank'>no</a>
|
||||
|
|
@ -213,9 +242,11 @@ The question is `Can one rent a belay device here?`
|
|||
- *A belay device can be rented here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_belay_device:rental' target='_blank'>service:climbing_belay_device:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_belay_device:rental%3Dyes' target='_blank'>yes</a>
|
||||
- *A belay device can <b>not</b> be rented here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_belay_device:rental' target='_blank'>service:climbing_belay_device:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_belay_device:rental%3Dno' target='_blank'>no</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no)
|
||||
|
||||
### rope_rental
|
||||
|
||||
The question is `Can one rent a climbing rope here?`
|
||||
The question is `Can one rent a climbing rope here to use in the gym?`
|
||||
|
||||
- *A climbing rope can be borrowed for free here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_rope:rental' target='_blank'>service:climbing_rope:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_rope:rental%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_rope:rental:fee' target='_blank'>service:climbing_rope:rental:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_rope:rental:fee%3Dno' target='_blank'>no</a>
|
||||
- *A climbing rope can be rented here for {service:climbing_rope:rental:charge}* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:climbing_rope:rental' target='_blank'>service:climbing_rope:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:climbing_rope:rental%3Dyes' target='_blank'>yes</a> & service:climbing_rope:rental:charge~.+. _This option cannot be chosen as answer_
|
||||
|
|
@ -242,7 +273,7 @@ This tagrendering is only visible in the popup if the following condition is met
|
|||
### max_bolts
|
||||
|
||||
The question is `How many bolts do routes in {title()} have at most?`
|
||||
*The sport climbing routes here have at most {climbing:bolts:max} bolts.<div class='subtle'>This is without relays and indicates how much quickdraws a climber needs</div>* is shown if `climbing:bolts:max` is set
|
||||
*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>* is shown if `climbing:bolts:max` is set
|
||||
|
||||
### Speed climbing?
|
||||
|
||||
|
|
@ -328,7 +359,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ The question is `What is the grade of this climbing route according to the frenc
|
|||
### bolts
|
||||
|
||||
The question is `How many bolts does this route have before reaching the anchor?`
|
||||
*This route has {climbing:bolts} bolts <div class='subtle'>This is without relays and indicates how much quickdraws a climber needs</div>* is shown if `climbing:bolts` is set
|
||||
*This route has {climbing:bolts} bolts. <div class='subtle'>This is without belay stations and indicates how much quickdraws a climber needs.</div>* is shown if `climbing:bolts` is set
|
||||
|
||||
- *This route is not bolted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:bolted' target='_blank'>climbing:bolted</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:bolted%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ All infrastructure that someone can cycle over, accompanied with questions about
|
|||
- [Cycleway:smoothness](#cyclewaysmoothness)
|
||||
- [Surface of the road](#surface-of-the-road)
|
||||
- [Surface of the street](#surface-of-the-street)
|
||||
- [width:carriageway](#widthcarriageway)
|
||||
- [width](#width)
|
||||
- [cycleway-lane-track-traffic-signs](#cycleway-lane-track-traffic-signs)
|
||||
- [cycleway-traffic-signs](#cycleway-traffic-signs)
|
||||
- [cycleway-traffic-signs-supplementary](#cycleway-traffic-signs-supplementary)
|
||||
|
|
@ -89,7 +89,7 @@ Elements must match **any** of the following expressions:
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cycleway:smoothness#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cycleway%3Asmoothness/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cycleway:smoothness](https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness) | Multiple choice | [excellent](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dexcellent) [good](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dgood) [intermediate](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dintermediate) [bad](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dbad) [very_bad](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_bad) [horrible](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dhorrible) [very_horrible](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_horrible) [impassable](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dimpassable) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/surface#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/surface/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [asphalt](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones) [concrete](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete) [unhewn_cobblestone](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunhewn_cobblestone) [sett](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsett) [wood](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwood) [gravel](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgravel) [fine_gravel](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dfine_gravel) [pebblestone](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpebblestone) [ground](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/smoothness#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/smoothness/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [smoothness](https://wiki.openstreetmap.org/wiki/Key:smoothness) | Multiple choice | [excellent](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dexcellent) [good](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dgood) [intermediate](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dintermediate) [bad](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dbad) [very_bad](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_bad) [horrible](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dhorrible) [very_horrible](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_horrible) [impassable](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dimpassable) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/width:carriageway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/width%3Acarriageway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway) | [distance](../SpecialInputElements.md#distance) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/width#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/width/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [width](https://wiki.openstreetmap.org/wiki/Key:width) | [distance](../SpecialInputElements.md#distance) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cycleway:traffic_sign#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cycleway%3Atraffic_sign/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cycleway:traffic_sign](https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign) | Multiple choice | [BE:D7](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7) [BE:D9](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D9) [BE:D10](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D10) [none](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3Dnone) |
|
||||
| <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 | [BE:D7](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7) [BE:D9](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D9) [BE:D10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D10) [NL:G11](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G11) [NL:G12a](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G12a) [NL:G13](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G13) [none](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3Dnone) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cycleway:buffer#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cycleway%3Abuffer/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer) | [distance](../SpecialInputElements.md#distance) | |
|
||||
|
|
@ -218,10 +218,10 @@ The question is `What is the smoothness of this street?`
|
|||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno' target='_blank'>no</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcycleway' target='_blank'>cycleway</a>
|
||||
|
||||
### width:carriageway
|
||||
### width
|
||||
|
||||
The question is `What is the carriage width of this road (in meters)?`
|
||||
*The carriage width of this road is <strong>{width:carriageway}m</strong>* is shown if `width:carriageway` is set
|
||||
*The carriage width of this road is <strong>{width}m</strong>* is shown if `width` is set
|
||||
|
||||
### cycleway-lane-track-traffic-signs
|
||||
|
||||
|
|
|
|||
|
|
@ -220,7 +220,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -145,7 +145,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -33,6 +33,9 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
|||
- [Reservation](#reservation)
|
||||
- [Takeaway](#takeaway)
|
||||
- [delivery](#delivery)
|
||||
- [drive-through](#drive-through)
|
||||
- [drive-through-opening_hours](#drive-through-opening_hours)
|
||||
- [Drive-through opening hours](#drive-through-opening-hours)
|
||||
- [Vegetarian (no friture)](#vegetarian-(no-friture))
|
||||
- [Vegan (no friture)](#vegan-(no-friture))
|
||||
- [halal (no friture)](#halal-(no-friture))
|
||||
|
|
@ -47,6 +50,7 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
|||
- [lactose_free](#lactose_free)
|
||||
- [smoking](#smoking)
|
||||
- [service:electricity](#serviceelectricity)
|
||||
- [seating](#seating)
|
||||
- [dog-access](#dog-access)
|
||||
- [internet](#internet)
|
||||
- [internet-fee](#internet-fee)
|
||||
|
|
@ -89,6 +93,8 @@ Elements must match **all** of the following expressions:
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/reservation#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/reservation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/takeaway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/takeaway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/delivery#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/delivery/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [delivery](https://wiki.openstreetmap.org/wiki/Key:delivery) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/drive_through#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/drive_through/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [drive_through](https://wiki.openstreetmap.org/wiki/Key:drive_through) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours:drive_through#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours%3Adrive_through/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours:drive_through](https://wiki.openstreetmap.org/wiki/Key:opening_hours:drive_through) | [opening_hours](../SpecialInputElements.md#opening_hours) | [](https://wiki.openstreetmap.org/wiki/Tag:opening_hours:drive_through%3D) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:vegetarian#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Avegetarian/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Don_demand) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:vegan#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Avegan/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Don_demand) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:halal#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Ahalal/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly) |
|
||||
|
|
@ -272,6 +278,24 @@ The question is `Does {title()} deliver food to your home?`
|
|||
- *This business does home delivery (possibly via a third party)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes' target='_blank'>yes</a>
|
||||
- *This business does not deliver at home* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno' target='_blank'>no</a>
|
||||
|
||||
### drive-through
|
||||
|
||||
The question is `Does this fast-food restaurant have a drive-through?`
|
||||
|
||||
- *This fast-food restaurant has a drive-through* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes' target='_blank'>yes</a>
|
||||
- *This fast-food restaurant does not have a drive-through* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dno' target='_blank'>no</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>
|
||||
|
||||
### drive-through-opening_hours
|
||||
|
||||
The question is `What are the opening hours of the drive-through?`
|
||||
*<h3>Drive-through opening hours</h3>{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set
|
||||
|
||||
- *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through=
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### Vegetarian (no friture)
|
||||
|
||||
The question is `Does this restaurant have a vegetarian option?`
|
||||
|
|
@ -413,6 +437,13 @@ The question is `Does this amenity have electrical outlets, available to custome
|
|||
- *There are no sockets available indoors to customers, but charging might be possible if the staff is asked* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>
|
||||
- *There are a no domestic sockets available to customers seated indoors* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>
|
||||
|
||||
### seating
|
||||
|
||||
The question is `What kind of seating does {title()} have?`
|
||||
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/outdoor_seating/outdoor_seating.svg' style='width: 3rem; height: 3rem'> *This place has outdoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dno' target='_blank'>no</a>
|
||||
- *This place has indoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dno' target='_blank'>no</a>
|
||||
|
||||
### dog-access
|
||||
|
||||
The question is `Are dogs allowed in this business?`
|
||||
|
|
@ -487,7 +518,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
@ -527,6 +558,14 @@ This tagrendering has labels
|
|||
-----|-----|----- |
|
||||
| lactose_free.0 | Has a lactose free offering | diet:lactose_free=yes | diet:lactose_free=only | diet:lactose_free=limited |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| outdoor_seating.0 | Has outdoor seating | outdoor_seating=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| indoor_seating.0 | Has indoor seating | indoor_seating=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| accepts_cash.0 | Accepts cash | payment:cash=yes |
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ A shop
|
|||
- [single_level](#single_level)
|
||||
- [copyshop-print-sizes](#copyshop-print-sizes)
|
||||
- [copyshop-binding](#copyshop-binding)
|
||||
- [optometrist_service](#optometrist_service)
|
||||
- [key_cutter](#key_cutter)
|
||||
- [sells_new_bikes](#sells_new_bikes)
|
||||
- [bike_second_hand](#bike_second_hand)
|
||||
|
|
@ -89,6 +90,7 @@ Elements must match **all** 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/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/service:binding#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abinding/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/healthcare#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/healthcare/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Aretail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:second_hand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Asecond_hand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Arepair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) |
|
||||
|
|
@ -298,6 +300,7 @@ The question is `What kind of shop is this?`
|
|||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-shop.svg' style='width: 3rem; height: 3rem'> *Wig Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs' target='_blank'>wigs</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/temaki-window.svg' style='width: 3rem; height: 3rem'> *Window Blind Store* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind' target='_blank'>window_blind</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-alcohol-shop.svg' style='width: 3rem; height: 3rem'> *Wine Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine' target='_blank'>wine</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/shops/shop-disused.svg' style='width: 3rem; height: 3rem'> *This shop is no longer used. It is vacant* is shown if with disused:shop=
|
||||
|
||||
This tagrendering has labels
|
||||
`description`
|
||||
|
|
@ -409,6 +412,15 @@ The question is `Does this shop offer a binding service?`
|
|||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:print' target='_blank'>service:print</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print%3Dyes' target='_blank'>yes</a> | shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$
|
||||
|
||||
### optometrist_service
|
||||
|
||||
The question is `Are medical services available here?`
|
||||
|
||||
- *This shop offers eye exams by certified optometrists* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist' target='_blank'>optometrist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healtcare' target='_blank'>not:healtcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healtcare%3Doptometrist' target='_blank'>optometrist</a>
|
||||
- *This shop offers hearing tests by a certified audiologist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist' target='_blank'>audiologist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healthcare' target='_blank'>not:healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healthcare%3Daudiologist' target='_blank'>audiologist</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician' target='_blank'>optician</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aid' target='_blank'>hearing_aid</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply' target='_blank'>medical_supply</a>
|
||||
|
||||
### key_cutter
|
||||
|
||||
The question is `Does this shop offer key cutting?`
|
||||
|
|
@ -871,10 +883,11 @@ This tagrendering has labels
|
|||
| shop_types.162 | Wig Shop | shop=wigs |
|
||||
| shop_types.163 | Window Blind Store | shop=window_blind |
|
||||
| shop_types.164 | Wine Shop | shop=wine |
|
||||
| shop_types.165 | This shop is no longer used. It is vacant | disused:shop= | (shop=disused | shop=vacant | disused:shop~^(.+)$ | abandoned:shop~^(.+)$) |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -16,9 +16,10 @@ A layer showing drinking water fountains
|
|||
4. [Supported attributes](#supported-attributes)
|
||||
- [images](#images)
|
||||
- [Still in use?](#still-in-use)
|
||||
- [fee](#fee)
|
||||
- [type](#type)
|
||||
- [Bottle refill](#bottle-refill)
|
||||
- [fee](#fee)
|
||||
- [temperature-cold](#temperature-cold)
|
||||
- [seasonal](#seasonal)
|
||||
- [opening_hours_24_7](#opening_hours_24_7)
|
||||
- [Opening hours](#opening-hours)
|
||||
|
|
@ -69,8 +70,8 @@ Elements must match **all** of the following expressions:
|
|||
| attribute | type | values which are supported by this layer |
|
||||
-----|-----|----- |
|
||||
| <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) | [string](../SpecialInputElements.md#string) | [](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) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bottle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bottle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bottle](https://wiki.openstreetmap.org/wiki/Key:bottle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dno) |
|
||||
| <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/bottle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bottle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bottle](https://wiki.openstreetmap.org/wiki/Key:bottle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/seasonal#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/seasonal/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [seasonal](https://wiki.openstreetmap.org/wiki/Key:seasonal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dno) [summer](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dsummer) [spring;summer;autumn](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dspring;summer;autumn) |
|
||||
| <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/artwork_type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artwork_type/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) |
|
||||
|
|
@ -94,6 +95,13 @@ The question is `Is this drinking water spot still operational?`
|
|||
- *This drinking water is closed* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed' target='_blank'>closed</a>
|
||||
- *This drinking water is permanently closed* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:disused:amenity' target='_blank'>disused:amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:disused:amenity%3Ddrinking_water' target='_blank'>drinking_water</a>
|
||||
|
||||
### fee
|
||||
|
||||
The question is `Is this drinking water point free to use?`
|
||||
|
||||
- *Free to use* 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>
|
||||
- *One needs to pay to use this drinking water point* 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>
|
||||
|
||||
### type
|
||||
|
||||
The question is `What type of drinking water point is this?`
|
||||
|
|
@ -109,12 +117,15 @@ The question is `How easy is it to fill water bottles?`
|
|||
- *It is easy to refill water bottles* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bottle' target='_blank'>bottle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dyes' target='_blank'>yes</a>
|
||||
- *Water bottles may not fit* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bottle' target='_blank'>bottle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dno' target='_blank'>no</a>
|
||||
|
||||
### fee
|
||||
### temperature-cold
|
||||
|
||||
The question is `Is this drinking water point free to use?`
|
||||
The question is `Is cold water available here?`
|
||||
|
||||
- *Free to use* 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>
|
||||
- *One needs to pay to use this drinking water point* 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>
|
||||
- *Ice-cold water is provided here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:iced_water' target='_blank'>iced_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:iced_water%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:iced_water' target='_blank'>iced_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:iced_water%3Dno' target='_blank'>no</a>
|
||||
- *Actively cooled water is available here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cold_water' target='_blank'>cold_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cold_water%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:cold_water' target='_blank'>cold_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cold_water%3Dno' target='_blank'>no</a>
|
||||
- *Ambient temperature water (without active cooling or heating) is available here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:room_temperature_water' target='_blank'>room_temperature_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:room_temperature_water%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:room_temperature_water' target='_blank'>room_temperature_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:room_temperature_water%3Dno' target='_blank'>no</a>
|
||||
- *Warmed water is provided here; the water is not dangerously hot* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:warm_water' target='_blank'>warm_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:warm_water%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:warm_water' target='_blank'>warm_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:warm_water%3Dno' target='_blank'>no</a>
|
||||
- *Hot water is provided here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:hot_water' target='_blank'>hot_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hot_water%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:hot_water' target='_blank'>hot_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hot_water%3Dno' target='_blank'>no</a>
|
||||
|
||||
### seasonal
|
||||
|
||||
|
|
@ -234,7 +245,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -240,7 +240,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -168,7 +168,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -32,6 +32,9 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
|||
- [Reservation](#reservation)
|
||||
- [Takeaway](#takeaway)
|
||||
- [delivery](#delivery)
|
||||
- [drive-through](#drive-through)
|
||||
- [drive-through-opening_hours](#drive-through-opening_hours)
|
||||
- [Drive-through opening hours](#drive-through-opening-hours)
|
||||
- [Vegetarian (no friture)](#vegetarian-(no-friture))
|
||||
- [Vegan (no friture)](#vegan-(no-friture))
|
||||
- [halal (no friture)](#halal-(no-friture))
|
||||
|
|
@ -46,6 +49,7 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
|||
- [lactose_free](#lactose_free)
|
||||
- [smoking](#smoking)
|
||||
- [service:electricity](#serviceelectricity)
|
||||
- [seating](#seating)
|
||||
- [dog-access](#dog-access)
|
||||
- [internet](#internet)
|
||||
- [internet-fee](#internet-fee)
|
||||
|
|
@ -104,6 +108,8 @@ Elements must match **any** of the following expressions:
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/reservation#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/reservation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/takeaway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/takeaway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/delivery#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/delivery/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [delivery](https://wiki.openstreetmap.org/wiki/Key:delivery) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/drive_through#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/drive_through/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [drive_through](https://wiki.openstreetmap.org/wiki/Key:drive_through) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours:drive_through#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours%3Adrive_through/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours:drive_through](https://wiki.openstreetmap.org/wiki/Key:opening_hours:drive_through) | [opening_hours](../SpecialInputElements.md#opening_hours) | [](https://wiki.openstreetmap.org/wiki/Tag:opening_hours:drive_through%3D) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:vegetarian#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Avegetarian/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Don_demand) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:vegan#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Avegan/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Don_demand) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:halal#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Ahalal/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly) |
|
||||
|
|
@ -287,6 +293,24 @@ The question is `Does {title()} deliver food to your home?`
|
|||
- *This business does home delivery (possibly via a third party)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes' target='_blank'>yes</a>
|
||||
- *This business does not deliver at home* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno' target='_blank'>no</a>
|
||||
|
||||
### drive-through
|
||||
|
||||
The question is `Does this fast-food restaurant have a drive-through?`
|
||||
|
||||
- *This fast-food restaurant has a drive-through* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes' target='_blank'>yes</a>
|
||||
- *This fast-food restaurant does not have a drive-through* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dno' target='_blank'>no</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>
|
||||
|
||||
### drive-through-opening_hours
|
||||
|
||||
The question is `What are the opening hours of the drive-through?`
|
||||
*<h3>Drive-through opening hours</h3>{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set
|
||||
|
||||
- *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through=
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### Vegetarian (no friture)
|
||||
|
||||
The question is `Does this restaurant have a vegetarian option?`
|
||||
|
|
@ -428,6 +452,13 @@ The question is `Does this amenity have electrical outlets, available to custome
|
|||
- *There are no sockets available indoors to customers, but charging might be possible if the staff is asked* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>
|
||||
- *There are a no domestic sockets available to customers seated indoors* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>
|
||||
|
||||
### seating
|
||||
|
||||
The question is `What kind of seating does {title()} have?`
|
||||
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/outdoor_seating/outdoor_seating.svg' style='width: 3rem; height: 3rem'> *This place has outdoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dno' target='_blank'>no</a>
|
||||
- *This place has indoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dno' target='_blank'>no</a>
|
||||
|
||||
### dog-access
|
||||
|
||||
The question is `Are dogs allowed in this business?`
|
||||
|
|
@ -502,7 +533,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
@ -542,6 +573,14 @@ This tagrendering has labels
|
|||
-----|-----|----- |
|
||||
| lactose_free.0 | Has a lactose free offering | diet:lactose_free=yes | diet:lactose_free=only | diet:lactose_free=limited |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| outdoor_seating.0 | Has outdoor seating | outdoor_seating=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| indoor_seating.0 | Has indoor seating | indoor_seating=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| accepts_cash.0 | Accepts cash | payment:cash=yes |
|
||||
|
|
|
|||
|
|
@ -131,7 +131,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -34,6 +34,9 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
|||
- [Reservation](#reservation)
|
||||
- [Takeaway](#takeaway)
|
||||
- [delivery](#delivery)
|
||||
- [drive-through](#drive-through)
|
||||
- [drive-through-opening_hours](#drive-through-opening_hours)
|
||||
- [Drive-through opening hours](#drive-through-opening-hours)
|
||||
- [Vegetarian (no friture)](#vegetarian-(no-friture))
|
||||
- [Vegan (no friture)](#vegan-(no-friture))
|
||||
- [halal (no friture)](#halal-(no-friture))
|
||||
|
|
@ -47,6 +50,7 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
|||
- [lactose_free](#lactose_free)
|
||||
- [smoking](#smoking)
|
||||
- [service:electricity](#serviceelectricity)
|
||||
- [seating](#seating)
|
||||
- [dog-access](#dog-access)
|
||||
- [internet](#internet)
|
||||
- [internet-fee](#internet-fee)
|
||||
|
|
@ -91,6 +95,8 @@ Elements must match **all** of the following expressions:
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/reservation#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/reservation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/takeaway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/takeaway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/delivery#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/delivery/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [delivery](https://wiki.openstreetmap.org/wiki/Key:delivery) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/drive_through#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/drive_through/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [drive_through](https://wiki.openstreetmap.org/wiki/Key:drive_through) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours:drive_through#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours%3Adrive_through/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours:drive_through](https://wiki.openstreetmap.org/wiki/Key:opening_hours:drive_through) | [opening_hours](../SpecialInputElements.md#opening_hours) | [](https://wiki.openstreetmap.org/wiki/Tag:opening_hours:drive_through%3D) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:vegetarian#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Avegetarian/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Don_demand) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:vegan#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Avegan/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Don_demand) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:halal#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Ahalal/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly) |
|
||||
|
|
@ -285,6 +291,24 @@ The question is `Does {title()} deliver food to your home?`
|
|||
- *This business does home delivery (possibly via a third party)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes' target='_blank'>yes</a>
|
||||
- *This business does not deliver at home* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno' target='_blank'>no</a>
|
||||
|
||||
### drive-through
|
||||
|
||||
The question is `Does this fast-food restaurant have a drive-through?`
|
||||
|
||||
- *This fast-food restaurant has a drive-through* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes' target='_blank'>yes</a>
|
||||
- *This fast-food restaurant does not have a drive-through* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dno' target='_blank'>no</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>
|
||||
|
||||
### drive-through-opening_hours
|
||||
|
||||
The question is `What are the opening hours of the drive-through?`
|
||||
*<h3>Drive-through opening hours</h3>{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set
|
||||
|
||||
- *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through=
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### Vegetarian (no friture)
|
||||
|
||||
The question is `Does this restaurant have a vegetarian option?`
|
||||
|
|
@ -414,6 +438,13 @@ The question is `Does this amenity have electrical outlets, available to custome
|
|||
- *There are no sockets available indoors to customers, but charging might be possible if the staff is asked* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>
|
||||
- *There are a no domestic sockets available to customers seated indoors* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>
|
||||
|
||||
### seating
|
||||
|
||||
The question is `What kind of seating does {title()} have?`
|
||||
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/outdoor_seating/outdoor_seating.svg' style='width: 3rem; height: 3rem'> *This place has outdoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dno' target='_blank'>no</a>
|
||||
- *This place has indoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dno' target='_blank'>no</a>
|
||||
|
||||
### dog-access
|
||||
|
||||
The question is `Are dogs allowed in this business?`
|
||||
|
|
@ -488,7 +519,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
@ -528,6 +559,14 @@ This tagrendering has labels
|
|||
-----|-----|----- |
|
||||
| lactose_free.0 | Has a lactose free offering | diet:lactose_free=yes | diet:lactose_free=only | diet:lactose_free=limited |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| outdoor_seating.0 | Has outdoor seating | outdoor_seating=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| indoor_seating.0 | Has indoor seating | indoor_seating=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| accepts_cash.0 | Accepts cash | payment:cash=yes |
|
||||
|
|
|
|||
|
|
@ -34,6 +34,9 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
|||
- [Reservation](#reservation)
|
||||
- [Takeaway](#takeaway)
|
||||
- [delivery](#delivery)
|
||||
- [drive-through](#drive-through)
|
||||
- [drive-through-opening_hours](#drive-through-opening_hours)
|
||||
- [Drive-through opening hours](#drive-through-opening-hours)
|
||||
- [Vegetarian (no friture)](#vegetarian-(no-friture))
|
||||
- [Vegan (no friture)](#vegan-(no-friture))
|
||||
- [halal (no friture)](#halal-(no-friture))
|
||||
|
|
@ -47,6 +50,7 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
|||
- [gluten_free](#gluten_free)
|
||||
- [smoking](#smoking)
|
||||
- [service:electricity](#serviceelectricity)
|
||||
- [seating](#seating)
|
||||
- [dog-access](#dog-access)
|
||||
- [internet](#internet)
|
||||
- [internet-fee](#internet-fee)
|
||||
|
|
@ -91,6 +95,8 @@ Elements must match **all** of the following expressions:
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/reservation#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/reservation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/takeaway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/takeaway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/delivery#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/delivery/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [delivery](https://wiki.openstreetmap.org/wiki/Key:delivery) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/drive_through#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/drive_through/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [drive_through](https://wiki.openstreetmap.org/wiki/Key:drive_through) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours:drive_through#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours%3Adrive_through/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours:drive_through](https://wiki.openstreetmap.org/wiki/Key:opening_hours:drive_through) | [opening_hours](../SpecialInputElements.md#opening_hours) | [](https://wiki.openstreetmap.org/wiki/Tag:opening_hours:drive_through%3D) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:vegetarian#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Avegetarian/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Don_demand) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:vegan#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Avegan/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Don_demand) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:halal#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Ahalal/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly) |
|
||||
|
|
@ -285,6 +291,24 @@ The question is `Does {title()} deliver food to your home?`
|
|||
- *This business does home delivery (possibly via a third party)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes' target='_blank'>yes</a>
|
||||
- *This business does not deliver at home* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno' target='_blank'>no</a>
|
||||
|
||||
### drive-through
|
||||
|
||||
The question is `Does this fast-food restaurant have a drive-through?`
|
||||
|
||||
- *This fast-food restaurant has a drive-through* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes' target='_blank'>yes</a>
|
||||
- *This fast-food restaurant does not have a drive-through* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dno' target='_blank'>no</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>
|
||||
|
||||
### drive-through-opening_hours
|
||||
|
||||
The question is `What are the opening hours of the drive-through?`
|
||||
*<h3>Drive-through opening hours</h3>{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set
|
||||
|
||||
- *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through=
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### Vegetarian (no friture)
|
||||
|
||||
The question is `Does this restaurant have a vegetarian option?`
|
||||
|
|
@ -414,6 +438,13 @@ The question is `Does this amenity have electrical outlets, available to custome
|
|||
- *There are no sockets available indoors to customers, but charging might be possible if the staff is asked* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>
|
||||
- *There are a no domestic sockets available to customers seated indoors* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>
|
||||
|
||||
### seating
|
||||
|
||||
The question is `What kind of seating does {title()} have?`
|
||||
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/outdoor_seating/outdoor_seating.svg' style='width: 3rem; height: 3rem'> *This place has outdoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dno' target='_blank'>no</a>
|
||||
- *This place has indoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dno' target='_blank'>no</a>
|
||||
|
||||
### dog-access
|
||||
|
||||
The question is `Are dogs allowed in this business?`
|
||||
|
|
@ -488,7 +519,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
@ -528,6 +559,14 @@ This tagrendering has labels
|
|||
-----|-----|----- |
|
||||
| lactose_free.0 | Has a lactose free offering | diet:lactose_free=yes | diet:lactose_free=only | diet:lactose_free=limited |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| outdoor_seating.0 | Has outdoor seating | outdoor_seating=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| indoor_seating.0 | Has indoor seating | indoor_seating=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| accepts_cash.0 | Accepts cash | payment:cash=yes |
|
||||
|
|
|
|||
|
|
@ -33,6 +33,9 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
|||
- [Reservation](#reservation)
|
||||
- [Takeaway](#takeaway)
|
||||
- [delivery](#delivery)
|
||||
- [drive-through](#drive-through)
|
||||
- [drive-through-opening_hours](#drive-through-opening_hours)
|
||||
- [Drive-through opening hours](#drive-through-opening-hours)
|
||||
- [Vegetarian (no friture)](#vegetarian-(no-friture))
|
||||
- [Vegan (no friture)](#vegan-(no-friture))
|
||||
- [halal (no friture)](#halal-(no-friture))
|
||||
|
|
@ -47,6 +50,7 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
|||
- [lactose_free](#lactose_free)
|
||||
- [smoking](#smoking)
|
||||
- [service:electricity](#serviceelectricity)
|
||||
- [seating](#seating)
|
||||
- [dog-access](#dog-access)
|
||||
- [internet](#internet)
|
||||
- [internet-fee](#internet-fee)
|
||||
|
|
@ -89,6 +93,8 @@ Elements must match **all** of the following expressions:
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/reservation#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/reservation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/takeaway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/takeaway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/delivery#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/delivery/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [delivery](https://wiki.openstreetmap.org/wiki/Key:delivery) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/drive_through#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/drive_through/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [drive_through](https://wiki.openstreetmap.org/wiki/Key:drive_through) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours:drive_through#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours%3Adrive_through/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours:drive_through](https://wiki.openstreetmap.org/wiki/Key:opening_hours:drive_through) | [opening_hours](../SpecialInputElements.md#opening_hours) | [](https://wiki.openstreetmap.org/wiki/Tag:opening_hours:drive_through%3D) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:vegetarian#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Avegetarian/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Don_demand) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:vegan#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Avegan/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Don_demand) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diet:halal#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diet%3Ahalal/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly) |
|
||||
|
|
@ -272,6 +278,24 @@ The question is `Does {title()} deliver food to your home?`
|
|||
- *This business does home delivery (possibly via a third party)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes' target='_blank'>yes</a>
|
||||
- *This business does not deliver at home* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno' target='_blank'>no</a>
|
||||
|
||||
### drive-through
|
||||
|
||||
The question is `Does this fast-food restaurant have a drive-through?`
|
||||
|
||||
- *This fast-food restaurant has a drive-through* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes' target='_blank'>yes</a>
|
||||
- *This fast-food restaurant does not have a drive-through* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dno' target='_blank'>no</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>
|
||||
|
||||
### drive-through-opening_hours
|
||||
|
||||
The question is `What are the opening hours of the drive-through?`
|
||||
*<h3>Drive-through opening hours</h3>{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set
|
||||
|
||||
- *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through=
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:drive_through' target='_blank'>drive_through</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drive_through%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### Vegetarian (no friture)
|
||||
|
||||
The question is `Does this restaurant have a vegetarian option?`
|
||||
|
|
@ -413,6 +437,13 @@ The question is `Does this amenity have electrical outlets, available to custome
|
|||
- *There are no sockets available indoors to customers, but charging might be possible if the staff is asked* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>
|
||||
- *There are a no domestic sockets available to customers seated indoors* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>
|
||||
|
||||
### seating
|
||||
|
||||
The question is `What kind of seating does {title()} have?`
|
||||
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/outdoor_seating/outdoor_seating.svg' style='width: 3rem; height: 3rem'> *This place has outdoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:outdoor_seating' target='_blank'>outdoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:outdoor_seating%3Dno' target='_blank'>no</a>
|
||||
- *This place has indoor seating* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:indoor_seating' target='_blank'>indoor_seating</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor_seating%3Dno' target='_blank'>no</a>
|
||||
|
||||
### dog-access
|
||||
|
||||
The question is `Are dogs allowed in this business?`
|
||||
|
|
@ -487,7 +518,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
@ -527,6 +558,14 @@ This tagrendering has labels
|
|||
-----|-----|----- |
|
||||
| lactose_free.0 | Has a lactose free offering | diet:lactose_free=yes | diet:lactose_free=only | diet:lactose_free=limited |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| outdoor_seating.0 | Has outdoor seating | outdoor_seating=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| indoor_seating.0 | Has indoor seating | indoor_seating=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| accepts_cash.0 | Accepts cash | payment:cash=yes |
|
||||
|
|
|
|||
|
|
@ -340,7 +340,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -209,7 +209,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -203,7 +203,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -203,7 +203,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -342,7 +342,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
70
Docs/Layers/insect_hotel.md
Normal file
70
Docs/Layers/insect_hotel.md
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
# insect_hotel
|
||||
|
||||
Layer showing insect hotels
|
||||
|
||||
- This layer is shown at zoomlevel **11** and higher
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [Themes using this layer](#themes-using-this-layer)
|
||||
2. [Presets](#presets)
|
||||
3. [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
4. [Supported attributes](#supported-attributes)
|
||||
- [images](#images)
|
||||
- [leftover-questions](#leftover-questions)
|
||||
- [move-button](#move-button)
|
||||
- [delete-button](#delete-button)
|
||||
- [lod](#lod)
|
||||
|
||||
## Themes using this layer
|
||||
|
||||
- [insects](https://mapcomplete.org/insects)
|
||||
- [nature](https://mapcomplete.org/nature)
|
||||
- [personal](https://mapcomplete.org/personal)
|
||||
|
||||
## Presets
|
||||
|
||||
The following options to create new points are included:
|
||||
|
||||
- **an insect hotel** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:man_made' target='_blank'>man_made</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:man_made%3Dinsect_hotel' target='_blank'>insect_hotel</a>
|
||||
|
||||
## Basic tags for this layer
|
||||
|
||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:man_made' target='_blank'>man_made</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:man_made%3Dinsect_hotel' target='_blank'>insect_hotel</a>**
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22man_made%22%3D%22insect_hotel%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
## Supported attributes
|
||||
|
||||
### 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()}*
|
||||
|
||||
### leftover-questions
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{questions( ,)}*
|
||||
|
||||
### move-button
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{move_button()}*
|
||||
|
||||
### delete-button
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{delete_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/insect_hotel/insect_hotel.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/insect_hotel/insect_hotel.json)
|
||||
|
|
@ -146,7 +146,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ A shop
|
|||
- [single_level](#single_level)
|
||||
- [copyshop-print-sizes](#copyshop-print-sizes)
|
||||
- [copyshop-binding](#copyshop-binding)
|
||||
- [optometrist_service](#optometrist_service)
|
||||
- [key_cutter](#key_cutter)
|
||||
- [sells_new_bikes](#sells_new_bikes)
|
||||
- [bike_second_hand](#bike_second_hand)
|
||||
|
|
@ -98,6 +99,7 @@ Elements must match **all** 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/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/service:binding#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abinding/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/healthcare#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/healthcare/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Aretail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:second_hand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Asecond_hand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Arepair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) |
|
||||
|
|
@ -307,6 +309,7 @@ The question is `What kind of shop is this?`
|
|||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-shop.svg' style='width: 3rem; height: 3rem'> *Wig Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs' target='_blank'>wigs</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/temaki-window.svg' style='width: 3rem; height: 3rem'> *Window Blind Store* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind' target='_blank'>window_blind</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-alcohol-shop.svg' style='width: 3rem; height: 3rem'> *Wine Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine' target='_blank'>wine</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/shops/shop-disused.svg' style='width: 3rem; height: 3rem'> *This shop is no longer used. It is vacant* is shown if with disused:shop=
|
||||
|
||||
This tagrendering has labels
|
||||
`description`
|
||||
|
|
@ -418,6 +421,15 @@ The question is `Does this shop offer a binding service?`
|
|||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:print' target='_blank'>service:print</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print%3Dyes' target='_blank'>yes</a> | shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$
|
||||
|
||||
### optometrist_service
|
||||
|
||||
The question is `Are medical services available here?`
|
||||
|
||||
- *This shop offers eye exams by certified optometrists* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist' target='_blank'>optometrist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healtcare' target='_blank'>not:healtcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healtcare%3Doptometrist' target='_blank'>optometrist</a>
|
||||
- *This shop offers hearing tests by a certified audiologist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist' target='_blank'>audiologist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healthcare' target='_blank'>not:healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healthcare%3Daudiologist' target='_blank'>audiologist</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician' target='_blank'>optician</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aid' target='_blank'>hearing_aid</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply' target='_blank'>medical_supply</a>
|
||||
|
||||
### key_cutter
|
||||
|
||||
The question is `Does this shop offer key cutting?`
|
||||
|
|
@ -707,7 +719,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
@ -884,6 +896,7 @@ This tagrendering has labels
|
|||
| shop_types.162 | Wig Shop | shop=wigs |
|
||||
| shop_types.163 | Window Blind Store | shop=window_blind |
|
||||
| shop_types.164 | Wine Shop | shop=wine |
|
||||
| shop_types.165 | This shop is no longer used. It is vacant | disused:shop= | (shop=disused | shop=vacant | disused:shop~^(.+)$ | abandoned:shop~^(.+)$) |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
### nearby-images
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*<h3>Nearby images</h3>The pictures below are nearby geotagged images and might be helpful to handle this note.{nearby_images(open,)}*
|
||||
*<h3>Nearby images</h3>The pictures below are nearby geotagged images and might be helpful to handle this note.{nearby_images(open,yes)}*
|
||||
|
||||
### report-contributor
|
||||
|
||||
|
|
|
|||
|
|
@ -191,7 +191,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ A layer showing car parkings
|
|||
- [parking-type](#parking-type)
|
||||
- [capacity-disabled](#capacity-disabled)
|
||||
- [capacity](#capacity)
|
||||
- [maxstay](#maxstay)
|
||||
- [leftover-questions](#leftover-questions)
|
||||
- [move-button](#move-button)
|
||||
- [delete-button](#delete-button)
|
||||
|
|
@ -52,6 +53,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/parking#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/parking/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [parking](https://wiki.openstreetmap.org/wiki/Key:parking) | Multiple choice | [surface](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dsurface) [street_side](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dstreet_side) [underground](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dunderground) [multi-storey](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dmulti-storey) [rooftop](https://wiki.openstreetmap.org/wiki/Tag:parking%3Drooftop) [lane](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dlane) [carports](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dcarports) [garage_boxes](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dgarage_boxes) [layby](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dlayby) [sheds](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dsheds) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:disabled#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Adisabled/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:disabled](https://wiki.openstreetmap.org/wiki/Key:capacity:disabled) | [pnat](../SpecialInputElements.md#pnat) | [0](https://wiki.openstreetmap.org/wiki/Tag:capacity:disabled%3D0) |
|
||||
| <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) | |
|
||||
| <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) |
|
||||
|
||||
### 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
|
||||
|
|
@ -110,6 +112,13 @@ The question is `How many disabled parking spots are there at this parking?`
|
|||
The question is `How many parking spots are there at this parking?`
|
||||
*There are {capacity} parking spots* is shown if `capacity` is set
|
||||
|
||||
### maxstay
|
||||
|
||||
The question is `What is the maximum amount of time one is allowed to stay here?`
|
||||
*One can stay at most <b>{canonical(maxstay)}</b>* is shown if `maxstay` is set
|
||||
|
||||
- *There is no limit to the amount of time one can stay here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxstay' target='_blank'>maxstay</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited' target='_blank'>unlimited</a>
|
||||
|
||||
### leftover-questions
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
|
|
|||
110
Docs/Layers/parks_without_etymology.md
Normal file
110
Docs/Layers/parks_without_etymology.md
Normal file
|
|
@ -0,0 +1,110 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
# parks_without_etymology
|
||||
|
||||
This layer is based on [etymology](../Layers/etymology.md)
|
||||
|
||||
All objects which have an etymology known
|
||||
|
||||
- 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)
|
||||
- [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)
|
||||
- [minimap](#minimap)
|
||||
- [etymology_multi_apply](#etymology_multi_apply)
|
||||
- [wikipedia](#wikipedia)
|
||||
- [lod](#lod)
|
||||
|
||||
## Themes using this layer
|
||||
|
||||
- [etymology](https://mapcomplete.org/etymology)
|
||||
|
||||
## Basic tags for this layer
|
||||
|
||||
Elements must match **all** of the following expressions:
|
||||
|
||||
0. <a href='https://wiki.openstreetmap.org/wiki/Key:landuse' target='_blank'>landuse</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:landuse%3Dvillage_green' target='_blank'>village_green</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:landuse' target='_blank'>landuse</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:landuse%3Drecreation_ground' target='_blank'>recreation_ground</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dpark' target='_blank'>park</a>
|
||||
1. name~.+
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22landuse%22%3D%22village_green%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22landuse%22%3D%22recreation_ground%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22leisure%22%3D%22park%22%5D%5B%22name%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/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) |
|
||||
|
||||
### etymology-images-from-wikipedia
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{image_carousel(name:etymology:wikidata)}*
|
||||
|
||||
### wikipedia-etymology
|
||||
|
||||
The question is `What is the Wikidata-item that this object is named after?`
|
||||
*<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set
|
||||
|
||||
### zoeken op inventaris onroerend erfgoed
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*<a href='https://inventaris.onroerenderfgoed.be/erfgoedobjecten?tekst={name}' target='_blank'>Search on inventaris onroerend erfgoed</a>*
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:_country' target='_blank'>_country</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_country%3Dbe' target='_blank'>be</a>
|
||||
|
||||
### simple etymology
|
||||
|
||||
The question is `What is this object named after?`
|
||||
*Named after {name:etymology}* is shown if `name:etymology` is set
|
||||
|
||||
- *The origin of this name is unknown in all literature* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>
|
||||
|
||||
### questions
|
||||
Show the questions block at this location
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{questions()}*
|
||||
|
||||
### street-name-sign-image
|
||||
|
||||
_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)}*
|
||||
|
||||
### minimap
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{minimap(18, id, _same_name_ids):height:10rem}*
|
||||
|
||||
### etymology_multi_apply
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}*
|
||||
|
||||
### wikipedia
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*A Wikipedia article about this <b>street</b> exists:<br/>{wikipedia():max-height:25rem}*
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: wikidata~.+
|
||||
|
||||
### 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/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json)
|
||||
|
|
@ -59,7 +59,6 @@ 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/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/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 | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) |
|
||||
|
||||
### 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
|
||||
|
|
@ -124,11 +123,8 @@ The question is `Which methods of payment are accepted here?`
|
|||
|
||||
### wheelchair
|
||||
|
||||
The question is `Is this pharmacy easy to access on a wheelchair?`
|
||||
|
||||
- *This pharmacy is easy to access on a wheelchair* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- *This pharmacy is hard to access on a wheelchair* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
- *This pharmacy has limited access for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*wheelchair*
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
|
@ -165,7 +161,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -131,7 +131,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -160,7 +160,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -209,7 +209,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -216,7 +216,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -221,15 +221,15 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| centres_only.0 | All recycling types | recycling_type=centre |
|
||||
| centres_only.0 | Only recycling centres | recycling_type=centre |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| recyclingType.0 | *Only public access* (default) | |
|
||||
| recyclingType.0 | *All recycling types* (default) | |
|
||||
| recyclingType.1 | Recycling of batteries | recycling:batteries=yes |
|
||||
| recyclingType.2 | Recycling of beverage cartons | recycling:beverage_cartons=yes |
|
||||
| recyclingType.3 | Recycling of cans | recycling:cans=yes |
|
||||
|
|
|
|||
141
Docs/Layers/scouting_group.md
Normal file
141
Docs/Layers/scouting_group.md
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
# scouting_group
|
||||
|
||||
A map showing scouting groups.
|
||||
|
||||
- This layer is shown at zoomlevel **4** and higher
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [Themes using this layer](#themes-using-this-layer)
|
||||
2. [Presets](#presets)
|
||||
3. [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
4. [Supported attributes](#supported-attributes)
|
||||
- [name](#name)
|
||||
- [association](#association)
|
||||
- [phone](#phone)
|
||||
- [email](#email)
|
||||
- [website](#website)
|
||||
- [questions](#questions)
|
||||
- [mastodon](#mastodon)
|
||||
- [move-button](#move-button)
|
||||
- [lod](#lod)
|
||||
5. [Filters](#filters)
|
||||
|
||||
## Themes using this layer
|
||||
|
||||
- [personal](https://mapcomplete.org/personal)
|
||||
- [scouting](https://mapcomplete.org/scouting)
|
||||
|
||||
## Presets
|
||||
|
||||
The following options to create new points are included:
|
||||
|
||||
- **scouting group** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dscout' target='_blank'>scout</a>
|
||||
|
||||
## Basic tags for this layer
|
||||
|
||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dscout' target='_blank'>scout</a>**
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22club%22%3D%22scout%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/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/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/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/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) | |
|
||||
|
||||
### name
|
||||
|
||||
The question is `What is the name of this group?`
|
||||
*The name of this group is {name}* is shown if `name` is set
|
||||
|
||||
### association
|
||||
|
||||
The question is `To which scout association does {name} belong?`
|
||||
*The scout association of this group is {brand}* is shown if `brand` is set
|
||||
|
||||
### phone
|
||||
|
||||
The question is `What is the phone number of {title()}?`
|
||||
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
|
||||
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/questions/phone.svg' style='width: 3rem; height: 3rem'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
|
||||
|
||||
This tagrendering has labels
|
||||
`contact`
|
||||
|
||||
### email
|
||||
|
||||
The question is `What is the email address of {title()}?`
|
||||
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
|
||||
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/svg/envelope.svg' style='width: 3rem; height: 3rem'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/svg/envelope.svg' style='width: 3rem; height: 3rem'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
|
||||
|
||||
This tagrendering has labels
|
||||
`contact`
|
||||
|
||||
### website
|
||||
|
||||
The question is `What is the website of {title()}?`
|
||||
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
|
||||
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/icons/website.svg' style='width: 3rem; height: 3rem'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
|
||||
|
||||
This tagrendering has labels
|
||||
`contact`
|
||||
|
||||
### questions
|
||||
Show the questions block at this location
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{questions()}*
|
||||
|
||||
### mastodon
|
||||
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
|
||||
|
||||
### 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`
|
||||
|
||||
## Filters
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| brand.0 | *brand* (default) | |
|
||||
| brand.1 | Associação de Escuteiros de Angola | brand=Associação de Escuteiros de Angola | brand:wikidata=Q4810279 |
|
||||
| brand.2 | Bund der Pfadfinderinnen und Pfadfinder | brand=Bund der Pfadfinderinnen und Pfadfinder | brand:wikidata=Q1005225 |
|
||||
| brand.3 | Deutsche Pfadfinderschaft Sankt Georg | brand=Deutsche Pfadfinderschaft Sankt Georg | brand:wikidata=Q1203670 |
|
||||
| brand.4 | Girl Scouts | brand=Girl Scouts | brand:wikidata=Q2576280 | name=Girl Scouts |
|
||||
| brand.5 | Norges KFUK-KFUM-speidere | brand=Norges KFUK-KFUM-speidere | brand:wikidata=Q8046067 |
|
||||
| brand.6 | Norges speiderforbund | brand=Norges speiderforbund | brand:wikidata=Q1769346 |
|
||||
| brand.7 | Scoutisme Béninois | brand=Scoutisme Béninois | brand:wikidata=Q13534588 |
|
||||
| brand.8 | Scouts South Africa | brand=Scouts South Africa | brand:wikidata=Q7565791 |
|
||||
| brand.9 | The Botswana Scouts Association | brand=The Botswana Scouts Association | brand:wikidata=Q7719478 |
|
||||
| brand.10 | The Scout Association | brand=The Scout Association | brand:wikidata=Q849740 | name=The Scout Association |
|
||||
| brand.11 | Verband Christlicher Pfadfinder*innen | brand=Verband Christlicher Pfadfinder*innen | brand:wikidata=Q1316309 |
|
||||
| brand.12 | 香港女童軍總會 Hong Kong Girl Guides Association | brand=香港女童軍總會 | brand:en=Hong Kong Girl Guides Association | brand:wikidata=Q5894627 | brand:zh=香港女童軍總會 | brand:zh-Hans=香港女童军总会 | brand:zh-Hant=香港女童軍總會 |
|
||||
| brand.13 | 香港童軍總會 Scout Association of Hong Kong | brand=香港童軍總會 Scout Association of Hong Kong | brand:en=Scout Association of Hong Kong | brand:wikidata=Q1883585 | brand:zh=香港童軍總會 | brand:zh-Hans=香港童军总会 | brand:zh-Hant=香港童軍總會 |
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/scouting_group/scouting_group.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/scouting_group/scouting_group.json)
|
||||
|
|
@ -28,6 +28,7 @@ A shop
|
|||
- [single_level](#single_level)
|
||||
- [copyshop-print-sizes](#copyshop-print-sizes)
|
||||
- [copyshop-binding](#copyshop-binding)
|
||||
- [optometrist_service](#optometrist_service)
|
||||
- [key_cutter](#key_cutter)
|
||||
- [sells_new_bikes](#sells_new_bikes)
|
||||
- [bike_second_hand](#bike_second_hand)
|
||||
|
|
@ -106,6 +107,7 @@ Elements must match **all** 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/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/service:binding#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abinding/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/healthcare#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/healthcare/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Aretail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:second_hand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Asecond_hand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Arepair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) |
|
||||
|
|
@ -315,6 +317,7 @@ The question is `What kind of shop is this?`
|
|||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-shop.svg' style='width: 3rem; height: 3rem'> *Wig Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs' target='_blank'>wigs</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/temaki-window.svg' style='width: 3rem; height: 3rem'> *Window Blind Store* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind' target='_blank'>window_blind</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-alcohol-shop.svg' style='width: 3rem; height: 3rem'> *Wine Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine' target='_blank'>wine</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/shops/shop-disused.svg' style='width: 3rem; height: 3rem'> *This shop is no longer used. It is vacant* is shown if with disused:shop=
|
||||
|
||||
This tagrendering has labels
|
||||
`description`
|
||||
|
|
@ -426,6 +429,15 @@ The question is `Does this shop offer a binding service?`
|
|||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:print' target='_blank'>service:print</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print%3Dyes' target='_blank'>yes</a> | shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$
|
||||
|
||||
### optometrist_service
|
||||
|
||||
The question is `Are medical services available here?`
|
||||
|
||||
- *This shop offers eye exams by certified optometrists* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist' target='_blank'>optometrist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healtcare' target='_blank'>not:healtcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healtcare%3Doptometrist' target='_blank'>optometrist</a>
|
||||
- *This shop offers hearing tests by a certified audiologist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist' target='_blank'>audiologist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healthcare' target='_blank'>not:healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healthcare%3Daudiologist' target='_blank'>audiologist</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician' target='_blank'>optician</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aid' target='_blank'>hearing_aid</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply' target='_blank'>medical_supply</a>
|
||||
|
||||
### key_cutter
|
||||
|
||||
The question is `Does this shop offer key cutting?`
|
||||
|
|
@ -888,10 +900,11 @@ This tagrendering has labels
|
|||
| shop_types.162 | Wig Shop | shop=wigs |
|
||||
| shop_types.163 | Window Blind Store | shop=window_blind |
|
||||
| shop_types.164 | Wine Shop | shop=wine |
|
||||
| shop_types.165 | This shop is no longer used. It is vacant | disused:shop= | (shop=disused | shop=vacant | disused:shop~^(.+)$ | abandoned:shop~^(.+)$) |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ A shop
|
|||
- [single_level](#single_level)
|
||||
- [copyshop-print-sizes](#copyshop-print-sizes)
|
||||
- [copyshop-binding](#copyshop-binding)
|
||||
- [optometrist_service](#optometrist_service)
|
||||
- [key_cutter](#key_cutter)
|
||||
- [sells_new_bikes](#sells_new_bikes)
|
||||
- [bike_second_hand](#bike_second_hand)
|
||||
|
|
@ -92,6 +93,7 @@ Elements must match **all** 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/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/service:binding#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abinding/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/healthcare#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/healthcare/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Aretail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:second_hand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Asecond_hand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Arepair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) |
|
||||
|
|
@ -312,6 +314,7 @@ The question is `What kind of shop is this?`
|
|||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-shop.svg' style='width: 3rem; height: 3rem'> *Wig Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs' target='_blank'>wigs</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/temaki-window.svg' style='width: 3rem; height: 3rem'> *Window Blind Store* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind' target='_blank'>window_blind</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-alcohol-shop.svg' style='width: 3rem; height: 3rem'> *Wine Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine' target='_blank'>wine</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/shops/shop-disused.svg' style='width: 3rem; height: 3rem'> *This shop is no longer used. It is vacant* is shown if with disused:shop=
|
||||
|
||||
This tagrendering has labels
|
||||
`description`
|
||||
|
|
@ -423,6 +426,15 @@ The question is `Does this shop offer a binding service?`
|
|||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:print' target='_blank'>service:print</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print%3Dyes' target='_blank'>yes</a> | shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$
|
||||
|
||||
### optometrist_service
|
||||
|
||||
The question is `Are medical services available here?`
|
||||
|
||||
- *This shop offers eye exams by certified optometrists* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist' target='_blank'>optometrist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healtcare' target='_blank'>not:healtcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healtcare%3Doptometrist' target='_blank'>optometrist</a>
|
||||
- *This shop offers hearing tests by a certified audiologist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist' target='_blank'>audiologist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healthcare' target='_blank'>not:healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healthcare%3Daudiologist' target='_blank'>audiologist</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician' target='_blank'>optician</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aid' target='_blank'>hearing_aid</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply' target='_blank'>medical_supply</a>
|
||||
|
||||
### key_cutter
|
||||
|
||||
The question is `Does this shop offer key cutting?`
|
||||
|
|
@ -872,10 +884,11 @@ This tagrendering has labels
|
|||
| shop_types.162 | Wig Shop | shop=wigs |
|
||||
| shop_types.163 | Window Blind Store | shop=window_blind |
|
||||
| shop_types.164 | Wine Shop | shop=wine |
|
||||
| shop_types.165 | This shop is no longer used. It is vacant | disused:shop= | (shop=disused | shop=vacant | disused:shop~^(.+)$ | abandoned:shop~^(.+)$) |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ A shop
|
|||
- [single_level](#single_level)
|
||||
- [copyshop-print-sizes](#copyshop-print-sizes)
|
||||
- [copyshop-binding](#copyshop-binding)
|
||||
- [optometrist_service](#optometrist_service)
|
||||
- [key_cutter](#key_cutter)
|
||||
- [sells_new_bikes](#sells_new_bikes)
|
||||
- [bike_second_hand](#bike_second_hand)
|
||||
|
|
@ -92,6 +93,7 @@ Elements must match **all** 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/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/service:binding#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abinding/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/healthcare#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/healthcare/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Aretail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:second_hand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Asecond_hand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Arepair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) |
|
||||
|
|
@ -312,6 +314,7 @@ The question is `What kind of shop is this?`
|
|||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-shop.svg' style='width: 3rem; height: 3rem'> *Wig Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs' target='_blank'>wigs</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/temaki-window.svg' style='width: 3rem; height: 3rem'> *Window Blind Store* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind' target='_blank'>window_blind</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-alcohol-shop.svg' style='width: 3rem; height: 3rem'> *Wine Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine' target='_blank'>wine</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/shops/shop-disused.svg' style='width: 3rem; height: 3rem'> *This shop is no longer used. It is vacant* is shown if with disused:shop=
|
||||
|
||||
This tagrendering has labels
|
||||
`description`
|
||||
|
|
@ -423,6 +426,15 @@ The question is `Does this shop offer a binding service?`
|
|||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:print' target='_blank'>service:print</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print%3Dyes' target='_blank'>yes</a> | shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$
|
||||
|
||||
### optometrist_service
|
||||
|
||||
The question is `Are medical services available here?`
|
||||
|
||||
- *This shop offers eye exams by certified optometrists* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist' target='_blank'>optometrist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healtcare' target='_blank'>not:healtcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healtcare%3Doptometrist' target='_blank'>optometrist</a>
|
||||
- *This shop offers hearing tests by a certified audiologist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist' target='_blank'>audiologist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healthcare' target='_blank'>not:healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healthcare%3Daudiologist' target='_blank'>audiologist</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician' target='_blank'>optician</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aid' target='_blank'>hearing_aid</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply' target='_blank'>medical_supply</a>
|
||||
|
||||
### key_cutter
|
||||
|
||||
The question is `Does this shop offer key cutting?`
|
||||
|
|
@ -872,10 +884,11 @@ This tagrendering has labels
|
|||
| shop_types.162 | Wig Shop | shop=wigs |
|
||||
| shop_types.163 | Window Blind Store | shop=window_blind |
|
||||
| shop_types.164 | Wine Shop | shop=wine |
|
||||
| shop_types.165 | This shop is no longer used. It is vacant | disused:shop= | (shop=disused | shop=vacant | disused:shop~^(.+)$ | abandoned:shop~^(.+)$) |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ A shop
|
|||
- [single_level](#single_level)
|
||||
- [copyshop-print-sizes](#copyshop-print-sizes)
|
||||
- [copyshop-binding](#copyshop-binding)
|
||||
- [optometrist_service](#optometrist_service)
|
||||
- [key_cutter](#key_cutter)
|
||||
- [sells_new_bikes](#sells_new_bikes)
|
||||
- [bike_second_hand](#bike_second_hand)
|
||||
|
|
@ -89,6 +90,7 @@ 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/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/service:binding#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abinding/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/healthcare#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/healthcare/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Aretail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:second_hand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Asecond_hand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Arepair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) |
|
||||
|
|
@ -298,6 +300,7 @@ The question is `What kind of shop is this?`
|
|||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-shop.svg' style='width: 3rem; height: 3rem'> *Wig Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs' target='_blank'>wigs</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/temaki-window.svg' style='width: 3rem; height: 3rem'> *Window Blind Store* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind' target='_blank'>window_blind</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-alcohol-shop.svg' style='width: 3rem; height: 3rem'> *Wine Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine' target='_blank'>wine</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/shops/shop-disused.svg' style='width: 3rem; height: 3rem'> *This shop is no longer used. It is vacant* is shown if with disused:shop=
|
||||
|
||||
This tagrendering has labels
|
||||
`description`
|
||||
|
|
@ -409,6 +412,15 @@ The question is `Does this shop offer a binding service?`
|
|||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:print' target='_blank'>service:print</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print%3Dyes' target='_blank'>yes</a> | shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$
|
||||
|
||||
### optometrist_service
|
||||
|
||||
The question is `Are medical services available here?`
|
||||
|
||||
- *This shop offers eye exams by certified optometrists* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist' target='_blank'>optometrist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healtcare' target='_blank'>not:healtcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healtcare%3Doptometrist' target='_blank'>optometrist</a>
|
||||
- *This shop offers hearing tests by a certified audiologist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist' target='_blank'>audiologist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healthcare' target='_blank'>not:healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healthcare%3Daudiologist' target='_blank'>audiologist</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician' target='_blank'>optician</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aid' target='_blank'>hearing_aid</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply' target='_blank'>medical_supply</a>
|
||||
|
||||
### key_cutter
|
||||
|
||||
The question is `Does this shop offer key cutting?`
|
||||
|
|
@ -863,10 +875,11 @@ This tagrendering has labels
|
|||
| shop_types.162 | Wig Shop | shop=wigs |
|
||||
| shop_types.163 | Window Blind Store | shop=window_blind |
|
||||
| shop_types.164 | Wine Shop | shop=wine |
|
||||
| shop_types.165 | This shop is no longer used. It is vacant | disused:shop= | (shop=disused | shop=vacant | disused:shop~^(.+)$ | abandoned:shop~^(.+)$) |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ A shop
|
|||
- [single_level](#single_level)
|
||||
- [copyshop-print-sizes](#copyshop-print-sizes)
|
||||
- [copyshop-binding](#copyshop-binding)
|
||||
- [optometrist_service](#optometrist_service)
|
||||
- [key_cutter](#key_cutter)
|
||||
- [sells_new_bikes](#sells_new_bikes)
|
||||
- [bike_second_hand](#bike_second_hand)
|
||||
|
|
@ -91,6 +92,7 @@ Elements must match **all** 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/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/service:binding#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abinding/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/healthcare#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/healthcare/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Aretail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:second_hand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Asecond_hand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Arepair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) |
|
||||
|
|
@ -307,6 +309,7 @@ The question is `What kind of shop is this?`
|
|||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-shop.svg' style='width: 3rem; height: 3rem'> *Wig Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs' target='_blank'>wigs</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/temaki-window.svg' style='width: 3rem; height: 3rem'> *Window Blind Store* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind' target='_blank'>window_blind</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-alcohol-shop.svg' style='width: 3rem; height: 3rem'> *Wine Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine' target='_blank'>wine</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/shops/shop-disused.svg' style='width: 3rem; height: 3rem'> *This shop is no longer used. It is vacant* is shown if with disused:shop=
|
||||
|
||||
This tagrendering has labels
|
||||
`description`
|
||||
|
|
@ -418,6 +421,15 @@ The question is `Does this shop offer a binding service?`
|
|||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:print' target='_blank'>service:print</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print%3Dyes' target='_blank'>yes</a> | shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$
|
||||
|
||||
### optometrist_service
|
||||
|
||||
The question is `Are medical services available here?`
|
||||
|
||||
- *This shop offers eye exams by certified optometrists* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist' target='_blank'>optometrist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healtcare' target='_blank'>not:healtcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healtcare%3Doptometrist' target='_blank'>optometrist</a>
|
||||
- *This shop offers hearing tests by a certified audiologist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist' target='_blank'>audiologist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healthcare' target='_blank'>not:healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healthcare%3Daudiologist' target='_blank'>audiologist</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician' target='_blank'>optician</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aid' target='_blank'>hearing_aid</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply' target='_blank'>medical_supply</a>
|
||||
|
||||
### key_cutter
|
||||
|
||||
The question is `Does this shop offer key cutting?`
|
||||
|
|
@ -880,10 +892,11 @@ This tagrendering has labels
|
|||
| shop_types.162 | Wig Shop | shop=wigs |
|
||||
| shop_types.163 | Window Blind Store | shop=window_blind |
|
||||
| shop_types.164 | Wine Shop | shop=wine |
|
||||
| shop_types.165 | This shop is no longer used. It is vacant | disused:shop= | (shop=disused | shop=vacant | disused:shop~^(.+)$ | abandoned:shop~^(.+)$) |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -172,7 +172,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -203,7 +203,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -204,7 +204,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@ The following options to create new points are included:
|
|||
|
||||
- **a tabletennis table** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dpitch' target='_blank'>pitch</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtable_tennis' target='_blank'>table_tennis</a>
|
||||
- **a sport pitch** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dpitch' target='_blank'>pitch</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:fixme' target='_blank'>fixme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fixme%3DGeometry to be drawn, added by MapComplete' target='_blank'>Geometry to be drawn, added by MapComplete</a>
|
||||
- **a skatepark** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dpitch' target='_blank'>pitch</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dskateboard' target='_blank'>skateboard</a>
|
||||
- **a horse riding arena** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dpitch' target='_blank'>pitch</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dequestrian' target='_blank'>equestrian</a>
|
||||
|
||||
## Basic tags for this layer
|
||||
|
||||
|
|
@ -53,7 +55,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
|
|||
|
||||
| attribute | type | values which are supported by this layer |
|
||||
-----|-----|----- |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/sport#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/sport/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [sport](https://wiki.openstreetmap.org/wiki/Key:sport) | [string](../SpecialInputElements.md#string) | [basketball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbasketball) [soccer](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsoccer) [table_tennis](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtable_tennis) [tennis](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtennis) [korfball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dkorfball) [skateboard](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dskateboard) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/sport#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/sport/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [sport](https://wiki.openstreetmap.org/wiki/Key:sport) | [string](../SpecialInputElements.md#string) | [basketball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbasketball) [soccer](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsoccer) [table_tennis](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtable_tennis) [tennis](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtennis) [korfball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dkorfball) [skateboard](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dskateboard) [equestrian](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dequestrian) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/hoops#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/hoops/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [hoops](https://wiki.openstreetmap.org/wiki/Key:hoops) | Multiple choice | [1](https://wiki.openstreetmap.org/wiki/Tag:hoops%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:hoops%3D2) [4](https://wiki.openstreetmap.org/wiki/Tag:hoops%3D4) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/surface#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/surface/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [grass](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass) [sand](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones) [asphalt](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt) [concrete](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete) [fine_gravel](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dfine_gravel) [tartan](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dtartan) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:access%3Dlimited) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) |
|
||||
|
|
@ -79,6 +81,7 @@ The question is `Which sport can be played here?`
|
|||
- *Korfball is played here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dkorfball' target='_blank'>korfball</a>
|
||||
- *Basketball is played here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbasket' target='_blank'>basket</a>. _This option cannot be chosen as answer_
|
||||
- *This is a skatepark* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dskateboard' target='_blank'>skateboard</a>
|
||||
- *This is a horse riding arena* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dequestrian' target='_blank'>equestrian</a>
|
||||
|
||||
### basketball-hoops
|
||||
|
||||
|
|
@ -174,7 +177,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
@ -185,7 +188,8 @@ This tagrendering has labels
|
|||
| sport_pitch-sport.4 | Tennis is played here | sport=tennis |
|
||||
| sport_pitch-sport.5 | Korfball is played here | sport=korfball |
|
||||
| sport_pitch-sport.6 | Basketball is played here | sport=basket |
|
||||
| sport_pitch-sport.7 | This is a skatepark | sport~^(.+;)?skateboard(;.+)$ |
|
||||
| sport_pitch-sport.7 | This is a skatepark | sport=skateboard |
|
||||
| sport_pitch-sport.8 | This is a horse riding arena | sport=equestrian |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ A shop
|
|||
- [single_level](#single_level)
|
||||
- [copyshop-print-sizes](#copyshop-print-sizes)
|
||||
- [copyshop-binding](#copyshop-binding)
|
||||
- [optometrist_service](#optometrist_service)
|
||||
- [key_cutter](#key_cutter)
|
||||
- [sells_new_bikes](#sells_new_bikes)
|
||||
- [bike_second_hand](#bike_second_hand)
|
||||
|
|
@ -93,6 +94,7 @@ 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/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/service:binding#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abinding/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/healthcare#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/healthcare/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Aretail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:second_hand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Asecond_hand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Arepair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) |
|
||||
|
|
@ -302,6 +304,7 @@ The question is `What kind of shop is this?`
|
|||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-shop.svg' style='width: 3rem; height: 3rem'> *Wig Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs' target='_blank'>wigs</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/temaki-window.svg' style='width: 3rem; height: 3rem'> *Window Blind Store* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind' target='_blank'>window_blind</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/id_presets/maki-alcohol-shop.svg' style='width: 3rem; height: 3rem'> *Wine Shop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine' target='_blank'>wine</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/shops/shop-disused.svg' style='width: 3rem; height: 3rem'> *This shop is no longer used. It is vacant* is shown if with disused:shop=
|
||||
|
||||
This tagrendering has labels
|
||||
`description`
|
||||
|
|
@ -413,6 +416,15 @@ The question is `Does this shop offer a binding service?`
|
|||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:print' target='_blank'>service:print</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print%3Dyes' target='_blank'>yes</a> | shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$
|
||||
|
||||
### optometrist_service
|
||||
|
||||
The question is `Are medical services available here?`
|
||||
|
||||
- *This shop offers eye exams by certified optometrists* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist' target='_blank'>optometrist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healtcare' target='_blank'>not:healtcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healtcare%3Doptometrist' target='_blank'>optometrist</a>
|
||||
- *This shop offers hearing tests by a certified audiologist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist' target='_blank'>audiologist</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:not:healthcare' target='_blank'>not:healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:healthcare%3Daudiologist' target='_blank'>audiologist</a>
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician' target='_blank'>optician</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aid' target='_blank'>hearing_aid</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply' target='_blank'>medical_supply</a>
|
||||
|
||||
### key_cutter
|
||||
|
||||
The question is `Does this shop offer key cutting?`
|
||||
|
|
@ -875,10 +887,11 @@ This tagrendering has labels
|
|||
| shop_types.162 | Wig Shop | shop=wigs |
|
||||
| shop_types.163 | Window Blind Store | shop=window_blind |
|
||||
| shop_types.164 | Wine Shop | shop=wine |
|
||||
| shop_types.165 | This shop is no longer used. It is vacant | disused:shop= | (shop=disused | shop=vacant | disused:shop~^(.+)$ | abandoned:shop~^(.+)$) |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -42,7 +42,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
|
|||
| attribute | type | values which are supported by this layer |
|
||||
-----|-----|----- |
|
||||
| <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) | [string](../SpecialInputElements.md#string) | [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/conveying#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/conveying/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [conveying](https://wiki.openstreetmap.org/wiki/Key:conveying) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:conveying%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:conveying%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/conveying#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/conveying/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [conveying](https://wiki.openstreetmap.org/wiki/Key:conveying) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:conveying%3Dyes) [reversible](https://wiki.openstreetmap.org/wiki/Tag:conveying%3Dreversible) [no](https://wiki.openstreetmap.org/wiki/Tag:conveying%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/handrail#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/handrail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [handrail](https://wiki.openstreetmap.org/wiki/Key:handrail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/tactile_writing#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/tactile_writing/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [tactile_writing](https://wiki.openstreetmap.org/wiki/Key:tactile_writing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_writing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_writing%3Dno) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/incline#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/incline/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [incline](https://wiki.openstreetmap.org/wiki/Key:incline) | [slope](../SpecialInputElements.md#slope) | |
|
||||
|
|
@ -65,9 +65,11 @@ The question is `Between which levels are these stairs?`
|
|||
|
||||
### conveying
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
The question is `Is this an escalator?`
|
||||
|
||||
- *This is an escalator* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:conveying' target='_blank'>conveying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:conveying%3Dyes' target='_blank'>yes</a>
|
||||
- *This is an escalator moving in the direction of the arrows* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:conveying' target='_blank'>conveying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:conveying%3Dforward' target='_blank'>forward</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:conveying' target='_blank'>conveying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:conveying%3Dbackward' target='_blank'>backward</a>. _This option cannot be chosen as answer_
|
||||
- *This is a reversible escalator* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:conveying' target='_blank'>conveying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:conveying%3Dreversible' target='_blank'>reversible</a>
|
||||
- *This is not an escalator* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:conveying' target='_blank'>conveying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:conveying%3Dno' target='_blank'>no</a>
|
||||
- *This is not an escalator* is shown if with conveying=. _This option cannot be chosen as answer_
|
||||
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ This tagrendering has labels
|
|||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| open_now.0 | Open now | _isOpen=yes |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ This layer shows surveillance cameras and allows a contributor to update informa
|
|||
- [camera_direction](#camera_direction)
|
||||
- [Operator](#operator)
|
||||
- [Surveillance type: public, outdoor, indoor](#surveillance-type-public,-outdoor,-indoor)
|
||||
- [is_indoor](#is_indoor)
|
||||
- [camera_is_indoor](#camera_is_indoor)
|
||||
- [Level](#level)
|
||||
- [Surveillance:zone](#surveillancezone)
|
||||
- [camera:mount](#cameramount)
|
||||
|
|
@ -59,7 +59,7 @@ Elements must match **all** of the following expressions:
|
|||
| attribute | type | values which are supported by this layer |
|
||||
-----|-----|----- |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/surveillance:type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/surveillance%3Atype/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [surveillance:type](https://wiki.openstreetmap.org/wiki/Key:surveillance:type) | Multiple choice | [camera](https://wiki.openstreetmap.org/wiki/Tag:surveillance:type%3Dcamera) [ALPR](https://wiki.openstreetmap.org/wiki/Tag:surveillance:type%3DALPR) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/camera:type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/camera%3Atype/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [camera:type](https://wiki.openstreetmap.org/wiki/Key:camera:type) | Multiple choice | [fixed](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dfixed) [dome](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Ddome) [panning](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dpanning) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/camera:type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/camera%3Atype/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [camera:type](https://wiki.openstreetmap.org/wiki/Key:camera:type) | Multiple choice | [fixed](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dfixed) [dome](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Ddome) [panning](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dpanning) [doorbell](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Ddoorbell) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/camera:direction#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/camera%3Adirection/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [camera:direction](https://wiki.openstreetmap.org/wiki/Key:camera:direction) | [direction](../SpecialInputElements.md#direction) | |
|
||||
| <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/surveillance#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/surveillance/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [surveillance](https://wiki.openstreetmap.org/wiki/Key:surveillance) | Multiple choice | [public](https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Dpublic) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Doutdoor) [indoor](https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Dindoor) |
|
||||
|
|
@ -87,6 +87,7 @@ The question is `What kind of camera is this?`
|
|||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/themes/surveillance/cam_right.svg' style='width: 3rem; height: 3rem'> *A fixed (non-moving) camera* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:camera:type' target='_blank'>camera:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dfixed' target='_blank'>fixed</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/themes/surveillance/dome.svg' style='width: 3rem; height: 3rem'> *A dome camera (which can turn)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:camera:type' target='_blank'>camera:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Ddome' target='_blank'>dome</a>
|
||||
- *A panning camera* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:camera:type' target='_blank'>camera:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dpanning' target='_blank'>panning</a>
|
||||
- <img src='https://raw.githubusercontent.com/pietervdvn/MapComplete/develop/./assets/layers/surveillance_camera/doorbell.svg' style='width: 3rem; height: 3rem'> *A doorbell which might be turned on remotely at any time or by motion detection. These are typically <i>Smart</i>, internet-connected doorbells. Typical brands are Ring, Google Nest, Eufy, ...* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:camera:type' target='_blank'>camera:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Ddoorbell' target='_blank'>doorbell</a>
|
||||
|
||||
### camera_direction
|
||||
|
||||
|
|
@ -108,22 +109,20 @@ The question is `What kind of surveillance is this camera?`
|
|||
- *An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, …)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance' target='_blank'>surveillance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Doutdoor' target='_blank'>outdoor</a>
|
||||
- *A private indoor area is surveilled, e.g. a shop, a private underground parking, …* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance' target='_blank'>surveillance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Dindoor' target='_blank'>indoor</a>
|
||||
|
||||
### is_indoor
|
||||
### camera_is_indoor
|
||||
|
||||
The question is `Is the public space surveilled by this camera an indoor or outdoor space?`
|
||||
The question is `Is this camera located inside or outside?`
|
||||
|
||||
- *This camera 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 camera 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>
|
||||
- *This camera is probably located outdoors* is shown if with indoor=. _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:surveillance:type' target='_blank'>surveillance:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:type%3Dpublic' target='_blank'>public</a>
|
||||
|
||||
### Level
|
||||
|
||||
The question is `On which level is this camera located?`
|
||||
*Located on level {level}* is shown if `level` is set
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: <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> | <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:type' target='_blank'>surveillance:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:type%3Dye' target='_blank'>ye</a>
|
||||
This tagrendering is only visible in the popup if the following condition is met: (<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> | <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance' target='_blank'>surveillance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Dindoor' target='_blank'>indoor</a>) & (<a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:type' target='_blank'>surveillance:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:type%3Dalpr' target='_blank'>alpr</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:type' target='_blank'>surveillance:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:type%3Dcamera' target='_blank'>camera</a>) & camera:type!=doorbell
|
||||
|
||||
### Surveillance:zone
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ Layer showing tactile maps, which can be used by visually impaired people to nav
|
|||
## Themes using this layer
|
||||
|
||||
- [blind_osm](https://mapcomplete.org/blind_osm)
|
||||
- [maps](https://mapcomplete.org/maps)
|
||||
- [personal](https://mapcomplete.org/personal)
|
||||
|
||||
## Presets
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ Layer showing tactile models, three-dimensional models of the surrounding area.
|
|||
## Themes using this layer
|
||||
|
||||
- [blind_osm](https://mapcomplete.org/blind_osm)
|
||||
- [maps](https://mapcomplete.org/maps)
|
||||
- [personal](https://mapcomplete.org/personal)
|
||||
|
||||
## Presets
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue