Full code cleanup
This commit is contained in:
parent
3a4a2a2016
commit
fa971ffbbf
300 changed files with 16352 additions and 19284 deletions
|
@ -5,17 +5,19 @@ Hi! Thanks for checking out how to contribute to MapComplete!
|
||||||
|
|
||||||
There are multiple ways to contribute:
|
There are multiple ways to contribute:
|
||||||
|
|
||||||
- Translating MapComplete to your own language can be done on [this website](https://hosted.weblate.org/projects/mapcomplete/)
|
- Translating MapComplete to your own language can be done
|
||||||
|
on [this website](https://hosted.weblate.org/projects/mapcomplete/)
|
||||||
- If you encounter a bug, the [issue tracker](https://github.com/pietervdvn/MapComplete/issues) is the place to be
|
- If you encounter a bug, the [issue tracker](https://github.com/pietervdvn/MapComplete/issues) is the place to be
|
||||||
- If you want to improve a theme, create a new theme, spot a typo in the repo... the best way is to open a pull request.
|
- If you want to improve a theme, create a new theme, spot a typo in the repo... the best way is to open a pull request.
|
||||||
|
|
||||||
People who stick around and contribute in a meaningful way, _might_ be granted write access to the repository. This is done on a purely subjective basis, e.g. after a few pull requests and if you are a member of the OSM community.
|
People who stick around and contribute in a meaningful way, _might_ be granted write access to the repository. This is
|
||||||
|
done on a purely subjective basis, e.g. after a few pull requests and if you are a member of the OSM community.
|
||||||
|
|
||||||
Rights of contributors
|
Rights of contributors
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
If you have write access to the repository, you can make a fork of an already existing branch and push this new branch to
|
If you have write access to the repository, you can make a fork of an already existing branch and push this new branch
|
||||||
github. This means that this branch will be _automatically built_ and be **deployed**
|
to github. This means that this branch will be _automatically built_ and be **deployed**
|
||||||
to `https://pietervdvn.github.io/mc/<branchname>`. You can see the deploy process
|
to `https://pietervdvn.github.io/mc/<branchname>`. You can see the deploy process
|
||||||
on [Github Actions](https://github.com/pietervdvn/MapComplete/actions). Don't worry about pushing too much. These
|
on [Github Actions](https://github.com/pietervdvn/MapComplete/actions). Don't worry about pushing too much. These
|
||||||
deploys are free and totally automatic. They might fail if something is wrong, but this will hinder no-one.
|
deploys are free and totally automatic. They might fail if something is wrong, but this will hinder no-one.
|
||||||
|
@ -30,9 +32,9 @@ As a non-admin contributor, you can _not_ make changes to the `master` nor to th
|
||||||
soon as master is changed, this is built and deployed on `mapcomplete.osm.be`, which a lot of people use. An error there
|
soon as master is changed, this is built and deployed on `mapcomplete.osm.be`, which a lot of people use. An error there
|
||||||
will cause a lot of grieve.
|
will cause a lot of grieve.
|
||||||
|
|
||||||
A push on `develop` is automatically deployed to [pietervdvn.github.io/mc/develop] which is used by quite some contributors.
|
A push on `develop` is automatically deployed to [pietervdvn.github.io/mc/develop] which is used by quite some
|
||||||
However, people using this version should know that this is a testing ground for new features and might contain a bug every now
|
contributors. However, people using this version should know that this is a testing ground for new features and might
|
||||||
and then.
|
contain a bug every now and then.
|
||||||
|
|
||||||
In other words, to get your theme deployed on the main instances, you'll still have to create a pull request. The
|
In other words, to get your theme deployed on the main instances, you'll still have to create a pull request. The
|
||||||
maintainers will then doublecheck and pull it in.
|
maintainers will then doublecheck and pull it in.
|
||||||
|
|
|
@ -12,28 +12,10 @@ import Link from "../UI/Base/Link";
|
||||||
import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson";
|
import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson";
|
||||||
|
|
||||||
export class AllKnownLayouts {
|
export class AllKnownLayouts {
|
||||||
// Must be below the list...
|
|
||||||
private static sharedLayers: Map<string, LayerConfig> = AllKnownLayouts.getSharedLayers();
|
|
||||||
|
|
||||||
private static getSharedLayers(): Map<string, LayerConfig> {
|
|
||||||
const sharedLayers = new Map<string, LayerConfig>();
|
|
||||||
for (const layer of known_themes.layers) {
|
|
||||||
try {
|
|
||||||
// @ts-ignore
|
|
||||||
const parsed = new LayerConfig(layer, "shared_layers")
|
|
||||||
sharedLayers.set(layer.id, parsed);
|
|
||||||
} catch (e) {
|
|
||||||
if (!Utils.runningFromConsole) {
|
|
||||||
console.error("CRITICAL: Could not parse a layer configuration!", layer.id, " due to", e)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return sharedLayers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static allKnownLayouts: Map<string, LayoutConfig> = AllKnownLayouts.AllLayouts();
|
public static allKnownLayouts: Map<string, LayoutConfig> = AllKnownLayouts.AllLayouts();
|
||||||
public static layoutsList: LayoutConfig[] = AllKnownLayouts.GenerateOrderedList(AllKnownLayouts.allKnownLayouts);
|
public static layoutsList: LayoutConfig[] = AllKnownLayouts.GenerateOrderedList(AllKnownLayouts.allKnownLayouts);
|
||||||
|
// Must be below the list...
|
||||||
|
private static sharedLayers: Map<string, LayerConfig> = AllKnownLayouts.getSharedLayers();
|
||||||
|
|
||||||
public static AllPublicLayers() {
|
public static AllPublicLayers() {
|
||||||
const allLayers: LayerConfig[] = []
|
const allLayers: LayerConfig[] = []
|
||||||
|
@ -54,8 +36,7 @@ export class AllKnownLayouts {
|
||||||
}
|
}
|
||||||
return allLayers
|
return allLayers
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static GenOverviewsForSingleLayer(callback: (layer: LayerConfig, element: BaseUIElement) => void): void {
|
public static GenOverviewsForSingleLayer(callback: (layer: LayerConfig, element: BaseUIElement) => void): void {
|
||||||
const allLayers: LayerConfig[] = Array.from(AllKnownLayouts.sharedLayers.values())
|
const allLayers: LayerConfig[] = Array.from(AllKnownLayouts.sharedLayers.values())
|
||||||
.filter(layer => Constants.priviliged_layers.indexOf(layer.id) < 0)
|
.filter(layer => Constants.priviliged_layers.indexOf(layer.id) < 0)
|
||||||
|
@ -82,12 +63,12 @@ export class AllKnownLayouts {
|
||||||
|
|
||||||
|
|
||||||
// Determine the cross-dependencies
|
// Determine the cross-dependencies
|
||||||
const layerIsNeededBy : Map<string, string[]> = new Map<string, string[]>()
|
const layerIsNeededBy: Map<string, string[]> = new Map<string, string[]>()
|
||||||
|
|
||||||
for (const layer of allLayers) {
|
for (const layer of allLayers) {
|
||||||
for (const dep of DependencyCalculator.getLayerDependencies(layer)) {
|
for (const dep of DependencyCalculator.getLayerDependencies(layer)) {
|
||||||
const dependency = dep.neededLayer
|
const dependency = dep.neededLayer
|
||||||
if(!layerIsNeededBy.has(dependency)){
|
if (!layerIsNeededBy.has(dependency)) {
|
||||||
layerIsNeededBy.set(dependency, [])
|
layerIsNeededBy.set(dependency, [])
|
||||||
}
|
}
|
||||||
layerIsNeededBy.get(dependency).push(layer.id)
|
layerIsNeededBy.get(dependency).push(layer.id)
|
||||||
|
@ -97,7 +78,7 @@ export class AllKnownLayouts {
|
||||||
}
|
}
|
||||||
|
|
||||||
allLayers.forEach((layer) => {
|
allLayers.forEach((layer) => {
|
||||||
const element = layer.GenerateDocumentation(themesPerLayer.get(layer.id),layerIsNeededBy,DependencyCalculator.getLayerDependencies(layer))
|
const element = layer.GenerateDocumentation(themesPerLayer.get(layer.id), layerIsNeededBy, DependencyCalculator.getLayerDependencies(layer))
|
||||||
callback(layer, element)
|
callback(layer, element)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -131,22 +112,21 @@ export class AllKnownLayouts {
|
||||||
|
|
||||||
|
|
||||||
// Determine the cross-dependencies
|
// Determine the cross-dependencies
|
||||||
const layerIsNeededBy : Map<string, string[]> = new Map<string, string[]>()
|
const layerIsNeededBy: Map<string, string[]> = new Map<string, string[]>()
|
||||||
|
|
||||||
for (const layer of allLayers) {
|
for (const layer of allLayers) {
|
||||||
for (const dep of DependencyCalculator.getLayerDependencies(layer)) {
|
for (const dep of DependencyCalculator.getLayerDependencies(layer)) {
|
||||||
const dependency = dep.neededLayer
|
const dependency = dep.neededLayer
|
||||||
if(!layerIsNeededBy.has(dependency)){
|
if (!layerIsNeededBy.has(dependency)) {
|
||||||
layerIsNeededBy.set(dependency, [])
|
layerIsNeededBy.set(dependency, [])
|
||||||
}
|
}
|
||||||
layerIsNeededBy.get(dependency).push(layer.id)
|
layerIsNeededBy.get(dependency).push(layer.id)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return new Combine([
|
return new Combine([
|
||||||
new Title("Special and other useful layers", 1),
|
new Title("Special and other useful layers", 1),
|
||||||
"MapComplete has a few data layers available in the theme which have special properties through builtin-hooks. Furthermore, there are some normal layers (which are built from normal Theme-config files) but are so general that they get a mention here.",
|
"MapComplete has a few data layers available in the theme which have special properties through builtin-hooks. Furthermore, there are some normal layers (which are built from normal Theme-config files) but are so general that they get a mention here.",
|
||||||
|
@ -154,15 +134,32 @@ export class AllKnownLayouts {
|
||||||
new List(Constants.priviliged_layers.map(id => "[" + id + "](#" + id + ")")),
|
new List(Constants.priviliged_layers.map(id => "[" + id + "](#" + id + ")")),
|
||||||
...Constants.priviliged_layers
|
...Constants.priviliged_layers
|
||||||
.map(id => AllKnownLayouts.sharedLayers.get(id))
|
.map(id => AllKnownLayouts.sharedLayers.get(id))
|
||||||
.map((l) => l.GenerateDocumentation(themesPerLayer.get(l.id), layerIsNeededBy, DependencyCalculator.getLayerDependencies(l),Constants.added_by_default.indexOf(l.id) >= 0, Constants.no_include.indexOf(l.id) < 0)),
|
.map((l) => l.GenerateDocumentation(themesPerLayer.get(l.id), layerIsNeededBy, DependencyCalculator.getLayerDependencies(l), Constants.added_by_default.indexOf(l.id) >= 0, Constants.no_include.indexOf(l.id) < 0)),
|
||||||
new Title("Normal layers", 1),
|
new Title("Normal layers", 1),
|
||||||
"The following layers are included in MapComplete:",
|
"The following layers are included in MapComplete:",
|
||||||
new List(Array.from(AllKnownLayouts.sharedLayers.keys()).map(id => new Link(id, "./Layers/"+id+".md")))
|
new List(Array.from(AllKnownLayouts.sharedLayers.keys()).map(id => new Link(id, "./Layers/" + id + ".md")))
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static getSharedLayers(): Map<string, LayerConfig> {
|
||||||
|
const sharedLayers = new Map<string, LayerConfig>();
|
||||||
|
for (const layer of known_themes.layers) {
|
||||||
|
try {
|
||||||
|
// @ts-ignore
|
||||||
|
const parsed = new LayerConfig(layer, "shared_layers")
|
||||||
|
sharedLayers.set(layer.id, parsed);
|
||||||
|
} catch (e) {
|
||||||
|
if (!Utils.runningFromConsole) {
|
||||||
|
console.error("CRITICAL: Could not parse a layer configuration!", layer.id, " due to", e)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return sharedLayers;
|
||||||
|
}
|
||||||
|
|
||||||
private static GenerateOrderedList(allKnownLayouts: Map<string, LayoutConfig>): LayoutConfig[] {
|
private static GenerateOrderedList(allKnownLayouts: Map<string, LayoutConfig>): LayoutConfig[] {
|
||||||
const list = []
|
const list = []
|
||||||
allKnownLayouts.forEach((layout) => {
|
allKnownLayouts.forEach((layout) => {
|
||||||
|
@ -174,20 +171,20 @@ export class AllKnownLayouts {
|
||||||
private static AllLayouts(): Map<string, LayoutConfig> {
|
private static AllLayouts(): Map<string, LayoutConfig> {
|
||||||
const dict: Map<string, LayoutConfig> = new Map();
|
const dict: Map<string, LayoutConfig> = new Map();
|
||||||
for (const layoutConfigJson of known_themes.themes) {
|
for (const layoutConfigJson of known_themes.themes) {
|
||||||
const layout = new LayoutConfig(<LayoutConfigJson> layoutConfigJson, true)
|
const layout = new LayoutConfig(<LayoutConfigJson>layoutConfigJson, true)
|
||||||
dict.set(layout.id, layout)
|
dict.set(layout.id, layout)
|
||||||
for (let i = 0; i < layout.layers.length; i++) {
|
for (let i = 0; i < layout.layers.length; i++) {
|
||||||
let layer = layout.layers[i];
|
let layer = layout.layers[i];
|
||||||
if (typeof (layer) === "string") {
|
if (typeof (layer) === "string") {
|
||||||
layer = AllKnownLayouts.sharedLayers.get(layer);
|
layer = AllKnownLayouts.sharedLayers.get(layer);
|
||||||
layout.layers[i] = layer
|
layout.layers[i] = layer
|
||||||
if (layer === undefined) {
|
if (layer === undefined) {
|
||||||
console.log("Defined layers are ", AllKnownLayouts.sharedLayers.keys())
|
console.log("Defined layers are ", AllKnownLayouts.sharedLayers.keys())
|
||||||
throw `Layer ${layer} was not found or defined - probably a type was made`
|
throw `Layer ${layer} was not found or defined - probably a type was made`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return dict;
|
return dict;
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,21 +31,21 @@ export default class SharedTagRenderings {
|
||||||
|
|
||||||
if (!iconsOnly) {
|
if (!iconsOnly) {
|
||||||
for (const key in questions) {
|
for (const key in questions) {
|
||||||
if(key === "id"){
|
if (key === "id") {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
dict.set(key, <TagRenderingConfigJson>questions[key])
|
dict.set(key, <TagRenderingConfigJson>questions[key])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (const key in icons) {
|
for (const key in icons) {
|
||||||
if(key === "id"){
|
if (key === "id") {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
dict.set(key, <TagRenderingConfigJson>icons[key])
|
dict.set(key, <TagRenderingConfigJson>icons[key])
|
||||||
}
|
}
|
||||||
|
|
||||||
dict.forEach((value, key) => {
|
dict.forEach((value, key) => {
|
||||||
if(key === "id"){
|
if (key === "id") {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
value.id = value.id ?? key;
|
value.id = value.id ?? key;
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,14 +1,11 @@
|
||||||
|
Metatags
|
||||||
|
|
||||||
Metatags
|
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [Metatags](#metatags)
|
1. [Metatags](#metatags)
|
||||||
- [Metatags calculated by MapComplete](#metatags-calculated-by-mapcomplete)
|
|
||||||
|
- [Metatags calculated by MapComplete](#metatags-calculated-by-mapcomplete)
|
||||||
+ [_lat, _lon](#_lat,-_lon)
|
+ [_lat, _lon](#_lat,-_lon)
|
||||||
+ [_layer](#_layer)
|
+ [_layer](#_layer)
|
||||||
+ [_surface, _surface:ha](#_surface,-_surfaceha)
|
+ [_surface, _surface:ha](#_surface,-_surfaceha)
|
||||||
|
@ -29,166 +26,108 @@
|
||||||
+ [memberships](#memberships)
|
+ [memberships](#memberships)
|
||||||
+ [get](#get)
|
+ [get](#get)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Metatags are extra tags available, in order to display more data or to give better questions.
|
Metatags are extra tags available, in order to display more data or to give better questions.
|
||||||
|
|
||||||
The are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags.
|
The are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an
|
||||||
|
overview of the available metatags.
|
||||||
|
|
||||||
**Hint:** when using metatags, add the [query parameter](URL_Parameters.md) `debug=true` to the URL. This will include a box in the popup for features which shows all the properties of the object
|
**Hint:** when using metatags, add the [query parameter](URL_Parameters.md) `debug=true` to the URL. This will include a
|
||||||
|
box in the popup for features which shows all the properties of the object
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Metatags calculated by MapComplete
|
Metatags calculated by MapComplete
|
||||||
------------------------------------
|
------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The following values are always calculated, by default, by MapComplete and are available automatically on all elements in every theme
|
The following values are always calculated, by default, by MapComplete and are available automatically on all elements
|
||||||
|
in every theme
|
||||||
|
|
||||||
|
|
||||||
### _lat, _lon
|
|
||||||
|
|
||||||
|
|
||||||
|
### _lat, _lon
|
||||||
|
|
||||||
The latitude and longitude of the point (or centerpoint in the case of a way/area)
|
The latitude and longitude of the point (or centerpoint in the case of a way/area)
|
||||||
|
|
||||||
|
### _layer
|
||||||
|
|
||||||
|
The layer-id to which this feature belongs. Note that this might be return any applicable if `passAllFeatures` is
|
||||||
|
defined.
|
||||||
|
|
||||||
|
### _surface, _surface:ha
|
||||||
|
|
||||||
### _layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The layer-id to which this feature belongs. Note that this might be return any applicable if `passAllFeatures` is defined.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _surface, _surface:ha
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The surface area of the feature, in square meters and in hectare. Not set on points and ways
|
The surface area of the feature, in square meters and in hectare. Not set on points and ways
|
||||||
|
|
||||||
This is a lazy metatag and is only calculated when needed
|
This is a lazy metatag and is only calculated when needed
|
||||||
|
|
||||||
|
### _length, _length:km
|
||||||
|
|
||||||
|
The total length of a feature in meters (and in kilometers, rounded to one decimal for '_length:km'). For a surface, the
|
||||||
|
length of the perimeter
|
||||||
|
|
||||||
### _length, _length:km
|
### Theme-defined keys
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The total length of a feature in meters (and in kilometers, rounded to one decimal for '_length:km'). For a surface, the length of the perimeter
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Theme-defined keys
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If 'units' is defined in the layoutConfig, then this metatagger will rewrite the specified keys to have the canonical form (e.g. `1meter` will be rewritten to `1m`)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _country
|
|
||||||
|
|
||||||
|
If 'units' is defined in the layoutConfig, then this metatagger will rewrite the specified keys to have the canonical
|
||||||
|
form (e.g. `1meter` will be rewritten to `1m`)
|
||||||
|
|
||||||
|
### _country
|
||||||
|
|
||||||
The country code of the property (with latlon2country)
|
The country code of the property (with latlon2country)
|
||||||
|
|
||||||
|
### _isOpen
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _isOpen
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If 'opening_hours' is present, it will add the current state of the feature (being 'yes' or 'no')
|
If 'opening_hours' is present, it will add the current state of the feature (being 'yes' or 'no')
|
||||||
|
|
||||||
This is a lazy metatag and is only calculated when needed
|
This is a lazy metatag and is only calculated when needed
|
||||||
|
|
||||||
|
### _direction:numerical, _direction:leftright
|
||||||
|
|
||||||
|
_direction:numerical is a normalized, numerical direction based on 'camera:direction' or on 'direction'; it is only
|
||||||
|
present if a valid direction is found (e.g. 38.5 or NE). _direction:leftright is either 'left' or 'right', which is
|
||||||
|
left-looking on the map or 'right-looking' on the map
|
||||||
|
|
||||||
### _direction:numerical, _direction:leftright
|
### _now:date, _now:datetime, _loaded:date, _loaded:_datetime
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_direction:numerical is a normalized, numerical direction based on 'camera:direction' or on 'direction'; it is only present if a valid direction is found (e.g. 38.5 or NE). _direction:leftright is either 'left' or 'right', which is left-looking on the map or 'right-looking' on the map
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _now:date, _now:datetime, _loaded:date, _loaded:_datetime
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Adds the time that the data got loaded - pretty much the time of downloading from overpass. The format is YYYY-MM-DD hh:mm, aka 'sortable' aka ISO-8601-but-not-entirely
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend
|
|
||||||
|
|
||||||
|
Adds the time that the data got loaded - pretty much the time of downloading from overpass. The format is YYYY-MM-DD hh:
|
||||||
|
mm, aka 'sortable' aka ISO-8601-but-not-entirely
|
||||||
|
|
||||||
|
### _last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend
|
||||||
|
|
||||||
Information about the last edit of this object.
|
Information about the last edit of this object.
|
||||||
|
|
||||||
|
### sidewalk:left, sidewalk:right, generic_key:left:property, generic_key:right:property
|
||||||
|
|
||||||
|
Rewrites tags from 'generic_key:both:property' as 'generic_key:left:property' and 'generic_key:right:property' (and
|
||||||
|
similar for sidewalk tagging). Note that this rewritten tags _will be reuploaded on a change_. To prevent to much
|
||||||
|
unrelated retagging, this is only enabled if the layer has at least some lineRenderings with offset defined
|
||||||
|
|
||||||
|
### _geometry:type
|
||||||
|
|
||||||
|
Adds the geometry type as property. This is identical to the GoeJson geometry type and is one of `Point`,`LineString`
|
||||||
### sidewalk:left, sidewalk:right, generic_key:left:property, generic_key:right:property
|
, `Polygon` and exceptionally `MultiPolygon` or `MultiLineString`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Rewrites tags from 'generic_key:both:property' as 'generic_key:left:property' and 'generic_key:right:property' (and similar for sidewalk tagging). Note that this rewritten tags _will be reuploaded on a change_. To prevent to much unrelated retagging, this is only enabled if the layer has at least some lineRenderings with offset defined
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _geometry:type
|
Calculating tags with Javascript
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Adds the geometry type as property. This is identical to the GoeJson geometry type and is one of `Point`,`LineString`, `Polygon` and exceptionally `MultiPolygon` or `MultiLineString`
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Calculating tags with Javascript
|
|
||||||
----------------------------------
|
----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
In some cases, it is useful to have some tags calculated based on other properties. Some useful tags are available by default (e.g. `lat`, `lon`, `_country`), as detailed above.
|
In some cases, it is useful to have some tags calculated based on other properties. Some useful tags are available by
|
||||||
|
default (e.g. `lat`, `lon`, `_country`), as detailed above.
|
||||||
|
|
||||||
It is also possible to calculate your own tags - but this requires some javascript knowledge.
|
It is also possible to calculate your own tags - but this requires some javascript knowledge.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Before proceeding, some warnings:
|
Before proceeding, some warnings:
|
||||||
|
|
||||||
|
- DO NOT DO THIS AS BEGINNER
|
||||||
|
- **Only do this if all other techniques fail** This should _not_ be done to create a rendering effect, only to
|
||||||
|
calculate a specific value
|
||||||
|
- **THIS MIGHT BE DISABLED WITHOUT ANY NOTICE ON UNOFFICIAL THEMES** As unofficial themes might be loaded from the
|
||||||
|
internet, this is the equivalent of injecting arbitrary code into the client. It'll be disabled if abuse occurs.
|
||||||
|
|
||||||
|
To enable this feature, add a field `calculatedTags` in the layer object, e.g.:
|
||||||
- DO NOT DO THIS AS BEGINNER
|
|
||||||
- **Only do this if all other techniques fail** This should _not_ be done to create a rendering effect, only to calculate a specific value
|
|
||||||
- **THIS MIGHT BE DISABLED WITHOUT ANY NOTICE ON UNOFFICIAL THEMES** As unofficial themes might be loaded from the internet, this is the equivalent of injecting arbitrary code into the client. It'll be disabled if abuse occurs.
|
|
||||||
|
|
||||||
|
|
||||||
To enable this feature, add a field `calculatedTags` in the layer object, e.g.:
|
|
||||||
|
|
||||||
````
|
````
|
||||||
|
|
||||||
|
@ -204,92 +143,90 @@ To enable this feature, add a field `calculatedTags` in the layer object, e.g.:
|
||||||
|
|
||||||
````
|
````
|
||||||
|
|
||||||
|
The above code will be executed for every feature in the layer. The feature is accessible as `feat` and is an amended
|
||||||
|
geojson object:
|
||||||
|
|
||||||
|
- `area` contains the surface area (in square meters) of the object
|
||||||
|
- `lat` and `lon` contain the latitude and longitude
|
||||||
|
|
||||||
The above code will be executed for every feature in the layer. The feature is accessible as `feat` and is an amended geojson object:
|
Some advanced functions are available on **feat** as well:
|
||||||
|
|
||||||
|
- [distanceTo](#distanceTo)
|
||||||
|
- [overlapWith](#overlapWith)
|
||||||
|
- [intersectionsWith](#intersectionsWith)
|
||||||
|
- [closest](#closest)
|
||||||
|
- [closestn](#closestn)
|
||||||
|
- [memberships](#memberships)
|
||||||
|
- [get](#get)
|
||||||
|
|
||||||
|
### distanceTo
|
||||||
|
|
||||||
- `area` contains the surface area (in square meters) of the object
|
Calculates the distance between the feature and a specified point in meter. The input should either be a pair of
|
||||||
- `lat` and `lon` contain the latitude and longitude
|
coordinates, a geojson feature or the ID of an object
|
||||||
|
|
||||||
|
0. feature OR featureID OR longitude
|
||||||
|
1. undefined OR latitude
|
||||||
|
|
||||||
Some advanced functions are available on **feat** as well:
|
### overlapWith
|
||||||
|
|
||||||
- [distanceTo](#distanceTo)
|
Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded
|
||||||
- [overlapWith](#overlapWith)
|
in the feature is detected as well.If the current feature is a point, all features that this point is embeded in are
|
||||||
- [intersectionsWith](#intersectionsWith)
|
given.
|
||||||
- [closest](#closest)
|
|
||||||
- [closestn](#closestn)
|
|
||||||
- [memberships](#memberships)
|
|
||||||
- [get](#get)
|
|
||||||
|
|
||||||
|
|
||||||
### distanceTo
|
The returned value is `{ feat: GeoJSONFeature, overlap: number}[]` where `overlap` is the overlapping surface are (in
|
||||||
|
m²) for areas, the overlapping length (in meter) if the current feature is a line or `undefined` if the current feature
|
||||||
|
is a point. The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be
|
||||||
|
the first in the list
|
||||||
|
|
||||||
Calculates the distance between the feature and a specified point in meter. The input should either be a pair of coordinates, a geojson feature or the ID of an object
|
For example to get all objects which overlap or embed from a layer,
|
||||||
|
use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')`
|
||||||
|
|
||||||
0. feature OR featureID OR longitude
|
0. ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)
|
||||||
1. undefined OR latitude
|
|
||||||
|
|
||||||
|
|
||||||
### overlapWith
|
### intersectionsWith
|
||||||
|
|
||||||
Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded in the feature is detected as well.If the current feature is a point, all features that this point is embeded in are given.
|
Gives the intersection points with selected features. Only works with (Multi)Polygons and LineStrings.
|
||||||
|
|
||||||
The returned value is `{ feat: GeoJSONFeature, overlap: number}[]` where `overlap` is the overlapping surface are (in m²) for areas, the overlapping length (in meter) if the current feature is a line or `undefined` if the current feature is a point.
|
Returns a `{feat: GeoJson, intersections: [number,number][]}` where `feat` is the full, original feature. This list is
|
||||||
The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list
|
in random order.
|
||||||
|
|
||||||
For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')`
|
If the current feature is a point, this function will return an empty list. Points from other layers are ignored - even
|
||||||
|
if the points are parts of the current linestring.
|
||||||
|
|
||||||
0. ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)
|
0. ...layerIds - one or more layer ids of the layer from which every feature is checked for intersection)
|
||||||
|
|
||||||
|
|
||||||
### intersectionsWith
|
### closest
|
||||||
|
|
||||||
Gives the intersection points with selected features. Only works with (Multi)Polygons and LineStrings.
|
Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature.
|
||||||
|
In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if
|
||||||
|
nothing is found (or not yet laoded)
|
||||||
|
|
||||||
Returns a `{feat: GeoJson, intersections: [number,number][]}` where `feat` is the full, original feature. This list is in random order.
|
0. list of features or a layer name or '*' to get all features
|
||||||
|
|
||||||
If the current feature is a point, this function will return an empty list.
|
### closestn
|
||||||
Points from other layers are ignored - even if the points are parts of the current linestring.
|
|
||||||
|
|
||||||
0. ...layerIds - one or more layer ids of the layer from which every feature is checked for intersection)
|
Given either a list of geojson features or a single layer name, gives the n closest objects which are nearest to the
|
||||||
|
feature (excluding the feature itself). In the case of ways/polygons, only the centerpoint is considered. Returns a list
|
||||||
|
of `{feat: geojson, distance:number}` the empty list if nothing is found (or not yet loaded)
|
||||||
|
|
||||||
### closest
|
If a 'unique tag key' is given, the tag with this key will only appear once (e.g. if 'name' is given, all features will
|
||||||
|
have a different name)
|
||||||
|
|
||||||
Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature. In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if nothing is found (or not yet laoded)
|
0. list of features or layer name or '*' to get all features
|
||||||
|
1. amount of features
|
||||||
|
2. unique tag key (optional)
|
||||||
|
3. maxDistanceInMeters (optional)
|
||||||
|
|
||||||
0. list of features or a layer name or '*' to get all features
|
### memberships
|
||||||
|
|
||||||
|
|
||||||
### closestn
|
Gives a list of `{role: string, relation: Relation}`-objects, containing all the relations that this feature is part of.
|
||||||
|
|
||||||
Given either a list of geojson features or a single layer name, gives the n closest objects which are nearest to the feature (excluding the feature itself). In the case of ways/polygons, only the centerpoint is considered. Returns a list of `{feat: geojson, distance:number}` the empty list if nothing is found (or not yet loaded)
|
For example: `_part_of_walking_routes=feat.memberships().map(r => r.relation.tags.name).join(';')`
|
||||||
|
|
||||||
If a 'unique tag key' is given, the tag with this key will only appear once (e.g. if 'name' is given, all features will have a different name)
|
### get
|
||||||
|
|
||||||
0. list of features or layer name or '*' to get all features
|
Gets the property of the feature, parses it (as JSON) and returns it. Might return 'undefined' if not defined, null, ...
|
||||||
1. amount of features
|
|
||||||
2. unique tag key (optional)
|
|
||||||
3. maxDistanceInMeters (optional)
|
|
||||||
|
|
||||||
|
|
||||||
### memberships
|
0. key
|
||||||
|
|
||||||
Gives a list of `{role: string, relation: Relation}`-objects, containing all the relations that this feature is part of.
|
|
||||||
|
|
||||||
For example: `_part_of_walking_routes=feat.memberships().map(r => r.relation.tags.name).join(';')`
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### get
|
|
||||||
|
|
||||||
Gets the property of the feature, parses it (as JSON) and returns it. Might return 'undefined' if not defined, null, ...
|
|
||||||
|
|
||||||
0. key
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from SimpleMetaTagger, ExtraFunction
|
This document is autogenerated from SimpleMetaTagger, ExtraFunction
|
|
@ -106,7 +106,8 @@ Try removing `node_modules`, `package-lock.json` and `.cache`
|
||||||
Misc setup
|
Misc setup
|
||||||
----------
|
----------
|
||||||
|
|
||||||
~~The json-git-merger is used to quickly merge translation files, [documentation here](https://github.com/jonatanpedersen/git-json-merge#single-project--directory).~~
|
~~The json-git-merger is used to quickly merge translation
|
||||||
|
files, [documentation here](https://github.com/jonatanpedersen/git-json-merge#single-project--directory).~~
|
||||||
This merge driver is broken and would sometimes drop new questions or duplicate them... Not a good idea!
|
This merge driver is broken and would sometimes drop new questions or duplicate them... Not a good idea!
|
||||||
|
|
||||||
Overview of package.json-scripts
|
Overview of package.json-scripts
|
||||||
|
|
|
@ -9,20 +9,20 @@ Om een dataset te importeren, zijn er enkele stappen die doorlopen moeten worden
|
||||||
3. Community inlichten en Importeren voorbereiden
|
3. Community inlichten en Importeren voorbereiden
|
||||||
4. Importeren!
|
4. Importeren!
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 0. Geschikte data
|
## 0. Geschikte data
|
||||||
|
|
||||||
|
Is de data die je wenst te importeren geschikt voor OpenStreetMap? Is ze dus verifieerbaar ter plaatse door een andere
|
||||||
Is de data die je wenst te importeren geschikt voor OpenStreetMap? Is ze dus verifieerbaar ter plaatse door een andere contributor? Is ze ietwat permantent?
|
contributor? Is ze ietwat permantent?
|
||||||
|
|
||||||
## 1. Licentie nakijken
|
## 1. Licentie nakijken
|
||||||
|
|
||||||
|
Voordat we een dataset in OpenStreetMap kunnen toevoegen, moeten we nagaan of dit wel mag van de oorspronkelijke maker
|
||||||
|
van de dataset.
|
||||||
|
|
||||||
Voordat we een dataset in OpenStreetMap kunnen toevoegen, moeten we nagaan of dit wel mag van de oorspronkelijke maker van de dataset.
|
Is er een licentievermelding bij de databron? Kijk deze dan na of er toestemming is voor hergebruik (ook commercieel) en
|
||||||
|
redistributie. Indien er een attributie voor de dataset moet zijn, dan kan de bronvermelding in de changeset (als
|
||||||
Is er een licentievermelding bij de databron? Kijk deze dan na of er toestemming is voor hergebruik (ook commercieel) en redistributie.
|
source) aangeduid worden en/of kan de auteur vermeld worden op [deze wikipagina]. **Vraag na of deze bronvermelding
|
||||||
Indien er een attributie voor de dataset moet zijn, dan kan de bronvermelding in de changeset (als source) aangeduid worden en/of kan de auteur vermeld worden op [deze wikipagina]. **Vraag na of deze bronvermelding voldoende is**
|
voldoende is**
|
||||||
|
|
||||||
## 2. Importeermethode bepalen
|
## 2. Importeermethode bepalen
|
||||||
|
|
||||||
|
@ -35,37 +35,42 @@ De volgende vraag is hoe deze data geimporteerd zal worden. Ook hier moeten vers
|
||||||
|
|
||||||
### Wie importeert?
|
### Wie importeert?
|
||||||
|
|
||||||
|
Een ervaren contributor vergelijkt de bestaande OSM-data met de aangeleverde dataset. Duplicaten worden gefiltered en
|
||||||
|
geupdate. Dit is vooral geschikt voor kleinere dataset (maximaal enkele honderd feaures), maar is sneller (want minder
|
||||||
|
coordinatie is nodig).
|
||||||
|
|
||||||
Een ervaren contributor vergelijkt de bestaande OSM-data met de aangeleverde dataset. Duplicaten worden gefiltered en geupdate.
|
Indien een grotere dataset geimporteerd dient te worden, is dit vaak niet meer haalbaar door één enkele persoon. Als dit
|
||||||
Dit is vooral geschikt voor kleinere dataset (maximaal enkele honderd feaures), maar is sneller (want minder coordinatie is nodig).
|
het geval is, zal men contributors moeten zoeken om mee te helpen importeren. Dit kan heel passief (de data online
|
||||||
|
plaatsen en de community er attent op maken dat deze bestaat, in de hoop dat er iemand dit oppikt), tot actief een groep
|
||||||
Indien een grotere dataset geimporteerd dient te worden, is dit vaak niet meer haalbaar door één enkele persoon.
|
vrijwilligers zoeken. Ten slotte kan men hier ook een betaalde kracht voor inhuren - een GIS-expert binnen de
|
||||||
Als dit het geval is, zal men contributors moeten zoeken om mee te helpen importeren.
|
organisatie, een jobstudent of een OpenStreetMap-expert die men betaald
|
||||||
Dit kan heel passief (de data online plaatsen en de community er attent op maken dat deze bestaat, in de hoop dat er iemand dit oppikt),
|
|
||||||
tot actief een groep vrijwilligers zoeken.
|
|
||||||
Ten slotte kan men hier ook een betaalde kracht voor inhuren - een GIS-expert binnen de organisatie, een jobstudent of een OpenStreetMap-expert die men betaald
|
|
||||||
|
|
||||||
### Is een survey nodig?
|
### Is een survey nodig?
|
||||||
|
|
||||||
Indien de dataset oud is of veel fouten bevat, is het wellicht wenslijk om ter plaatse te gaan kijken. Dit hangt sterk af van dataset tot dataset, of men de data op luchtfoto's kan afleiden, via mapillary of OpenStreetCam de situatie ter plaatse kan zien, ...
|
Indien de dataset oud is of veel fouten bevat, is het wellicht wenslijk om ter plaatse te gaan kijken. Dit hangt sterk
|
||||||
|
af van dataset tot dataset, of men de data op luchtfoto's kan afleiden, via mapillary of OpenStreetCam de situatie ter
|
||||||
|
plaatse kan zien, ...
|
||||||
|
|
||||||
Vaak helpt het om terreinkennis te hebben, om de import voor te bereiden door alle data te overlopen, toe te voegen waar men zeker van is en enkel de twijfelgevallen over te houden voor import.
|
Vaak helpt het om terreinkennis te hebben, om de import voor te bereiden door alle data te overlopen, toe te voegen waar
|
||||||
|
men zeker van is en enkel de twijfelgevallen over te houden voor import.
|
||||||
|
|
||||||
### Welke tools worden ingezet?
|
### Welke tools worden ingezet?
|
||||||
|
|
||||||
Indien er één ervaren gebruiker de import doet, zal die wellicht JOSM (of zijn favoriete editor gebruiken).
|
Indien er één ervaren gebruiker de import doet, zal die wellicht JOSM (of zijn favoriete editor gebruiken).
|
||||||
|
|
||||||
Voor extreem grote imports (meer dan 1000 objecten) zal men wellicht ook coordineren via een tasking manager (om werkgebieden per contributor af te bakenen).
|
Voor extreem grote imports (meer dan 1000 objecten) zal men wellicht ook coordineren via een tasking manager (om
|
||||||
|
werkgebieden per contributor af te bakenen).
|
||||||
|
|
||||||
Voor een import waar survey wenselijk is (ihb indien er verschillende contributors betrokken zijn), kan MapComplete ingezet worden waar de na te zien data ingeladen wordt.
|
Voor een import waar survey wenselijk is (ihb indien er verschillende contributors betrokken zijn), kan MapComplete
|
||||||
MapComplete kan:
|
ingezet worden waar de na te zien data ingeladen wordt. MapComplete kan:
|
||||||
|
|
||||||
- tegelijk een laag van OpenStreetMap én de te importeren data tonen .
|
- tegelijk een laag van OpenStreetMap én de te importeren data tonen .
|
||||||
- de te importeren objecten verbergen indien er een OpenStreetMap-object dichtbij is
|
- de te importeren objecten verbergen indien er een OpenStreetMap-object dichtbij is
|
||||||
- aanbieden om het te importeren object toe te voegen indien dit object ontbreekt (*)
|
- aanbieden om het te importeren object toe te voegen indien dit object ontbreekt (*)
|
||||||
- aanbieden om gegevens van het te importeren object over te zetten op een naburig, soortgelijk object (*)
|
- aanbieden om gegevens van het te importeren object over te zetten op een naburig, soortgelijk object (*)
|
||||||
|
|
||||||
(*) Opties 3 en 4 vereisen een degelijke voorbereiding van de te importeren dataset en zijn niet altijd mogelijk of niet altijd de moeite
|
(*) Opties 3 en 4 vereisen een degelijke voorbereiding van de te importeren dataset en zijn niet altijd mogelijk of niet
|
||||||
|
altijd de moeite
|
||||||
|
|
||||||
Op de screenshot hieronder is een voorbeeld te zien van het importeren van een dataset van Brugse defibrillatoren.
|
Op de screenshot hieronder is een voorbeeld te zien van het importeren van een dataset van Brugse defibrillatoren.
|
||||||
|
|
||||||
|
@ -76,35 +81,40 @@ Op de screenshot hieronder is een voorbeeld te zien van het importeren van een d
|
||||||
|
|
||||||
![Voorbeeld van importeren](AED-import.nl.png)
|
![Voorbeeld van importeren](AED-import.nl.png)
|
||||||
|
|
||||||
Een geavanceerder voorbeeld van een import is het UK-address-importproject.
|
Een geavanceerder voorbeeld van een import is het UK-address-importproject. Hierbij wordt met een dataset van
|
||||||
Hierbij wordt met een dataset van vermoedelijke adressen gewerkt.
|
vermoedelijke adressen gewerkt. Indien er geen gebouw met adres dit vermoedelijke adres omsluit, wordt er gevraagd om
|
||||||
Indien er geen gebouw met adres dit vermoedelijke adres omsluit, wordt er gevraagd om dit adres toe te voegen. Door het adres via deze popup toe te voegen, wordt er meteen een INSPIRE-referentie meegegeven.
|
dit adres toe te voegen. Door het adres via deze popup toe te voegen, wordt er meteen een INSPIRE-referentie meegegeven.
|
||||||
|
|
||||||
![](uk_address_import.png)
|
![](uk_address_import.png)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Tagging bepalen en filteren voor duplicaten
|
### Tagging bepalen en filteren voor duplicaten
|
||||||
|
|
||||||
Ten slotte moet de data ook nog 'vertaald' worden naar het correct OpenStreetMap-formaat.
|
Ten slotte moet de data ook nog 'vertaald' worden naar het correct OpenStreetMap-formaat.
|
||||||
|
|
||||||
De softwareprogramma's ook overweg kunnen met het dataformaat. **Geojson** is een veilige keuze, want dit open formaat wordt door veel editors ondersteund. Met QGIS kunnen shapefiles omgezet worden in geojson. Een geojson kan ook als extra laag in MapComplete geladen worden.
|
De softwareprogramma's ook overweg kunnen met het dataformaat. **Geojson** is een veilige keuze, want dit open formaat
|
||||||
|
wordt door veel editors ondersteund. Met QGIS kunnen shapefiles omgezet worden in geojson. Een geojson kan ook als extra
|
||||||
|
laag in MapComplete geladen worden.
|
||||||
|
|
||||||
Daarnaast moeten de attributen van de data omgezet moeten worden naar de OpenStreetMap-attributen - raadpleeg de wiki voor de correcte tags.
|
Daarnaast moeten de attributen van de data omgezet moeten worden naar de OpenStreetMap-attributen - raadpleeg de wiki
|
||||||
Dit kan bijvoorbeeld met QGIS of met JOSM gedaan worden.
|
voor de correcte tags. Dit kan bijvoorbeeld met QGIS of met JOSM gedaan worden.
|
||||||
|
|
||||||
Ten slotte moet men ook voorkomen dat er duplicaten ontstaan: twee objecten in OpenStreetMap die beiden hetzelfde voorwerp voorstellen.
|
Ten slotte moet men ook voorkomen dat er duplicaten ontstaan: twee objecten in OpenStreetMap die beiden hetzelfde
|
||||||
|
voorwerp voorstellen.
|
||||||
|
|
||||||
## 3. Community inlichten en importeren voorbereiden
|
## 3. Community inlichten en importeren voorbereiden
|
||||||
|
|
||||||
Indien er een grote import gaat gebeuren, dient de community hiervan ingelicht te worden. Door dit in de community te bespreken, worden fouten voorkomen. Ook helpt dit om medecontributors warm te maken en niet-betrokken contributors geen verassingen te bezorgen.
|
Indien er een grote import gaat gebeuren, dient de community hiervan ingelicht te worden. Door dit in de community te
|
||||||
|
bespreken, worden fouten voorkomen. Ook helpt dit om medecontributors warm te maken en niet-betrokken contributors geen
|
||||||
|
verassingen te bezorgen.
|
||||||
|
|
||||||
Voor een import die enkel in Belgie plaatsvindt, volstaat een email naar talk@osm.be ; voor een globale import moet men ook best naar import@openstreetmap.org sturen.
|
Voor een import die enkel in Belgie plaatsvindt, volstaat een email naar talk@osm.be ; voor een globale import moet men
|
||||||
|
ook best naar import@openstreetmap.org sturen.
|
||||||
|
|
||||||
Voor kleinere datasets is dit slechts een formaliteit - zeker indien de data gedubbelcheckt gaat worden.
|
Voor kleinere datasets is dit slechts een formaliteit - zeker indien de data gedubbelcheckt gaat worden.
|
||||||
|
|
||||||
Ondertussen kan de import voorbereid worden door op kleine schaal te importeren (bv. een beperkt gebied of een beperkt aantal punten).
|
Ondertussen kan de import voorbereid worden door op kleine schaal te importeren (bv. een beperkt gebied of een beperkt
|
||||||
Indien er een MapComplete-thema wordt opgezet, kan dit ook al getest worden en naar de community gestuurd worden.
|
aantal punten). Indien er een MapComplete-thema wordt opgezet, kan dit ook al getest worden en naar de community
|
||||||
|
gestuurd worden.
|
||||||
|
|
||||||
## 4. Importeren!
|
## 4. Importeren!
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
|
address
|
||||||
|
|
||||||
address
|
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,107 +7,77 @@
|
||||||
|
|
||||||
Addresses
|
Addresses
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [address](#address)
|
1. [address](#address)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [housenumber](#housenumber)
|
+ [housenumber](#housenumber)
|
||||||
+ [street](#street)
|
+ [street](#street)
|
||||||
+ [fixme](#fixme)
|
+ [fixme](#fixme)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer will automatically load [named_streets](./named_streets.md) into the layout as it depends on it: A
|
||||||
|
calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _
|
||||||
|
closest_3_street_names)
|
||||||
- This layer will automatically load [named_streets](./named_streets.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_3_street_names)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/address/address.json)
|
[Go to the source code](../assets/layers/address/address.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- addr:housenumber~^..*$|addr:street~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- addr:housenumber~^..*$|addr:street~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:housenumber#values) [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:housenumber#values) [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D)
|
||||||
|
|
||||||
|
### housenumber
|
||||||
|
|
||||||
|
|
||||||
### housenumber
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the number of this house?**
|
The question is **What is the number of this house?**
|
||||||
|
|
||||||
This rendering asks information about the property [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber)
|
This rendering asks information about the
|
||||||
|
property [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber)
|
||||||
This is rendered with `The housenumber is <b>{addr:housenumber}</b>`
|
This is rendered with `The housenumber is <b>{addr:housenumber}</b>`
|
||||||
|
|
||||||
|
- **This building has no house number** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### street
|
||||||
- **This building has no house number** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### street
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What street is this address located in?**
|
The question is **What street is this address located in?**
|
||||||
|
|
||||||
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
||||||
This is rendered with `This address is in street <b>{addr:street}</b>`
|
This is rendered with `This address is in street <b>{addr:street}</b>`
|
||||||
|
|
||||||
|
- **Located in <b>{_closest_street:0:name}</b>** corresponds with addr:street=
|
||||||
|
- **Located in <b>{_closest_street:1:name}</b>** corresponds with addr:street=
|
||||||
|
- **Located in <b>{_closest_street:2:name}</b>** corresponds with addr:street=
|
||||||
|
|
||||||
|
### fixme
|
||||||
- **Located in <b>{_closest_street:0:name}</b>** corresponds with addr:street=
|
|
||||||
- **Located in <b>{_closest_street:1:name}</b>** corresponds with addr:street=
|
|
||||||
- **Located in <b>{_closest_street:2:name}</b>** corresponds with addr:street=
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### fixme
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What should be fixed here? Please explain**
|
The question is **What should be fixed here? Please explain**
|
||||||
|
|
||||||
This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme)
|
This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme)
|
||||||
This is rendered with `<b>Fixme description</b>{fixme}`
|
This is rendered with `<b>Fixme description</b>{fixme}`
|
||||||
|
|
||||||
|
- **No fixme - write something here to explain complicated cases** corresponds with
|
||||||
|
|
||||||
- **No fixme - write something here to explain complicated cases** corresponds with
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/address/address.json
|
This document is autogenerated from assets/layers/address/address.json
|
|
@ -1,92 +1,62 @@
|
||||||
|
all_streets
|
||||||
|
|
||||||
all_streets
|
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [all_streets](#all_streets)
|
1. [all_streets](#all_streets)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [lit](#lit)
|
+ [lit](#lit)
|
||||||
|
|
||||||
|
|
||||||
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cyclestreets](https://mapcomplete.osm.be/cyclestreets)
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
- [street_lighting](https://mapcomplete.osm.be/street_lighting)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cyclestreets](https://mapcomplete.osm.be/cyclestreets)
|
|
||||||
- [street_lighting](https://mapcomplete.osm.be/street_lighting)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/all_streets/all_streets.json)
|
[Go to the source code](../assets/layers/all_streets/all_streets.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- highway!~^$
|
||||||
|
- service!~^driveway$
|
||||||
|
- highway!~^platform$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- highway!~^$
|
|
||||||
- service!~^driveway$
|
|
||||||
- highway!~^platform$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7)
|
||||||
|
|
||||||
|
### lit
|
||||||
|
|
||||||
|
|
||||||
### lit
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this street lit?**
|
The question is **Is this street lit?**
|
||||||
|
|
||||||
|
- **This street is lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This street is not lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>
|
||||||
|
lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
||||||
- **This street is lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
- **This street is lit at night** corresponds
|
||||||
- **This street is not lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||||
- **This street is lit at night** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>_This option cannot be chosen as answer_
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>_This option
|
||||||
- **This street is lit 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>
|
cannot be chosen as answer_
|
||||||
|
- **This street is lit 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>
|
||||||
|
lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/all_streets/all_streets.json
|
This document is autogenerated from assets/layers/all_streets/all_streets.json
|
|
@ -1,23 +1,20 @@
|
||||||
|
ambulancestation
|
||||||
|
|
||||||
ambulancestation
|
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/themes/hailhydrant/Twemoji_1f691.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/themes/hailhydrant/Twemoji_1f691.svg' height="100px">
|
||||||
|
|
||||||
An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies.
|
An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and
|
||||||
|
other medical supplies.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [ambulancestation](#ambulancestation)
|
1. [ambulancestation](#ambulancestation)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [ambulance-name](#ambulance-name)
|
+ [ambulance-name](#ambulance-name)
|
||||||
+ [ambulance-street](#ambulance-street)
|
+ [ambulance-street](#ambulance-street)
|
||||||
+ [ambulance-place](#ambulance-place)
|
+ [ambulance-place](#ambulance-place)
|
||||||
|
@ -25,137 +22,91 @@ An ambulance station is an area for storage of ambulance vehicles, medical equip
|
||||||
+ [ambulance-operator-type](#ambulance-operator-type)
|
+ [ambulance-operator-type](#ambulance-operator-type)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/ambulancestation/ambulancestation.json)
|
[Go to the source code](../assets/layers/ambulancestation/ambulancestation.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dambulance_station' target='_blank'>ambulance_station</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dambulance_station' target='_blank'>ambulance_station</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:place#values) [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:place#values) [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator:type#values) [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator:type#values) [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate)
|
||||||
|
|
||||||
|
### ambulance-name
|
||||||
|
|
||||||
|
|
||||||
### ambulance-name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this ambulance station?**
|
The question is **What is the name of this ambulance station?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `This station is called {name}.`
|
This is rendered with `This station is called {name}.`
|
||||||
|
|
||||||
|
### ambulance-street
|
||||||
|
|
||||||
### ambulance-street
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is ** What is the street name where the station located?**
|
The question is ** What is the street name where the station located?**
|
||||||
|
|
||||||
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
||||||
This is rendered with `This station is along a highway called {addr:street}.`
|
This is rendered with `This station is along a highway called {addr:street}.`
|
||||||
|
|
||||||
|
### ambulance-place
|
||||||
|
|
||||||
### ambulance-place
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Where is the station located? (e.g. name of neighborhood, villlage, or town)**
|
The question is **Where is the station located? (e.g. name of neighborhood, villlage, or town)**
|
||||||
|
|
||||||
This rendering asks information about the property [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place)
|
This rendering asks information about the property [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place)
|
||||||
This is rendered with `This station is found within {addr:place}.`
|
This is rendered with `This station is found within {addr:place}.`
|
||||||
|
|
||||||
|
### ambulance-agency
|
||||||
|
|
||||||
### ambulance-agency
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What agency operates this station?**
|
The question is **What agency operates this station?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
This is rendered with `This station is operated by {operator}.`
|
This is rendered with `This station is operated by {operator}.`
|
||||||
|
|
||||||
|
### ambulance-operator-type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### ambulance-operator-type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How is the station operator classified?**
|
The question is **How is the station operator classified?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type)
|
This rendering asks information about the
|
||||||
|
property [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type)
|
||||||
This is rendered with `The operator is a(n) {operator:type} entity.`
|
This is rendered with `The operator is a(n) {operator:type} entity.`
|
||||||
|
|
||||||
|
- **The station is operated by the government.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
|
||||||
|
- **The station is operated by a community-based, or informal organization.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a>
|
||||||
|
- **The station is operated by a formal group of volunteers.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo' target='_blank'>ngo</a>
|
||||||
|
- **The station is privately operated.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate' target='_blank'>private</a>
|
||||||
|
|
||||||
|
### images
|
||||||
- **The station is operated by the government.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
|
|
||||||
- **The station is operated by a community-based, or informal organization.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a>
|
|
||||||
- **The station is operated by a formal group of volunteers.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo' target='_blank'>ngo</a>
|
|
||||||
- **The station is privately operated.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate' target='_blank'>private</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/ambulancestation/ambulancestation.json
|
This document is autogenerated from assets/layers/ambulancestation/ambulancestation.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
artwork
|
||||||
|
|
||||||
artwork
|
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,143 +7,115 @@
|
||||||
|
|
||||||
Diverse pieces of artwork
|
Diverse pieces of artwork
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [artwork](#artwork)
|
1. [artwork](#artwork)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [artwork-artwork_type](#artwork-artwork_type)
|
+ [artwork-artwork_type](#artwork-artwork_type)
|
||||||
+ [artwork-artist_name](#artwork-artist_name)
|
+ [artwork-artist_name](#artwork-artist_name)
|
||||||
+ [artwork-website](#artwork-website)
|
+ [artwork-website](#artwork-website)
|
||||||
+ [artwork-wikidata](#artwork-wikidata)
|
+ [artwork-wikidata](#artwork-wikidata)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [artwork](https://mapcomplete.osm.be/artwork)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [artwork](https://mapcomplete.osm.be/artwork)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/artwork/artwork.json)
|
[Go to the source code](../assets/layers/artwork/artwork.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artwork_type#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artwork_type#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artist_name#values) [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artist_name#values) [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### artwork-artwork_type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### artwork-artwork_type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the type of this artwork?**
|
The question is **What is the type of this artwork?**
|
||||||
|
|
||||||
This rendering asks information about the property [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type)
|
This rendering asks information about the property [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type)
|
||||||
This is rendered with `This is a {artwork_type}`
|
This is rendered with `This is a {artwork_type}`
|
||||||
|
|
||||||
|
- **Architecture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>
|
||||||
|
artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>
|
||||||
|
architecture</a>
|
||||||
|
- **Mural** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>
|
||||||
|
artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a>
|
||||||
|
- **Painting** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>
|
||||||
|
artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting' target='_blank'>
|
||||||
|
painting</a>
|
||||||
|
- **Sculpture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>
|
||||||
|
artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture' target='_blank'>
|
||||||
|
sculpture</a>
|
||||||
|
- **Statue** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>
|
||||||
|
artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue' target='_blank'>statue</a>
|
||||||
|
- **Bust** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>
|
||||||
|
artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust' target='_blank'>bust</a>
|
||||||
|
- **Stone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>
|
||||||
|
artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone' target='_blank'>stone</a>
|
||||||
|
- **Installation** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>
|
||||||
|
artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation' target='_blank'>
|
||||||
|
installation</a>
|
||||||
|
- **Graffiti** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>
|
||||||
|
artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti' target='_blank'>
|
||||||
|
graffiti</a>
|
||||||
|
- **Relief** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>
|
||||||
|
artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief' target='_blank'>relief</a>
|
||||||
|
- **Azulejo (Spanish decorative tilework)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a>
|
||||||
|
- **Tilework** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>
|
||||||
|
artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>
|
||||||
|
tilework</a>
|
||||||
|
|
||||||
|
### artwork-artist_name
|
||||||
- **Architecture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>architecture</a>
|
|
||||||
- **Mural** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a>
|
|
||||||
- **Painting** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting' target='_blank'>painting</a>
|
|
||||||
- **Sculpture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture' target='_blank'>sculpture</a>
|
|
||||||
- **Statue** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue' target='_blank'>statue</a>
|
|
||||||
- **Bust** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust' target='_blank'>bust</a>
|
|
||||||
- **Stone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone' target='_blank'>stone</a>
|
|
||||||
- **Installation** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation' target='_blank'>installation</a>
|
|
||||||
- **Graffiti** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti' target='_blank'>graffiti</a>
|
|
||||||
- **Relief** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief' target='_blank'>relief</a>
|
|
||||||
- **Azulejo (Spanish decorative tilework)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a>
|
|
||||||
- **Tilework** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>tilework</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### artwork-artist_name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Which artist created this?**
|
The question is **Which artist created this?**
|
||||||
|
|
||||||
This rendering asks information about the property [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name)
|
This rendering asks information about the property [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name)
|
||||||
This is rendered with `Created by {artist_name}`
|
This is rendered with `Created by {artist_name}`
|
||||||
|
|
||||||
|
### artwork-website
|
||||||
|
|
||||||
### artwork-website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is there a website with more information about this artwork?**
|
The question is **Is there a website with more information about this artwork?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `More information on <a href='{website}' target='_blank'>this website</a>`
|
This is rendered with `More information on <a href='{website}' target='_blank'>this website</a>`
|
||||||
|
|
||||||
|
### artwork-wikidata
|
||||||
|
|
||||||
### artwork-wikidata
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Which Wikidata-entry corresponds with <b>this artwork</b>?**
|
The question is **Which Wikidata-entry corresponds with <b>this artwork</b>?**
|
||||||
|
|
||||||
This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata)
|
This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata)
|
||||||
This is rendered with `Corresponds with <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>`
|
This is rendered
|
||||||
|
with `Corresponds with <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/artwork/artwork.json
|
This document is autogenerated from assets/layers/artwork/artwork.json
|
|
@ -1,61 +1,38 @@
|
||||||
|
assen
|
||||||
|
|
||||||
assen
|
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [assen](#assen)
|
1. [assen](#assen)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [all_tags](#all_tags)
|
+ [all_tags](#all_tags)
|
||||||
|
|
||||||
|
|
||||||
|
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://robinlinde.github.io/tiles/assen_street_lighting/{z}/{x}/{y}.json`
|
||||||
|
- This layer will automatically load [street_lamps](./street_lamps.md) into the layout as it depends on it: A
|
||||||
|
calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _
|
||||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://robinlinde.github.io/tiles/assen_street_lighting/{z}/{x}/{y}.json`
|
closest_osm_street_lamp)
|
||||||
- This layer will automatically load [street_lamps](./street_lamps.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_osm_street_lamp)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/assen/assen.json)
|
[Go to the source code](../assets/layers/assen/assen.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- Lichtmastnummer~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- Lichtmastnummer~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### all_tags
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### all_tags
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/assen/assen.json
|
This document is autogenerated from assets/layers/assen/assen.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
barrier
|
||||||
|
|
||||||
barrier
|
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
Obstacles while cycling, such as bollards and cycle barriers
|
Obstacles while cycling, such as bollards and cycle barriers
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [barrier](#barrier)
|
1. [barrier](#barrier)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [bicycle=yes/no](#bicycle=yesno)
|
+ [bicycle=yes/no](#bicycle=yesno)
|
||||||
+ [barrier_type](#barrier_type)
|
+ [barrier_type](#barrier_type)
|
||||||
+ [Bollard type](#bollard-type)
|
+ [Bollard type](#bollard-type)
|
||||||
|
@ -28,175 +24,139 @@ Obstacles while cycling, such as bollards and cycle barriers
|
||||||
+ [Overlap (cyclebarrier)](#overlap-(cyclebarrier))
|
+ [Overlap (cyclebarrier)](#overlap-(cyclebarrier))
|
||||||
|
|
||||||
|
|
||||||
|
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on
|
||||||
|
it: a preset snaps to this layer (presets[0])
|
||||||
|
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on
|
||||||
|
it: a preset snaps to this layer (presets[1])
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cycle_infra](https://mapcomplete.osm.be/cycle_infra)
|
||||||
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0])
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[1])
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cycle_infra](https://mapcomplete.osm.be/cycle_infra)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/barrier/barrier.json)
|
[Go to the source code](../assets/layers/barrier/barrier.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle#values) [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle#values) [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/barrier#values) [barrier](https://wiki.openstreetmap.org/wiki/Key:barrier) | Multiple choice | [bollard](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard) [cycle_barrier](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/barrier#values) [barrier](https://wiki.openstreetmap.org/wiki/Key:barrier) | Multiple choice | [bollard](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard) [cycle_barrier](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bollard#values) [bollard](https://wiki.openstreetmap.org/wiki/Key:bollard) | Multiple choice | [removable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable) [fixed](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed) [foldable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable) [flexible](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible) [rising](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bollard#values) [bollard](https://wiki.openstreetmap.org/wiki/Key:bollard) | Multiple choice | [removable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable) [fixed](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed) [foldable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable) [flexible](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible) [rising](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycle_barrier#values) [cycle_barrier](https://wiki.openstreetmap.org/wiki/Key:cycle_barrier) | Multiple choice | [single](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsingle) [double](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble) [triple](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple) [squeeze](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsqueeze)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycle_barrier#values) [cycle_barrier](https://wiki.openstreetmap.org/wiki/Key:cycle_barrier) | Multiple choice | [single](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsingle) [double](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble) [triple](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple) [squeeze](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsqueeze)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/maxwidth:physical#values) [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical) | [length](../SpecialInputElements.md#length) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/maxwidth:physical#values) [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical) | [length](../SpecialInputElements.md#length) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:separation#values) [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) | [length](../SpecialInputElements.md#length) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:separation#values) [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) | [length](../SpecialInputElements.md#length) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:opening#values) [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) | [length](../SpecialInputElements.md#length) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:opening#values) [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) | [length](../SpecialInputElements.md#length) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/overlap#values) [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) | [length](../SpecialInputElements.md#length) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/overlap#values) [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) | [length](../SpecialInputElements.md#length) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle=yes/no
|
|
||||||
|
|
||||||
|
|
||||||
|
### bicycle=yes/no
|
||||||
|
|
||||||
The question is **Can a bicycle go past this barrier?**
|
The question is **Can a bicycle go past this barrier?**
|
||||||
|
|
||||||
|
- **A cyclist can go past this.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **A cyclist can not go past this.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### barrier_type
|
||||||
|
|
||||||
|
|
||||||
- **A cyclist can go past this.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **A cyclist can not go past this.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### barrier_type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
- **This is a single bollard in the road** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a>
|
||||||
|
- **This is a cycle barrier slowing down cyclists** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a>
|
||||||
|
|
||||||
|
### Bollard type
|
||||||
|
|
||||||
|
|
||||||
- **This is a single bollard in the road** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a>
|
|
||||||
- **This is a cycle barrier slowing down cyclists** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Bollard type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What kind of bollard is this?**
|
The question is **What kind of bollard is this?**
|
||||||
|
|
||||||
|
- **Removable bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>
|
||||||
|
bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable' target='_blank'>removable</a>
|
||||||
|
- **Fixed bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>
|
||||||
|
bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed' target='_blank'>fixed</a>
|
||||||
|
- **Bollard that can be folded down** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable' target='_blank'>foldable</a>
|
||||||
|
- **Flexible bollard, usually plastic** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible' target='_blank'>flexible</a>
|
||||||
|
- **Rising bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>
|
||||||
|
bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising' target='_blank'>rising</a>
|
||||||
|
|
||||||
|
### Cycle barrier type
|
||||||
|
|
||||||
|
|
||||||
- **Removable bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable' target='_blank'>removable</a>
|
|
||||||
- **Fixed bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed' target='_blank'>fixed</a>
|
|
||||||
- **Bollard that can be folded down** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable' target='_blank'>foldable</a>
|
|
||||||
- **Flexible bollard, usually plastic** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible' target='_blank'>flexible</a>
|
|
||||||
- **Rising bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising' target='_blank'>rising</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Cycle barrier type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What kind of cycling barrier is this?**
|
The question is **What kind of cycling barrier is this?**
|
||||||
|
|
||||||
|
- **Single, just two barriers with a space
|
||||||
|
inbetween <img src='./assets/themes/cycle_infra/Cycle_barrier_single.png' style='width:8em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsingle' target='_blank'>single</a>
|
||||||
|
- **Double, two barriers behind each
|
||||||
|
other <img src='./assets/themes/cycle_infra/Cycle_barrier_double.svg' style='width:8em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble' target='_blank'>double</a>
|
||||||
|
- **Triple, three barriers behind each
|
||||||
|
other <img src='./assets/themes/cycle_infra/Cycle_barrier_triple.png' style='width:8em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple' target='_blank'>triple</a>
|
||||||
|
- **Squeeze gate, gap is smaller at top, than at the
|
||||||
|
bottom <img src='./assets/themes/cycle_infra/Cycle_barrier_squeeze.png' style='width:8em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsqueeze' target='_blank'>squeeze</a>
|
||||||
|
|
||||||
|
### MaxWidth
|
||||||
|
|
||||||
|
|
||||||
- **Single, just two barriers with a space inbetween <img src='./assets/themes/cycle_infra/Cycle_barrier_single.png' style='width:8em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsingle' target='_blank'>single</a>
|
|
||||||
- **Double, two barriers behind each other <img src='./assets/themes/cycle_infra/Cycle_barrier_double.svg' style='width:8em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble' target='_blank'>double</a>
|
|
||||||
- **Triple, three barriers behind each other <img src='./assets/themes/cycle_infra/Cycle_barrier_triple.png' style='width:8em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple' target='_blank'>triple</a>
|
|
||||||
- **Squeeze gate, gap is smaller at top, than at the bottom <img src='./assets/themes/cycle_infra/Cycle_barrier_squeeze.png' style='width:8em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsqueeze' target='_blank'>squeeze</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### MaxWidth
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How wide is the gap left over besides the barrier?**
|
The question is **How wide is the gap left over besides the barrier?**
|
||||||
|
|
||||||
This rendering asks information about the property [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical)
|
This rendering asks information about the
|
||||||
|
property [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical)
|
||||||
This is rendered with `Maximum width: {maxwidth:physical} m`
|
This is rendered with `Maximum width: {maxwidth:physical} m`
|
||||||
|
|
||||||
|
### Space between barrier (cyclebarrier)
|
||||||
|
|
||||||
### Space between barrier (cyclebarrier)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How much space is there between the barriers (along the length of the road)?**
|
The question is **How much space is there between the barriers (along the length of the road)?**
|
||||||
|
|
||||||
This rendering asks information about the property [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation)
|
This rendering asks information about the
|
||||||
|
property [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation)
|
||||||
This is rendered with `Space between barriers (along the length of the road): {width:separation} m`
|
This is rendered with `Space between barriers (along the length of the road): {width:separation} m`
|
||||||
|
|
||||||
|
### Width of opening (cyclebarrier)
|
||||||
|
|
||||||
### Width of opening (cyclebarrier)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How wide is the smallest opening next to the barriers?**
|
The question is **How wide is the smallest opening next to the barriers?**
|
||||||
|
|
||||||
This rendering asks information about the property [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening)
|
This rendering asks information about the
|
||||||
|
property [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening)
|
||||||
This is rendered with `Width of opening: {width:opening} m`
|
This is rendered with `Width of opening: {width:opening} m`
|
||||||
|
|
||||||
|
### Overlap (cyclebarrier)
|
||||||
|
|
||||||
### Overlap (cyclebarrier)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How much overlap do the barriers have?**
|
The question is **How much overlap do the barriers have?**
|
||||||
|
|
||||||
This rendering asks information about the property [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap)
|
This rendering asks information about the property [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap)
|
||||||
This is rendered with `Overlap: {overlap} m`
|
This is rendered with `Overlap: {overlap} m`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/barrier/barrier.json
|
This document is autogenerated from assets/layers/barrier/barrier.json
|
|
@ -1,23 +1,20 @@
|
||||||
|
bench
|
||||||
|
|
||||||
bench
|
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/layers/bench/bench.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/layers/bench/bench.svg' height="100px">
|
||||||
|
|
||||||
A bench is a wooden, metal, stone, ... surface where a human can sit. This layers visualises them and asks a few questions about them.
|
A bench is a wooden, metal, stone, ... surface where a human can sit. This layers visualises them and asks a few
|
||||||
|
questions about them.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [bench](#bench)
|
1. [bench](#bench)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [bench-backrest](#bench-backrest)
|
+ [bench-backrest](#bench-backrest)
|
||||||
+ [bench-seats](#bench-seats)
|
+ [bench-seats](#bench-seats)
|
||||||
|
@ -26,168 +23,119 @@ A bench is a wooden, metal, stone, ... surface where a human can sit. This layer
|
||||||
+ [bench-colour](#bench-colour)
|
+ [bench-colour](#bench-colour)
|
||||||
+ [bench-survey:date](#bench-surveydate)
|
+ [bench-survey:date](#bench-surveydate)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [benches](https://mapcomplete.osm.be/benches)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [benches](https://mapcomplete.osm.be/benches)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/bench/bench.json)
|
[Go to the source code](../assets/layers/bench/bench.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/backrest#values) [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/backrest#values) [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/seats#values) [seats](https://wiki.openstreetmap.org/wiki/Key:seats) | [nat](../SpecialInputElements.md#nat) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/seats#values) [seats](https://wiki.openstreetmap.org/wiki/Key:seats) | [nat](../SpecialInputElements.md#nat) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [metal](https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal) [stone](https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) [steel](https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [metal](https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal) [stone](https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) [steel](https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [brown](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown) [green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [gray](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray) [white](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [black](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack) [blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [brown](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown) [green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [gray](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray) [white](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [black](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack) [blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### bench-backrest
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-backrest
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this bench have a backrest?**
|
The question is **Does this bench have a backrest?**
|
||||||
|
|
||||||
|
- **Backrest: Yes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>
|
||||||
|
backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Backrest: No** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>
|
||||||
|
backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### bench-seats
|
||||||
|
|
||||||
|
|
||||||
- **Backrest: Yes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Backrest: No** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-seats
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How many seats does this bench have?**
|
The question is **How many seats does this bench have?**
|
||||||
|
|
||||||
This rendering asks information about the property [seats](https://wiki.openstreetmap.org/wiki/Key:seats)
|
This rendering asks information about the property [seats](https://wiki.openstreetmap.org/wiki/Key:seats)
|
||||||
This is rendered with `{seats} seats`
|
This is rendered with `{seats} seats`
|
||||||
|
|
||||||
|
### bench-material
|
||||||
|
|
||||||
### bench-material
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the bench (seating) made from?**
|
The question is **What is the bench (seating) made from?**
|
||||||
|
|
||||||
This rendering asks information about the property [material](https://wiki.openstreetmap.org/wiki/Key:material)
|
This rendering asks information about the property [material](https://wiki.openstreetmap.org/wiki/Key:material)
|
||||||
This is rendered with `Material: {material}`
|
This is rendered with `Material: {material}`
|
||||||
|
|
||||||
|
- **Material: wood** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>
|
||||||
|
material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a>
|
||||||
|
- **Material: metal** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>
|
||||||
|
material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal' target='_blank'>metal</a>
|
||||||
|
- **Material: stone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>
|
||||||
|
material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone' target='_blank'>stone</a>
|
||||||
|
- **Material: concrete** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>
|
||||||
|
material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete' target='_blank'>concrete</a>
|
||||||
|
- **Material: plastic** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>
|
||||||
|
material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic' target='_blank'>plastic</a>
|
||||||
|
- **Material: steel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>
|
||||||
|
material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel' target='_blank'>steel</a>
|
||||||
|
|
||||||
|
### bench-direction
|
||||||
- **Material: wood** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a>
|
|
||||||
- **Material: metal** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal' target='_blank'>metal</a>
|
|
||||||
- **Material: stone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone' target='_blank'>stone</a>
|
|
||||||
- **Material: concrete** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete' target='_blank'>concrete</a>
|
|
||||||
- **Material: plastic** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic' target='_blank'>plastic</a>
|
|
||||||
- **Material: steel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel' target='_blank'>steel</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-direction
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **In which direction are you looking when sitting on the bench?**
|
The question is **In which direction are you looking when sitting on the bench?**
|
||||||
|
|
||||||
This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction)
|
This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction)
|
||||||
This is rendered with `When sitting on the bench, one looks towards {direction}°.`
|
This is rendered with `When sitting on the bench, one looks towards {direction}°.`
|
||||||
|
|
||||||
|
### bench-colour
|
||||||
|
|
||||||
### bench-colour
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Which colour does this bench have?**
|
The question is **Which colour does this bench have?**
|
||||||
|
|
||||||
This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour)
|
This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour)
|
||||||
This is rendered with `Colour: {colour}`
|
This is rendered with `Colour: {colour}`
|
||||||
|
|
||||||
|
- **Colour: brown** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown' target='_blank'>brown</a>
|
||||||
|
- **Colour: green** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen' target='_blank'>green</a>
|
||||||
|
- **Colour: gray** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray' target='_blank'>gray</a>
|
||||||
|
- **Colour: white** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite' target='_blank'>white</a>
|
||||||
|
- **Colour: red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred' target='_blank'>red</a>
|
||||||
|
- **Colour: black** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack' target='_blank'>black</a>
|
||||||
|
- **Colour: blue** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue' target='_blank'>blue</a>
|
||||||
|
- **Colour: yellow** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>
|
||||||
|
colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow' target='_blank'>yellow</a>
|
||||||
|
|
||||||
|
### bench-survey:date
|
||||||
- **Colour: brown** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown' target='_blank'>brown</a>
|
|
||||||
- **Colour: green** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen' target='_blank'>green</a>
|
|
||||||
- **Colour: gray** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray' target='_blank'>gray</a>
|
|
||||||
- **Colour: white** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite' target='_blank'>white</a>
|
|
||||||
- **Colour: red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred' target='_blank'>red</a>
|
|
||||||
- **Colour: black** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack' target='_blank'>black</a>
|
|
||||||
- **Colour: blue** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue' target='_blank'>blue</a>
|
|
||||||
- **Colour: yellow** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow' target='_blank'>yellow</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-survey:date
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When was this bench last surveyed?**
|
The question is **When was this bench last surveyed?**
|
||||||
|
|
||||||
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
||||||
This is rendered with `This bench was last surveyed on {survey:date}`
|
This is rendered with `This bench was last surveyed on {survey:date}`
|
||||||
|
|
||||||
|
- **Surveyed today!** corresponds with survey:date=
|
||||||
|
|
||||||
- **Surveyed today!** corresponds with survey:date=
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/bench/bench.json
|
This document is autogenerated from assets/layers/bench/bench.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
bench_at_pt
|
||||||
|
|
||||||
bench_at_pt
|
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,107 +7,71 @@
|
||||||
|
|
||||||
A layer showing all public-transport-stops which do have a bench
|
A layer showing all public-transport-stops which do have a bench
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [bench_at_pt](#bench_at_pt)
|
1. [bench_at_pt](#bench_at_pt)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [bench_at_pt-name](#bench_at_pt-name)
|
+ [bench_at_pt-name](#bench_at_pt-name)
|
||||||
+ [bench_at_pt-bench_type](#bench_at_pt-bench_type)
|
+ [bench_at_pt-bench_type](#bench_at_pt-bench_type)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [benches](https://mapcomplete.osm.be/benches)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [benches](https://mapcomplete.osm.be/benches)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/bench_at_pt/bench_at_pt.json)
|
[Go to the source code](../assets/layers/bench_at_pt/bench_at_pt.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes' target='_blank'>yes</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench' target='_blank'>stand_up_bench</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench' target='_blank'>stand_up_bench</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bench#values) [bench](https://wiki.openstreetmap.org/wiki/Key:bench) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes) [stand_up_bench](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench) [no](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bench#values) [bench](https://wiki.openstreetmap.org/wiki/Key:bench) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes) [stand_up_bench](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench) [no](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### bench_at_pt-name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench_at_pt-name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `{name}`
|
This is rendered with `{name}`
|
||||||
|
|
||||||
|
### bench_at_pt-bench_type
|
||||||
|
|
||||||
### bench_at_pt-bench_type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What kind of bench is this?**
|
The question is **What kind of bench is this?**
|
||||||
|
|
||||||
|
- **There is a normal, sit-down bench here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Stand up bench** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>
|
||||||
- **There is a normal, sit-down bench here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes' target='_blank'>yes</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench' target='_blank'>stand_up_bench</a>
|
||||||
- **Stand up bench** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench' target='_blank'>stand_up_bench</a>
|
- **There is no bench here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>
|
||||||
- **There is no bench here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno' target='_blank'>no</a>
|
bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/bench_at_pt/bench_at_pt.json
|
This document is autogenerated from assets/layers/bench_at_pt/bench_at_pt.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
bicycle_library
|
||||||
|
|
||||||
bicycle_library
|
|
||||||
=================
|
=================
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A facility where bicycles can be lent for longer period of times
|
A facility where bicycles can be lent for longer period of times
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [bicycle_library](#bicycle_library)
|
1. [bicycle_library](#bicycle_library)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [bicycle_library-name](#bicycle_library-name)
|
+ [bicycle_library-name](#bicycle_library-name)
|
||||||
+ [website](#website)
|
+ [website](#website)
|
||||||
|
@ -28,188 +24,129 @@ A facility where bicycles can be lent for longer period of times
|
||||||
+ [bicycle-library-target-group](#bicycle-library-target-group)
|
+ [bicycle-library-target-group](#bicycle-library-target-group)
|
||||||
+ [description](#description)
|
+ [description](#description)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [bicyclelib](https://mapcomplete.osm.be/bicyclelib)
|
||||||
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [bicyclelib](https://mapcomplete.osm.be/bicyclelib)
|
|
||||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/bicycle_library/bicycle_library.json)
|
[Go to the source code](../assets/layers/bicycle_library/bicycle_library.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_library' target='_blank'>bicycle_library</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_library' target='_blank'>bicycle_library</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) [€20warranty + €20/year](https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) [€20warranty + €20/year](https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle_library:for#values) [bicycle_library:for](https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for) | Multiple choice | [child](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild) [adult](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult) [disabled](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle_library:for#values) [bicycle_library:for](https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for) | Multiple choice | [child](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild) [adult](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult) [disabled](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### bicycle_library-name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle_library-name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this bicycle library?**
|
The question is **What is the name of this bicycle library?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `This bicycle library is called {name}`
|
This is rendered with `This bicycle library is called {name}`
|
||||||
|
|
||||||
|
### website
|
||||||
|
|
||||||
### website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the website of {name}?**
|
The question is **What is the website of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### phone
|
||||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number of {name}?**
|
The question is **What is the phone number of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
|
||||||
|
### email
|
||||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of {name}?**
|
The question is **What is the email address of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### opening_hours
|
||||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What are the opening hours of {name}?**
|
The question is **What are the opening hours of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
### bicycle_library-charge
|
||||||
|
|
||||||
### bicycle_library-charge
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How much does lending a bicycle cost?**
|
The question is **How much does lending a bicycle cost?**
|
||||||
|
|
||||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
This is rendered with `Lending a bicycle costs {charge}`
|
This is rendered with `Lending a bicycle costs {charge}`
|
||||||
|
|
||||||
|
- **Lending a bicycle is free** corresponds 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>
|
||||||
|
- **Lending a bicycle costs €20/year and €20 warranty** corresponds
|
||||||
|
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>
|
||||||
|
&<a href='https://wiki.openstreetmap.org/wiki/Key:charge' target='_blank'>charge</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year' target='_blank'>€20warranty +
|
||||||
|
€20/year</a>
|
||||||
|
|
||||||
|
### bicycle-library-target-group
|
||||||
- **Lending a bicycle is free** corresponds 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>
|
|
||||||
- **Lending a bicycle costs €20/year and €20 warranty** corresponds 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>&<a href='https://wiki.openstreetmap.org/wiki/Key:charge' target='_blank'>charge</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year' target='_blank'>€20warranty + €20/year</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle-library-target-group
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Who can lend bicycles here?**
|
The question is **Who can lend bicycles here?**
|
||||||
|
|
||||||
|
- **Bikes for children available** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild' target='_blank'>child</a>
|
||||||
|
- **Bikes for adult available** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult' target='_blank'>adult</a>
|
||||||
|
- **Bikes for disabled persons available** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled' target='_blank'>disabled</a>
|
||||||
|
|
||||||
|
### description
|
||||||
|
|
||||||
|
The question is **Is there still something relevant you couldn't give in the previous questions? Add it
|
||||||
|
here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>**
|
||||||
|
|
||||||
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
- **Bikes for children available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild' target='_blank'>child</a>
|
This is rendered with `{description}`
|
||||||
- **Bikes for adult available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult' target='_blank'>adult</a>
|
|
||||||
- **Bikes for disabled persons available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled' target='_blank'>disabled</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### description
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>**
|
|
||||||
|
|
||||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
|
||||||
This is rendered with `{description}`
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/bicycle_library/bicycle_library.json
|
This document is autogenerated from assets/layers/bicycle_library/bicycle_library.json
|
|
@ -1,23 +1,21 @@
|
||||||
|
bicycle_tube_vending_machine
|
||||||
|
|
||||||
bicycle_tube_vending_machine
|
|
||||||
==============================
|
==============================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/layers/bicycle_tube_vending_machine/pinIcon.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/layers/bicycle_tube_vending_machine/pinIcon.svg' height="100px">
|
||||||
|
|
||||||
A layer showing vending machines for bicycle tubes (either purpose-built bicycle tube vending machines or classical vending machines with bicycle tubes and optionally additional bicycle related objects such as lights, gloves, locks, ...)
|
A layer showing vending machines for bicycle tubes (either purpose-built bicycle tube vending machines or classical
|
||||||
|
vending machines with bicycle tubes and optionally additional bicycle related objects such as lights, gloves, locks,
|
||||||
|
...)
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [bicycle_tube_vending_machine](#bicycle_tube_vending_machine)
|
1. [bicycle_tube_vending_machine](#bicycle_tube_vending_machine)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [Still in use?](#still-in-use)
|
+ [Still in use?](#still-in-use)
|
||||||
+ [bicycle_tube_vending_machine-charge](#bicycle_tube_vending_machine-charge)
|
+ [bicycle_tube_vending_machine-charge](#bicycle_tube_vending_machine-charge)
|
||||||
|
@ -26,168 +24,145 @@ A layer showing vending machines for bicycle tubes (either purpose-built bicycle
|
||||||
+ [bicycle_tube_vending_machine-operator](#bicycle_tube_vending_machine-operator)
|
+ [bicycle_tube_vending_machine-operator](#bicycle_tube_vending_machine-operator)
|
||||||
+ [bicycle_tube_vending_maching-other-items](#bicycle_tube_vending_maching-other-items)
|
+ [bicycle_tube_vending_maching-other-items](#bicycle_tube_vending_maching-other-items)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json)
|
[Go to the source code](../assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dvending_machine' target='_blank'>vending_machine</a>
|
||||||
|
- vending~^.*bicycle_tube.*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dvending_machine' target='_blank'>vending_machine</a>
|
|
||||||
- vending~^.*bicycle_tube.*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operational_status#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operational_status#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Continental](https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental) [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Continental](https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental) [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:operator%3DSchwalbe) [Continental](https://wiki.openstreetmap.org/wiki/Tag:operator%3DContinental)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:operator%3DSchwalbe) [Continental](https://wiki.openstreetmap.org/wiki/Tag:operator%3DContinental)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Still in use?
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Still in use?
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this vending machine still operational?**
|
The question is **Is this vending machine still operational?**
|
||||||
|
|
||||||
This rendering asks information about the property [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status)
|
This rendering asks information about the
|
||||||
|
property [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status)
|
||||||
This is rendered with `The operational status is <i>{operational_status}</i>`
|
This is rendered with `The operational status is <i>{operational_status}</i>`
|
||||||
|
|
||||||
|
- **This vending machine works** corresponds with
|
||||||
|
- **This vending machine is broken** corresponds
|
||||||
|
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%3Dbroken' target='_blank'>broken</a>
|
||||||
|
- **This vending machine is closed** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### bicycle_tube_vending_machine-charge
|
||||||
- **This vending machine works** corresponds with
|
|
||||||
- **This vending machine is broken** corresponds 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%3Dbroken' target='_blank'>broken</a>
|
|
||||||
- **This vending machine is closed** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle_tube_vending_machine-charge
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How much does a bicycle tube cost?**
|
The question is **How much does a bicycle tube cost?**
|
||||||
|
|
||||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
This is rendered with `A bicycle tube costs {charge}`
|
This is rendered with `A bicycle tube costs {charge}`
|
||||||
|
|
||||||
|
### vending-machine-payment-methods
|
||||||
|
|
||||||
### vending-machine-payment-methods
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How can one pay at this tube vending machine?**
|
The question is **How can one pay at this tube vending machine?**
|
||||||
|
|
||||||
|
- **Payment with coins is possible** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dyes' target='_blank'>yes</a>Unselecting this answer
|
||||||
|
will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dno' target='_blank'>no</a>
|
||||||
|
- **Payment with notes is possible** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dyes' target='_blank'>yes</a>Unselecting this answer
|
||||||
|
will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dno' target='_blank'>no</a>
|
||||||
|
- **Payment with cards is possible** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer
|
||||||
|
will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### bicycle_tube_vending_machine-brand
|
||||||
|
|
||||||
|
|
||||||
- **Payment with coins is possible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dno' target='_blank'>no</a>
|
|
||||||
- **Payment with notes is possible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dno' target='_blank'>no</a>
|
|
||||||
- **Payment with cards is possible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle_tube_vending_machine-brand
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Which brand of tubes are sold here?**
|
The question is **Which brand of tubes are sold here?**
|
||||||
|
|
||||||
This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand)
|
This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand)
|
||||||
This is rendered with `{brand} tubes are sold here`
|
This is rendered with `{brand} tubes are sold here`
|
||||||
|
|
||||||
|
- **Continental tubes are sold here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental' target='_blank'>Continental</a>
|
||||||
|
- **Schwalbe tubes are sold here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe' target='_blank'>Schwalbe</a>
|
||||||
|
|
||||||
|
### bicycle_tube_vending_machine-operator
|
||||||
- **Continental tubes are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental' target='_blank'>Continental</a>
|
|
||||||
- **Schwalbe tubes are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe' target='_blank'>Schwalbe</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle_tube_vending_machine-operator
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Who maintains this vending machine?**
|
The question is **Who maintains this vending machine?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
This is rendered with `This vending machine is maintained by {operator}`
|
This is rendered with `This vending machine is maintained by {operator}`
|
||||||
|
|
||||||
|
- **Maintained by Schwalbe** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DSchwalbe' target='_blank'>Schwalbe</a>
|
||||||
|
- **Maintained by Continental** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DContinental' target='_blank'>Continental</a>
|
||||||
|
|
||||||
|
### bicycle_tube_vending_maching-other-items
|
||||||
- **Maintained by Schwalbe** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DSchwalbe' target='_blank'>Schwalbe</a>
|
|
||||||
- **Maintained by Continental** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DContinental' target='_blank'>Continental</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle_tube_vending_maching-other-items
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Are other bicycle bicycle accessories sold here?**
|
The question is **Are other bicycle bicycle accessories sold here?**
|
||||||
|
|
||||||
|
- **Bicycle lights are sold here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_light' target='_blank'>vending:bicycle_light</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_light%3Dyes' target='_blank'>yes</a>Unselecting this
|
||||||
|
answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_light' target='_blank'>vending:
|
||||||
- **Bicycle lights are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_light' target='_blank'>vending:bicycle_light</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_light%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_light' target='_blank'>vending:bicycle_light</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_light%3Dno' target='_blank'>no</a>
|
bicycle_light</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_light%3Dno' target='_blank'>no</a>
|
||||||
- **Gloves are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:gloves' target='_blank'>vending:gloves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:gloves%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:gloves' target='_blank'>vending:gloves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:gloves%3Dno' target='_blank'>no</a>
|
- **Gloves are sold here** corresponds
|
||||||
- **Bicycle repair kits are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_repair_kit' target='_blank'>vending:bicycle_repair_kit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_repair_kit%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_repair_kit' target='_blank'>vending:bicycle_repair_kit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_repair_kit%3Dno' target='_blank'>no</a>
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:gloves' target='_blank'>vending:gloves</a>
|
||||||
- **Bicycle pumps are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_pump' target='_blank'>vending:bicycle_pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_pump%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_pump' target='_blank'>vending:bicycle_pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_pump%3Dno' target='_blank'>no</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:gloves%3Dyes' target='_blank'>yes</a>Unselecting this answer
|
||||||
- **Bicycle locks are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_lock' target='_blank'>vending:bicycle_lock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_lock%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_lock' target='_blank'>vending:bicycle_lock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_lock%3Dno' target='_blank'>no</a>
|
will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:gloves' target='_blank'>vending:gloves</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:gloves%3Dno' target='_blank'>no</a>
|
||||||
|
- **Bicycle repair kits are sold here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_repair_kit' target='_blank'>vending:
|
||||||
|
bicycle_repair_kit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_repair_kit%3Dyes' target='_blank'>yes</a>Unselecting
|
||||||
|
this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_repair_kit' target='_blank'>
|
||||||
|
vending:bicycle_repair_kit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_repair_kit%3Dno' target='_blank'>no</a>
|
||||||
|
- **Bicycle pumps are sold here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_pump' target='_blank'>vending:bicycle_pump</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_pump%3Dyes' target='_blank'>yes</a>Unselecting this
|
||||||
|
answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_pump' target='_blank'>vending:
|
||||||
|
bicycle_pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_pump%3Dno' target='_blank'>no</a>
|
||||||
|
- **Bicycle locks are sold here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_lock' target='_blank'>vending:bicycle_lock</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_lock%3Dyes' target='_blank'>yes</a>Unselecting this
|
||||||
|
answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_lock' target='_blank'>vending:
|
||||||
|
bicycle_lock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_lock%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json
|
This document is autogenerated from assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json
|
|
@ -1,23 +1,20 @@
|
||||||
|
bike_cafe
|
||||||
|
|
||||||
bike_cafe
|
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/layers/bike_cafe/bike_cafe.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/layers/bike_cafe/bike_cafe.svg' height="100px">
|
||||||
|
|
||||||
A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, ...
|
A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related
|
||||||
|
decoration, ...
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [bike_cafe](#bike_cafe)
|
1. [bike_cafe](#bike_cafe)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [bike_cafe-name](#bike_cafe-name)
|
+ [bike_cafe-name](#bike_cafe-name)
|
||||||
+ [bike_cafe-bike-pump](#bike_cafe-bike-pump)
|
+ [bike_cafe-bike-pump](#bike_cafe-bike-pump)
|
||||||
|
@ -28,176 +25,129 @@ A bike café is a café geared towards cyclists, for example with services such
|
||||||
+ [bike_cafe-email](#bike_cafe-email)
|
+ [bike_cafe-email](#bike_cafe-email)
|
||||||
+ [bike_cafe-opening_hours](#bike_cafe-opening_hours)
|
+ [bike_cafe-opening_hours](#bike_cafe-opening_hours)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/bike_cafe/bike_cafe.json)
|
[Go to the source code](../assets/layers/bike_cafe/bike_cafe.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:pub' target='_blank'>pub</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:pub%3Dcycling' target='_blank'>cycling</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:pub' target='_blank'>pub</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:pub%3Dbicycle' target='_blank'>bicycle</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dcycling' target='_blank'>cycling</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dbicycle' target='_blank'>bicycle</a>|service:bicycle:.*~^..*
|
||||||
|
$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:pub' target='_blank'>pub</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:pub%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:pub' target='_blank'>pub</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:pub%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dbicycle' target='_blank'>bicycle</a>|service:bicycle:.*~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:pump#values) [service:bicycle:pump](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:pump#values) [service:bicycle:pump](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values) [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values) [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### bike_cafe-name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_cafe-name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this bike cafe?**
|
The question is **What is the name of this bike cafe?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `This bike cafe is called {name}`
|
This is rendered with `This bike cafe is called {name}`
|
||||||
|
|
||||||
|
### bike_cafe-bike-pump
|
||||||
|
|
||||||
### bike_cafe-bike-pump
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this bike cafe offer a bike pump for use by anyone?**
|
The question is **Does this bike cafe offer a bike pump for use by anyone?**
|
||||||
|
|
||||||
|
- **This bike cafe offers a bike pump for anyone** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This bike cafe doesn't offer a bike pump for anyone** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### bike_cafe-repair-tools
|
||||||
|
|
||||||
|
|
||||||
- **This bike cafe offers a bike pump for anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This bike cafe doesn't offer a bike pump for anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_cafe-repair-tools
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Are there tools here to repair your own bike?**
|
The question is **Are there tools here to repair your own bike?**
|
||||||
|
|
||||||
|
- **This bike cafe offers tools for DIY repair** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This bike cafe doesn't offer tools for DIY repair** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### bike_cafe-repair-service
|
||||||
|
|
||||||
|
|
||||||
- **This bike cafe offers tools for DIY repair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This bike cafe doesn't offer tools for DIY repair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_cafe-repair-service
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this bike cafe repair bikes?**
|
The question is **Does this bike cafe repair bikes?**
|
||||||
|
|
||||||
|
- **This bike cafe repairs bikes** corresponds
|
||||||
|
with <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>
|
||||||
|
- **This bike cafe doesn't repair bikes** corresponds
|
||||||
|
with <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%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### bike_cafe-website
|
||||||
|
|
||||||
|
|
||||||
- **This bike cafe repairs bikes** corresponds with <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>
|
|
||||||
- **This bike cafe doesn't repair bikes** corresponds with <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%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_cafe-website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the website of {name}?**
|
The question is **What is the website of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
### bike_cafe-phone
|
||||||
|
|
||||||
### bike_cafe-phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number of {name}?**
|
The question is **What is the phone number of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
### bike_cafe-email
|
||||||
|
|
||||||
### bike_cafe-email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of {name}?**
|
The question is **What is the email address of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
### bike_cafe-opening_hours
|
||||||
|
|
||||||
### bike_cafe-opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When it this bike café opened?**
|
The question is **When it this bike café opened?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
This is rendered with `{opening_hours_table(opening_hours)}`
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
This is rendered with `{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/bike_cafe/bike_cafe.json
|
This document is autogenerated from assets/layers/bike_cafe/bike_cafe.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
bike_cleaning
|
||||||
|
|
||||||
bike_cleaning
|
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,115 +7,93 @@
|
||||||
|
|
||||||
A layer showing facilities where one can clean their bike
|
A layer showing facilities where one can clean their bike
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [bike_cleaning](#bike_cleaning)
|
1. [bike_cleaning](#bike_cleaning)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [bike_cleaning-service:bicycle:cleaning:charge](#bike_cleaning-servicebicycle:cleaning:charge)
|
+ [bike_cleaning-service:bicycle:cleaning:charge](#bike_cleaning-servicebicycle:cleaning:charge)
|
||||||
+ [bike_cleaning-charge](#bike_cleaning-charge)
|
+ [bike_cleaning-charge](#bike_cleaning-charge)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/bike_cleaning/bike_cleaning.json)
|
[Go to the source code](../assets/layers/bike_cleaning/bike_cleaning.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:
|
||||||
|
cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes' target='_blank'>yes</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:
|
||||||
|
cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy' target='_blank'>diy</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_wash' target='_blank'>bicycle_wash</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy' target='_blank'>diy</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_wash' target='_blank'>bicycle_wash</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values) [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values) [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### bike_cleaning-service:bicycle:cleaning:charge
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_cleaning-service:bicycle:cleaning:charge
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How much does it cost to use the cleaning service?**
|
The question is **How much does it cost to use the cleaning service?**
|
||||||
|
|
||||||
This rendering asks information about the property [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge)
|
This rendering asks information about the
|
||||||
|
property [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge)
|
||||||
This is rendered with `Using the cleaning service costs {service:bicycle:cleaning:charge}`
|
This is rendered with `Using the cleaning service costs {service:bicycle:cleaning:charge}`
|
||||||
|
|
||||||
|
- **The cleaning service is free to use** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:
|
||||||
|
cleaning:fee</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno&service:bicycle:cleaning:charge=' target='_blank'>
|
||||||
|
no&service:bicycle:cleaning:charge=</a>
|
||||||
|
- **Free to use** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:
|
||||||
|
cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno' target='_blank'>
|
||||||
|
no</a>_This option cannot be chosen as answer_
|
||||||
|
- **The cleaning service has a fee, but the amount is not known** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:
|
||||||
|
cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dyes' target='_blank'>
|
||||||
|
yes</a>
|
||||||
|
|
||||||
|
### bike_cleaning-charge
|
||||||
- **The cleaning service is free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno&service:bicycle:cleaning:charge=' target='_blank'>no&service:bicycle:cleaning:charge=</a>
|
|
||||||
- **Free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
|
||||||
- **The cleaning service has a fee, but the amount is not known** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_cleaning-charge
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How much does it cost to use the cleaning service?**
|
The question is **How much does it cost to use the cleaning service?**
|
||||||
|
|
||||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
This is rendered with `Using the cleaning service costs {charge}`
|
This is rendered with `Using the cleaning service costs {charge}`
|
||||||
|
|
||||||
|
- **Free to use cleaning service** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>
|
||||||
- **Free to use cleaning service** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno&charge=' target='_blank'>no&charge=</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno&charge=' target='_blank'>no&charge=</a>
|
||||||
- **Free to use** corresponds 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>_This option cannot be chosen as answer_
|
- **Free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>
|
||||||
- **The cleaning service has a fee** corresponds 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>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>_This option cannot be chosen as
|
||||||
|
answer_
|
||||||
|
- **The cleaning service has a fee** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/bike_cleaning/bike_cleaning.json
|
This document is autogenerated from assets/layers/bike_cleaning/bike_cleaning.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
bike_parking
|
||||||
|
|
||||||
bike_parking
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A layer showing where you can park your bike
|
A layer showing where you can park your bike
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [bike_parking](#bike_parking)
|
1. [bike_parking](#bike_parking)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [Bicycle parking type](#bicycle-parking-type)
|
+ [Bicycle parking type](#bicycle-parking-type)
|
||||||
+ [Underground?](#underground)
|
+ [Underground?](#underground)
|
||||||
|
@ -27,186 +23,148 @@ A layer showing where you can park your bike
|
||||||
+ [Cargo bike spaces?](#cargo-bike-spaces)
|
+ [Cargo bike spaces?](#cargo-bike-spaces)
|
||||||
+ [Cargo bike capacity?](#cargo-bike-capacity)
|
+ [Cargo bike capacity?](#cargo-bike-capacity)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/bike_parking/bike_parking.json)
|
[Go to the source code](../assets/layers/bike_parking/bike_parking.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_parking' target='_blank'>bicycle_parking</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_parking' target='_blank'>bicycle_parking</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle_parking#values) [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking) | [string](../SpecialInputElements.md#string) | [stands](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle_parking#values) [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking) | [string](../SpecialInputElements.md#string) | [stands](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/location#values) [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) [rooftop](https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/location#values) [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) [rooftop](https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/covered#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/covered#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [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) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [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) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cargo_bike#values) [cargo_bike](https://wiki.openstreetmap.org/wiki/Key:cargo_bike) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dyes) [designated](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Ddesignated) [no](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cargo_bike#values) [cargo_bike](https://wiki.openstreetmap.org/wiki/Key:cargo_bike) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dyes) [designated](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Ddesignated) [no](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:cargo_bike#values) [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike) | [nat](../SpecialInputElements.md#nat) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:cargo_bike#values) [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike) | [nat](../SpecialInputElements.md#nat) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Bicycle parking type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Bicycle parking type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the type of this bicycle parking?**
|
The question is **What is the type of this bicycle parking?**
|
||||||
|
|
||||||
This rendering asks information about the property [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking)
|
This rendering asks information about the
|
||||||
|
property [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking)
|
||||||
This is rendered with `This is a bicycle parking of the type: {bicycle_parking}`
|
This is rendered with `This is a bicycle parking of the type: {bicycle_parking}`
|
||||||
|
|
||||||
|
- **Staple racks <img style='width: 25%' src='./assets/layers/bike_parking/staple.svg'>** corresponds
|
||||||
|
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%3Dstands' target='_blank'>stands</a>
|
||||||
|
- **Wheel rack/loops <img style='width: 25%'' src='./assets/layers/bike_parking/wall_loops.svg'>** corresponds
|
||||||
|
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%3Dwall_loops' target='_blank'>wall_loops</a>
|
||||||
|
- **Handlebar holder <img style='width: 25%'' src='./assets/layers/bike_parking/handlebar_holder.svg'>** corresponds
|
||||||
|
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>
|
||||||
|
- **Rack <img style='width: 25%'' src='./assets/layers/bike_parking/rack.svg'>** corresponds
|
||||||
|
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>
|
||||||
|
- **Two-tiered <img style='width: 25%'' src='./assets/layers/bike_parking/two_tier.svg'>** corresponds
|
||||||
|
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>
|
||||||
|
- **Shed <img style='width: 25%'' src='./assets/layers/bike_parking/shed.svg'>** corresponds
|
||||||
|
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>
|
||||||
|
- **Bollard <img style='width: 25%'' src='./assets/layers/bike_parking/bollard.svg'>** corresponds
|
||||||
|
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** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### Underground?
|
||||||
- **Staple racks <img style='width: 25%' src='./assets/layers/bike_parking/staple.svg'>** corresponds 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%3Dstands' target='_blank'>stands</a>
|
|
||||||
- **Wheel rack/loops <img style='width: 25%'' src='./assets/layers/bike_parking/wall_loops.svg'>** corresponds 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%3Dwall_loops' target='_blank'>wall_loops</a>
|
|
||||||
- **Handlebar holder <img style='width: 25%'' src='./assets/layers/bike_parking/handlebar_holder.svg'>** corresponds 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>
|
|
||||||
- **Rack <img style='width: 25%'' src='./assets/layers/bike_parking/rack.svg'>** corresponds 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>
|
|
||||||
- **Two-tiered <img style='width: 25%'' src='./assets/layers/bike_parking/two_tier.svg'>** corresponds 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>
|
|
||||||
- **Shed <img style='width: 25%'' src='./assets/layers/bike_parking/shed.svg'>** corresponds 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>
|
|
||||||
- **Bollard <img style='width: 25%'' src='./assets/layers/bike_parking/bollard.svg'>** corresponds 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** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Underground?
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the relative location of this bicycle parking?**
|
The question is **What is the relative location of this bicycle parking?**
|
||||||
|
|
||||||
|
- **Underground parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>
|
||||||
|
location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>
|
||||||
|
- **Surface level parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>
|
||||||
|
location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dsurface' target='_blank'>surface</a>
|
||||||
|
- **Rooftop parking** corresponds 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** corresponds with _This option cannot be chosen as answer_
|
||||||
|
- **Rooftop parking** corresponds 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>
|
||||||
|
|
||||||
|
### Is covered?
|
||||||
|
|
||||||
|
|
||||||
- **Underground parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>
|
|
||||||
- **Surface level parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dsurface' target='_blank'>surface</a>
|
|
||||||
- **Rooftop parking** corresponds 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** corresponds with _This option cannot be chosen as answer_
|
|
||||||
- **Rooftop parking** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Is covered?
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this parking covered? Also select "covered" for indoor parkings.**
|
The question is **Is this parking covered? Also select "covered" for indoor parkings.**
|
||||||
|
|
||||||
|
- **This parking is covered (it has a roof)** corresponds
|
||||||
|
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** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### Capacity
|
||||||
|
|
||||||
|
|
||||||
- **This parking is covered (it has a roof)** corresponds 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** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Capacity
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How many bicycles fit in this bicycle parking (including possible cargo bicycles)?**
|
The question is **How many bicycles fit in this bicycle parking (including possible cargo bicycles)?**
|
||||||
|
|
||||||
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
||||||
This is rendered with `Place for {capacity} bikes`
|
This is rendered with `Place for {capacity} bikes`
|
||||||
|
|
||||||
|
### Access
|
||||||
|
|
||||||
### Access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Who can use this bicycle parking?**
|
The question is **Who can use this bicycle parking?**
|
||||||
|
|
||||||
This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access)
|
This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access)
|
||||||
This is rendered with `{access}`
|
This is rendered with `{access}`
|
||||||
|
|
||||||
|
- **Publicly accessible** corresponds 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>
|
||||||
|
- **Access is primarily for visitors to a business** corresponds
|
||||||
|
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 is limited to members of a school, company or organisation** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### Cargo bike spaces?
|
||||||
- **Publicly accessible** corresponds 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>
|
|
||||||
- **Access is primarily for visitors to a business** corresponds 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 is limited to members of a school, company or organisation** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Cargo bike spaces?
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this bicycle parking have spots for cargo bikes?**
|
The question is **Does this bicycle parking have spots for cargo bikes?**
|
||||||
|
|
||||||
|
- **This parking has room for cargo bikes** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This parking has designated (official) spots for cargo bikes.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Ddesignated' target='_blank'>designated</a>
|
||||||
|
- **You're not allowed to park cargo bikes** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### Cargo bike capacity?
|
||||||
|
|
||||||
|
|
||||||
- **This parking has room for cargo bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This parking has designated (official) spots for cargo bikes.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Ddesignated' target='_blank'>designated</a>
|
|
||||||
- **You're not allowed to park cargo bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Cargo bike capacity?
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How many cargo bicycles fit in this bicycle parking?**
|
The question is **How many cargo bicycles fit in this bicycle parking?**
|
||||||
|
|
||||||
This rendering asks information about the property [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike)
|
This rendering asks information about the
|
||||||
This is rendered with `This parking fits {capacity:cargo_bike} cargo bikes`
|
property [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike)
|
||||||
|
This is rendered with `This parking fits {capacity:cargo_bike} cargo bikes`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/bike_parking/bike_parking.json
|
This document is autogenerated from assets/layers/bike_parking/bike_parking.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
bike_repair_station
|
||||||
|
|
||||||
bike_repair_station
|
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A layer showing bicycle pumps and bicycle repair tool stands
|
A layer showing bicycle pumps and bicycle repair tool stands
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [bike_repair_station](#bike_repair_station)
|
1. [bike_repair_station](#bike_repair_station)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [bike_repair_station-available-services](#bike_repair_station-available-services)
|
+ [bike_repair_station-available-services](#bike_repair_station-available-services)
|
||||||
+ [bike_repair_station-operator](#bike_repair_station-operator)
|
+ [bike_repair_station-operator](#bike_repair_station-operator)
|
||||||
|
@ -33,58 +29,39 @@ A layer showing bicycle pumps and bicycle repair tool stands
|
||||||
+ [bike_repair_station-manometer](#bike_repair_station-manometer)
|
+ [bike_repair_station-manometer](#bike_repair_station-manometer)
|
||||||
+ [level](#level)
|
+ [level](#level)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/bike_repair_station/bike_repair_station.json)
|
[Go to the source code](../assets/layers/bike_repair_station/bike_repair_station.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_repair_station' target='_blank'>
|
||||||
|
bicycle_repair_station</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_repair_station' target='_blank'>bicycle_repair_station</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:tools#values) [service:bicycle:tools](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:tools#values) [service:bicycle:tools](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [De Fietsambassade Gent](https://wiki.openstreetmap.org/wiki/Tag:operator%3DDe Fietsambassade Gent)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [De Fietsambassade Gent](https://wiki.openstreetmap.org/wiki/Tag:operator%3DDe Fietsambassade Gent)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:chain_tool#values) [service:bicycle:chain_tool](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:chain_tool#values) [service:bicycle:chain_tool](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:stand#values) [service:bicycle:stand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:stand#values) [service:bicycle:stand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dno)
|
||||||
|
@ -94,215 +71,160 @@ attribute | type | values which are supported by this layer
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/manometer#values) [manometer](https://wiki.openstreetmap.org/wiki/Key:manometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno) [broken](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/manometer#values) [manometer](https://wiki.openstreetmap.org/wiki/Key:manometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno) [broken](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/level#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/level#values) [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)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### bike_repair_station-available-services
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-available-services
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Which services are available at this bike station?**
|
The question is **Which services are available at this bike station?**
|
||||||
|
|
||||||
|
- **There is only a pump present** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno' target='_blank'>no</a>
|
||||||
|
&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **There are only tools (screwdrivers, pliers...) present** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a>
|
||||||
|
&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
||||||
|
- **There are both tools and a pump present** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a>
|
||||||
|
&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### bike_repair_station-operator
|
||||||
|
|
||||||
|
|
||||||
- **There is only a pump present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno' target='_blank'>no</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **There are only tools (screwdrivers, pliers...) present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
|
||||||
- **There are both tools and a pump present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-operator
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Who maintains this cycle pump?**
|
The question is **Who maintains this cycle pump?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
This is rendered with `Maintained by {operator}`
|
This is rendered with `Maintained by {operator}`
|
||||||
|
|
||||||
|
- **<a href='https://fietsambassade.gent.be/' target='_blank'>De Fietsambassade Gent</a>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DDe Fietsambassade Gent' target='_blank'>De Fietsambassade
|
||||||
|
Gent</a>
|
||||||
|
|
||||||
|
### bike_repair_station-email
|
||||||
- **<a href='https://fietsambassade.gent.be/' target='_blank'>De Fietsambassade Gent</a>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DDe Fietsambassade Gent' target='_blank'>De Fietsambassade Gent</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of the maintainer?**
|
The question is **What is the email address of the maintainer?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}'>{email}</a>`
|
||||||
|
|
||||||
|
### bike_repair_station-phone
|
||||||
|
|
||||||
### bike_repair_station-phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number of the maintainer?**
|
The question is **What is the phone number of the maintainer?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
### bike_repair_station-opening_hours
|
||||||
|
|
||||||
### bike_repair_station-opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When is this bicycle repair point open?**
|
The question is **When is this bicycle repair point open?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
This is rendered with `{opening_hours_table()}`
|
This is rendered with `{opening_hours_table()}`
|
||||||
|
|
||||||
|
- **Always open** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>
|
||||||
|
opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||||
|
- **Always open** corresponds with _This option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### bike_repair_station-bike-chain-tool
|
||||||
- **Always open** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
|
||||||
- **Always open** corresponds with _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-bike-chain-tool
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this bike repair station have a special tool to repair your bike chain?**
|
The question is **Does this bike repair station have a special tool to repair your bike chain?**
|
||||||
|
|
||||||
|
- **There is a chain tool** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool' target='_blank'>service:bicycle:
|
||||||
|
chain_tool</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes' target='_blank'>
|
||||||
|
yes</a>
|
||||||
|
- **There is no chain tool** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool' target='_blank'>service:bicycle:
|
||||||
|
chain_tool</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dno' target='_blank'>
|
||||||
|
no</a>
|
||||||
|
|
||||||
|
### bike_repair_station-bike-stand
|
||||||
|
|
||||||
|
|
||||||
- **There is a chain tool** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool' target='_blank'>service:bicycle:chain_tool</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **There is no chain tool** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool' target='_blank'>service:bicycle:chain_tool</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-bike-stand
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this bike station have a hook to hang your bike on or a stand to raise it?**
|
The question is **Does this bike station have a hook to hang your bike on or a stand to raise it?**
|
||||||
|
|
||||||
|
- **There is a hook or stand** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand' target='_blank'>service:bicycle:stand</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **There is no hook or stand** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand' target='_blank'>service:bicycle:stand</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### Operational status
|
||||||
|
|
||||||
|
|
||||||
- **There is a hook or stand** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand' target='_blank'>service:bicycle:stand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **There is no hook or stand** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand' target='_blank'>service:bicycle:stand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Operational status
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is the bike pump still operational?**
|
The question is **Is the bike pump still operational?**
|
||||||
|
|
||||||
|
- **The bike pump is broken** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status' target='_blank'>
|
||||||
|
service:bicycle:pump:operational_status</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Dbroken' target='_blank'>
|
||||||
|
broken</a>
|
||||||
|
- **The bike pump is operational** corresponds with
|
||||||
|
|
||||||
|
### Email maintainer
|
||||||
|
|
||||||
|
|
||||||
- **The bike pump is broken** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status' target='_blank'>service:bicycle:pump:operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Dbroken' target='_blank'>broken</a>
|
|
||||||
- **The bike pump is operational** corresponds with
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Email maintainer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### bike_repair_station-valves
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-valves
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What valves are supported?**
|
The question is **What valves are supported?**
|
||||||
|
|
||||||
This rendering asks information about the property [valves](https://wiki.openstreetmap.org/wiki/Key:valves)
|
This rendering asks information about the property [valves](https://wiki.openstreetmap.org/wiki/Key:valves)
|
||||||
This is rendered with `This pump supports the following valves: {valves}`
|
This is rendered with `This pump supports the following valves: {valves}`
|
||||||
|
|
||||||
|
- **Sclaverand (also known as Presta)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Dsclaverand' target='_blank'>sclaverand</a>
|
||||||
|
- **Dunlop** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Ddunlop' target='_blank'>dunlop</a>
|
||||||
|
- **Schrader (cars)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>
|
||||||
|
valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Dschrader' target='_blank'>schrader</a>
|
||||||
|
|
||||||
|
### bike_repair_station-electrical_pump
|
||||||
- **Sclaverand (also known as Presta)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Dsclaverand' target='_blank'>sclaverand</a>
|
|
||||||
- **Dunlop** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Ddunlop' target='_blank'>dunlop</a>
|
|
||||||
- **Schrader (cars)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Dschrader' target='_blank'>schrader</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-electrical_pump
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this an electric bike pump?**
|
The question is **Is this an electric bike pump?**
|
||||||
|
|
||||||
|
- **Manual pump** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manual' target='_blank'>manual</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:manual%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Electrical pump** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manual' target='_blank'>
|
||||||
|
manual</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manual%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### bike_repair_station-manometer
|
||||||
|
|
||||||
|
|
||||||
- **Manual pump** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manual' target='_blank'>manual</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manual%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Electrical pump** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manual' target='_blank'>manual</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manual%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-manometer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does the pump have a pressure indicator or manometer?**
|
The question is **Does the pump have a pressure indicator or manometer?**
|
||||||
|
|
||||||
|
- **There is a manometer** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>
|
||||||
|
manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **There is no manometer** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno' target='_blank'>no</a>
|
||||||
|
- **There is manometer but it is broken** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken' target='_blank'>broken</a>
|
||||||
|
|
||||||
|
### level
|
||||||
|
|
||||||
|
|
||||||
- **There is a manometer** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **There is no manometer** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno' target='_blank'>no</a>
|
|
||||||
- **There is manometer but it is broken** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken' target='_blank'>broken</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### level
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **On what level is this feature located?**
|
The question is **On what level is this feature located?**
|
||||||
|
|
||||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||||
This is rendered with `Located on the {level}th floor`
|
This is rendered with `Located on the {level}th floor`
|
||||||
|
|
||||||
|
- **Located underground** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>
|
||||||
|
location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>_
|
||||||
- **Located underground** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>_This option cannot be chosen as answer_
|
This option cannot be chosen as answer_
|
||||||
- **Located on the ground floor** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
|
- **Located on the ground floor** corresponds
|
||||||
- **Located on the ground floor** corresponds with _This option cannot be chosen as answer_
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>
|
||||||
- **Located on the first floor** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
|
||||||
|
- **Located on the ground floor** corresponds with _This option cannot be chosen as answer_
|
||||||
|
- **Located on the first floor** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/bike_repair_station/bike_repair_station.json
|
This document is autogenerated from assets/layers/bike_repair_station/bike_repair_station.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
bike_shop
|
||||||
|
|
||||||
bike_shop
|
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A shop specifically selling bicycles or related items
|
A shop specifically selling bicycles or related items
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [bike_shop](#bike_shop)
|
1. [bike_shop](#bike_shop)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [bike_shop-is-bicycle_shop](#bike_shop-is-bicycle_shop)
|
+ [bike_shop-is-bicycle_shop](#bike_shop-is-bicycle_shop)
|
||||||
+ [bike_shop-name](#bike_shop-name)
|
+ [bike_shop-name](#bike_shop-name)
|
||||||
|
@ -36,61 +32,49 @@ A shop specifically selling bicycles or related items
|
||||||
+ [bike_repair_bike-wash](#bike_repair_bike-wash)
|
+ [bike_repair_bike-wash](#bike_repair_bike-wash)
|
||||||
+ [bike_cleaning-service:bicycle:cleaning:charge](#bike_cleaning-servicebicycle:cleaning:charge)
|
+ [bike_cleaning-service:bicycle:cleaning:charge](#bike_cleaning-servicebicycle:cleaning:charge)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/bike_shop/bike_shop.json)
|
[Go to the source code](../assets/layers/bike_shop/bike_shop.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <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:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_rental' target='_blank'>bicycle_rental</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>&service:bicycle:retail!~
|
||||||
|
^no$&service:bicycle:repair!~^no$&<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>|
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_rental' target='_blank'>bicycle_rental</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>&service:bicycle:retail!~^no$&service:bicycle:repair!~^no$&<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>|
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:rental#values) [service:bicycle:rental](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:rental#values) [service:bicycle:rental](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dno)
|
||||||
|
@ -98,240 +82,186 @@ attribute | type | values which are supported by this layer
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:pump#values) [service:bicycle:pump](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dseparate)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:pump#values) [service:bicycle:pump](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dseparate)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values) [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Donly_sold)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values) [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Donly_sold)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning#values) [service:bicycle:cleaning](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes) [diy](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning#values) [service:bicycle:cleaning](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes) [diy](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values) [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values) [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### bike_shop-is-bicycle_shop
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_shop-is-bicycle_shop
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### bike_shop-name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_shop-name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this bicycle shop?**
|
The question is **What is the name of this bicycle shop?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `This bicycle shop is called {name}`
|
This is rendered with `This bicycle shop is called {name}`
|
||||||
|
|
||||||
|
### bike_shop-website
|
||||||
|
|
||||||
### bike_shop-website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the website of {name}?**
|
The question is **What is the website of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
### bike_shop-phone
|
||||||
|
|
||||||
### bike_shop-phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number of {name}?**
|
The question is **What is the phone number of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
### bike_shop-email
|
||||||
|
|
||||||
### bike_shop-email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of {name}?**
|
The question is **What is the email address of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
### bike_shop-opening_hours
|
||||||
|
|
||||||
### bike_shop-opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When is this shop opened?**
|
The question is **When is this shop opened?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
This is rendered with `{opening_hours_table(opening_hours)}`
|
This is rendered with `{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
### description
|
||||||
|
|
||||||
|
The question is **Is there still something relevant you couldn't give in the previous questions? Add it
|
||||||
|
here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>**
|
||||||
|
|
||||||
### description
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>**
|
|
||||||
|
|
||||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
|
||||||
This is rendered with `{description}`
|
This is rendered with `{description}`
|
||||||
|
|
||||||
|
### bike_shop-access
|
||||||
|
|
||||||
### bike_shop-access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access)
|
This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access)
|
||||||
This is rendered with `Enkel voor {access}`
|
This is rendered with `Enkel voor {access}`
|
||||||
|
|
||||||
|
### bike_repair_sells-bikes
|
||||||
|
|
||||||
### bike_repair_sells-bikes
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this shop sell bikes?**
|
The question is **Does this shop sell bikes?**
|
||||||
|
|
||||||
|
- **This shop sells bikes** corresponds
|
||||||
|
with <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>
|
||||||
|
- **This shop doesn't sell bikes** corresponds
|
||||||
|
with <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%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### bike_repair_repairs-bikes
|
||||||
|
|
||||||
|
|
||||||
- **This shop sells bikes** corresponds with <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>
|
|
||||||
- **This shop doesn't sell bikes** corresponds with <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%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_repairs-bikes
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this shop repair bikes?**
|
The question is **Does this shop repair bikes?**
|
||||||
|
|
||||||
|
- **This shop repairs bikes** corresponds
|
||||||
|
with <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>
|
||||||
|
- **This shop doesn't repair bikes** corresponds
|
||||||
|
with <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%3Dno' target='_blank'>no</a>
|
||||||
|
- **This shop only repairs bikes bought here** corresponds
|
||||||
|
with <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%3Donly_sold' target='_blank'>
|
||||||
|
only_sold</a>
|
||||||
|
- **This shop only repairs bikes of a certain brand** corresponds
|
||||||
|
with <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%3Dbrand' target='_blank'>brand</a>
|
||||||
|
|
||||||
|
### bike_repair_rents-bikes
|
||||||
|
|
||||||
|
|
||||||
- **This shop repairs bikes** corresponds with <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>
|
|
||||||
- **This shop doesn't repair bikes** corresponds with <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%3Dno' target='_blank'>no</a>
|
|
||||||
- **This shop only repairs bikes bought here** corresponds with <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%3Donly_sold' target='_blank'>only_sold</a>
|
|
||||||
- **This shop only repairs bikes of a certain brand** corresponds with <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%3Dbrand' target='_blank'>brand</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_rents-bikes
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this shop rent out bikes?**
|
The question is **Does this shop rent out bikes?**
|
||||||
|
|
||||||
|
- **This shop rents out bikes** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:
|
||||||
|
rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This shop doesn't rent out bikes** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:
|
||||||
|
rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### bike_repair_second-hand-bikes
|
||||||
|
|
||||||
|
|
||||||
- **This shop rents out bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This shop doesn't rent out bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_second-hand-bikes
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this shop sell second-hand bikes?**
|
The question is **Does this shop sell second-hand bikes?**
|
||||||
|
|
||||||
|
- **This shop sells second-hand bikes** corresponds
|
||||||
|
with <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>
|
||||||
|
- **This shop doesn't sell second-hand bikes** corresponds
|
||||||
|
with <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%3Dno' target='_blank'>
|
||||||
|
no</a>
|
||||||
|
- **This shop only sells second-hand bikes** corresponds
|
||||||
|
with <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%3Donly' target='_blank'>
|
||||||
|
only</a>
|
||||||
|
|
||||||
|
### bike_repair_bike-pump-service
|
||||||
|
|
||||||
|
|
||||||
- **This shop sells second-hand bikes** corresponds with <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>
|
|
||||||
- **This shop doesn't sell second-hand bikes** corresponds with <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%3Dno' target='_blank'>no</a>
|
|
||||||
- **This shop only sells second-hand bikes** corresponds with <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%3Donly' target='_blank'>only</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_bike-pump-service
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this shop offer a bike pump for use by anyone?**
|
The question is **Does this shop offer a bike pump for use by anyone?**
|
||||||
|
|
||||||
|
- **This shop offers a bike pump for anyone** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This shop doesn't offer a bike pump for anyone** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
||||||
|
- **There is bicycle pump, it is shown as a separate point ** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dseparate' target='_blank'>separate</a>
|
||||||
|
|
||||||
|
### bike_repair_tools-service
|
||||||
|
|
||||||
|
|
||||||
- **This shop offers a bike pump for anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This shop doesn't offer a bike pump for anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
|
||||||
- **There is bicycle pump, it is shown as a separate point ** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dseparate' target='_blank'>separate</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_tools-service
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Are there tools here to repair your own bike?**
|
The question is **Are there tools here to repair your own bike?**
|
||||||
|
|
||||||
|
- **This shop offers tools for DIY repair** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This shop doesn't offer tools for DIY repair** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno' target='_blank'>no</a>
|
||||||
|
- **Tools for DIY repair are only available if you bought/hire the bike in the shop** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Donly_sold' target='_blank'>only_sold</a>
|
||||||
|
|
||||||
|
### bike_repair_bike-wash
|
||||||
|
|
||||||
|
|
||||||
- **This shop offers tools for DIY repair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This shop doesn't offer tools for DIY repair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno' target='_blank'>no</a>
|
|
||||||
- **Tools for DIY repair are only available if you bought/hire the bike in the shop** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Donly_sold' target='_blank'>only_sold</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_bike-wash
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Are bicycles washed here?**
|
The question is **Are bicycles washed here?**
|
||||||
|
|
||||||
|
- **This shop cleans bicycles** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:
|
||||||
|
cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This shop has an installation where one can clean bicycles themselves** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:
|
||||||
|
cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy' target='_blank'>diy</a>
|
||||||
|
- **This shop doesn't offer bicycle cleaning** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:
|
||||||
|
cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### bike_cleaning-service:bicycle:cleaning:charge
|
||||||
|
|
||||||
|
|
||||||
- **This shop cleans bicycles** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This shop has an installation where one can clean bicycles themselves** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy' target='_blank'>diy</a>
|
|
||||||
- **This shop doesn't offer bicycle cleaning** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_cleaning-service:bicycle:cleaning:charge
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How much does it cost to use the cleaning service?**
|
The question is **How much does it cost to use the cleaning service?**
|
||||||
|
|
||||||
This rendering asks information about the property [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge)
|
This rendering asks information about the
|
||||||
|
property [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge)
|
||||||
This is rendered with `Using the cleaning service costs {service:bicycle:cleaning:charge}`
|
This is rendered with `Using the cleaning service costs {service:bicycle:cleaning:charge}`
|
||||||
|
|
||||||
|
- **The cleaning service is free to use** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:
|
||||||
- **The cleaning service is free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno&service:bicycle:cleaning:charge=' target='_blank'>no&service:bicycle:cleaning:charge=</a>
|
cleaning:fee</a>
|
||||||
- **Free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno&service:bicycle:cleaning:charge=' target='_blank'>
|
||||||
- **The cleaning service has a fee, but the amount is not known** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dyes' target='_blank'>yes</a>
|
no&service:bicycle:cleaning:charge=</a>
|
||||||
|
- **Free to use** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:
|
||||||
|
cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno' target='_blank'>
|
||||||
|
no</a>_This option cannot be chosen as answer_
|
||||||
|
- **The cleaning service has a fee, but the amount is not known** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:
|
||||||
|
cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dyes' target='_blank'>
|
||||||
|
yes</a>
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/bike_shop/bike_shop.json
|
This document is autogenerated from assets/layers/bike_shop/bike_shop.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
bike_themed_object
|
||||||
|
|
||||||
bike_themed_object
|
|
||||||
====================
|
====================
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A layer with bike-themed objects but who don't match any other layer
|
A layer with bike-themed objects but who don't match any other layer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [bike_themed_object](#bike_themed_object)
|
1. [bike_themed_object](#bike_themed_object)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [description](#description)
|
+ [description](#description)
|
||||||
+ [website](#website)
|
+ [website](#website)
|
||||||
|
@ -25,139 +21,104 @@ A layer with bike-themed objects but who don't match any other layer
|
||||||
+ [phone](#phone)
|
+ [phone](#phone)
|
||||||
+ [opening_hours](#opening_hours)
|
+ [opening_hours](#opening_hours)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/bike_themed_object/bike_themed_object.json)
|
[Go to the source code](../assets/layers/bike_themed_object/bike_themed_object.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dbicycle' target='_blank'>bicycle</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dcycling' target='_blank'>cycling</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>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:association' target='_blank'>association</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:association%3Dcycling' target='_blank'>cycling</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:association' target='_blank'>association</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:association%3Dbicycle' target='_blank'>bicycle</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:ngo' target='_blank'>ngo</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:ngo%3Dcycling' target='_blank'>cycling</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:ngo' target='_blank'>ngo</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:ngo%3Dbicycle' target='_blank'>bicycle</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dbicycle' target='_blank'>bicycle</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dcycling' target='_blank'>cycling</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dcycling' target='_blank'>cycling</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>|<a href='https://wiki.openstreetmap.org/wiki/Key:association' target='_blank'>association</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:association%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:association' target='_blank'>association</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:association%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:ngo' target='_blank'>ngo</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:ngo%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:ngo' target='_blank'>ngo</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:ngo%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dcycling' target='_blank'>cycling</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### description
|
||||||
|
|
||||||
|
The question is **Is there still something relevant you couldn't give in the previous questions? Add it
|
||||||
|
here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>**
|
||||||
|
|
||||||
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
|
|
||||||
### description
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>**
|
|
||||||
|
|
||||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
|
||||||
This is rendered with `{description}`
|
This is rendered with `{description}`
|
||||||
|
|
||||||
|
### website
|
||||||
|
|
||||||
### website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the website of {name}?**
|
The question is **What is the website of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### email
|
||||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of {name}?**
|
The question is **What is the email address of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### phone
|
||||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number of {name}?**
|
The question is **What is the phone number of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
|
||||||
|
### opening_hours
|
||||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What are the opening hours of {name}?**
|
The question is **What are the opening hours of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/bike_themed_object/bike_themed_object.json
|
This document is autogenerated from assets/layers/bike_themed_object/bike_themed_object.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
binocular
|
||||||
|
|
||||||
binocular
|
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,106 +7,67 @@
|
||||||
|
|
||||||
Binoculas
|
Binoculas
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [binocular](#binocular)
|
1. [binocular](#binocular)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [binocular-charge](#binocular-charge)
|
+ [binocular-charge](#binocular-charge)
|
||||||
+ [binocular-direction](#binocular-direction)
|
+ [binocular-direction](#binocular-direction)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [binoculars](https://mapcomplete.osm.be/binoculars)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [binoculars](https://mapcomplete.osm.be/binoculars)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/binocular/binocular.json)
|
[Go to the source code](../assets/layers/binocular/binocular.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbinoculars' target='_blank'>binoculars</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbinoculars' target='_blank'>binoculars</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### binocular-charge
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### binocular-charge
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How much does one have to pay to use these binoculars?**
|
The question is **How much does one have to pay to use these binoculars?**
|
||||||
|
|
||||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
This is rendered with `Using these binoculars costs {charge}`
|
This is rendered with `Using these binoculars costs {charge}`
|
||||||
|
|
||||||
|
- **Free to use** corresponds 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>
|
||||||
|
|
||||||
|
### binocular-direction
|
||||||
- **Free to use** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### binocular-direction
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When looking through this binocular, in what direction does one look?**
|
The question is **When looking through this binocular, in what direction does one look?**
|
||||||
|
|
||||||
This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction)
|
This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction)
|
||||||
This is rendered with `Looks towards {direction}°`
|
This is rendered with `Looks towards {direction}°`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/binocular/binocular.json
|
This document is autogenerated from assets/layers/binocular/binocular.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
birdhide
|
||||||
|
|
||||||
birdhide
|
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,134 +7,108 @@
|
||||||
|
|
||||||
Een vogelkijkhut
|
Een vogelkijkhut
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [birdhide](#birdhide)
|
1. [birdhide](#birdhide)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [bird-hide-shelter-or-wall](#bird-hide-shelter-or-wall)
|
+ [bird-hide-shelter-or-wall](#bird-hide-shelter-or-wall)
|
||||||
+ [bird-hide-wheelchair](#bird-hide-wheelchair)
|
+ [bird-hide-wheelchair](#bird-hide-wheelchair)
|
||||||
+ [birdhide-operator](#birdhide-operator)
|
+ [birdhide-operator](#birdhide-operator)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [nature](https://mapcomplete.osm.be/nature)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [nature](https://mapcomplete.osm.be/nature)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/birdhide/birdhide.json)
|
[Go to the source code](../assets/layers/birdhide/birdhide.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dbird_hide' target='_blank'>bird_hide</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dbird_hide' target='_blank'>bird_hide</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/building#values) [building](https://wiki.openstreetmap.org/wiki/Key:building) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:building%3D) [yes](https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes) [tower](https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/building#values) [building](https://wiki.openstreetmap.org/wiki/Key:building) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:building%3D) [yes](https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes) [tower](https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### bird-hide-shelter-or-wall
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bird-hide-shelter-or-wall
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is dit een kijkwand of kijkhut?**
|
The question is **Is dit een kijkwand of kijkhut?**
|
||||||
|
|
||||||
|
- **Vogelkijkwand** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>
|
||||||
|
shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dno' target='_blank'>no</a>
|
||||||
|
- **Vogelkijkhut** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>
|
||||||
|
amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a>
|
||||||
|
&<a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>
|
||||||
|
&<a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Vogelkijktoren** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>
|
||||||
|
building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower' target='_blank'>tower</a>
|
||||||
|
&<a href='https://wiki.openstreetmap.org/wiki/Key:bird_hide' target='_blank'>bird_hide</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bird_hide%3Dtower' target='_blank'>tower</a>
|
||||||
|
- **Vogelkijkhut** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>
|
||||||
|
amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a>_This option cannot be chosen
|
||||||
|
as answer_
|
||||||
|
|
||||||
|
### bird-hide-wheelchair
|
||||||
|
|
||||||
|
|
||||||
- **Vogelkijkwand** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dno' target='_blank'>no</a>
|
|
||||||
- **Vogelkijkhut** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Vogelkijktoren** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower' target='_blank'>tower</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:bird_hide' target='_blank'>bird_hide</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bird_hide%3Dtower' target='_blank'>tower</a>
|
|
||||||
- **Vogelkijkhut** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bird-hide-wheelchair
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is deze vogelkijkplaats rolstoeltoegankelijk?**
|
The question is **Is deze vogelkijkplaats rolstoeltoegankelijk?**
|
||||||
|
|
||||||
|
- **Er zijn speciale voorzieningen voor rolstoelen** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||||
|
- **Een rolstoel raakt er vlot** corresponds
|
||||||
|
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>
|
||||||
|
- **Je kan er raken met een rolstoel, maar het is niet makkelijk** corresponds
|
||||||
|
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>
|
||||||
|
- **Niet rolstoeltoegankelijk** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### birdhide-operator
|
||||||
|
|
||||||
|
|
||||||
- **Er zijn speciale voorzieningen voor rolstoelen** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
|
||||||
- **Een rolstoel raakt er vlot** corresponds 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>
|
|
||||||
- **Je kan er raken met een rolstoel, maar het is niet makkelijk** corresponds 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>
|
|
||||||
- **Niet rolstoeltoegankelijk** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### birdhide-operator
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wie beheert deze vogelkijkplaats?**
|
The question is **Wie beheert deze vogelkijkplaats?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
This is rendered with `Beheer door {operator}`
|
This is rendered with `Beheer door {operator}`
|
||||||
|
|
||||||
|
- **Beheer door Natuurpunt** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>
|
||||||
- **Beheer door Natuurpunt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt' target='_blank'>Natuurpunt</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt' target='_blank'>Natuurpunt</a>
|
||||||
- **Beheer door het Agentschap Natuur en Bos ** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos' target='_blank'>Agentschap Natuur en Bos</a>
|
- **Beheer door het Agentschap Natuur en Bos ** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos' target='_blank'>Agentschap
|
||||||
|
Natuur en Bos</a>
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/birdhide/birdhide.json
|
This document is autogenerated from assets/layers/birdhide/birdhide.json
|
|
@ -1,20 +1,12 @@
|
||||||
|
brugge
|
||||||
|
|
||||||
brugge
|
|
||||||
========
|
========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [brugge](#brugge)
|
1. [brugge](#brugge)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [status](#status)
|
+ [status](#status)
|
||||||
+ [has closeby](#has-closeby)
|
+ [has closeby](#has-closeby)
|
||||||
+ [openbaar](#openbaar)
|
+ [openbaar](#openbaar)
|
||||||
|
@ -22,104 +14,60 @@
|
||||||
+ [oh](#oh)
|
+ [oh](#oh)
|
||||||
|
|
||||||
|
|
||||||
|
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/pietervdvn.github.io/master/aeds_brugge.json`
|
||||||
|
- This layer will automatically load [defibrillator](./defibrillator.md) into the layout as it depends on it: A
|
||||||
|
calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_osm_aed)
|
||||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/pietervdvn.github.io/master/aeds_brugge.json`
|
|
||||||
- This layer will automatically load [defibrillator](./defibrillator.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_osm_aed)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/brugge/brugge.json)
|
[Go to the source code](../assets/layers/brugge/brugge.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- Brugs volgnummer~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- Brugs volgnummer~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/status#values) [status](https://wiki.openstreetmap.org/wiki/Key:status) | Multiple choice | [oud](https://wiki.openstreetmap.org/wiki/Tag:status%3Doud)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/status#values) [status](https://wiki.openstreetmap.org/wiki/Key:status) | Multiple choice | [oud](https://wiki.openstreetmap.org/wiki/Tag:status%3Doud)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/Lokaal AED#values) [Lokaal AED](https://wiki.openstreetmap.org/wiki/Key:Lokaal AED) | Multiple choice |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/Lokaal AED#values) [Lokaal AED](https://wiki.openstreetmap.org/wiki/Key:Lokaal AED) | Multiple choice |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### status
|
|
||||||
|
|
||||||
|
|
||||||
|
### status
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
- **<div class='alert'>Dit datapunt is verouderd</div>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:status' target='_blank'>status</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:status%3Doud' target='_blank'>oud</a>
|
||||||
|
|
||||||
|
### has closeby
|
||||||
|
|
||||||
|
|
||||||
- **<div class='alert'>Dit datapunt is verouderd</div>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:status' target='_blank'>status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:status%3Doud' target='_blank'>oud</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### has closeby
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### openbaar
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### openbaar
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
- **Bevindt zich in een openbaar gebouw: <b>{Openbare AED Gebouw}</b> in lokaal <b>{Lokaal AED}</b>** corresponds with
|
||||||
|
Lokaal AED~^..*$
|
||||||
|
|
||||||
|
### addr
|
||||||
|
|
||||||
|
|
||||||
- **Bevindt zich in een openbaar gebouw: <b>{Openbare AED Gebouw}</b> in lokaal <b>{Lokaal AED}</b>** corresponds with Lokaal AED~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### addr
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### oh
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### oh
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/brugge/brugge.json
|
This document is autogenerated from assets/layers/brugge/brugge.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
cafe_pub
|
||||||
|
|
||||||
cafe_pub
|
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A layer showing cafés and pubs where one can gather around a drink. The layer asks for some relevant questions
|
A layer showing cafés and pubs where one can gather around a drink. The layer asks for some relevant questions
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [cafe_pub](#cafe_pub)
|
1. [cafe_pub](#cafe_pub)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [Name](#name)
|
+ [Name](#name)
|
||||||
+ [Classification](#classification)
|
+ [Classification](#classification)
|
||||||
|
@ -30,232 +26,185 @@ A layer showing cafés and pubs where one can gather around a drink. The layer a
|
||||||
+ [service:electricity](#serviceelectricity)
|
+ [service:electricity](#serviceelectricity)
|
||||||
+ [dog-access](#dog-access)
|
+ [dog-access](#dog-access)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cafes_and_pubs](https://mapcomplete.osm.be/cafes_and_pubs)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cafes_and_pubs](https://mapcomplete.osm.be/cafes_and_pubs)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/cafe_pub/cafe_pub.json)
|
[Go to the source code](../assets/layers/cafe_pub/cafe_pub.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten' target='_blank'>biergarten</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten' target='_blank'>biergarten</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [pub](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub) [bar](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar) [cafe](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) [biergarten](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [pub](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub) [bar](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar) [cafe](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) [biergarten](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this pub?**
|
The question is **What is the name of this pub?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `This pub is named {name}`
|
This is rendered with `This pub is named {name}`
|
||||||
|
|
||||||
|
### Classification
|
||||||
|
|
||||||
### Classification
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What kind of cafe is this**
|
The question is **What kind of cafe is this**
|
||||||
|
|
||||||
|
- **Dit is <b>een bruin café of een kroeg</b> waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig
|
||||||
|
met veel houtwerk ** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>
|
||||||
|
amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>
|
||||||
|
- **Dit is een <b>bar</b> waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en
|
||||||
|
commercieel, soms met lichtinstallatie en feestmuziek** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>
|
||||||
|
- **Dit is een <b>cafe</b> - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te
|
||||||
|
nuttigen.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>
|
||||||
|
- **Dit is een <b>restaurant</b> waar men een maaltijd geserveerd krijgt** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||||
|
- **Een open ruimte waar bier geserveerd wordt. Typisch in Duitsland** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten' target='_blank'>biergarten</a>
|
||||||
|
|
||||||
|
### opening_hours
|
||||||
|
|
||||||
|
|
||||||
- **Dit is <b>een bruin café of een kroeg</b> waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk ** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>
|
|
||||||
- **Dit is een <b>bar</b> waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>
|
|
||||||
- **Dit is een <b>cafe</b> - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>
|
|
||||||
- **Dit is een <b>restaurant</b> waar men een maaltijd geserveerd krijgt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
|
||||||
- **Een open ruimte waar bier geserveerd wordt. Typisch in Duitsland** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten' target='_blank'>biergarten</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What are the opening hours of {name}?**
|
The question is **What are the opening hours of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
### website
|
||||||
|
|
||||||
### website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the website of {name}?**
|
The question is **What is the website of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### email
|
||||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of {name}?**
|
The question is **What is the email address of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### phone
|
||||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number of {name}?**
|
The question is **What is the phone number of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
|
||||||
|
### payment-options
|
||||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### payment-options
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Which methods of payment are accepted here?**
|
The question is **Which methods of payment are accepted here?**
|
||||||
|
|
||||||
|
- **Cash is accepted here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer
|
||||||
|
will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||||
|
- **Payment cards are accepted here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer
|
||||||
|
will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### wheelchair-access
|
||||||
|
|
||||||
|
|
||||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
|
||||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### wheelchair-access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this place accessible with a wheelchair?**
|
The question is **Is this place accessible with a wheelchair?**
|
||||||
|
|
||||||
|
- **This place is specially adapted for wheelchair users** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||||
|
- **This place is easily reachable with a wheelchair** corresponds
|
||||||
|
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>
|
||||||
|
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds
|
||||||
|
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 place is not reachable with a wheelchair** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### service:electricity
|
||||||
|
|
||||||
|
|
||||||
- **This place is specially adapted for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
|
||||||
- **This place is easily reachable with a wheelchair** corresponds 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>
|
|
||||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds 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 place is not reachable with a wheelchair** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### service:electricity
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this amenity have electrical outlets, available to customers when they are inside?**
|
The question is **Does this amenity have electrical outlets, available to customers when they are inside?**
|
||||||
|
|
||||||
|
- **There are plenty of domestic sockets available to customers seated indoors, where they can charge their
|
||||||
|
electronics** corresponds 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%3Dyes' target='_blank'>
|
||||||
|
yes</a>
|
||||||
|
- **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics**
|
||||||
|
corresponds 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%3Dlimited' target='_blank'>
|
||||||
|
limited</a>
|
||||||
|
- **There are no sockets available indoors to customers, but charging might be possible if the staff is asked**
|
||||||
|
corresponds 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** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### dog-access
|
||||||
|
|
||||||
|
|
||||||
- **There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds 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%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds 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%3Dlimited' target='_blank'>limited</a>
|
|
||||||
- **There are no sockets available indoors to customers, but charging might be possible if the staff is asked** corresponds 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** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### dog-access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Are dogs allowed in this business?**
|
The question is **Are dogs allowed in this business?**
|
||||||
|
|
||||||
|
- **Dogs are allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Dogs are <b>not</b> allowed** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>
|
||||||
- **Dogs are allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
||||||
- **Dogs are <b>not</b> allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
- **Dogs are allowed, but they have to be leashed** corresponds
|
||||||
- **Dogs are allowed, but they have to be leashed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>
|
||||||
- **Dogs are allowed and can run around freely** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
||||||
|
- **Dogs are allowed and can run around freely** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/cafe_pub/cafe_pub.json
|
This document is autogenerated from assets/layers/cafe_pub/cafe_pub.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
caravansites
|
||||||
|
|
||||||
caravansites
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
camper sites
|
camper sites
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [caravansites](#caravansites)
|
1. [caravansites](#caravansites)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [caravansites-name](#caravansites-name)
|
+ [caravansites-name](#caravansites-name)
|
||||||
+ [caravansites-fee](#caravansites-fee)
|
+ [caravansites-fee](#caravansites-fee)
|
||||||
|
@ -33,249 +29,168 @@ camper sites
|
||||||
+ [questions](#questions)
|
+ [questions](#questions)
|
||||||
+ [reviews](#reviews)
|
+ [reviews](#reviews)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [campersite](https://mapcomplete.osm.be/campersite)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [campersite](https://mapcomplete.osm.be/campersite)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/caravansites/caravansites.json)
|
[Go to the source code](../assets/layers/caravansites/caravansites.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dcaravan_site' target='_blank'>caravan_site</a>
|
||||||
|
- permanent_camping!~^only$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dcaravan_site' target='_blank'>caravan_site</a>
|
|
||||||
- permanent_camping!~^only$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fee#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fee#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sanitary_dump_station#values) [sanitary_dump_station](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sanitary_dump_station#values) [sanitary_dump_station](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/toilets#values) [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/toilets#values) [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/permanent_camping#values) [permanent_camping](https://wiki.openstreetmap.org/wiki/Key:permanent_camping) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/permanent_camping#values) [permanent_camping](https://wiki.openstreetmap.org/wiki/Key:permanent_camping) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### caravansites-name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is this place called?**
|
The question is **What is this place called?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `This place is called {name}`
|
This is rendered with `This place is called {name}`
|
||||||
|
|
||||||
|
### caravansites-fee
|
||||||
|
|
||||||
### caravansites-fee
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this place charge a fee?**
|
The question is **Does this place charge a fee?**
|
||||||
|
|
||||||
|
- **You need to pay for use** corresponds 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>
|
||||||
|
- **Can be used for free** corresponds 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>
|
||||||
|
- **Can be used for free** corresponds 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>_This option cannot be chosen
|
||||||
|
as answer_
|
||||||
|
|
||||||
|
### caravansites-charge
|
||||||
|
|
||||||
|
|
||||||
- **You need to pay for use** corresponds 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>
|
|
||||||
- **Can be used for free** corresponds 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>
|
|
||||||
- **Can be used for free** corresponds 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>_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-charge
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How much does this place charge?**
|
The question is **How much does this place charge?**
|
||||||
|
|
||||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
This is rendered with `This place charges {charge}`
|
This is rendered with `This place charges {charge}`
|
||||||
|
|
||||||
|
### caravansites-sanitary-dump
|
||||||
|
|
||||||
### caravansites-sanitary-dump
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this place have a sanitary dump station?**
|
The question is **Does this place have a sanitary dump station?**
|
||||||
|
|
||||||
|
- **This place has a sanitary dump station** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station' target='_blank'>sanitary_dump_station</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This place does not have a sanitary dump station** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station' target='_blank'>sanitary_dump_station</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### caravansites-capacity
|
||||||
|
|
||||||
|
|
||||||
- **This place has a sanitary dump station** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station' target='_blank'>sanitary_dump_station</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This place does not have a sanitary dump station** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station' target='_blank'>sanitary_dump_station</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-capacity
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)**
|
The question is **How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)**
|
||||||
|
|
||||||
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
||||||
This is rendered with `{capacity} campers can use this place at the same time`
|
This is rendered with `{capacity} campers can use this place at the same time`
|
||||||
|
|
||||||
|
### caravansites-internet
|
||||||
|
|
||||||
### caravansites-internet
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this place provide internet access?**
|
The question is **Does this place provide internet access?**
|
||||||
|
|
||||||
|
- **There is internet access** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **There is internet access** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwifi' target='_blank'>wifi</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan' target='_blank'>wlan</a>_This option cannot
|
||||||
|
be chosen as answer_
|
||||||
|
- **There is no internet access** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### caravansites-internet-fee
|
||||||
|
|
||||||
|
|
||||||
- **There is internet access** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **There is internet access** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwifi' target='_blank'>wifi</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan' target='_blank'>wlan</a>_This option cannot be chosen as answer_
|
|
||||||
- **There is no internet access** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-internet-fee
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Do you have to pay for the internet access?**
|
The question is **Do you have to pay for the internet access?**
|
||||||
|
|
||||||
|
- **You need to pay extra for internet access** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:fee' target='_blank'>internet_access:fee</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **You do not need to pay extra for internet access** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:fee' target='_blank'>internet_access:fee</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### caravansites-toilets
|
||||||
|
|
||||||
|
|
||||||
- **You need to pay extra for internet access** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:fee' target='_blank'>internet_access:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **You do not need to pay extra for internet access** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:fee' target='_blank'>internet_access:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-toilets
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this place have toilets?**
|
The question is **Does this place have toilets?**
|
||||||
|
|
||||||
|
- **This place has toilets** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>
|
||||||
|
toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This place does not have toilets** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### caravansites-website
|
||||||
|
|
||||||
|
|
||||||
- **This place has toilets** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This place does not have toilets** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this place have a website?**
|
The question is **Does this place have a website?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `Official website: <a href='{website}'>{website}</a>`
|
This is rendered with `Official website: <a href='{website}'>{website}</a>`
|
||||||
|
|
||||||
|
### caravansites-long-term
|
||||||
|
|
||||||
### caravansites-long-term
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this place offer spots for long term rental?**
|
The question is **Does this place offer spots for long term rental?**
|
||||||
|
|
||||||
|
- **Yes, there are some spots for long term rental, but you can also stay on a daily basis** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **No, there are no permanent guests here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno' target='_blank'>no</a>
|
||||||
|
- **It is only possible to stay here if you have a long term contract(this place will disappear from this map if you
|
||||||
|
choose this)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>
|
||||||
|
permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly' target='_blank'>
|
||||||
|
only</a>
|
||||||
|
|
||||||
|
### caravansites-description
|
||||||
|
|
||||||
|
The question is **Would you like to add a general description of this place? (Do not repeat information previously asked
|
||||||
|
or shown above. Please keep it objective - opinions go into the reviews)**
|
||||||
|
|
||||||
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
- **Yes, there are some spots for long term rental, but you can also stay on a daily basis** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **No, there are no permanent guests here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno' target='_blank'>no</a>
|
|
||||||
- **It is only possible to stay here if you have a long term contract(this place will disappear from this map if you choose this)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly' target='_blank'>only</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-description
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Would you like to add a general description of this place? (Do not repeat information previously asked or shown above. Please keep it objective - opinions go into the reviews)**
|
|
||||||
|
|
||||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
|
||||||
This is rendered with `More details about this place: {description}`
|
This is rendered with `More details about this place: {description}`
|
||||||
|
|
||||||
|
### questions
|
||||||
|
|
||||||
### questions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### reviews
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### reviews
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/caravansites/caravansites.json
|
This document is autogenerated from assets/layers/caravansites/caravansites.json
|
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,4 @@
|
||||||
|
climbing
|
||||||
|
|
||||||
climbing
|
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A climbing opportunity
|
A climbing opportunity
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [climbing](#climbing)
|
1. [climbing](#climbing)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [questions](#questions)
|
+ [questions](#questions)
|
||||||
+ [minimap](#minimap)
|
+ [minimap](#minimap)
|
||||||
|
@ -30,178 +26,106 @@ A climbing opportunity
|
||||||
+ [reviews](#reviews)
|
+ [reviews](#reviews)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer will automatically load [climbing_route](./climbing_route.md) into the layout as it depends on it: A
|
||||||
|
calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _
|
||||||
|
contained_climbing_routes_properties)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||||
- This layer will automatically load [climbing_route](./climbing_route.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _contained_climbing_routes_properties)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/climbing/climbing.json)
|
[Go to the source code](../assets/layers/climbing/climbing.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <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>
|
||||||
|
- climbing!~^route$
|
||||||
|
- leisure!~^sports_centre$
|
||||||
|
- climbing!~^route_top$
|
||||||
|
- climbing!~^route_bottom$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <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>
|
|
||||||
- climbing!~^route$
|
|
||||||
- leisure!~^sports_centre$
|
|
||||||
- climbing!~^route_top$
|
|
||||||
- climbing!~^route_bottom$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing#values) [climbing](https://wiki.openstreetmap.org/wiki/Key:climbing) | Multiple choice | [boulder](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder) [crag](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag) [area](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing#values) [climbing](https://wiki.openstreetmap.org/wiki/Key:climbing) | Multiple choice | [boulder](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder) [crag](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag) [area](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/rock#values) [rock](https://wiki.openstreetmap.org/wiki/Key:rock) | [string](../SpecialInputElements.md#string) | [limestone](https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/rock#values) [rock](https://wiki.openstreetmap.org/wiki/Key:rock) | [string](../SpecialInputElements.md#string) | [limestone](https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### questions
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### questions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### minimap
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Contained routes length hist
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Contained routes length hist
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Contained routes hist
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Contained routes hist
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Contained_climbing_routes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Contained_climbing_routes
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this climbing opportunity?**
|
The question is **What is the name of this climbing opportunity?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `<strong>{name}</strong>`
|
This is rendered with `<strong>{name}</strong>`
|
||||||
|
|
||||||
|
- **This climbing opportunity doesn't have a name** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### Type
|
||||||
- **This climbing opportunity doesn't have a name** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What kind of climbing opportunity is this?**
|
The question is **What kind of climbing opportunity is this?**
|
||||||
|
|
||||||
|
- **A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without
|
||||||
|
rope** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder' target='_blank'>boulder</a>
|
||||||
|
- **A climbing crag - a single rock or cliff with at least a few climbing routes** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag' target='_blank'>crag</a>
|
||||||
|
- **A climbing area with one or more climbing crags and/or boulders** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea' target='_blank'>area</a>
|
||||||
|
|
||||||
|
### Rock type (crag/rock/cliff only)
|
||||||
|
|
||||||
|
|
||||||
- **A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder' target='_blank'>boulder</a>
|
|
||||||
- **A climbing crag - a single rock or cliff with at least a few climbing routes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag' target='_blank'>crag</a>
|
|
||||||
- **A climbing area with one or more climbing crags and/or boulders** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea' target='_blank'>area</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Rock type (crag/rock/cliff only)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the rock type here?**
|
The question is **What is the rock type here?**
|
||||||
|
|
||||||
This rendering asks information about the property [rock](https://wiki.openstreetmap.org/wiki/Key:rock)
|
This rendering asks information about the property [rock](https://wiki.openstreetmap.org/wiki/Key:rock)
|
||||||
This is rendered with `The rock type is {rock}`
|
This is rendered with `The rock type is {rock}`
|
||||||
|
|
||||||
|
- **Limestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rock' target='_blank'>rock</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone' target='_blank'>limestone</a>
|
||||||
|
|
||||||
|
### reviews
|
||||||
- **Limestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rock' target='_blank'>rock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone' target='_blank'>limestone</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### reviews
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/climbing/climbing.json
|
This document is autogenerated from assets/layers/climbing/climbing.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
climbing_club
|
||||||
|
|
||||||
climbing_club
|
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A climbing club or organisations
|
A climbing club or organisations
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [climbing_club](#climbing_club)
|
1. [climbing_club](#climbing_club)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [climbing_club-name](#climbing_club-name)
|
+ [climbing_club-name](#climbing_club-name)
|
||||||
+ [minimap](#minimap)
|
+ [minimap](#minimap)
|
||||||
+ [website](#website)
|
+ [website](#website)
|
||||||
|
@ -25,138 +21,89 @@ A climbing club or organisations
|
||||||
+ [phone](#phone)
|
+ [phone](#phone)
|
||||||
+ [opening_hours](#opening_hours)
|
+ [opening_hours](#opening_hours)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/climbing_club/climbing_club.json)
|
[Go to the source code](../assets/layers/climbing_club/climbing_club.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dclimbing' target='_blank'>climbing</a>
|
||||||
|
|<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>&office~^..*$|club~
|
||||||
|
^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dclimbing' target='_blank'>climbing</a>|<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>&office~^..*$|club~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### climbing_club-name
|
|
||||||
|
|
||||||
|
|
||||||
|
### climbing_club-name
|
||||||
|
|
||||||
The question is **What is the name of this climbing club or NGO?**
|
The question is **What is the name of this climbing club or NGO?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `<strong>{name}</strong>`
|
This is rendered with `<strong>{name}</strong>`
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
### minimap
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### website
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the website of {name}?**
|
The question is **What is the website of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### email
|
||||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of {name}?**
|
The question is **What is the email address of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### phone
|
||||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number of {name}?**
|
The question is **What is the phone number of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
|
||||||
|
### opening_hours
|
||||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What are the opening hours of {name}?**
|
The question is **What are the opening hours of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/climbing_club/climbing_club.json
|
This document is autogenerated from assets/layers/climbing_club/climbing_club.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
climbing_gym
|
||||||
|
|
||||||
climbing_gym
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A climbing gym
|
A climbing gym
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [climbing_gym](#climbing_gym)
|
1. [climbing_gym](#climbing_gym)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [questions](#questions)
|
+ [questions](#questions)
|
||||||
+ [minimap](#minimap)
|
+ [minimap](#minimap)
|
||||||
|
@ -28,169 +24,100 @@ A climbing gym
|
||||||
+ [opening_hours](#opening_hours)
|
+ [opening_hours](#opening_hours)
|
||||||
+ [reviews](#reviews)
|
+ [reviews](#reviews)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/climbing_gym/climbing_gym.json)
|
[Go to the source code](../assets/layers/climbing_gym/climbing_gym.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <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>
|
||||||
|
- <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>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <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>
|
|
||||||
- <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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### questions
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### questions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### minimap
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this climbing gym?**
|
The question is **What is the name of this climbing gym?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `<strong>{name}</strong>`
|
This is rendered with `<strong>{name}</strong>`
|
||||||
|
|
||||||
|
### website
|
||||||
|
|
||||||
### website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the website of {name}?**
|
The question is **What is the website of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### phone
|
||||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number of {name}?**
|
The question is **What is the phone number of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
|
||||||
|
### email
|
||||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of {name}?**
|
The question is **What is the email address of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### opening_hours
|
||||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What are the opening hours of {name}?**
|
The question is **What are the opening hours of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
### reviews
|
||||||
|
|
||||||
### reviews
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/climbing_gym/climbing_gym.json
|
This document is autogenerated from assets/layers/climbing_gym/climbing_gym.json
|
|
@ -1,21 +1,17 @@
|
||||||
|
climbing_route
|
||||||
|
|
||||||
climbing_route
|
|
||||||
================
|
================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/climbing_route.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/climbing_route.svg' height="100px">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [climbing_route](#climbing_route)
|
1. [climbing_route](#climbing_route)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [questions](#questions)
|
+ [questions](#questions)
|
||||||
+ [minimap](#minimap)
|
+ [minimap](#minimap)
|
||||||
|
@ -28,175 +24,116 @@
|
||||||
+ [reviews](#reviews)
|
+ [reviews](#reviews)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is needed as dependency for layer [climbing](#climbing)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||||
- This layer is needed as dependency for layer [climbing](#climbing)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/climbing_route/climbing_route.json)
|
[Go to the source code](../assets/layers/climbing_route/climbing_route.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Droute' target='_blank'>route</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Droute' target='_blank'>route</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:grade:french#values) [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:grade:french#values) [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:bolts#values) [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts) | [pnat](../SpecialInputElements.md#pnat) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:bolts#values) [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/_embedding_features_with_rock:rock#values) [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/_embedding_features_with_rock:rock#values) [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock) | [string](../SpecialInputElements.md#string) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### questions
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### questions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### minimap
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this climbing route?**
|
The question is **What is the name of this climbing route?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `<strong>{name}</strong>`
|
This is rendered with `<strong>{name}</strong>`
|
||||||
|
|
||||||
|
- **This climbing route doesn't have a name** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### Length
|
||||||
- **This climbing route doesn't have a name** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Length
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How long is this climbing route (in meters)?**
|
The question is **How long is this climbing route (in meters)?**
|
||||||
|
|
||||||
This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length)
|
This rendering asks information about the
|
||||||
|
property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length)
|
||||||
This is rendered with `This route is {canonical(climbing:length)} long`
|
This is rendered with `This route is {canonical(climbing:length)} long`
|
||||||
|
|
||||||
|
### Difficulty
|
||||||
|
|
||||||
### Difficulty
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the difficulty of this climbing route according to the french/belgian system?**
|
The question is **What is the difficulty of this climbing route according to the french/belgian system?**
|
||||||
|
|
||||||
This rendering asks information about the property [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french)
|
This rendering asks information about the
|
||||||
|
property [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french)
|
||||||
This is rendered with `The difficulty is {climbing:grade:french} according to the french/belgian system`
|
This is rendered with `The difficulty is {climbing:grade:french} according to the french/belgian system`
|
||||||
|
|
||||||
|
### Bolts
|
||||||
|
|
||||||
### Bolts
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How much bolts does this route have before reaching the moulinette?**
|
The question is **How much bolts does this route have before reaching the moulinette?**
|
||||||
|
|
||||||
This rendering asks information about the property [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts)
|
This rendering asks information about the
|
||||||
|
property [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts)
|
||||||
This is rendered with `This route has {climbing:bolts} bolts`
|
This is rendered with `This route has {climbing:bolts} bolts`
|
||||||
|
|
||||||
|
- **This route is not bolted** corresponds
|
||||||
|
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>_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
- **This route is not bolted** corresponds
|
||||||
|
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&climbing:bolts=' target='_blank'>no&climbing:
|
||||||
|
bolts=</a>
|
||||||
|
|
||||||
|
### Description
|
||||||
- **This route is not bolted** corresponds 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>_This option cannot be chosen as answer_
|
|
||||||
- **This route is not bolted** corresponds 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&climbing:bolts=' target='_blank'>no&climbing:bolts=</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Description
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is there other relevant info?**
|
The question is **Is there other relevant info?**
|
||||||
|
|
||||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
This is rendered with `<h3>Description</h3><br/>{description}`
|
This is rendered with `<h3>Description</h3><br/>{description}`
|
||||||
|
|
||||||
|
### Rock type
|
||||||
|
|
||||||
### Rock type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
This rendering asks information about the property [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock)
|
This rendering asks information about the
|
||||||
This is rendered with `The rock type is {_embedding_features_with_rock:rock} as stated <a href='#{_embedding_features_with_rock:id}'>on the surrounding crag</a>`
|
property [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock)
|
||||||
|
This is rendered
|
||||||
|
with `The rock type is {_embedding_features_with_rock:rock} as stated <a href='#{_embedding_features_with_rock:id}'>on the surrounding crag</a>`
|
||||||
|
|
||||||
### reviews
|
|
||||||
|
|
||||||
|
|
||||||
|
### reviews
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/climbing_route/climbing_route.json
|
This document is autogenerated from assets/layers/climbing_route/climbing_route.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
cluster_style
|
||||||
|
|
||||||
cluster_style
|
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,54 +7,35 @@
|
||||||
|
|
||||||
The style for the clustering in all themes. Enable `debug=true` to peak into clustered tiles
|
The style for the clustering in all themes. Enable `debug=true` to peak into clustered tiles
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [cluster_style](#cluster_style)
|
1. [cluster_style](#cluster_style)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [all_tags](#all_tags)
|
+ [all_tags](#all_tags)
|
||||||
|
|
||||||
|
|
||||||
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
|
|
||||||
|
|
||||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/cluster_style/cluster_style.json)
|
[Go to the source code](../assets/layers/cluster_style/cluster_style.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- tileId~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- tileId~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### all_tags
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### all_tags
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/cluster_style/cluster_style.json
|
This document is autogenerated from assets/layers/cluster_style/cluster_style.json
|
|
@ -1,51 +1,39 @@
|
||||||
|
conflation
|
||||||
|
|
||||||
conflation
|
|
||||||
============
|
============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the import-button moves OSM points, the imported way points or conflates, a preview is shown. This layer defines how this preview is rendered. This layer cannot be included in a theme.
|
If the import-button moves OSM points, the imported way points or conflates, a preview is shown. This layer defines how
|
||||||
|
this preview is rendered. This layer cannot be included in a theme.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [conflation](#conflation)
|
1. [conflation](#conflation)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/conflation/conflation.json)
|
[Go to the source code](../assets/layers/conflation/conflation.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:move' target='_blank'>move</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:move%3Dyes' target='_blank'>yes</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:newpoint' target='_blank'>newpoint</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:newpoint%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:move' target='_blank'>move</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:move%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:newpoint' target='_blank'>newpoint</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:newpoint%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/conflation/conflation.json
|
This document is autogenerated from assets/layers/conflation/conflation.json
|
|
@ -1,62 +1,43 @@
|
||||||
|
crab_address
|
||||||
|
|
||||||
crab_address
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/layers/crab_address/housenumber_blank.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/layers/crab_address/housenumber_blank.svg' height="100px">
|
||||||
|
|
||||||
Address data for Flanders by the governement, suited for import into OpenStreetMap. Datadump from 2021-10-26. This layer contains only visualisation logic. Import buttons should be added via an override. Note that HNRLABEL contains the original value, whereas _HNRLABEL contains a slightly cleaned version
|
Address data for Flanders by the governement, suited for import into OpenStreetMap. Datadump from 2021-10-26. This layer
|
||||||
|
contains only visualisation logic. Import buttons should be added via an override. Note that HNRLABEL contains the
|
||||||
|
original value, whereas _HNRLABEL contains a slightly cleaned version
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [crab_address](#crab_address)
|
1. [crab_address](#crab_address)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [render_crab](#render_crab)
|
+ [render_crab](#render_crab)
|
||||||
|
|
||||||
|
|
||||||
|
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/CRAB_2021_10_26/tile_{z}_{x}_{y}.geojson`
|
||||||
|
|
||||||
|
|
||||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/CRAB_2021_10_26/tile_{z}_{x}_{y}.geojson`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/crab_address/crab_address.json)
|
[Go to the source code](../assets/layers/crab_address/crab_address.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- HUISNR~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- HUISNR~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### render_crab
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### render_crab
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/crab_address/crab_address.json
|
This document is autogenerated from assets/layers/crab_address/crab_address.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
crossings
|
||||||
|
|
||||||
crossings
|
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
Crossings for pedestrians and cyclists
|
Crossings for pedestrians and cyclists
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [crossings](#crossings)
|
1. [crossings](#crossings)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [crossing-type](#crossing-type)
|
+ [crossing-type](#crossing-type)
|
||||||
+ [crossing-is-zebra](#crossing-is-zebra)
|
+ [crossing-is-zebra](#crossing-is-zebra)
|
||||||
+ [crossing-bicycle-allowed](#crossing-bicycle-allowed)
|
+ [crossing-bicycle-allowed](#crossing-bicycle-allowed)
|
||||||
|
@ -28,52 +24,39 @@ Crossings for pedestrians and cyclists
|
||||||
+ [crossing-continue-through-red](#crossing-continue-through-red)
|
+ [crossing-continue-through-red](#crossing-continue-through-red)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on
|
||||||
|
it: a preset snaps to this layer (presets[0])
|
||||||
|
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on
|
||||||
|
it: a preset snaps to this layer (presets[1])
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cycle_infra](https://mapcomplete.osm.be/cycle_infra)
|
||||||
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0])
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[1])
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cycle_infra](https://mapcomplete.osm.be/cycle_infra)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/crossings/crossings.json)
|
[Go to the source code](../assets/layers/crossings/crossings.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtraffic_signals' target='_blank'>traffic_signals</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcrossing' target='_blank'>crossing</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtraffic_signals' target='_blank'>traffic_signals</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcrossing' target='_blank'>crossing</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/crossing#values) [crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) [unmarked](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/crossing#values) [crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) [unmarked](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked)
|
||||||
|
@ -85,138 +68,108 @@ attribute | type | values which are supported by this layer
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/red_turn:right:bicycle#values) [red_turn:right:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/red_turn:right:bicycle#values) [red_turn:right:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/red_turn:straight:bicycle#values) [red_turn:straight:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/red_turn:straight:bicycle#values) [red_turn:straight:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno)
|
||||||
|
|
||||||
|
### crossing-type
|
||||||
|
|
||||||
|
|
||||||
### crossing-type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What kind of crossing is this?**
|
The question is **What kind of crossing is this?**
|
||||||
|
|
||||||
|
- **Crossing, without traffic lights** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled' target='_blank'>uncontrolled</a>
|
||||||
|
- **Crossing with traffic signals** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals' target='_blank'>traffic_signals</a>
|
||||||
|
- **Zebra crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>
|
||||||
|
crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dzebra' target='_blank'>zebra</a>_This option
|
||||||
|
cannot be chosen as answer_
|
||||||
|
- **Crossing without crossing markings** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked' target='_blank'>unmarked</a>
|
||||||
|
|
||||||
|
### crossing-is-zebra
|
||||||
|
|
||||||
|
|
||||||
- **Crossing, without traffic lights** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled' target='_blank'>uncontrolled</a>
|
|
||||||
- **Crossing with traffic signals** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals' target='_blank'>traffic_signals</a>
|
|
||||||
- **Zebra crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dzebra' target='_blank'>zebra</a>_This option cannot be chosen as answer_
|
|
||||||
- **Crossing without crossing markings** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked' target='_blank'>unmarked</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### crossing-is-zebra
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this is a zebra crossing?**
|
The question is **Is this is a zebra crossing?**
|
||||||
|
|
||||||
|
- **This is a zebra crossing** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing_ref' target='_blank'>crossing_ref</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3Dzebra' target='_blank'>zebra</a>
|
||||||
|
- **This is not a zebra crossing** corresponds with
|
||||||
|
|
||||||
|
### crossing-bicycle-allowed
|
||||||
|
|
||||||
|
|
||||||
- **This is a zebra crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing_ref' target='_blank'>crossing_ref</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3Dzebra' target='_blank'>zebra</a>
|
|
||||||
- **This is not a zebra crossing** corresponds with
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### crossing-bicycle-allowed
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this crossing also for bicycles?**
|
The question is **Is this crossing also for bicycles?**
|
||||||
|
|
||||||
|
- **A cyclist can use this crossing** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **A cyclist can not use this crossing** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### crossing-has-island
|
||||||
|
|
||||||
|
|
||||||
- **A cyclist can use this crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **A cyclist can not use this crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### crossing-has-island
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this crossing have an island in the middle?**
|
The question is **Does this crossing have an island in the middle?**
|
||||||
|
|
||||||
|
- **This crossing has an island in the middle** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:island' target='_blank'>crossing:island</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This crossing does not have an island in the middle** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:island' target='_blank'>crossing:island</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### crossing-tactile
|
||||||
|
|
||||||
|
|
||||||
- **This crossing has an island in the middle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:island' target='_blank'>crossing:island</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This crossing does not have an island in the middle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:island' target='_blank'>crossing:island</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### crossing-tactile
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this crossing have tactile paving?**
|
The question is **Does this crossing have tactile paving?**
|
||||||
|
|
||||||
|
- **This crossing has tactile paving** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This crossing does not have tactile paving** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno' target='_blank'>no</a>
|
||||||
|
- **This crossing has tactile paving, but is not correct** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dincorrect' target='_blank'>incorrect</a>_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### crossing-button
|
||||||
|
|
||||||
|
|
||||||
- **This crossing has tactile paving** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This crossing does not have tactile paving** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno' target='_blank'>no</a>
|
|
||||||
- **This crossing has tactile paving, but is not correct** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dincorrect' target='_blank'>incorrect</a>_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### crossing-button
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this traffic light have a button to request green light?**
|
The question is **Does this traffic light have a button to request green light?**
|
||||||
|
|
||||||
|
- **This traffic light has a button to request green light** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:button_operated' target='_blank'>button_operated</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This traffic light does not have a button to request green light** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:button_operated' target='_blank'>button_operated</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### crossing-right-turn-through-red
|
||||||
|
|
||||||
|
|
||||||
- **This traffic light has a button to request green light** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:button_operated' target='_blank'>button_operated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This traffic light does not have a button to request green light** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:button_operated' target='_blank'>button_operated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### crossing-right-turn-through-red
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Can a cyclist turn right when the light is red?**
|
The question is **Can a cyclist turn right when the light is red?**
|
||||||
|
|
||||||
|
- **A cyclist can turn right if the light is
|
||||||
|
red <img src='./assets/layers/crossings/Belgian_road_sign_B22.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:
|
||||||
|
bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **A cyclist can turn right if the light is red** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:
|
||||||
|
bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **A cyclist can not turn right if the light is red** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:
|
||||||
|
bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### crossing-continue-through-red
|
||||||
|
|
||||||
|
|
||||||
- **A cyclist can turn right if the light is red <img src='./assets/layers/crossings/Belgian_road_sign_B22.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **A cyclist can turn right if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **A cyclist can not turn right if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### crossing-continue-through-red
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Can a cyclist go straight on when the light is red?**
|
The question is **Can a cyclist go straight on when the light is red?**
|
||||||
|
|
||||||
|
- **A cyclist can go straight on if the light is
|
||||||
|
red <img src='./assets/layers/crossings/Belgian_road_sign_B23.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:
|
||||||
|
bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes' target='_blank'>yes</a>
|
||||||
- **A cyclist can go straight on if the light is red <img src='./assets/layers/crossings/Belgian_road_sign_B23.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes' target='_blank'>yes</a>
|
- **A cyclist can go straight on if the light is red** corresponds
|
||||||
- **A cyclist can go straight on if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes' target='_blank'>yes</a>
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:
|
||||||
- **A cyclist can not go straight on if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno' target='_blank'>no</a>
|
bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **A cyclist can not go straight on if the light is red** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:
|
||||||
|
bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/crossings/crossings.json
|
This document is autogenerated from assets/layers/crossings/crossings.json
|
|
@ -1,55 +1,44 @@
|
||||||
|
current_view
|
||||||
|
|
||||||
current_view
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
A meta-layer which contains one single feature, namely the BBOX of the current map view. This can be used to trigger special actions. If a popup is defined for this layer, this popup will be accessible via an extra button on screen.
|
A meta-layer which contains one single feature, namely the BBOX of the current map view. This can be used to trigger
|
||||||
|
special actions. If a popup is defined for this layer, this popup will be accessible via an extra button on screen.
|
||||||
|
|
||||||
The icon on the button is the default icon of the layer, but can be customized by detecting 'button=yes'.
|
The icon on the button is the default icon of the layer, but can be customized by detecting 'button=yes'.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [current_view](#current_view)
|
1. [current_view](#current_view)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is not visible by default and must be enabled in the filter by the user.
|
||||||
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
- This layer is not visible by default and must be enabled in the filter by the user.
|
|
||||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/current_view/current_view.json)
|
[Go to the source code](../assets/layers/current_view/current_view.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:current_view' target='_blank'>current_view</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:current_view%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:current_view' target='_blank'>current_view</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:current_view%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/current_view/current_view.json
|
This document is autogenerated from assets/layers/current_view/current_view.json
|
|
@ -1,20 +1,12 @@
|
||||||
|
cycle_highways
|
||||||
|
|
||||||
cycle_highways
|
|
||||||
================
|
================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [cycle_highways](#cycle_highways)
|
1. [cycle_highways](#cycle_highways)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [cycle_highways-name](#cycle_highways-name)
|
+ [cycle_highways-name](#cycle_highways-name)
|
||||||
+ [cycle_highways-ref](#cycle_highways-ref)
|
+ [cycle_highways-ref](#cycle_highways-ref)
|
||||||
+ [cycle_highways-state](#cycle_highways-state)
|
+ [cycle_highways-state](#cycle_highways-state)
|
||||||
|
@ -23,123 +15,93 @@
|
||||||
+ [all_tags](#all_tags)
|
+ [all_tags](#all_tags)
|
||||||
|
|
||||||
|
|
||||||
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
|
|
||||||
|
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/cycle_highways/cycle_highways.json)
|
[Go to the source code](../assets/layers/cycle_highways/cycle_highways.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_network' target='_blank'>cycle_network</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_network%3DBE-VLG:cycle_highway' target='_blank'>BE-VLG:
|
||||||
|
cycle_highway</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_network' target='_blank'>cycle_network</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_network%3DBE-VLG:cycle_highway' target='_blank'>BE-VLG:cycle_highway</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/state#values) [state](https://wiki.openstreetmap.org/wiki/Key:state) | [string](../SpecialInputElements.md#string) | [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [temporary](https://wiki.openstreetmap.org/wiki/Tag:state%3Dtemporary) [](https://wiki.openstreetmap.org/wiki/Tag:state%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/state#values) [state](https://wiki.openstreetmap.org/wiki/Key:state) | [string](../SpecialInputElements.md#string) | [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [temporary](https://wiki.openstreetmap.org/wiki/Tag:state%3Dtemporary) [](https://wiki.openstreetmap.org/wiki/Tag:state%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### cycle_highways-name
|
|
||||||
|
|
||||||
|
|
||||||
|
### cycle_highways-name
|
||||||
|
|
||||||
The question is **What is the name of this cycle highway?**
|
The question is **What is the name of this cycle highway?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `The name is <b>{name}</b>`
|
This is rendered with `The name is <b>{name}</b>`
|
||||||
|
|
||||||
|
### cycle_highways-ref
|
||||||
|
|
||||||
### cycle_highways-ref
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the reference number of this cycle highway?**
|
The question is **What is the reference number of this cycle highway?**
|
||||||
|
|
||||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||||
This is rendered with `Referentienummer is <b>{ref}</b>`
|
This is rendered with `Referentienummer is <b>{ref}</b>`
|
||||||
|
|
||||||
|
### cycle_highways-state
|
||||||
|
|
||||||
### cycle_highways-state
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the state of this link?**
|
The question is **What is the state of this link?**
|
||||||
|
|
||||||
This rendering asks information about the property [state](https://wiki.openstreetmap.org/wiki/Key:state)
|
This rendering asks information about the property [state](https://wiki.openstreetmap.org/wiki/Key:state)
|
||||||
This is rendered with `The current state of this link is {state}`
|
This is rendered with `The current state of this link is {state}`
|
||||||
|
|
||||||
|
- **This is a proposed route which can be cycled** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a>
|
||||||
|
- **This is a proposed route which has missing links (thus: some parts don't even have a building permit yet)**
|
||||||
|
corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a>
|
||||||
|
&<a href='https://wiki.openstreetmap.org/wiki/Key:note:state' target='_blank'>note:state</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:note:state%3Dhas_highway_no' target='_blank'>has_highway_no</a>
|
||||||
|
- **This is a proposed route which has some links which are under construction** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a>
|
||||||
|
&<a href='https://wiki.openstreetmap.org/wiki/Key:note:state' target='_blank'>note:state</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:note:state%3Dhas_highway_under_construction' target='_blank'>
|
||||||
|
has_highway_under_construction</a>
|
||||||
|
- **This is a temporary deviation** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dtemporary' target='_blank'>temporary</a>
|
||||||
|
- **This link is operational and signposted** corresponds with
|
||||||
|
|
||||||
|
### cycle-highway-length
|
||||||
- **This is a proposed route which can be cycled** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a>
|
|
||||||
- **This is a proposed route which has missing links (thus: some parts don't even have a building permit yet)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:note:state' target='_blank'>note:state</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:note:state%3Dhas_highway_no' target='_blank'>has_highway_no</a>
|
|
||||||
- **This is a proposed route which has some links which are under construction** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:note:state' target='_blank'>note:state</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:note:state%3Dhas_highway_under_construction' target='_blank'>has_highway_under_construction</a>
|
|
||||||
- **This is a temporary deviation** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dtemporary' target='_blank'>temporary</a>
|
|
||||||
- **This link is operational and signposted** corresponds with
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### cycle-highway-length
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### website
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the website of {name}?**
|
The question is **What is the website of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### all_tags
|
||||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### all_tags
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/cycle_highways/cycle_highways.json
|
This document is autogenerated from assets/layers/cycle_highways/cycle_highways.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
cycleways_and_roads
|
||||||
|
|
||||||
cycleways_and_roads
|
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
All infrastructure that someone can cycle over, accompanied with questions about this infrastructure"
|
All infrastructure that someone can cycle over, accompanied with questions about this infrastructure"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [cycleways_and_roads](#cycleways_and_roads)
|
1. [cycleways_and_roads](#cycleways_and_roads)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [Cycleway type for a road](#cycleway-type-for-a-road)
|
+ [Cycleway type for a road](#cycleway-type-for-a-road)
|
||||||
+ [is lit?](#is-lit)
|
+ [is lit?](#is-lit)
|
||||||
+ [Is this a cyclestreet? (For a road)](#is-this-a-cyclestreet-(for-a-road))
|
+ [Is this a cyclestreet? (For a road)](#is-this-a-cyclestreet-(for-a-road))
|
||||||
|
@ -36,54 +32,59 @@ All infrastructure that someone can cycle over, accompanied with questions about
|
||||||
+ [cycleway-segregation](#cycleway-segregation)
|
+ [cycleway-segregation](#cycleway-segregation)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is needed as dependency for layer [barrier](#barrier)
|
||||||
|
- This layer is needed as dependency for layer [barrier](#barrier)
|
||||||
|
- This layer is needed as dependency for layer [crossings](#crossings)
|
||||||
|
- This layer is needed as dependency for layer [crossings](#crossings)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cycle_infra](https://mapcomplete.osm.be/cycle_infra)
|
||||||
- This layer is needed as dependency for layer [barrier](#barrier)
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
- This layer is needed as dependency for layer [barrier](#barrier)
|
|
||||||
- This layer is needed as dependency for layer [crossings](#crossings)
|
|
||||||
- This layer is needed as dependency for layer [crossings](#crossings)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cycle_infra](https://mapcomplete.osm.be/cycle_infra)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/cycleways_and_roads/cycleways_and_roads.json)
|
[Go to the source code](../assets/layers/cycleways_and_roads/cycleways_and_roads.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <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>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane' target='_blank'>lane</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane' target='_blank'>shared_lane</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack' target='_blank'>track</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dresidential' target='_blank'>residential</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary' target='_blank'>tertiary</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dunclassified' target='_blank'>unclassified</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary' target='_blank'>primary</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary' target='_blank'>secondary</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath' target='_blank'>path</a>
|
||||||
|
&<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Ddesignated' target='_blank'>designated</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <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>|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane' target='_blank'>lane</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane' target='_blank'>shared_lane</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack' target='_blank'>track</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dresidential' target='_blank'>residential</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary' target='_blank'>tertiary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dunclassified' target='_blank'>unclassified</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary' target='_blank'>primary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary' target='_blank'>secondary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath' target='_blank'>path</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Ddesignated' target='_blank'>designated</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway#values) [cycleway](https://wiki.openstreetmap.org/wiki/Key:cycleway) | Multiple choice | [shared_lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane) [lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane) [track](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack) [separate](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dseparate) [no](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno) [no](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway#values) [cycleway](https://wiki.openstreetmap.org/wiki/Key:cycleway) | Multiple choice | [shared_lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane) [lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane) [track](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack) [separate](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dseparate) [no](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno) [no](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno)
|
||||||
|
@ -94,325 +95,395 @@ attribute | type | values which are supported by this layer
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway:smoothness#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway:smoothness#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/surface#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/surface#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/smoothness#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/smoothness#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:carriageway#values) [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway) | [length](../SpecialInputElements.md#length) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:carriageway#values) [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway) | [length](../SpecialInputElements.md#length) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway:traffic_sign#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway:traffic_sign#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/traffic_sign#values) [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) [none](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3Dnone)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/traffic_sign#values) [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) [none](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3Dnone)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway:buffer#values) [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer) | [length](../SpecialInputElements.md#length) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway:buffer#values) [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer) | [length](../SpecialInputElements.md#length) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway:separation#values) [cycleway:separation](https://wiki.openstreetmap.org/wiki/Key:cycleway:separation) | Multiple choice | [dashed_line](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Ddashed_line) [solid_line](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dsolid_line) [parking_lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dparking_lane) [kerb](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dkerb)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway:separation#values) [cycleway:separation](https://wiki.openstreetmap.org/wiki/Key:cycleway:separation) | Multiple choice | [dashed_line](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Ddashed_line) [solid_line](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dsolid_line) [parking_lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dparking_lane) [kerb](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dkerb)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/separation#values) [separation](https://wiki.openstreetmap.org/wiki/Key:separation) | Multiple choice | [dashed_line](https://wiki.openstreetmap.org/wiki/Tag:separation%3Ddashed_line) [solid_line](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dsolid_line) [parking_lane](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dparking_lane) [kerb](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dkerb)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/separation#values) [separation](https://wiki.openstreetmap.org/wiki/Key:separation) | Multiple choice | [dashed_line](https://wiki.openstreetmap.org/wiki/Tag:separation%3Ddashed_line) [solid_line](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dsolid_line) [parking_lane](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dparking_lane) [kerb](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dkerb)
|
||||||
|
|
||||||
|
### Cycleway type for a road
|
||||||
|
|
||||||
|
|
||||||
### Cycleway type for a road
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What kind of cycleway is here?**
|
The question is **What kind of cycleway is here?**
|
||||||
|
|
||||||
|
- **There is a shared lane** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane' target='_blank'>shared_lane</a>
|
||||||
|
- **There is a lane next to the road (separated with paint)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane' target='_blank'>lane</a>
|
||||||
|
- **There is a track, but no cycleway drawn separately from this road on the map.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack' target='_blank'>track</a>
|
||||||
|
- **There is a separately drawn cycleway** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dseparate' target='_blank'>separate</a>
|
||||||
|
- **There is no cycleway** corresponds with <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>
|
||||||
|
- **There is no cycleway** corresponds with <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>
|
||||||
|
|
||||||
|
### is lit?
|
||||||
|
|
||||||
|
|
||||||
- **There is a shared lane** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane' target='_blank'>shared_lane</a>
|
|
||||||
- **There is a lane next to the road (separated with paint)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane' target='_blank'>lane</a>
|
|
||||||
- **There is a track, but no cycleway drawn separately from this road on the map.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack' target='_blank'>track</a>
|
|
||||||
- **There is a separately drawn cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dseparate' target='_blank'>separate</a>
|
|
||||||
- **There is no cycleway** corresponds with <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>
|
|
||||||
- **There is no cycleway** corresponds with <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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### is lit?
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this street lit?**
|
The question is **Is this street lit?**
|
||||||
|
|
||||||
|
- **This street is lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This road is not lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>
|
||||||
|
lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
||||||
|
- **This road is lit at night** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>
|
||||||
|
lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
- **This road is lit 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>
|
||||||
|
lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>
|
||||||
|
|
||||||
|
### Is this a cyclestreet? (For a road)
|
||||||
|
|
||||||
|
|
||||||
- **This street is lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This road is not lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
|
||||||
- **This road is lit at night** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>_This option cannot be chosen as answer_
|
|
||||||
- **This road is lit 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Is this a cyclestreet? (For a road)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this a cyclestreet?**
|
The question is **Is this a cyclestreet?**
|
||||||
|
|
||||||
|
- **This is a cyclestreet, and a 30km/h zone.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This is a cyclestreet** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This is not a cyclestreet.** corresponds with
|
||||||
|
|
||||||
|
### Maxspeed (for road)
|
||||||
|
|
||||||
|
|
||||||
- **This is a cyclestreet, and a 30km/h zone.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This is a cyclestreet** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This is not a cyclestreet.** corresponds with
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Maxspeed (for road)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the maximum speed in this street?**
|
The question is **What is the maximum speed in this street?**
|
||||||
|
|
||||||
This rendering asks information about the property [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed)
|
This rendering asks information about the property [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed)
|
||||||
This is rendered with `The maximum speed on this road is {maxspeed} km/h`
|
This is rendered with `The maximum speed on this road is {maxspeed} km/h`
|
||||||
|
|
||||||
|
- **The maximum speed is 20 km/h** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D20' target='_blank'>20</a>
|
||||||
|
- **The maximum speed is 30 km/h** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30' target='_blank'>30</a>
|
||||||
|
- **The maximum speed is 50 km/h** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D50' target='_blank'>50</a>
|
||||||
|
- **The maximum speed is 70 km/h** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D70' target='_blank'>70</a>
|
||||||
|
- **The maximum speed is 90 km/h** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D90' target='_blank'>90</a>
|
||||||
|
|
||||||
|
### Cycleway:surface
|
||||||
- **The maximum speed is 20 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D20' target='_blank'>20</a>
|
|
||||||
- **The maximum speed is 30 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30' target='_blank'>30</a>
|
|
||||||
- **The maximum speed is 50 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D50' target='_blank'>50</a>
|
|
||||||
- **The maximum speed is 70 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D70' target='_blank'>70</a>
|
|
||||||
- **The maximum speed is 90 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D90' target='_blank'>90</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Cycleway:surface
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the surface of the cycleway made from?**
|
The question is **What is the surface of the cycleway made from?**
|
||||||
|
|
||||||
This rendering asks information about the property [cycleway:surface](https://wiki.openstreetmap.org/wiki/Key:cycleway:surface)
|
This rendering asks information about the
|
||||||
|
property [cycleway:surface](https://wiki.openstreetmap.org/wiki/Key:cycleway:surface)
|
||||||
This is rendered with `This cyleway is made of {cycleway:surface}`
|
This is rendered with `This cyleway is made of {cycleway:surface}`
|
||||||
|
|
||||||
|
- **This cycleway is unpaved** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunpaved' target='_blank'>unpaved</a>_This option
|
||||||
|
cannot be chosen as answer_
|
||||||
|
- **This cycleway is paved** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaved' target='_blank'>paved</a>_This option
|
||||||
|
cannot be chosen as answer_
|
||||||
|
- **This cycleway is made of asphalt** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dasphalt' target='_blank'>asphalt</a>
|
||||||
|
- **This cycleway is made of smooth paving stones** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
||||||
|
- **This cycleway is made of concrete** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dconcrete' target='_blank'>concrete</a>
|
||||||
|
- **This cycleway is made of cobblestone (unhewn or sett)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dcobblestone' target='_blank'>cobblestone</a>_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
- **This cycleway is made of raw, natural cobblestone** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunhewn_cobblestone' target='_blank'>
|
||||||
|
unhewn_cobblestone</a>
|
||||||
|
- **This cycleway is made of flat, square cobblestone** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dsett' target='_blank'>sett</a>
|
||||||
|
- **This cycleway is made of wood** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dwood' target='_blank'>wood</a>
|
||||||
|
- **This cycleway is made of gravel** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dgravel' target='_blank'>gravel</a>
|
||||||
|
- **This cycleway is made of fine gravel** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dfine_gravel' target='_blank'>fine_gravel</a>
|
||||||
|
- **This cycleway is made of pebblestone** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpebblestone' target='_blank'>pebblestone</a>
|
||||||
|
- **This cycleway is made from raw ground** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dground' target='_blank'>ground</a>
|
||||||
|
|
||||||
|
### Cycleway:smoothness
|
||||||
- **This cycleway is unpaved** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunpaved' target='_blank'>unpaved</a>_This option cannot be chosen as answer_
|
|
||||||
- **This cycleway is paved** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaved' target='_blank'>paved</a>_This option cannot be chosen as answer_
|
|
||||||
- **This cycleway is made of asphalt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dasphalt' target='_blank'>asphalt</a>
|
|
||||||
- **This cycleway is made of smooth paving stones** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
|
||||||
- **This cycleway is made of concrete** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dconcrete' target='_blank'>concrete</a>
|
|
||||||
- **This cycleway is made of cobblestone (unhewn or sett)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dcobblestone' target='_blank'>cobblestone</a>_This option cannot be chosen as answer_
|
|
||||||
- **This cycleway is made of raw, natural cobblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunhewn_cobblestone' target='_blank'>unhewn_cobblestone</a>
|
|
||||||
- **This cycleway is made of flat, square cobblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dsett' target='_blank'>sett</a>
|
|
||||||
- **This cycleway is made of wood** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dwood' target='_blank'>wood</a>
|
|
||||||
- **This cycleway is made of gravel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dgravel' target='_blank'>gravel</a>
|
|
||||||
- **This cycleway is made of fine gravel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dfine_gravel' target='_blank'>fine_gravel</a>
|
|
||||||
- **This cycleway is made of pebblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpebblestone' target='_blank'>pebblestone</a>
|
|
||||||
- **This cycleway is made from raw ground** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dground' target='_blank'>ground</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Cycleway:smoothness
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the smoothness of this cycleway?**
|
The question is **What is the smoothness of this cycleway?**
|
||||||
|
|
||||||
|
- **Usable for thin rollers: rollerblade, skateboard** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dexcellent' target='_blank'>excellent</a>
|
||||||
|
- **Usable for thin wheels: racing bike** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dgood' target='_blank'>good</a>
|
||||||
|
- **Usable for normal wheels: city bike, wheelchair, scooter** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dintermediate' target='_blank'>intermediate</a>
|
||||||
|
- **Usable for robust wheels: trekking bike, car, rickshaw** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dbad' target='_blank'>bad</a>
|
||||||
|
- **Usable for vehicles with high clearance: light duty off-road vehicle** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_bad' target='_blank'>very_bad</a>
|
||||||
|
- **Usable for off-road vehicles: heavy duty off-road vehicle** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dhorrible' target='_blank'>horrible</a>
|
||||||
|
- **Usable for specialized off-road vehicles: tractor, ATV** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_horrible' target='_blank'>
|
||||||
|
very_horrible</a>
|
||||||
|
- **Impassable / No wheeled vehicle** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dimpassable' target='_blank'>impassable</a>
|
||||||
|
|
||||||
|
### Surface of the road
|
||||||
|
|
||||||
|
|
||||||
- **Usable for thin rollers: rollerblade, skateboard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dexcellent' target='_blank'>excellent</a>
|
|
||||||
- **Usable for thin wheels: racing bike** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dgood' target='_blank'>good</a>
|
|
||||||
- **Usable for normal wheels: city bike, wheelchair, scooter** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dintermediate' target='_blank'>intermediate</a>
|
|
||||||
- **Usable for robust wheels: trekking bike, car, rickshaw** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dbad' target='_blank'>bad</a>
|
|
||||||
- **Usable for vehicles with high clearance: light duty off-road vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_bad' target='_blank'>very_bad</a>
|
|
||||||
- **Usable for off-road vehicles: heavy duty off-road vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dhorrible' target='_blank'>horrible</a>
|
|
||||||
- **Usable for specialized off-road vehicles: tractor, ATV** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_horrible' target='_blank'>very_horrible</a>
|
|
||||||
- **Impassable / No wheeled vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dimpassable' target='_blank'>impassable</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Surface of the road
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the surface of the street made from?**
|
The question is **What is the surface of the street made from?**
|
||||||
|
|
||||||
This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface)
|
This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface)
|
||||||
This is rendered with `This road is made of {surface}`
|
This is rendered with `This road is made of {surface}`
|
||||||
|
|
||||||
|
- **This cycleway is unhardened** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
- **This cycleway is paved** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>
|
||||||
|
surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>_This option
|
||||||
|
cannot be chosen as answer_
|
||||||
|
- **This cycleway is made of asphalt** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>
|
||||||
|
- **This cycleway is made of smooth paving stones** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
||||||
|
- **This cycleway is made of concrete** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>
|
||||||
|
- **This cycleway is made of cobblestone (unhewn or sett)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dcobblestone' target='_blank'>cobblestone</a>_This option
|
||||||
|
cannot be chosen as answer_
|
||||||
|
- **This cycleway is made of raw, natural cobblestone** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunhewn_cobblestone' target='_blank'>unhewn_cobblestone</a>
|
||||||
|
- **This cycleway is made of flat, square cobblestone** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsett' target='_blank'>sett</a>
|
||||||
|
- **This cycleway is made of wood** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwood' target='_blank'>wood</a>
|
||||||
|
- **This cycleway is made of gravel** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgravel' target='_blank'>gravel</a>
|
||||||
|
- **This cycleway is made of fine gravel** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dfine_gravel' target='_blank'>fine_gravel</a>
|
||||||
|
- **This cycleway is made of pebblestone** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpebblestone' target='_blank'>pebblestone</a>
|
||||||
|
- **This cycleway is made from raw ground** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground' target='_blank'>ground</a>
|
||||||
|
|
||||||
|
### Surface of the street
|
||||||
- **This cycleway is unhardened** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>_This option cannot be chosen as answer_
|
|
||||||
- **This cycleway is paved** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>_This option cannot be chosen as answer_
|
|
||||||
- **This cycleway is made of asphalt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>
|
|
||||||
- **This cycleway is made of smooth paving stones** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
|
||||||
- **This cycleway is made of concrete** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>
|
|
||||||
- **This cycleway is made of cobblestone (unhewn or sett)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dcobblestone' target='_blank'>cobblestone</a>_This option cannot be chosen as answer_
|
|
||||||
- **This cycleway is made of raw, natural cobblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunhewn_cobblestone' target='_blank'>unhewn_cobblestone</a>
|
|
||||||
- **This cycleway is made of flat, square cobblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsett' target='_blank'>sett</a>
|
|
||||||
- **This cycleway is made of wood** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwood' target='_blank'>wood</a>
|
|
||||||
- **This cycleway is made of gravel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgravel' target='_blank'>gravel</a>
|
|
||||||
- **This cycleway is made of fine gravel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dfine_gravel' target='_blank'>fine_gravel</a>
|
|
||||||
- **This cycleway is made of pebblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpebblestone' target='_blank'>pebblestone</a>
|
|
||||||
- **This cycleway is made from raw ground** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground' target='_blank'>ground</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Surface of the street
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the smoothness of this street?**
|
The question is **What is the smoothness of this street?**
|
||||||
|
|
||||||
|
- **Usable for thin rollers: rollerblade, skateboard** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dexcellent' target='_blank'>excellent</a>
|
||||||
|
- **Usable for thin wheels: racing bike** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dgood' target='_blank'>good</a>
|
||||||
|
- **Usable for normal wheels: city bike, wheelchair, scooter** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dintermediate' target='_blank'>intermediate</a>
|
||||||
|
- **Usable for robust wheels: trekking bike, car, rickshaw** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dbad' target='_blank'>bad</a>
|
||||||
|
- **Usable for vehicles with high clearance: light duty off-road vehicle** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_bad' target='_blank'>very_bad</a>
|
||||||
|
- **Usable for off-road vehicles: heavy duty off-road vehicle** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dhorrible' target='_blank'>horrible</a>
|
||||||
|
- **Usable for specialized off-road vehicles: tractor, ATV** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_horrible' target='_blank'>very_horrible</a>
|
||||||
|
- **Impassable / No wheeled vehicle** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dimpassable' target='_blank'>impassable</a>
|
||||||
|
|
||||||
|
### width:carriageway
|
||||||
|
|
||||||
|
The question is **What is the carriage width of this road (in meters)?<br/><span class='subtle'>This is measured curb to
|
||||||
|
curb and thus includes the width of parallell parking lanes</span>**
|
||||||
|
|
||||||
|
This rendering asks information about the
|
||||||
- **Usable for thin rollers: rollerblade, skateboard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dexcellent' target='_blank'>excellent</a>
|
property [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway)
|
||||||
- **Usable for thin wheels: racing bike** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dgood' target='_blank'>good</a>
|
|
||||||
- **Usable for normal wheels: city bike, wheelchair, scooter** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dintermediate' target='_blank'>intermediate</a>
|
|
||||||
- **Usable for robust wheels: trekking bike, car, rickshaw** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dbad' target='_blank'>bad</a>
|
|
||||||
- **Usable for vehicles with high clearance: light duty off-road vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_bad' target='_blank'>very_bad</a>
|
|
||||||
- **Usable for off-road vehicles: heavy duty off-road vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dhorrible' target='_blank'>horrible</a>
|
|
||||||
- **Usable for specialized off-road vehicles: tractor, ATV** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_horrible' target='_blank'>very_horrible</a>
|
|
||||||
- **Impassable / No wheeled vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dimpassable' target='_blank'>impassable</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### width:carriageway
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the carriage width of this road (in meters)?<br/><span class='subtle'>This is measured curb to curb and thus includes the width of parallell parking lanes</span>**
|
|
||||||
|
|
||||||
This rendering asks information about the property [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway)
|
|
||||||
This is rendered with `The carriage width of this road is <strong>{width:carriageway}m</strong>`
|
This is rendered with `The carriage width of this road is <strong>{width:carriageway}m</strong>`
|
||||||
|
|
||||||
|
### cycleway-lane-track-traffic-signs
|
||||||
|
|
||||||
### cycleway-lane-track-traffic-signs
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What traffic sign does this cycleway have?**
|
The question is **What traffic sign does this cycleway have?**
|
||||||
|
|
||||||
|
- **Compulsory cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>**
|
||||||
|
corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:
|
||||||
|
traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7' target='_blank'>BE:
|
||||||
|
D7</a>
|
||||||
|
- **Compulsory cycleway (with supplementary
|
||||||
|
sign)<br><img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'> ** corresponds with
|
||||||
|
cycleway:traffic_sign~^BE:D7;.*$_This option cannot be chosen as answer_
|
||||||
|
- **Segregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>**
|
||||||
|
corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:
|
||||||
|
traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D9' target='_blank'>BE:
|
||||||
|
D9</a>
|
||||||
|
- **Unsegregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>**
|
||||||
|
corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:
|
||||||
|
traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D10' target='_blank'>BE:
|
||||||
|
D10</a>
|
||||||
|
- **No traffic sign present** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3Dnone' target='_blank'>none</a>
|
||||||
|
|
||||||
|
### cycleway-traffic-signs
|
||||||
|
|
||||||
|
|
||||||
- **Compulsory cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7' target='_blank'>BE:D7</a>
|
|
||||||
- **Compulsory cycleway (with supplementary sign)<br><img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'> ** corresponds with cycleway:traffic_sign~^BE:D7;.*$_This option cannot be chosen as answer_
|
|
||||||
- **Segregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D9' target='_blank'>BE:D9</a>
|
|
||||||
- **Unsegregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D10' target='_blank'>BE:D10</a>
|
|
||||||
- **No traffic sign present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3Dnone' target='_blank'>none</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### cycleway-traffic-signs
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What traffic sign does this cycleway have?**
|
The question is **What traffic sign does this cycleway have?**
|
||||||
|
|
||||||
|
- **Compulsory cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>**
|
||||||
|
corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7' target='_blank'>BE:D7</a>
|
||||||
|
- **Compulsory cycleway (with supplementary
|
||||||
|
sign)<br><img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'> ** corresponds with
|
||||||
|
traffic_sign~^BE:D7;.*$_This option cannot be chosen as answer_
|
||||||
|
- **Segregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>**
|
||||||
|
corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D9' target='_blank'>BE:D9</a>
|
||||||
|
- **Unsegregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>**
|
||||||
|
corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D10' target='_blank'>BE:D10</a>
|
||||||
|
- **No traffic sign present** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3Dnone' target='_blank'>none</a>
|
||||||
|
|
||||||
|
### cycleway-traffic-signs-supplementary
|
||||||
|
|
||||||
|
The question is **Does the traffic sign
|
||||||
|
D7 (<img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 1.5em'>) have a supplementary sign?**
|
||||||
|
|
||||||
|
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M6' target='_blank'>BE:D7;BE:M6</a>
|
||||||
|
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M13' target='_blank'>BE:D7;BE:
|
||||||
|
M13</a>
|
||||||
|
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M14' target='_blank'>BE:D7;BE:
|
||||||
|
M14</a>
|
||||||
|
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M7' target='_blank'>BE:D7;BE:M7</a>
|
||||||
|
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M15' target='_blank'>BE:D7;BE:
|
||||||
|
M15</a>
|
||||||
|
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M16' target='_blank'>BE:D7;BE:
|
||||||
|
M16</a>
|
||||||
|
- **No supplementary traffic sign present** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign:supplementary' target='_blank'>cycleway:
|
||||||
|
traffic_sign:supplementary</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign:supplementary%3Dnone' target='_blank'>none</a>
|
||||||
|
|
||||||
- **Compulsory cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7' target='_blank'>BE:D7</a>
|
### cycleway-traffic-signs-D7-supplementary
|
||||||
- **Compulsory cycleway (with supplementary sign)<br><img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'> ** corresponds with traffic_sign~^BE:D7;.*$_This option cannot be chosen as answer_
|
|
||||||
- **Segregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D9' target='_blank'>BE:D9</a>
|
|
||||||
- **Unsegregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D10' target='_blank'>BE:D10</a>
|
|
||||||
- **No traffic sign present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3Dnone' target='_blank'>none</a>
|
|
||||||
|
|
||||||
|
The question is **Does the traffic sign
|
||||||
|
D7 (<img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 1.5em'>) have a supplementary sign?**
|
||||||
|
|
||||||
|
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M6' target='_blank'>BE:D7;BE:M6</a>
|
||||||
|
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M13' target='_blank'>BE:D7;BE:M13</a>
|
||||||
|
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M14' target='_blank'>BE:D7;BE:M14</a>
|
||||||
|
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M7' target='_blank'>BE:D7;BE:M7</a>
|
||||||
|
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key::traffic_sign' target='_blank'>:traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag::traffic_sign%3DBE:D7;BE:M15' target='_blank'>BE:D7;BE:M15</a>
|
||||||
|
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg' style='width: 3em'>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M16' target='_blank'>BE:D7;BE:M16</a>
|
||||||
|
- **No supplementary traffic sign present** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign:supplementary' target='_blank'>traffic_sign:
|
||||||
|
supplementary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign:supplementary%3Dnone' target='_blank'>
|
||||||
|
none</a>
|
||||||
|
|
||||||
|
### cycleways_and_roads-cycleway:buffer
|
||||||
### cycleway-traffic-signs-supplementary
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does the traffic sign D7 (<img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 1.5em'>) have a supplementary sign?**
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M6' target='_blank'>BE:D7;BE:M6</a>
|
|
||||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M13' target='_blank'>BE:D7;BE:M13</a>
|
|
||||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M14' target='_blank'>BE:D7;BE:M14</a>
|
|
||||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M7' target='_blank'>BE:D7;BE:M7</a>
|
|
||||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M15' target='_blank'>BE:D7;BE:M15</a>
|
|
||||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M16' target='_blank'>BE:D7;BE:M16</a>
|
|
||||||
- **No supplementary traffic sign present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign:supplementary' target='_blank'>cycleway:traffic_sign:supplementary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign:supplementary%3Dnone' target='_blank'>none</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### cycleway-traffic-signs-D7-supplementary
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does the traffic sign D7 (<img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 1.5em'>) have a supplementary sign?**
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M6' target='_blank'>BE:D7;BE:M6</a>
|
|
||||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M13' target='_blank'>BE:D7;BE:M13</a>
|
|
||||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M14' target='_blank'>BE:D7;BE:M14</a>
|
|
||||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M7' target='_blank'>BE:D7;BE:M7</a>
|
|
||||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key::traffic_sign' target='_blank'>:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag::traffic_sign%3DBE:D7;BE:M15' target='_blank'>BE:D7;BE:M15</a>
|
|
||||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M16' target='_blank'>BE:D7;BE:M16</a>
|
|
||||||
- **No supplementary traffic sign present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign:supplementary' target='_blank'>traffic_sign:supplementary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign:supplementary%3Dnone' target='_blank'>none</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### cycleways_and_roads-cycleway:buffer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How wide is the gap between the cycleway and the road?**
|
The question is **How wide is the gap between the cycleway and the road?**
|
||||||
|
|
||||||
This rendering asks information about the property [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer)
|
This rendering asks information about the
|
||||||
|
property [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer)
|
||||||
This is rendered with `The buffer besides this cycleway is {cycleway:buffer} m`
|
This is rendered with `The buffer besides this cycleway is {cycleway:buffer} m`
|
||||||
|
|
||||||
|
### cyclelan-segregation
|
||||||
|
|
||||||
### cyclelan-segregation
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How is this cycleway separated from the road?**
|
The question is **How is this cycleway separated from the road?**
|
||||||
|
|
||||||
|
- **This cycleway is separated by a dashed line** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Ddashed_line' target='_blank'>dashed_line</a>
|
||||||
|
- **This cycleway is separated by a solid line** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dsolid_line' target='_blank'>solid_line</a>
|
||||||
|
- **This cycleway is separated by a parking lane** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dparking_lane' target='_blank'>parking_lane</a>
|
||||||
|
- **This cycleway is separated by a kerb** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dkerb' target='_blank'>kerb</a>
|
||||||
|
|
||||||
|
### cycleway-segregation
|
||||||
|
|
||||||
|
|
||||||
- **This cycleway is separated by a dashed line** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Ddashed_line' target='_blank'>dashed_line</a>
|
|
||||||
- **This cycleway is separated by a solid line** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dsolid_line' target='_blank'>solid_line</a>
|
|
||||||
- **This cycleway is separated by a parking lane** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dparking_lane' target='_blank'>parking_lane</a>
|
|
||||||
- **This cycleway is separated by a kerb** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dkerb' target='_blank'>kerb</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### cycleway-segregation
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How is this cycleway separated from the road?**
|
The question is **How is this cycleway separated from the road?**
|
||||||
|
|
||||||
|
- **This cycleway is separated by a dashed line** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Ddashed_line' target='_blank'>dashed_line</a>
|
||||||
|
- **This cycleway is separated by a solid line** corresponds
|
||||||
- **This cycleway is separated by a dashed line** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Ddashed_line' target='_blank'>dashed_line</a>
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>
|
||||||
- **This cycleway is separated by a solid line** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dsolid_line' target='_blank'>solid_line</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dsolid_line' target='_blank'>solid_line</a>
|
||||||
- **This cycleway is separated by a parking lane** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dparking_lane' target='_blank'>parking_lane</a>
|
- **This cycleway is separated by a parking lane** corresponds
|
||||||
- **This cycleway is separated by a kerb** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dkerb' target='_blank'>kerb</a>
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dparking_lane' target='_blank'>parking_lane</a>
|
||||||
|
- **This cycleway is separated by a kerb** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dkerb' target='_blank'>kerb</a>
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/cycleways_and_roads/cycleways_and_roads.json
|
This document is autogenerated from assets/layers/cycleways_and_roads/cycleways_and_roads.json
|
|
@ -1,23 +1,20 @@
|
||||||
|
defibrillator
|
||||||
|
|
||||||
defibrillator
|
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/themes/aed/aed.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/themes/aed/aed.svg' height="100px">
|
||||||
|
|
||||||
A layer showing defibrillators which can be used in case of emergency. This contains public defibrillators, but also defibrillators which might need staff to fetch the actual device
|
A layer showing defibrillators which can be used in case of emergency. This contains public defibrillators, but also
|
||||||
|
defibrillators which might need staff to fetch the actual device
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [defibrillator](#defibrillator)
|
1. [defibrillator](#defibrillator)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [defibrillator-indoors](#defibrillator-indoors)
|
+ [defibrillator-indoors](#defibrillator-indoors)
|
||||||
+ [defibrillator-access](#defibrillator-access)
|
+ [defibrillator-access](#defibrillator-access)
|
||||||
|
@ -36,287 +33,216 @@ A layer showing defibrillators which can be used in case of emergency. This cont
|
||||||
+ [defibrillator-fixme](#defibrillator-fixme)
|
+ [defibrillator-fixme](#defibrillator-fixme)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on
|
||||||
|
it: a preset snaps to this layer (presets[1])
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [aed](https://mapcomplete.osm.be/aed)
|
||||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1])
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [aed](https://mapcomplete.osm.be/aed)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/defibrillator/defibrillator.json)
|
[Go to the source code](../assets/layers/defibrillator/defibrillator.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Ddefibrillator' target='_blank'>defibrillator</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Ddefibrillator' target='_blank'>defibrillator</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/indoor#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/indoor#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [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) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [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) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/defibrillator#values) [defibrillator](https://wiki.openstreetmap.org/wiki/Key:defibrillator) | Multiple choice | [manual](https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dmanual) [automatic](https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dautomatic)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/defibrillator#values) [defibrillator](https://wiki.openstreetmap.org/wiki/Key:defibrillator) | Multiple choice | [manual](https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dmanual) [automatic](https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dautomatic)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [int](../SpecialInputElements.md#int) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [int](../SpecialInputElements.md#int) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/defibrillator:location#values) [defibrillator:location](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location) | [text](../SpecialInputElements.md#text) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/defibrillator:location#values) [defibrillator:location](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location) | [text](../SpecialInputElements.md#text) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/defibrillator:location:en#values) [defibrillator:location:en](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:en) | [text](../SpecialInputElements.md#text) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/defibrillator:location:en#values) [defibrillator:location:en](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:en) | [text](../SpecialInputElements.md#text) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/defibrillator:location:fr#values) [defibrillator:location:fr](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:fr) | [text](../SpecialInputElements.md#text) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/defibrillator:location:fr#values) [defibrillator:location:fr](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:fr) | [text](../SpecialInputElements.md#text) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [text](../SpecialInputElements.md#text) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [text](../SpecialInputElements.md#text) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [text](../SpecialInputElements.md#text) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [text](../SpecialInputElements.md#text) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### defibrillator-indoors
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### defibrillator-indoors
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this defibrillator located indoors?**
|
The question is **Is this defibrillator located indoors?**
|
||||||
|
|
||||||
|
- **This defibrillator is located indoors** corresponds
|
||||||
|
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 defibrillator is located outdoors** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### defibrillator-access
|
||||||
|
|
||||||
|
|
||||||
- **This defibrillator is located indoors** corresponds 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 defibrillator is located outdoors** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### defibrillator-access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this defibrillator freely accessible?**
|
The question is **Is this defibrillator freely accessible?**
|
||||||
|
|
||||||
This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access)
|
This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access)
|
||||||
This is rendered with `Access is {access}`
|
This is rendered with `Access is {access}`
|
||||||
|
|
||||||
|
- **Publicly accessible** corresponds 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>
|
||||||
|
- **Publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>
|
||||||
|
access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>_This option
|
||||||
|
cannot be chosen as answer_
|
||||||
|
- **Only accessible to customers** corresponds
|
||||||
|
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>
|
||||||
|
- **Not accessible to the general public (e.g. only accesible to staff, the owners, ...)** corresponds
|
||||||
|
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>
|
||||||
|
- **Not accessible, possibly only for professional use** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### defibrillator-defibrillator
|
||||||
- **Publicly accessible** corresponds 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>
|
|
||||||
- **Publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>_This option cannot be chosen as answer_
|
|
||||||
- **Only accessible to customers** corresponds 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>
|
|
||||||
- **Not accessible to the general public (e.g. only accesible to staff, the owners, ...)** corresponds 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>
|
|
||||||
- **Not accessible, possibly only for professional use** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### defibrillator-defibrillator
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this a a regular automatic defibrillator or a manual defibrillator for professionals only?**
|
The question is **Is this a a regular automatic defibrillator or a manual defibrillator for professionals only?**
|
||||||
|
|
||||||
|
- **There is no info about the type of device** corresponds with _This option cannot be chosen as answer_
|
||||||
|
- **This is a manual defibrillator for professionals** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:defibrillator' target='_blank'>defibrillator</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dmanual' target='_blank'>manual</a>
|
||||||
|
- **This is a normal automatic defibrillator** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:defibrillator' target='_blank'>defibrillator</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dautomatic' target='_blank'>automatic</a>
|
||||||
|
- **This is a special type of defibrillator: {defibrillator}** corresponds with defibrillator~^..*$_This option cannot
|
||||||
|
be chosen as answer_
|
||||||
|
|
||||||
|
### defibrillator-level
|
||||||
|
|
||||||
|
|
||||||
- **There is no info about the type of device** corresponds with _This option cannot be chosen as answer_
|
|
||||||
- **This is a manual defibrillator for professionals** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:defibrillator' target='_blank'>defibrillator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dmanual' target='_blank'>manual</a>
|
|
||||||
- **This is a normal automatic defibrillator** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:defibrillator' target='_blank'>defibrillator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dautomatic' target='_blank'>automatic</a>
|
|
||||||
- **This is a special type of defibrillator: {defibrillator}** corresponds with defibrillator~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### defibrillator-level
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **On which floor is this defibrillator located?**
|
The question is **On which floor is this defibrillator located?**
|
||||||
|
|
||||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||||
This is rendered with `This defibrillator is on floor {level}`
|
This is rendered with `This defibrillator is on floor {level}`
|
||||||
|
|
||||||
|
- **This defibrillator is on the <b>ground floor</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
|
||||||
|
- **This defibrillator is on the <b>first floor</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>
|
||||||
|
|
||||||
|
### defibrillator-defibrillator:location
|
||||||
- **This defibrillator is on the <b>ground floor</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
|
|
||||||
- **This defibrillator is on the <b>first floor</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### defibrillator-defibrillator:location
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Please give some explanation on where the defibrillator can be found (in the local language)**
|
The question is **Please give some explanation on where the defibrillator can be found (in the local language)**
|
||||||
|
|
||||||
This rendering asks information about the property [defibrillator:location](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location)
|
This rendering asks information about the
|
||||||
This is rendered with `<i>Extra information about the location (in the local languagel):</i><br/>{defibrillator:location}`
|
property [defibrillator:location](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location)
|
||||||
|
This is rendered
|
||||||
|
with `<i>Extra information about the location (in the local languagel):</i><br/>{defibrillator:location}`
|
||||||
|
|
||||||
### defibrillator-defibrillator:location:en
|
|
||||||
|
|
||||||
|
|
||||||
|
### defibrillator-defibrillator:location:en
|
||||||
|
|
||||||
The question is **Please give some explanation on where the defibrillator can be found (in English)**
|
The question is **Please give some explanation on where the defibrillator can be found (in English)**
|
||||||
|
|
||||||
This rendering asks information about the property [defibrillator:location:en](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:en)
|
This rendering asks information about the
|
||||||
|
property [defibrillator:location:en](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:en)
|
||||||
This is rendered with `<i>Extra information about the location (in English):</i><br/>{defibrillator:location:en}`
|
This is rendered with `<i>Extra information about the location (in English):</i><br/>{defibrillator:location:en}`
|
||||||
|
|
||||||
|
### defibrillator-defibrillator:location:fr
|
||||||
|
|
||||||
### defibrillator-defibrillator:location:fr
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Please give some explanation on where the defibrillator can be found (in French)**
|
The question is **Please give some explanation on where the defibrillator can be found (in French)**
|
||||||
|
|
||||||
This rendering asks information about the property [defibrillator:location:fr](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:fr)
|
This rendering asks information about the
|
||||||
|
property [defibrillator:location:fr](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:fr)
|
||||||
This is rendered with `<i>Extra information about the location (in French):</i><br/>{defibrillator:location:fr}`
|
This is rendered with `<i>Extra information about the location (in French):</i><br/>{defibrillator:location:fr}`
|
||||||
|
|
||||||
|
### wheelchair-access
|
||||||
|
|
||||||
### wheelchair-access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this place accessible with a wheelchair?**
|
The question is **Is this place accessible with a wheelchair?**
|
||||||
|
|
||||||
|
- **This place is specially adapted for wheelchair users** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||||
|
- **This place is easily reachable with a wheelchair** corresponds
|
||||||
|
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>
|
||||||
|
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds
|
||||||
|
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 place is not reachable with a wheelchair** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### defibrillator-ref
|
||||||
|
|
||||||
|
|
||||||
- **This place is specially adapted for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
|
||||||
- **This place is easily reachable with a wheelchair** corresponds 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>
|
|
||||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds 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 place is not reachable with a wheelchair** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### defibrillator-ref
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the official identification number of the device? (if visible on device)**
|
The question is **What is the official identification number of the device? (if visible on device)**
|
||||||
|
|
||||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||||
This is rendered with `Official identification number of the device: <i>{ref}</i>`
|
This is rendered with `Official identification number of the device: <i>{ref}</i>`
|
||||||
|
|
||||||
|
### defibrillator-email
|
||||||
|
|
||||||
### defibrillator-email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email for questions about this defibrillator?**
|
The question is **What is the email for questions about this defibrillator?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `Email for questions about this defibrillator: <a href='mailto:{email}'>{email}</a>`
|
This is rendered with `Email for questions about this defibrillator: <a href='mailto:{email}'>{email}</a>`
|
||||||
|
|
||||||
|
### defibrillator-phone
|
||||||
|
|
||||||
### defibrillator-phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number for questions about this defibrillator?**
|
The question is **What is the phone number for questions about this defibrillator?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `Telephone for questions about this defibrillator: <a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `Telephone for questions about this defibrillator: <a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
### defibrillator-opening_hours
|
||||||
|
|
||||||
### defibrillator-opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **At what times is this defibrillator available?**
|
The question is **At what times is this defibrillator available?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
This is rendered with `{opening_hours_table(opening_hours)}`
|
This is rendered with `{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
- **24/7 opened (including holidays)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||||
|
|
||||||
|
### defibrillator-description
|
||||||
|
|
||||||
- **24/7 opened (including holidays)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
The question is **Is there any useful information for users that you haven't been able to describe above? (leave blank
|
||||||
|
if no)**
|
||||||
|
|
||||||
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
|
|
||||||
|
|
||||||
### defibrillator-description
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is there any useful information for users that you haven't been able to describe above? (leave blank if no)**
|
|
||||||
|
|
||||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
|
||||||
This is rendered with `Additional information: {description}`
|
This is rendered with `Additional information: {description}`
|
||||||
|
|
||||||
|
### defibrillator-survey:date
|
||||||
|
|
||||||
### defibrillator-survey:date
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When was this defibrillator last surveyed?**
|
The question is **When was this defibrillator last surveyed?**
|
||||||
|
|
||||||
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
||||||
This is rendered with `This defibrillator was last surveyed on {survey:date}`
|
This is rendered with `This defibrillator was last surveyed on {survey:date}`
|
||||||
|
|
||||||
|
- **Checked today!** corresponds with survey:date=
|
||||||
|
|
||||||
|
### defibrillator-fixme
|
||||||
|
|
||||||
- **Checked today!** corresponds with survey:date=
|
The question is **Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to
|
||||||
|
OpenStreetMap experts)**
|
||||||
|
|
||||||
|
This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme)
|
||||||
|
This is rendered with `Extra information for OpenStreetMap experts: {fixme}`
|
||||||
|
|
||||||
### defibrillator-fixme
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)**
|
|
||||||
|
|
||||||
This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme)
|
|
||||||
This is rendered with `Extra information for OpenStreetMap experts: {fixme}`
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/defibrillator/defibrillator.json
|
This document is autogenerated from assets/layers/defibrillator/defibrillator.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
direction
|
||||||
|
|
||||||
direction
|
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,56 +7,39 @@
|
||||||
|
|
||||||
This layer visualizes directions
|
This layer visualizes directions
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [direction](#direction)
|
1. [direction](#direction)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this
|
||||||
|
toggleable.
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
- [surveillance](https://mapcomplete.osm.be/surveillance)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
- [surveillance](https://mapcomplete.osm.be/surveillance)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/direction/direction.json)
|
[Go to the source code](../assets/layers/direction/direction.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- camera:direction~^..*$|direction~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- camera:direction~^..*$|direction~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/direction/direction.json
|
This document is autogenerated from assets/layers/direction/direction.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
drinking_water
|
||||||
|
|
||||||
drinking_water
|
|
||||||
================
|
================
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,129 +7,92 @@
|
||||||
|
|
||||||
A layer showing drinking water fountains
|
A layer showing drinking water fountains
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [drinking_water](#drinking_water)
|
1. [drinking_water](#drinking_water)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [Still in use?](#still-in-use)
|
+ [Still in use?](#still-in-use)
|
||||||
+ [Bottle refill](#bottle-refill)
|
+ [Bottle refill](#bottle-refill)
|
||||||
+ [render-closest-drinking-water](#render-closest-drinking-water)
|
+ [render-closest-drinking-water](#render-closest-drinking-water)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer will automatically load [drinking_water](./drinking_water.md) into the layout as it depends on it: A
|
||||||
|
calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _
|
||||||
|
closest_other_drinking_water)
|
||||||
|
- This layer is needed as dependency for layer [drinking_water](#drinking_water)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
- This layer will automatically load [drinking_water](./drinking_water.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_other_drinking_water)
|
- [drinking_water](https://mapcomplete.osm.be/drinking_water)
|
||||||
- This layer is needed as dependency for layer [drinking_water](#drinking_water)
|
- [nature](https://mapcomplete.osm.be/nature)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
|
||||||
- [drinking_water](https://mapcomplete.osm.be/drinking_water)
|
|
||||||
- [nature](https://mapcomplete.osm.be/nature)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/drinking_water/drinking_water.json)
|
[Go to the source code](../assets/layers/drinking_water/drinking_water.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Ddrinking_water' target='_blank'>drinking_water</a>
|
||||||
|
- access!~^permissive$
|
||||||
|
- access!~^private$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Ddrinking_water' target='_blank'>drinking_water</a>
|
|
||||||
- access!~^permissive$
|
|
||||||
- access!~^private$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operational_status#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operational_status#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bottle#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bottle#values) [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)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Still in use?
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Still in use?
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this drinking water spot still operational?**
|
The question is **Is this drinking water spot still operational?**
|
||||||
|
|
||||||
This rendering asks information about the property [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status)
|
This rendering asks information about the
|
||||||
|
property [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status)
|
||||||
This is rendered with `The operational status is <i>{operational_status}</i>`
|
This is rendered with `The operational status is <i>{operational_status}</i>`
|
||||||
|
|
||||||
|
- **This drinking water works** corresponds with
|
||||||
|
- **This drinking water is broken** corresponds
|
||||||
|
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%3Dbroken' target='_blank'>broken</a>
|
||||||
|
- **This drinking water is closed** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### Bottle refill
|
||||||
- **This drinking water works** corresponds with
|
|
||||||
- **This drinking water is broken** corresponds 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%3Dbroken' target='_blank'>broken</a>
|
|
||||||
- **This drinking water is closed** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Bottle refill
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How easy is it to fill water bottles?**
|
The question is **How easy is it to fill water bottles?**
|
||||||
|
|
||||||
|
- **It is easy to refill water bottles** corresponds
|
||||||
|
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** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### render-closest-drinking-water
|
||||||
|
|
||||||
|
|
||||||
- **It is easy to refill water bottles** corresponds 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** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### render-closest-drinking-water
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/drinking_water/drinking_water.json
|
This document is autogenerated from assets/layers/drinking_water/drinking_water.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
dumpstations
|
||||||
|
|
||||||
dumpstations
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
Sanitary dump stations
|
Sanitary dump stations
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [dumpstations](#dumpstations)
|
1. [dumpstations](#dumpstations)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [dumpstations-fee](#dumpstations-fee)
|
+ [dumpstations-fee](#dumpstations-fee)
|
||||||
+ [dumpstations-charge](#dumpstations-charge)
|
+ [dumpstations-charge](#dumpstations-charge)
|
||||||
|
@ -27,175 +23,123 @@ Sanitary dump stations
|
||||||
+ [dumpstations-access](#dumpstations-access)
|
+ [dumpstations-access](#dumpstations-access)
|
||||||
+ [dumpstations-network](#dumpstations-network)
|
+ [dumpstations-network](#dumpstations-network)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [campersite](https://mapcomplete.osm.be/campersite)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [campersite](https://mapcomplete.osm.be/campersite)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/dumpstations/dumpstations.json)
|
[Go to the source code](../assets/layers/dumpstations/dumpstations.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dsanitary_dump_station' target='_blank'>
|
||||||
|
sanitary_dump_station</a>
|
||||||
|
- vehicle!~^no$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dsanitary_dump_station' target='_blank'>sanitary_dump_station</a>
|
|
||||||
- vehicle!~^no$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fee#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fee#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/water_point#values) [water_point](https://wiki.openstreetmap.org/wiki/Key:water_point) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/water_point#values) [water_point](https://wiki.openstreetmap.org/wiki/Key:water_point) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sanitary_dump_station:grey_water#values) [sanitary_dump_station:grey_water](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sanitary_dump_station:grey_water#values) [sanitary_dump_station:grey_water](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sanitary_dump_station:chemical_toilet#values) [sanitary_dump_station:chemical_toilet](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sanitary_dump_station:chemical_toilet#values) [sanitary_dump_station:chemical_toilet](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [network](https://wiki.openstreetmap.org/wiki/Tag:access%3Dnetwork) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [network](https://wiki.openstreetmap.org/wiki/Tag:access%3Dnetwork) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/network#values) [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/network#values) [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### dumpstations-fee
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### dumpstations-fee
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this place charge a fee?**
|
The question is **Does this place charge a fee?**
|
||||||
|
|
||||||
|
- **You need to pay for use** corresponds 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>
|
||||||
|
- **Can be used for free** corresponds 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>
|
||||||
|
|
||||||
|
### dumpstations-charge
|
||||||
|
|
||||||
|
|
||||||
- **You need to pay for use** corresponds 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>
|
|
||||||
- **Can be used for free** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### dumpstations-charge
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How much does this place charge?**
|
The question is **How much does this place charge?**
|
||||||
|
|
||||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
This is rendered with `This place charges {charge}`
|
This is rendered with `This place charges {charge}`
|
||||||
|
|
||||||
|
### dumpstations-waterpoint
|
||||||
|
|
||||||
### dumpstations-waterpoint
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this place have a water point?**
|
The question is **Does this place have a water point?**
|
||||||
|
|
||||||
|
- **This place has a water point** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:water_point' target='_blank'>water_point</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This place does not have a water point** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:water_point' target='_blank'>water_point</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### dumpstations-grey-water
|
||||||
|
|
||||||
|
|
||||||
- **This place has a water point** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:water_point' target='_blank'>water_point</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This place does not have a water point** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:water_point' target='_blank'>water_point</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### dumpstations-grey-water
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Can you dispose of grey water here?**
|
The question is **Can you dispose of grey water here?**
|
||||||
|
|
||||||
|
- **You can dispose of grey water here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water' target='_blank'>
|
||||||
|
sanitary_dump_station:grey_water</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **You cannot dispose of gray water here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water' target='_blank'>
|
||||||
|
sanitary_dump_station:grey_water</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### dumpstations-chemical-waste
|
||||||
|
|
||||||
|
|
||||||
- **You can dispose of grey water here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water' target='_blank'>sanitary_dump_station:grey_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **You cannot dispose of gray water here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water' target='_blank'>sanitary_dump_station:grey_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### dumpstations-chemical-waste
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Can you dispose of chemical toilet waste here?**
|
The question is **Can you dispose of chemical toilet waste here?**
|
||||||
|
|
||||||
|
- **You can dispose of chemical toilet waste here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet' target='_blank'>
|
||||||
|
sanitary_dump_station:chemical_toilet</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **You cannot dispose of chemical toilet waste here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet' target='_blank'>
|
||||||
|
sanitary_dump_station:chemical_toilet</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### dumpstations-access
|
||||||
|
|
||||||
|
|
||||||
- **You can dispose of chemical toilet waste here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet' target='_blank'>sanitary_dump_station:chemical_toilet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **You cannot dispose of chemical toilet waste here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet' target='_blank'>sanitary_dump_station:chemical_toilet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### dumpstations-access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Who can use this dump station?**
|
The question is **Who can use this dump station?**
|
||||||
|
|
||||||
|
- **You need a network key/code to use this** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dnetwork' target='_blank'>network</a>
|
||||||
|
- **You need to be a customer of camping/campersite to use this place** corresponds
|
||||||
|
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>
|
||||||
|
- **Anyone can use this dump station** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
- **Anyone can use this dump station** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### dumpstations-network
|
||||||
|
|
||||||
|
|
||||||
- **You need a network key/code to use this** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dnetwork' target='_blank'>network</a>
|
|
||||||
- **You need to be a customer of camping/campersite to use this place** corresponds 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>
|
|
||||||
- **Anyone can use this dump station** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>_This option cannot be chosen as answer_
|
|
||||||
- **Anyone can use this dump station** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### dumpstations-network
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What network is this place a part of? (skip if none)**
|
The question is **What network is this place a part of? (skip if none)**
|
||||||
|
|
||||||
This rendering asks information about the property [network](https://wiki.openstreetmap.org/wiki/Key:network)
|
This rendering asks information about the property [network](https://wiki.openstreetmap.org/wiki/Key:network)
|
||||||
This is rendered with `This station is part of network {network}`
|
This is rendered with `This station is part of network {network}`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/dumpstations/dumpstations.json
|
This document is autogenerated from assets/layers/dumpstations/dumpstations.json
|
|
@ -1,23 +1,20 @@
|
||||||
|
entrance
|
||||||
|
|
||||||
entrance
|
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/layers/entrance/door.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/layers/entrance/door.svg' height="100px">
|
||||||
|
|
||||||
A layer showing entrances and offering capabilities to survey some advanced data which is important for e.g. wheelchair users (but also bicycle users, people who want to deliver, ...)
|
A layer showing entrances and offering capabilities to survey some advanced data which is important for e.g. wheelchair
|
||||||
|
users (but also bicycle users, people who want to deliver, ...)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [entrance](#entrance)
|
1. [entrance](#entrance)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [Entrance type](#entrance-type)
|
+ [Entrance type](#entrance-type)
|
||||||
+ [Door_type](#door_type)
|
+ [Door_type](#door_type)
|
||||||
|
@ -25,145 +22,147 @@ A layer showing entrances and offering capabilities to survey some advanced data
|
||||||
+ [width](#width)
|
+ [width](#width)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on
|
||||||
|
it: a preset snaps to this layer (presets[0])
|
||||||
|
- This layer will automatically load [pedestrian_path](./pedestrian_path.md) into the layout as it depends on it: a
|
||||||
|
preset snaps to this layer (presets[0])
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [entrances](https://mapcomplete.osm.be/entrances)
|
||||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[0])
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
- This layer will automatically load [pedestrian_path](./pedestrian_path.md) into the layout as it depends on it: a preset snaps to this layer (presets[0])
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [entrances](https://mapcomplete.osm.be/entrances)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/entrance/entrance.json)
|
[Go to the source code](../assets/layers/entrance/entrance.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- entrance~^..*$|<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Ddoor' target='_blank'>door</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- entrance~^..*$|<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Ddoor' target='_blank'>door</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/entrance#values) [entrance](https://wiki.openstreetmap.org/wiki/Key:entrance) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:entrance%3D) [main](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dmain) [secondary](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dsecondary) [service](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dservice) [exit](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dexit) [entrance](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dentrance) [emergency](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Demergency) [home](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dhome)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/entrance#values) [entrance](https://wiki.openstreetmap.org/wiki/Key:entrance) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:entrance%3D) [main](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dmain) [secondary](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dsecondary) [service](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dservice) [exit](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dexit) [entrance](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dentrance) [emergency](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Demergency) [home](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dhome)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/door#values) [door](https://wiki.openstreetmap.org/wiki/Key:door) | Multiple choice | [hinged](https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged) [revolving](https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving) [sliding](https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding) [overhead](https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead) [no](https://wiki.openstreetmap.org/wiki/Tag:door%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/door#values) [door](https://wiki.openstreetmap.org/wiki/Key:door) | Multiple choice | [hinged](https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged) [revolving](https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving) [sliding](https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding) [overhead](https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead) [no](https://wiki.openstreetmap.org/wiki/Tag:door%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/automatic_door#values) [automatic_door](https://wiki.openstreetmap.org/wiki/Key:automatic_door) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno) [motion](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion) [floor](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor) [button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton) [slowdown_button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button) [continuous](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous) [serviced_on_button_press](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press) [serviced_on_request](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/automatic_door#values) [automatic_door](https://wiki.openstreetmap.org/wiki/Key:automatic_door) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno) [motion](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion) [floor](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor) [button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton) [slowdown_button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button) [continuous](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous) [serviced_on_button_press](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press) [serviced_on_request](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width#values) [width](https://wiki.openstreetmap.org/wiki/Key:width) | [length](../SpecialInputElements.md#length) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width#values) [width](https://wiki.openstreetmap.org/wiki/Key:width) | [length](../SpecialInputElements.md#length) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Entrance type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Entrance type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What type of entrance is this?**
|
The question is **What type of entrance is this?**
|
||||||
|
|
||||||
|
- **No specific entrance type is known** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dyes' target='_blank'>yes</a>_This option cannot be chosen
|
||||||
|
as answer_
|
||||||
|
- **This is an indoor door, separating a room or a corridor within a single building** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Ddoor' target='_blank'>door</a>
|
||||||
|
- **This is the main entrance** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dmain' target='_blank'>main</a>
|
||||||
|
- **This is a secondary entrance** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dsecondary' target='_blank'>secondary</a>
|
||||||
|
- **This is a service entrance - normally only used for employees, delivery, ...** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dservice' target='_blank'>service</a>
|
||||||
|
- **This is an exit where one can not enter** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dexit' target='_blank'>exit</a>
|
||||||
|
- **This is an entrance where one can only enter (but not exit)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dentrance' target='_blank'>entrance</a>
|
||||||
|
- **This is emergency exit** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Demergency' target='_blank'>emergency</a>
|
||||||
|
- **This is the entrance to a private home** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dhome' target='_blank'>home</a>
|
||||||
|
|
||||||
|
### Door_type
|
||||||
|
|
||||||
|
The question is **What is the type of this door?<br/><span class='subtle'>Wether or not the door is automated is asked
|
||||||
|
in the next question</span>**
|
||||||
|
|
||||||
|
- **The door type is not known** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as
|
||||||
|
answer_
|
||||||
|
- **A classical, hinged door supported by joints** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged' target='_blank'>hinged</a>
|
||||||
|
- **A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving' target='_blank'>revolving</a>
|
||||||
|
- **A sliding door where the door slides sidewards, typically parallel with a wall** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding' target='_blank'>sliding</a>
|
||||||
|
- **A door which rolls from overhead, typically seen for garages** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead' target='_blank'>overhead</a>
|
||||||
|
- **This is an entrance without a physical door** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
- **No specific entrance type is known** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_
|
### automatic_door
|
||||||
- **This is an indoor door, separating a room or a corridor within a single building** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Ddoor' target='_blank'>door</a>
|
|
||||||
- **This is the main entrance** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dmain' target='_blank'>main</a>
|
|
||||||
- **This is a secondary entrance** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dsecondary' target='_blank'>secondary</a>
|
|
||||||
- **This is a service entrance - normally only used for employees, delivery, ...** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dservice' target='_blank'>service</a>
|
|
||||||
- **This is an exit where one can not enter** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dexit' target='_blank'>exit</a>
|
|
||||||
- **This is an entrance where one can only enter (but not exit)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dentrance' target='_blank'>entrance</a>
|
|
||||||
- **This is emergency exit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Demergency' target='_blank'>emergency</a>
|
|
||||||
- **This is the entrance to a private home** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dhome' target='_blank'>home</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Door_type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the type of this door?<br/><span class='subtle'>Wether or not the door is automated is asked in the next question</span>**
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- **The door type is not known** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_
|
|
||||||
- **A classical, hinged door supported by joints** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged' target='_blank'>hinged</a>
|
|
||||||
- **A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving' target='_blank'>revolving</a>
|
|
||||||
- **A sliding door where the door slides sidewards, typically parallel with a wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding' target='_blank'>sliding</a>
|
|
||||||
- **A door which rolls from overhead, typically seen for garages** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead' target='_blank'>overhead</a>
|
|
||||||
- **This is an entrance without a physical door** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### automatic_door
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this door automated?**
|
The question is **Is this door automated?**
|
||||||
|
|
||||||
|
- **This is an automatic door** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dyes' target='_blank'>yes</a>_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
- **This door is <b>not</b> automated** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno' target='_blank'>no</a>
|
||||||
|
- **This door will open automatically when <b>motion</b> is detected** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion' target='_blank'>motion</a>
|
||||||
|
- **This door will open automatically when a <b>sensor in the floor</b> is triggered** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor' target='_blank'>floor</a>
|
||||||
|
- **This door will open automatically when a <b>button is pressed</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton' target='_blank'>button</a>
|
||||||
|
- **This door revolves automatically all the time, but has a <b>button to slow it down</b>, e.g. for wheelchair users**
|
||||||
|
corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button' target='_blank'>
|
||||||
|
slowdown_button</a>
|
||||||
|
- **This door revolves automatically all the time** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous' target='_blank'>continuous</a>
|
||||||
|
- **This door will be opened by staff when requested by <b>pressing a button</b** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press' target='_blank'>
|
||||||
|
serviced_on_button_press</a>
|
||||||
|
- **This door will be opened by staff when requested** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request' target='_blank'>
|
||||||
|
serviced_on_request</a>
|
||||||
|
|
||||||
|
### width
|
||||||
|
|
||||||
|
|
||||||
- **This is an automatic door** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_
|
|
||||||
- **This door is <b>not</b> automated** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno' target='_blank'>no</a>
|
|
||||||
- **This door will open automatically when <b>motion</b> is detected** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion' target='_blank'>motion</a>
|
|
||||||
- **This door will open automatically when a <b>sensor in the floor</b> is triggered** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor' target='_blank'>floor</a>
|
|
||||||
- **This door will open automatically when a <b>button is pressed</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton' target='_blank'>button</a>
|
|
||||||
- **This door revolves automatically all the time, but has a <b>button to slow it down</b>, e.g. for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button' target='_blank'>slowdown_button</a>
|
|
||||||
- **This door revolves automatically all the time** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous' target='_blank'>continuous</a>
|
|
||||||
- **This door will be opened by staff when requested by <b>pressing a button</b** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press' target='_blank'>serviced_on_button_press</a>
|
|
||||||
- **This door will be opened by staff when requested** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request' target='_blank'>serviced_on_request</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### width
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the width of this door/entrance?**
|
The question is **What is the width of this door/entrance?**
|
||||||
|
|
||||||
This rendering asks information about the property [width](https://wiki.openstreetmap.org/wiki/Key:width)
|
This rendering asks information about the property [width](https://wiki.openstreetmap.org/wiki/Key:width)
|
||||||
This is rendered with `This door has a width of {canonical(width)} meter`
|
This is rendered with `This door has a width of {canonical(width)} meter`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/entrance/entrance.json
|
This document is autogenerated from assets/layers/entrance/entrance.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
etymology
|
||||||
|
|
||||||
etymology
|
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
All objects which have an etymology known
|
All objects which have an etymology known
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [etymology](#etymology)
|
1. [etymology](#etymology)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [etymology-images-from-wikipedia](#etymology-images-from-wikipedia)
|
+ [etymology-images-from-wikipedia](#etymology-images-from-wikipedia)
|
||||||
+ [wikipedia-etymology](#wikipedia-etymology)
|
+ [wikipedia-etymology](#wikipedia-etymology)
|
||||||
+ [zoeken op inventaris onroerend erfgoed](#zoeken-op-inventaris-onroerend-erfgoed)
|
+ [zoeken op inventaris onroerend erfgoed](#zoeken-op-inventaris-onroerend-erfgoed)
|
||||||
|
@ -28,153 +24,84 @@ All objects which have an etymology known
|
||||||
+ [etymology_multi_apply](#etymology_multi_apply)
|
+ [etymology_multi_apply](#etymology_multi_apply)
|
||||||
+ [wikipedia](#wikipedia)
|
+ [wikipedia](#wikipedia)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [etymology](https://mapcomplete.osm.be/etymology)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [etymology](https://mapcomplete.osm.be/etymology)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/etymology/etymology.json)
|
[Go to the source code](../assets/layers/etymology/etymology.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- name:etymology:wikidata~^..*$|name:etymology~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- name:etymology:wikidata~^..*$|name:etymology~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown)
|
||||||
|
|
||||||
|
### etymology-images-from-wikipedia
|
||||||
|
|
||||||
|
|
||||||
### etymology-images-from-wikipedia
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### wikipedia-etymology
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### wikipedia-etymology
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the Wikidata-item that this object is named after?**
|
The question is **What is the Wikidata-item that this object is named after?**
|
||||||
|
|
||||||
This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata)
|
This rendering asks information about the
|
||||||
This is rendered with `<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}`
|
property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata)
|
||||||
|
This is rendered
|
||||||
|
with `<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}`
|
||||||
|
|
||||||
### zoeken op inventaris onroerend erfgoed
|
|
||||||
|
|
||||||
|
|
||||||
|
### zoeken op inventaris onroerend erfgoed
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### simple etymology
|
||||||
|
|
||||||
|
The question is **What is this object named after?<br/><span class='subtle'>This might be written on the street name
|
||||||
|
sign</span>**
|
||||||
|
|
||||||
|
This rendering asks information about the
|
||||||
|
property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology)
|
||||||
### simple etymology
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is this object named after?<br/><span class='subtle'>This might be written on the street name sign</span>**
|
|
||||||
|
|
||||||
This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology)
|
|
||||||
This is rendered with `Named after {name:etymology}`
|
This is rendered with `Named after {name:etymology}`
|
||||||
|
|
||||||
|
- **The origin of this name is unknown in all literature** corresponds
|
||||||
|
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
|
||||||
- **The origin of this name is unknown in all literature** corresponds 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### street-name-sign-image
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### street-name-sign-image
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### minimap
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### etymology_multi_apply
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### etymology_multi_apply
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### wikipedia
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### wikipedia
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/etymology/etymology.json
|
This document is autogenerated from assets/layers/etymology/etymology.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
extinguisher
|
||||||
|
|
||||||
extinguisher
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,94 +7,60 @@
|
||||||
|
|
||||||
Map layer to show fire hydrants.
|
Map layer to show fire hydrants.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [extinguisher](#extinguisher)
|
1. [extinguisher](#extinguisher)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [extinguisher-location](#extinguisher-location)
|
+ [extinguisher-location](#extinguisher-location)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/extinguisher/extinguisher.json)
|
[Go to the source code](../assets/layers/extinguisher/extinguisher.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_extinguisher' target='_blank'>fire_extinguisher</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_extinguisher' target='_blank'>fire_extinguisher</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/location#values) [location](https://wiki.openstreetmap.org/wiki/Key:location) | [string](../SpecialInputElements.md#string) | [indoor](https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:location%3Doutdoor)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/location#values) [location](https://wiki.openstreetmap.org/wiki/Key:location) | [string](../SpecialInputElements.md#string) | [indoor](https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:location%3Doutdoor)
|
||||||
|
|
||||||
|
### extinguisher-location
|
||||||
|
|
||||||
|
|
||||||
### extinguisher-location
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Where is it positioned?**
|
The question is **Where is it positioned?**
|
||||||
|
|
||||||
This rendering asks information about the property [location](https://wiki.openstreetmap.org/wiki/Key:location)
|
This rendering asks information about the property [location](https://wiki.openstreetmap.org/wiki/Key:location)
|
||||||
This is rendered with `Location: {location}`
|
This is rendered with `Location: {location}`
|
||||||
|
|
||||||
|
- **Found indoors.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>
|
||||||
|
location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor' target='_blank'>indoor</a>
|
||||||
|
- **Found outdoors.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>
|
||||||
|
location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Doutdoor' target='_blank'>outdoor</a>
|
||||||
|
|
||||||
|
### images
|
||||||
- **Found indoors.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor' target='_blank'>indoor</a>
|
|
||||||
- **Found outdoors.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Doutdoor' target='_blank'>outdoor</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/extinguisher/extinguisher.json
|
This document is autogenerated from assets/layers/extinguisher/extinguisher.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
facadegardens
|
||||||
|
|
||||||
facadegardens
|
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
Facade gardens
|
Facade gardens
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [facadegardens](#facadegardens)
|
1. [facadegardens](#facadegardens)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [facadegardens-direction](#facadegardens-direction)
|
+ [facadegardens-direction](#facadegardens-direction)
|
||||||
+ [facadegardens-sunshine](#facadegardens-sunshine)
|
+ [facadegardens-sunshine](#facadegardens-sunshine)
|
||||||
|
@ -27,171 +23,116 @@ Facade gardens
|
||||||
+ [facadegardens-plants](#facadegardens-plants)
|
+ [facadegardens-plants](#facadegardens-plants)
|
||||||
+ [facadegardens-description](#facadegardens-description)
|
+ [facadegardens-description](#facadegardens-description)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [facadegardens](https://mapcomplete.osm.be/facadegardens)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [facadegardens](https://mapcomplete.osm.be/facadegardens)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/facadegardens/facadegardens.json)
|
[Go to the source code](../assets/layers/facadegardens/facadegardens.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dgarden' target='_blank'>garden</a>
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:garden:type' target='_blank'>garden:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:garden:type%3Dfacade_garden' target='_blank'>facade_garden</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dgarden' target='_blank'>garden</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:garden:type' target='_blank'>garden:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:garden:type%3Dfacade_garden' target='_blank'>facade_garden</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direct_sunlight#values) [direct_sunlight](https://wiki.openstreetmap.org/wiki/Key:direct_sunlight) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dyes) [partial](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dpartial) [no](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direct_sunlight#values) [direct_sunlight](https://wiki.openstreetmap.org/wiki/Key:direct_sunlight) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dyes) [partial](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dpartial) [no](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/rain_barrel#values) [rain_barrel](https://wiki.openstreetmap.org/wiki/Key:rain_barrel) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/rain_barrel#values) [rain_barrel](https://wiki.openstreetmap.org/wiki/Key:rain_barrel) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [text](../SpecialInputElements.md#text) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [text](../SpecialInputElements.md#text) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/edible#values) [edible](https://wiki.openstreetmap.org/wiki/Key:edible) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:edible%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:edible%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/edible#values) [edible](https://wiki.openstreetmap.org/wiki/Key:edible) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:edible%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:edible%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/plant#values) [plant](https://wiki.openstreetmap.org/wiki/Key:plant) | Multiple choice | [vine](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dvine) [flower](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dflower) [shrub](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dshrub) [groundcover](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dgroundcover)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/plant#values) [plant](https://wiki.openstreetmap.org/wiki/Key:plant) | Multiple choice | [vine](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dvine) [flower](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dflower) [shrub](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dshrub) [groundcover](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dgroundcover)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### facadegardens-direction
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### facadegardens-direction
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the orientation of the garden?**
|
The question is **What is the orientation of the garden?**
|
||||||
|
|
||||||
This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction)
|
This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction)
|
||||||
This is rendered with `Orientation: {direction} (where 0=N and 90=O)`
|
This is rendered with `Orientation: {direction} (where 0=N and 90=O)`
|
||||||
|
|
||||||
|
### facadegardens-sunshine
|
||||||
|
|
||||||
### facadegardens-sunshine
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is the garden shaded or sunny?**
|
The question is **Is the garden shaded or sunny?**
|
||||||
|
|
||||||
|
- **The garden is in full sun** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **The garden is in partial shade** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dpartial' target='_blank'>partial</a>
|
||||||
|
- **The garden is in the shade** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### facadegardens-rainbarrel
|
||||||
|
|
||||||
|
|
||||||
- **The garden is in full sun** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **The garden is in partial shade** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dpartial' target='_blank'>partial</a>
|
|
||||||
- **The garden is in the shade** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### facadegardens-rainbarrel
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is there a water barrel installed for the garden?**
|
The question is **Is there a water barrel installed for the garden?**
|
||||||
|
|
||||||
|
- **There is a rain barrel** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:rain_barrel' target='_blank'>rain_barrel</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **There is no rain barrel** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:rain_barrel' target='_blank'>rain_barrel</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### facadegardens-start_date
|
||||||
|
|
||||||
|
|
||||||
- **There is a rain barrel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rain_barrel' target='_blank'>rain_barrel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **There is no rain barrel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rain_barrel' target='_blank'>rain_barrel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### facadegardens-start_date
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When was the garden constructed? (a year is sufficient)**
|
The question is **When was the garden constructed? (a year is sufficient)**
|
||||||
|
|
||||||
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
||||||
This is rendered with `Construction date of the garden: {start_date}`
|
This is rendered with `Construction date of the garden: {start_date}`
|
||||||
|
|
||||||
|
### facadegardens-edible
|
||||||
|
|
||||||
### facadegardens-edible
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Are there any edible plants?**
|
The question is **Are there any edible plants?**
|
||||||
|
|
||||||
|
- **There are edible plants** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:edible' target='_blank'>
|
||||||
|
edible</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:edible%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **There are no edible plants** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:edible' target='_blank'>edible</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:edible%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### facadegardens-plants
|
||||||
|
|
||||||
|
|
||||||
- **There are edible plants** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:edible' target='_blank'>edible</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:edible%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **There are no edible plants** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:edible' target='_blank'>edible</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:edible%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### facadegardens-plants
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What kinds of plants grow here?**
|
The question is **What kinds of plants grow here?**
|
||||||
|
|
||||||
|
- **There are vines** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dvine' target='_blank'>vine</a>
|
||||||
|
- **There are flowering plants** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dflower' target='_blank'>flower</a>
|
||||||
|
- **There are shrubs** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>
|
||||||
|
plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dshrub' target='_blank'>shrub</a>
|
||||||
|
- **There are groundcovering plants** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dgroundcover' target='_blank'>groundcover</a>
|
||||||
|
|
||||||
|
### facadegardens-description
|
||||||
|
|
||||||
|
|
||||||
- **There are vines** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dvine' target='_blank'>vine</a>
|
|
||||||
- **There are flowering plants** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dflower' target='_blank'>flower</a>
|
|
||||||
- **There are shrubs** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dshrub' target='_blank'>shrub</a>
|
|
||||||
- **There are groundcovering plants** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dgroundcover' target='_blank'>groundcover</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### facadegardens-description
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Extra describing info about the garden (if needed and not yet described above)**
|
The question is **Extra describing info about the garden (if needed and not yet described above)**
|
||||||
|
|
||||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
This is rendered with `More details: {description}`
|
This is rendered with `More details: {description}`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/facadegardens/facadegardens.json
|
This document is autogenerated from assets/layers/facadegardens/facadegardens.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
fietsstraat
|
||||||
|
|
||||||
fietsstraat
|
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,66 +7,38 @@
|
||||||
|
|
||||||
A cyclestreet is a street where motorized traffic is not allowed to overtake a cyclist
|
A cyclestreet is a street where motorized traffic is not allowed to overtake a cyclist
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [fietsstraat](#fietsstraat)
|
1. [fietsstraat](#fietsstraat)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [cyclestreets](https://mapcomplete.osm.be/cyclestreets)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [cyclestreets](https://mapcomplete.osm.be/cyclestreets)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/fietsstraat/fietsstraat.json)
|
[Go to the source code](../assets/layers/fietsstraat/fietsstraat.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/fietsstraat/fietsstraat.json
|
This document is autogenerated from assets/layers/fietsstraat/fietsstraat.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
fire_station
|
||||||
|
|
||||||
fire_station
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
Map layer to show fire stations.
|
Map layer to show fire stations.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [fire_station](#fire_station)
|
1. [fire_station](#fire_station)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [station-name](#station-name)
|
+ [station-name](#station-name)
|
||||||
+ [station-street](#station-street)
|
+ [station-street](#station-street)
|
||||||
+ [station-place](#station-place)
|
+ [station-place](#station-place)
|
||||||
|
@ -25,137 +21,97 @@ Map layer to show fire stations.
|
||||||
+ [station-operator](#station-operator)
|
+ [station-operator](#station-operator)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/fire_station/fire_station.json)
|
[Go to the source code](../assets/layers/fire_station/fire_station.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfire_station' target='_blank'>fire_station</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfire_station' target='_blank'>fire_station</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:place#values) [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:place#values) [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Bureau of Fire Protection](https://wiki.openstreetmap.org/wiki/Tag:operator%3DBureau of Fire Protection)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Bureau of Fire Protection](https://wiki.openstreetmap.org/wiki/Tag:operator%3DBureau of Fire Protection)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator:type#values) [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator:type#values) [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate)
|
||||||
|
|
||||||
|
### station-name
|
||||||
|
|
||||||
|
|
||||||
### station-name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this fire station?**
|
The question is **What is the name of this fire station?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `This station is called {name}.`
|
This is rendered with `This station is called {name}.`
|
||||||
|
|
||||||
|
### station-street
|
||||||
|
|
||||||
### station-street
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is ** What is the street name where the station located?**
|
The question is ** What is the street name where the station located?**
|
||||||
|
|
||||||
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
||||||
This is rendered with `This station is along a highway called {addr:street}.`
|
This is rendered with `This station is along a highway called {addr:street}.`
|
||||||
|
|
||||||
|
### station-place
|
||||||
|
|
||||||
### station-place
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Where is the station located? (e.g. name of neighborhood, villlage, or town)**
|
The question is **Where is the station located? (e.g. name of neighborhood, villlage, or town)**
|
||||||
|
|
||||||
This rendering asks information about the property [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place)
|
This rendering asks information about the property [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place)
|
||||||
This is rendered with `This station is found within {addr:place}.`
|
This is rendered with `This station is found within {addr:place}.`
|
||||||
|
|
||||||
|
### station-agency
|
||||||
|
|
||||||
### station-agency
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What agency operates this station?**
|
The question is **What agency operates this station?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
This is rendered with `This station is operated by {operator}.`
|
This is rendered with `This station is operated by {operator}.`
|
||||||
|
|
||||||
|
- **Bureau of Fire Protection** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DBureau of Fire Protection' target='_blank'>Bureau of Fire
|
||||||
|
Protection</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
|
||||||
|
|
||||||
|
### station-operator
|
||||||
- **Bureau of Fire Protection** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DBureau of Fire Protection' target='_blank'>Bureau of Fire Protection</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### station-operator
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How is the station operator classified?**
|
The question is **How is the station operator classified?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type)
|
This rendering asks information about the
|
||||||
|
property [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type)
|
||||||
This is rendered with `The operator is a(n) {operator:type} entity.`
|
This is rendered with `The operator is a(n) {operator:type} entity.`
|
||||||
|
|
||||||
|
- **The station is operated by the government.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
|
||||||
|
- **The station is operated by a community-based, or informal organization.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a>
|
||||||
|
- **The station is operated by a formal group of volunteers.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo' target='_blank'>ngo</a>
|
||||||
|
- **The station is privately operated.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate' target='_blank'>private</a>
|
||||||
|
|
||||||
|
### images
|
||||||
- **The station is operated by the government.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
|
|
||||||
- **The station is operated by a community-based, or informal organization.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a>
|
|
||||||
- **The station is operated by a formal group of volunteers.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo' target='_blank'>ngo</a>
|
|
||||||
- **The station is privately operated.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate' target='_blank'>private</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/fire_station/fire_station.json
|
This document is autogenerated from assets/layers/fire_station/fire_station.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
food
|
||||||
|
|
||||||
food
|
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A layer showing restaurants and fast-food amenities (with a special rendering for friteries)
|
A layer showing restaurants and fast-food amenities (with a special rendering for friteries)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [food](#food)
|
1. [food](#food)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [Name](#name)
|
+ [Name](#name)
|
||||||
+ [Fastfood vs restaurant](#fastfood-vs-restaurant)
|
+ [Fastfood vs restaurant](#fastfood-vs-restaurant)
|
||||||
|
@ -40,61 +36,43 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
||||||
+ [dog-access](#dog-access)
|
+ [dog-access](#dog-access)
|
||||||
+ [reviews](#reviews)
|
+ [reviews](#reviews)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [food](https://mapcomplete.osm.be/food)
|
||||||
|
- [fritures](https://mapcomplete.osm.be/fritures)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [food](https://mapcomplete.osm.be/food)
|
|
||||||
- [fritures](https://mapcomplete.osm.be/fritures)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/food/food.json)
|
[Go to the source code](../assets/layers/food/food.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <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>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <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>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [fast_food](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [fast_food](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cuisine#values) [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cuisine#values) [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/takeaway#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/takeaway#values) [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)
|
||||||
|
@ -108,349 +86,302 @@ attribute | type | values which are supported by this layer
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this restaurant?**
|
The question is **What is the name of this restaurant?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `The name of this restaurant is {name}`
|
This is rendered with `The name of this restaurant is {name}`
|
||||||
|
|
||||||
|
### Fastfood vs restaurant
|
||||||
|
|
||||||
### Fastfood vs restaurant
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What type of business is this?**
|
The question is **What type of business is this?**
|
||||||
|
|
||||||
|
- **Dit is een <b>fastfood-zaak</b>. De focus ligt op snelle bediening, zitplaatsen zijn vaak beperkt en functioneel**
|
||||||
|
corresponds with <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>
|
||||||
|
- **Dit is een <b>restaurant</b>. De focus ligt op een aangename ervaring waar je aan tafel wordt bediend** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||||
|
|
||||||
|
### opening_hours
|
||||||
|
|
||||||
|
|
||||||
- **Dit is een <b>fastfood-zaak</b>. De focus ligt op snelle bediening, zitplaatsen zijn vaak beperkt en functioneel** corresponds with <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>
|
|
||||||
- **Dit is een <b>restaurant</b>. De focus ligt op een aangename ervaring waar je aan tafel wordt bediend** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What are the opening hours of {name}?**
|
The question is **What are the opening hours of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
### website
|
||||||
|
|
||||||
### website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the website of {name}?**
|
The question is **What is the website of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### email
|
||||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of {name}?**
|
The question is **What is the email address of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### phone
|
||||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number of {name}?**
|
The question is **What is the phone number of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
|
||||||
|
### payment-options
|
||||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### payment-options
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Which methods of payment are accepted here?**
|
The question is **Which methods of payment are accepted here?**
|
||||||
|
|
||||||
|
- **Cash is accepted here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer
|
||||||
|
will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||||
|
- **Payment cards are accepted here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer
|
||||||
|
will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### wheelchair-access
|
||||||
|
|
||||||
|
|
||||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
|
||||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### wheelchair-access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this place accessible with a wheelchair?**
|
The question is **Is this place accessible with a wheelchair?**
|
||||||
|
|
||||||
|
- **This place is specially adapted for wheelchair users** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||||
|
- **This place is easily reachable with a wheelchair** corresponds
|
||||||
|
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>
|
||||||
|
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds
|
||||||
|
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 place is not reachable with a wheelchair** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### Cuisine
|
||||||
|
|
||||||
|
|
||||||
- **This place is specially adapted for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
|
||||||
- **This place is easily reachable with a wheelchair** corresponds 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>
|
|
||||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds 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 place is not reachable with a wheelchair** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Cuisine
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Which food is served here?**
|
The question is **Which food is served here?**
|
||||||
|
|
||||||
This rendering asks information about the property [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine)
|
This rendering asks information about the property [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine)
|
||||||
This is rendered with `This place mostly serves {cuisine}`
|
This is rendered with `This place mostly serves {cuisine}`
|
||||||
|
|
||||||
|
- **This is a pizzeria** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>
|
||||||
|
cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza' target='_blank'>pizza</a>
|
||||||
|
- **This is a friture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>
|
||||||
|
cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a>
|
||||||
|
- **Mainly serves pasta** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>
|
||||||
|
cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta' target='_blank'>pasta</a>
|
||||||
|
- **Dit is een kebabzaak** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>
|
||||||
|
cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab' target='_blank'>kebab</a>
|
||||||
|
- **Dit is een broodjeszaak** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich' target='_blank'>sandwich</a>
|
||||||
|
- **Dit is een hamburgerrestaurant** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger' target='_blank'>burger</a>
|
||||||
|
- **Dit is een sushirestaurant** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi' target='_blank'>sushi</a>
|
||||||
|
- **Dit is een koffiezaak** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>
|
||||||
|
cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee' target='_blank'>coffee</a>
|
||||||
|
- **Dit is een Italiaans restaurant (dat meer dan enkel pasta of pizza verkoopt)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian' target='_blank'>italian</a>
|
||||||
|
- **Dit is een Frans restaurant** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench' target='_blank'>french</a>
|
||||||
|
- **Dit is een Chinees restaurant** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese' target='_blank'>chinese</a>
|
||||||
|
- **Dit is een Grieks restaurant** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek' target='_blank'>greek</a>
|
||||||
|
- **Dit is een Indisch restaurant** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian' target='_blank'>indian</a>
|
||||||
|
- **Dit is een Turks restaurant (dat meer dan enkel kebab verkoopt)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish' target='_blank'>turkish</a>
|
||||||
|
- **Dit is een Thaïs restaurant** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai' target='_blank'>thai</a>
|
||||||
|
|
||||||
|
### Takeaway
|
||||||
- **This is a pizzeria** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza' target='_blank'>pizza</a>
|
|
||||||
- **This is a friture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a>
|
|
||||||
- **Mainly serves pasta** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta' target='_blank'>pasta</a>
|
|
||||||
- **Dit is een kebabzaak** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab' target='_blank'>kebab</a>
|
|
||||||
- **Dit is een broodjeszaak** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich' target='_blank'>sandwich</a>
|
|
||||||
- **Dit is een hamburgerrestaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger' target='_blank'>burger</a>
|
|
||||||
- **Dit is een sushirestaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi' target='_blank'>sushi</a>
|
|
||||||
- **Dit is een koffiezaak** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee' target='_blank'>coffee</a>
|
|
||||||
- **Dit is een Italiaans restaurant (dat meer dan enkel pasta of pizza verkoopt)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian' target='_blank'>italian</a>
|
|
||||||
- **Dit is een Frans restaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench' target='_blank'>french</a>
|
|
||||||
- **Dit is een Chinees restaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese' target='_blank'>chinese</a>
|
|
||||||
- **Dit is een Grieks restaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek' target='_blank'>greek</a>
|
|
||||||
- **Dit is een Indisch restaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian' target='_blank'>indian</a>
|
|
||||||
- **Dit is een Turks restaurant (dat meer dan enkel kebab verkoopt)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish' target='_blank'>turkish</a>
|
|
||||||
- **Dit is een Thaïs restaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai' target='_blank'>thai</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Takeaway
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this place offer takea-way?**
|
The question is **Does this place offer takea-way?**
|
||||||
|
|
||||||
|
- **This is a take-away only business** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly' target='_blank'>only</a>
|
||||||
|
- **Take-away is possible here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Take-away is not possible here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### Vegetarian (no friture)
|
||||||
|
|
||||||
|
|
||||||
- **This is a take-away only business** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly' target='_blank'>only</a>
|
|
||||||
- **Take-away is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Take-away is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Vegetarian (no friture)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this restaurant have a vegetarian option?**
|
The question is **Does this restaurant have a vegetarian option?**
|
||||||
|
|
||||||
|
- **Geen vegetarische opties beschikbaar** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>
|
||||||
|
- **Beperkte vegetarische opties zijn beschikbaar** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>
|
||||||
|
- **Vegetarische opties zijn beschikbaar** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Enkel vegetarische opties zijn beschikbaar** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly' target='_blank'>only</a>
|
||||||
|
|
||||||
|
### Vegan (no friture)
|
||||||
|
|
||||||
|
|
||||||
- **Geen vegetarische opties beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>
|
|
||||||
- **Beperkte vegetarische opties zijn beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>
|
|
||||||
- **Vegetarische opties zijn beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Enkel vegetarische opties zijn beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly' target='_blank'>only</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Vegan (no friture)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Heeft deze eetgelegenheid een veganistische optie?**
|
The question is **Heeft deze eetgelegenheid een veganistische optie?**
|
||||||
|
|
||||||
|
- **Geen veganistische opties beschikbaar** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>
|
||||||
|
- **Beperkte veganistische opties zijn beschikbaar** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>
|
||||||
|
- **Veganistische opties zijn beschikbaar** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Enkel veganistische opties zijn beschikbaar** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly' target='_blank'>only</a>
|
||||||
|
|
||||||
|
### halal (no friture)
|
||||||
|
|
||||||
|
|
||||||
- **Geen veganistische opties beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>
|
|
||||||
- **Beperkte veganistische opties zijn beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>
|
|
||||||
- **Veganistische opties zijn beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Enkel veganistische opties zijn beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly' target='_blank'>only</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### halal (no friture)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this restaurant offer a halal menu?**
|
The question is **Does this restaurant offer a halal menu?**
|
||||||
|
|
||||||
|
- **There are no halal options available** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno' target='_blank'>no</a>
|
||||||
|
- **There is a small halal menu** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited' target='_blank'>limited</a>
|
||||||
|
- **There is a halal menu** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Only halal options are available** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly' target='_blank'>only</a>
|
||||||
|
|
||||||
|
### friture-vegetarian
|
||||||
|
|
||||||
|
|
||||||
- **There are no halal options available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno' target='_blank'>no</a>
|
|
||||||
- **There is a small halal menu** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited' target='_blank'>limited</a>
|
|
||||||
- **There is a halal menu** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Only halal options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly' target='_blank'>only</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### friture-vegetarian
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Heeft deze frituur vegetarische snacks?**
|
The question is **Heeft deze frituur vegetarische snacks?**
|
||||||
|
|
||||||
|
- **Er zijn vegetarische snacks aanwezig** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Slechts enkele vegetarische snacks** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>
|
||||||
|
- **Geen vegetarische snacks beschikbaar** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### friture-vegan
|
||||||
|
|
||||||
|
|
||||||
- **Er zijn vegetarische snacks aanwezig** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Slechts enkele vegetarische snacks** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>
|
|
||||||
- **Geen vegetarische snacks beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### friture-vegan
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Heeft deze frituur veganistische snacks?**
|
The question is **Heeft deze frituur veganistische snacks?**
|
||||||
|
|
||||||
|
- **Er zijn veganistische snacks aanwezig** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Slechts enkele veganistische snacks** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>
|
||||||
|
- **Geen veganistische snacks beschikbaar** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### friture-oil
|
||||||
|
|
||||||
|
|
||||||
- **Er zijn veganistische snacks aanwezig** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Slechts enkele veganistische snacks** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>
|
|
||||||
- **Geen veganistische snacks beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### friture-oil
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Bakt deze frituur met dierlijk vet of met plantaardige olie?**
|
The question is **Bakt deze frituur met dierlijk vet of met plantaardige olie?**
|
||||||
|
|
||||||
|
- **Plantaardige olie** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>
|
||||||
|
friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable' target='_blank'>
|
||||||
|
vegetable</a>
|
||||||
|
- **Dierlijk vet** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>
|
||||||
|
friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal' target='_blank'>animal</a>
|
||||||
|
|
||||||
|
### friture-take-your-container
|
||||||
|
|
||||||
|
The question is **If you bring your own container (such as a cooking pot and small pots), is it used to package your
|
||||||
|
order?<br/>**
|
||||||
|
|
||||||
|
- **You can bring <b>your own containers</b> to get your order, saving on single-use packaging material and thus waste**
|
||||||
|
corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>
|
||||||
|
reusable_packaging:accept</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Bringing your own container is <b>not allowed</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:
|
||||||
|
accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno' target='_blank'>no</a>
|
||||||
|
- **You <b>must</b> bring your own container to order here.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:
|
||||||
|
accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly' target='_blank'>only</a>
|
||||||
|
|
||||||
- **Plantaardige olie** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable' target='_blank'>vegetable</a>
|
### service:electricity
|
||||||
- **Dierlijk vet** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal' target='_blank'>animal</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### friture-take-your-container
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **If you bring your own container (such as a cooking pot and small pots), is it used to package your order?<br/>**
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- **You can bring <b>your own containers</b> to get your order, saving on single-use packaging material and thus waste** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Bringing your own container is <b>not allowed</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno' target='_blank'>no</a>
|
|
||||||
- **You <b>must</b> bring your own container to order here.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly' target='_blank'>only</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### service:electricity
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this amenity have electrical outlets, available to customers when they are inside?**
|
The question is **Does this amenity have electrical outlets, available to customers when they are inside?**
|
||||||
|
|
||||||
|
- **There are plenty of domestic sockets available to customers seated indoors, where they can charge their
|
||||||
|
electronics** corresponds 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%3Dyes' target='_blank'>
|
||||||
|
yes</a>
|
||||||
|
- **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics**
|
||||||
|
corresponds 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%3Dlimited' target='_blank'>
|
||||||
|
limited</a>
|
||||||
|
- **There are no sockets available indoors to customers, but charging might be possible if the staff is asked**
|
||||||
|
corresponds 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** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### dog-access
|
||||||
|
|
||||||
|
|
||||||
- **There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds 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%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds 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%3Dlimited' target='_blank'>limited</a>
|
|
||||||
- **There are no sockets available indoors to customers, but charging might be possible if the staff is asked** corresponds 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** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### dog-access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Are dogs allowed in this business?**
|
The question is **Are dogs allowed in this business?**
|
||||||
|
|
||||||
|
- **Dogs are allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Dogs are <b>not</b> allowed** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
||||||
|
- **Dogs are allowed, but they have to be leashed** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
||||||
|
- **Dogs are allowed and can run around freely** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>
|
||||||
|
|
||||||
|
### reviews
|
||||||
|
|
||||||
|
|
||||||
- **Dogs are allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Dogs are <b>not</b> allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
|
||||||
- **Dogs are allowed, but they have to be leashed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
|
||||||
- **Dogs are allowed and can run around freely** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### reviews
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/food/food.json
|
This document is autogenerated from assets/layers/food/food.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
forest
|
||||||
|
|
||||||
forest
|
|
||||||
========
|
========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,55 +7,44 @@
|
||||||
|
|
||||||
Een bos is een verzameling bomen, al dan niet als productiehout.
|
Een bos is een verzameling bomen, al dan niet als productiehout.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [forest](#forest)
|
1. [forest](#forest)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer will automatically load [parks](./parks.md) into the layout as it depends on it: A calculated tag loads
|
||||||
|
features from this layer (calculatedTag[0] which calculates the value for _overlapWithUpperLayers)
|
||||||
|
- This layer will automatically load [nature_reserve_buurtnatuur](./nature_reserve_buurtnatuur.md) into the layout as
|
||||||
- This layer will automatically load [parks](./parks.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _overlapWithUpperLayers)
|
it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _
|
||||||
- This layer will automatically load [nature_reserve_buurtnatuur](./nature_reserve_buurtnatuur.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _overlapWithUpperLayers)
|
overlapWithUpperLayers)
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/forest/forest.json)
|
[Go to the source code](../assets/layers/forest/forest.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:landuse' target='_blank'>landuse</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:landuse%3Dforest' target='_blank'>forest</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dwood' target='_blank'>wood</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dscrub' target='_blank'>scrub</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:landuse' target='_blank'>landuse</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:landuse%3Dforest' target='_blank'>forest</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dwood' target='_blank'>wood</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dscrub' target='_blank'>scrub</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/forest/forest.json
|
This document is autogenerated from assets/layers/forest/forest.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
fruitboom
|
||||||
|
|
||||||
fruitboom
|
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,103 +7,71 @@
|
||||||
|
|
||||||
Een boom
|
Een boom
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [fruitboom](#fruitboom)
|
1. [fruitboom](#fruitboom)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [fruitboom-species:nl](#fruitboom-speciesnl)
|
+ [fruitboom-species:nl](#fruitboom-speciesnl)
|
||||||
+ [fruitboom-taxon](#fruitboom-taxon)
|
+ [fruitboom-taxon](#fruitboom-taxon)
|
||||||
+ [fruitboom-description](#fruitboom-description)
|
+ [fruitboom-description](#fruitboom-description)
|
||||||
+ [fruitboom-ref](#fruitboom-ref)
|
+ [fruitboom-ref](#fruitboom-ref)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/fruitboom/fruitboom.json)
|
[Go to the source code](../assets/layers/fruitboom/fruitboom.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dtree' target='_blank'>tree</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dtree' target='_blank'>tree</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/species:nl#values) [species:nl](https://wiki.openstreetmap.org/wiki/Key:species:nl) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/species:nl#values) [species:nl](https://wiki.openstreetmap.org/wiki/Key:species:nl) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/taxon#values) [taxon](https://wiki.openstreetmap.org/wiki/Key:taxon) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/taxon#values) [taxon](https://wiki.openstreetmap.org/wiki/Key:taxon) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### fruitboom-species:nl
|
|
||||||
|
|
||||||
|
|
||||||
|
### fruitboom-species:nl
|
||||||
|
|
||||||
The question is **Wat is de soort van deze boom (in het Nederlands)?**
|
The question is **Wat is de soort van deze boom (in het Nederlands)?**
|
||||||
|
|
||||||
This rendering asks information about the property [species:nl](https://wiki.openstreetmap.org/wiki/Key:species:nl)
|
This rendering asks information about the property [species:nl](https://wiki.openstreetmap.org/wiki/Key:species:nl)
|
||||||
This is rendered with `De soort is {species:nl}`
|
This is rendered with `De soort is {species:nl}`
|
||||||
|
|
||||||
|
### fruitboom-taxon
|
||||||
|
|
||||||
### fruitboom-taxon
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wat is het taxon (ras) van deze boom?**
|
The question is **Wat is het taxon (ras) van deze boom?**
|
||||||
|
|
||||||
This rendering asks information about the property [taxon](https://wiki.openstreetmap.org/wiki/Key:taxon)
|
This rendering asks information about the property [taxon](https://wiki.openstreetmap.org/wiki/Key:taxon)
|
||||||
This is rendered with `Het ras (taxon) van deze boom is <b>{taxon}</b>`
|
This is rendered with `Het ras (taxon) van deze boom is <b>{taxon}</b>`
|
||||||
|
|
||||||
|
### fruitboom-description
|
||||||
|
|
||||||
### fruitboom-description
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Welke beschrijving past bij deze boom?**
|
The question is **Welke beschrijving past bij deze boom?**
|
||||||
|
|
||||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
This is rendered with `Beschrijving: <i>{description}</i>`
|
This is rendered with `Beschrijving: <i>{description}</i>`
|
||||||
|
|
||||||
|
### fruitboom-ref
|
||||||
|
|
||||||
### fruitboom-ref
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is er een refernetienummer?**
|
The question is **Is er een refernetienummer?**
|
||||||
|
|
||||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||||
This is rendered with `Referentienummer: <b>{ref}</b>`
|
This is rendered with `Referentienummer: <b>{ref}</b>`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/fruitboom/fruitboom.json
|
This document is autogenerated from assets/layers/fruitboom/fruitboom.json
|
|
@ -1,68 +1,45 @@
|
||||||
|
generic_osm_object
|
||||||
|
|
||||||
generic_osm_object
|
|
||||||
====================
|
====================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [generic_osm_object](#generic_osm_object)
|
1. [generic_osm_object](#generic_osm_object)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [all_tags](#all_tags)
|
+ [all_tags](#all_tags)
|
||||||
|
|
||||||
|
|
||||||
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
|
- This layer is needed as dependency for layer [grb](#grb)
|
||||||
|
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
|
||||||
- This layer is needed as dependency for layer [grb](#grb)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/generic_osm_object/generic_osm_object.json)
|
[Go to the source code](../assets/layers/generic_osm_object/generic_osm_object.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- id~^..*$
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- type!~^boundary$
|
||||||
|
-
|
||||||
|
- |<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:layer' target='_blank'>layer</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:layer%3D0' target='_blank'>0</a>|
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- id~^..*$
|
|
||||||
-
|
|
||||||
-
|
|
||||||
-
|
|
||||||
- type!~^boundary$
|
|
||||||
-
|
|
||||||
- |<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:layer' target='_blank'>layer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:layer%3D0' target='_blank'>0</a>|
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### all_tags
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### all_tags
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/generic_osm_object/generic_osm_object.json
|
This document is autogenerated from assets/layers/generic_osm_object/generic_osm_object.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
ghost_bike
|
||||||
|
|
||||||
ghost_bike
|
|
||||||
============
|
============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A layer showing memorials for cyclists, killed in road accidents
|
A layer showing memorials for cyclists, killed in road accidents
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [ghost_bike](#ghost_bike)
|
1. [ghost_bike](#ghost_bike)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [ghost-bike-explanation](#ghost-bike-explanation)
|
+ [ghost-bike-explanation](#ghost-bike-explanation)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [ghost_bike-name](#ghost_bike-name)
|
+ [ghost_bike-name](#ghost_bike-name)
|
||||||
|
@ -25,127 +21,78 @@ A layer showing memorials for cyclists, killed in road accidents
|
||||||
+ [ghost_bike-inscription](#ghost_bike-inscription)
|
+ [ghost_bike-inscription](#ghost_bike-inscription)
|
||||||
+ [ghost_bike-start_date](#ghost_bike-start_date)
|
+ [ghost_bike-start_date](#ghost_bike-start_date)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [ghostbikes](https://mapcomplete.osm.be/ghostbikes)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [ghostbikes](https://mapcomplete.osm.be/ghostbikes)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/ghost_bike/ghost_bike.json)
|
[Go to the source code](../assets/layers/ghost_bike/ghost_bike.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dghost_bike' target='_blank'>ghost_bike</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dghost_bike' target='_blank'>ghost_bike</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/source#values) [source](https://wiki.openstreetmap.org/wiki/Key:source) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/source#values) [source](https://wiki.openstreetmap.org/wiki/Key:source) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### ghost-bike-explanation
|
|
||||||
|
|
||||||
|
|
||||||
|
### ghost-bike-explanation
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### ghost_bike-name
|
||||||
|
|
||||||
|
The question is **Whom is remembered by this ghost bike?<span class='question-subtext'><br/>Please respect privacy -
|
||||||
|
only fill out the name if it is widely published or marked on the cycle. Opt to leave out the family name.</span>**
|
||||||
|
|
||||||
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
|
|
||||||
### ghost_bike-name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Whom is remembered by this ghost bike?<span class='question-subtext'><br/>Please respect privacy - only fill out the name if it is widely published or marked on the cycle. Opt to leave out the family name.</span>**
|
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
|
||||||
This is rendered with `In remembrance of {name}`
|
This is rendered with `In remembrance of {name}`
|
||||||
|
|
||||||
|
- **No name is marked on the bike** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### ghost_bike-source
|
||||||
- **No name is marked on the bike** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### ghost_bike-source
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **On what webpage can one find more information about the Ghost bike or the accident?**
|
The question is **On what webpage can one find more information about the Ghost bike or the accident?**
|
||||||
|
|
||||||
This rendering asks information about the property [source](https://wiki.openstreetmap.org/wiki/Key:source)
|
This rendering asks information about the property [source](https://wiki.openstreetmap.org/wiki/Key:source)
|
||||||
This is rendered with `<a href='{source}' target='_blank'>More information is available</a>`
|
This is rendered with `<a href='{source}' target='_blank'>More information is available</a>`
|
||||||
|
|
||||||
|
### ghost_bike-inscription
|
||||||
|
|
||||||
### ghost_bike-inscription
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the inscription on this Ghost bike?**
|
The question is **What is the inscription on this Ghost bike?**
|
||||||
|
|
||||||
This rendering asks information about the property [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription)
|
This rendering asks information about the property [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription)
|
||||||
This is rendered with `<i>{inscription}</i>`
|
This is rendered with `<i>{inscription}</i>`
|
||||||
|
|
||||||
|
### ghost_bike-start_date
|
||||||
|
|
||||||
### ghost_bike-start_date
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When was this Ghost bike installed?**
|
The question is **When was this Ghost bike installed?**
|
||||||
|
|
||||||
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
||||||
This is rendered with `Placed on {start_date}`
|
This is rendered with `Placed on {start_date}`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/ghost_bike/ghost_bike.json
|
This document is autogenerated from assets/layers/ghost_bike/ghost_bike.json
|
|
@ -1,52 +1,44 @@
|
||||||
|
gps_location
|
||||||
|
|
||||||
gps_location
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Meta layer showing the current location of the user. Add this to your theme and override the icon to change the appearance of the current location. The object will always have `id=gps` and will have _all_ the properties included in the [`Coordinates`-object](https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates) returned by the browser.
|
Meta layer showing the current location of the user. Add this to your theme and override the icon to change the
|
||||||
|
appearance of the current location. The object will always have `id=gps` and will have _all_ the properties included in
|
||||||
|
the [`Coordinates`-object](https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates) returned by the
|
||||||
|
browser.
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [gps_location](#gps_location)
|
1. [gps_location](#gps_location)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this
|
||||||
|
toggleable.
|
||||||
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
|
||||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/gps_location/gps_location.json)
|
[Go to the source code](../assets/layers/gps_location/gps_location.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dgps' target='_blank'>gps</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dgps' target='_blank'>gps</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/gps_location/gps_location.json
|
This document is autogenerated from assets/layers/gps_location/gps_location.json
|
|
@ -1,53 +1,43 @@
|
||||||
|
gps_location_history
|
||||||
|
|
||||||
gps_location_history
|
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Meta layer which contains the previous locations of the user as single points. This is mainly for technical reasons, e.g. to keep match the distance to the modified object
|
Meta layer which contains the previous locations of the user as single points. This is mainly for technical reasons,
|
||||||
|
e.g. to keep match the distance to the modified object
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [gps_location_history](#gps_location_history)
|
1. [gps_location_history](#gps_location_history)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this
|
||||||
|
toggleable.
|
||||||
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/gps_location_history/gps_location_history.json)
|
[Go to the source code](../assets/layers/gps_location_history/gps_location_history.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:user:location' target='_blank'>user:location</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:user:location%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:user:location' target='_blank'>user:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:user:location%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/gps_location_history/gps_location_history.json
|
This document is autogenerated from assets/layers/gps_location_history/gps_location_history.json
|
|
@ -1,96 +1,59 @@
|
||||||
|
gps_track
|
||||||
|
|
||||||
gps_track
|
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Meta layer showing the previous locations of the user as single line. Add this to your theme and override the icon to change the appearance of the current location.
|
Meta layer showing the previous locations of the user as single line. Add this to your theme and override the icon to
|
||||||
|
change the appearance of the current location.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [gps_track](#gps_track)
|
1. [gps_track](#gps_track)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [Privacy notice](#privacy-notice)
|
+ [Privacy notice](#privacy-notice)
|
||||||
+ [export_as_gpx](#export_as_gpx)
|
+ [export_as_gpx](#export_as_gpx)
|
||||||
+ [minimap](#minimap)
|
+ [minimap](#minimap)
|
||||||
+ [delete](#delete)
|
+ [delete](#delete)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is not visible by default and must be enabled in the filter by the user.
|
||||||
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
|
|
||||||
- This layer is not visible by default and must be enabled in the filter by the user.
|
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/gps_track/gps_track.json)
|
[Go to the source code](../assets/layers/gps_track/gps_track.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dlocation_track' target='_blank'>location_track</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dlocation_track' target='_blank'>location_track</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### Privacy notice
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Privacy notice
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### export_as_gpx
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### export_as_gpx
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### minimap
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### delete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### delete
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/gps_track/gps_track.json
|
This document is autogenerated from assets/layers/gps_track/gps_track.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
grass_in_parks
|
||||||
|
|
||||||
grass_in_parks
|
|
||||||
================
|
================
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,76 +7,49 @@
|
||||||
|
|
||||||
Searches for all accessible grass patches within public parks - these are 'groenzones'"
|
Searches for all accessible grass patches within public parks - these are 'groenzones'"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [grass_in_parks](#grass_in_parks)
|
1. [grass_in_parks](#grass_in_parks)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [explanation](#explanation)
|
+ [explanation](#explanation)
|
||||||
+ [grass-in-parks-reviews](#grass-in-parks-reviews)
|
+ [grass-in-parks-reviews](#grass-in-parks-reviews)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/grass_in_parks/grass_in_parks.json)
|
[Go to the source code](../assets/layers/grass_in_parks/grass_in_parks.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:name' target='_blank'>name</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:name%3DPark Oude God' target='_blank'>Park Oude God</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:landuse' target='_blank'>landuse</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:landuse%3Dgrass' target='_blank'>grass</a>
|
||||||
|
&<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>
|
||||||
|
|<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>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:name' target='_blank'>name</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name%3DPark Oude God' target='_blank'>Park Oude God</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:landuse' target='_blank'>landuse</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:landuse%3Dgrass' target='_blank'>grass</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>|<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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### explanation
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### explanation
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### grass-in-parks-reviews
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### grass-in-parks-reviews
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/grass_in_parks/grass_in_parks.json
|
This document is autogenerated from assets/layers/grass_in_parks/grass_in_parks.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
grb
|
||||||
|
|
||||||
grb
|
|
||||||
=====
|
=====
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,14 +7,12 @@
|
||||||
|
|
||||||
Geometry which comes from GRB with tools to import them
|
Geometry which comes from GRB with tools to import them
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [grb](#grb)
|
1. [grb](#grb)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [Import-button](#import-button)
|
+ [Import-button](#import-button)
|
||||||
+ [Building info](#building-info)
|
+ [Building info](#building-info)
|
||||||
+ [overlapping building address](#overlapping-building-address)
|
+ [overlapping building address](#overlapping-building-address)
|
||||||
|
@ -26,122 +22,77 @@ Geometry which comes from GRB with tools to import them
|
||||||
+ [apply-building-type](#apply-building-type)
|
+ [apply-building-type](#apply-building-type)
|
||||||
|
|
||||||
|
|
||||||
|
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://betadata.grbosm.site/grb?bbox={x_min},{y_min},{x_max},{y_max}`
|
||||||
|
- This layer will automatically load [osm-buildings](./osm-buildings.md) into the layout as it depends on it: a
|
||||||
|
tagrendering needs this layer (Import-button)
|
||||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://betadata.grbosm.site/grb?bbox={x_min},{y_min},{x_max},{y_max}`
|
- This layer will automatically load [type_node](./type_node.md) into the layout as it depends on it: a tagrendering
|
||||||
- This layer will automatically load [osm-buildings](./osm-buildings.md) into the layout as it depends on it: a tagrendering needs this layer (Import-button)
|
needs this layer (Import-button)
|
||||||
- This layer will automatically load [type_node](./type_node.md) into the layout as it depends on it: a tagrendering needs this layer (Import-button)
|
- This layer will automatically load [osm-buildings](./osm-buildings.md) into the layout as it depends on it: A
|
||||||
- This layer will automatically load [osm-buildings](./osm-buildings.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _overlaps_with_buildings)
|
calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _
|
||||||
- This layer will automatically load [generic_osm_object](./generic_osm_object.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[18] which calculates the value for _intersects_with_other_features)
|
overlaps_with_buildings)
|
||||||
|
- This layer will automatically load [generic_osm_object](./generic_osm_object.md) into the layout as it depends on
|
||||||
|
it: A calculated tag loads features from this layer (calculatedTag[18] which calculates the value for _
|
||||||
|
intersects_with_other_features)
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/grb/grb.json)
|
[Go to the source code](../assets/layers/grb/grb.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- HUISNR~^..*$
|
||||||
|
- man_made!~^mast$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- HUISNR~^..*$
|
|
||||||
- man_made!~^mast$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### Import-button
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Import-button
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
- **{conflate_button(osm-buildings,building=$_target_building_type; source:geometry:date=$_grb_date; source:geometry:
|
||||||
|
ref=$_grb_ref; addr:street=$addr:street; addr:housenumber=$addr:housenumber, Replace the geometry in OpenStreetMap and
|
||||||
|
add the address,,_osm_obj:id)}** corresponds with _overlap_percentage>50&_reverse_overlap_percentage>50&_
|
||||||
|
overlaps_with!~^$&addr:street~^..*$&addr:housenumber~^..*$&addr:street!=&addr:housenumber!=
|
||||||
|
- **{conflate_button(osm-buildings,building=$_target_building_type; source:geometry:date=$_grb_date; source:geometry:
|
||||||
|
ref=$_grb_ref, Replace the geometry in OpenStreetMap,,_osm_obj:id)}** corresponds with _overlap_percentage>50&_
|
||||||
|
reverse_overlap_percentage>50&_overlaps_with!~^$
|
||||||
|
|
||||||
|
### Building info
|
||||||
|
|
||||||
|
|
||||||
- **{conflate_button(osm-buildings,building=$_target_building_type; source:geometry:date=$_grb_date; source:geometry:ref=$_grb_ref; addr:street=$addr:street; addr:housenumber=$addr:housenumber, Replace the geometry in OpenStreetMap and add the address,,_osm_obj:id)}** corresponds with _overlap_percentage>50&_reverse_overlap_percentage>50&_overlaps_with!~^$&addr:street~^..*$&addr:housenumber~^..*$&addr:street!=&addr:housenumber!=
|
|
||||||
- **{conflate_button(osm-buildings,building=$_target_building_type; source:geometry:date=$_grb_date; source:geometry:ref=$_grb_ref, Replace the geometry in OpenStreetMap,,_osm_obj:id)}** corresponds with _overlap_percentage>50&_reverse_overlap_percentage>50&_overlaps_with!~^$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Building info
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### overlapping building address
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### overlapping building address
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
- **The overlapping openstreetmap-building has address {_osm_obj:addr:street} {_osm_obj:addr:housenumber}** corresponds
|
||||||
|
with _osm_obj:addr:street~^..*$&_osm_obj:addr:housenumber~^..*$
|
||||||
|
- **The overlapping building only has a street known: {_osm_obj:addr:street}** corresponds with _osm_obj:addr:street~
|
||||||
|
^..*$
|
||||||
|
- **The overlapping building only has a housenumber known: {_osm_obj:addr:housenumber}** corresponds with _osm_obj:addr:
|
||||||
|
housenumber~^..*$
|
||||||
|
- **No overlapping OpenStreetMap-building found** corresponds with
|
||||||
|
|
||||||
|
### grb_address_diff
|
||||||
|
|
||||||
|
|
||||||
- **The overlapping openstreetmap-building has address {_osm_obj:addr:street} {_osm_obj:addr:housenumber}** corresponds with _osm_obj:addr:street~^..*$&_osm_obj:addr:housenumber~^..*$
|
|
||||||
- **The overlapping building only has a street known: {_osm_obj:addr:street}** corresponds with _osm_obj:addr:street~^..*$
|
|
||||||
- **The overlapping building only has a housenumber known: {_osm_obj:addr:housenumber}** corresponds with _osm_obj:addr:housenumber~^..*$
|
|
||||||
- **No overlapping OpenStreetMap-building found** corresponds with
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### grb_address_diff
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### overlapping building type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### overlapping building type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### apply-id
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### apply-id
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### apply-building-type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### apply-building-type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/grb/grb.json
|
This document is autogenerated from assets/layers/grb/grb.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
hackerspaces
|
||||||
|
|
||||||
hackerspaces
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
Hackerspace
|
Hackerspace
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [hackerspaces](#hackerspaces)
|
1. [hackerspaces](#hackerspaces)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [is_makerspace](#is_makerspace)
|
+ [is_makerspace](#is_makerspace)
|
||||||
+ [hackerspaces-name](#hackerspaces-name)
|
+ [hackerspaces-name](#hackerspaces-name)
|
||||||
+ [website](#website)
|
+ [website](#website)
|
||||||
|
@ -28,198 +24,133 @@ Hackerspace
|
||||||
+ [hs-club-mate](#hs-club-mate)
|
+ [hs-club-mate](#hs-club-mate)
|
||||||
+ [hackerspaces-start_date](#hackerspaces-start_date)
|
+ [hackerspaces-start_date](#hackerspaces-start_date)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [hackerspaces](https://mapcomplete.osm.be/hackerspaces)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [hackerspaces](https://mapcomplete.osm.be/hackerspaces)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/hackerspaces/hackerspaces.json)
|
[Go to the source code](../assets/layers/hackerspaces/hackerspaces.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dhackerspace' target='_blank'>hackerspace</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dhackerspace' target='_blank'>hackerspace</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/hackerspace#values) [hackerspace](https://wiki.openstreetmap.org/wiki/Key:hackerspace) | Multiple choice | [makerspace](https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3Dmakerspace) [](https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/hackerspace#values) [hackerspace](https://wiki.openstreetmap.org/wiki/Key:hackerspace) | Multiple choice | [makerspace](https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3Dmakerspace) [](https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/drink:club-mate#values) [drink:club-mate](https://wiki.openstreetmap.org/wiki/Key:drink:club-mate) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/drink:club-mate#values) [drink:club-mate](https://wiki.openstreetmap.org/wiki/Key:drink:club-mate) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### is_makerspace
|
|
||||||
|
|
||||||
|
|
||||||
|
### is_makerspace
|
||||||
|
|
||||||
The question is **Is this a hackerspace or a makerspace?**
|
The question is **Is this a hackerspace or a makerspace?**
|
||||||
|
|
||||||
|
- **This is a makerspace** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:hackerspace' target='_blank'>hackerspace</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3Dmakerspace' target='_blank'>makerspace</a>
|
||||||
|
- **This is a traditional (software oriented) hackerspace** corresponds with
|
||||||
|
|
||||||
|
### hackerspaces-name
|
||||||
|
|
||||||
|
|
||||||
- **This is a makerspace** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:hackerspace' target='_blank'>hackerspace</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3Dmakerspace' target='_blank'>makerspace</a>
|
|
||||||
- **This is a traditional (software oriented) hackerspace** corresponds with
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### hackerspaces-name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this hackerspace?**
|
The question is **What is the name of this hackerspace?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `This hackerspace is named <b>{name}</b>`
|
This is rendered with `This hackerspace is named <b>{name}</b>`
|
||||||
|
|
||||||
|
### website
|
||||||
|
|
||||||
### website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the website of {name}?**
|
The question is **What is the website of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### email
|
||||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of {name}?**
|
The question is **What is the email address of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### phone
|
||||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number of {name}?**
|
The question is **What is the phone number of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
|
||||||
|
### hackerspaces-opening_hours
|
||||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### hackerspaces-opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When is this hackerspace opened?**
|
The question is **When is this hackerspace opened?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
This is rendered with `{opening_hours_table()}`
|
This is rendered with `{opening_hours_table()}`
|
||||||
|
|
||||||
|
- **Opened 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>
|
||||||
|
opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||||
|
|
||||||
|
### wheelchair-access
|
||||||
- **Opened 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### wheelchair-access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this place accessible with a wheelchair?**
|
The question is **Is this place accessible with a wheelchair?**
|
||||||
|
|
||||||
|
- **This place is specially adapted for wheelchair users** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||||
|
- **This place is easily reachable with a wheelchair** corresponds
|
||||||
|
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>
|
||||||
|
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds
|
||||||
|
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 place is not reachable with a wheelchair** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### hs-club-mate
|
||||||
|
|
||||||
|
|
||||||
- **This place is specially adapted for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
|
||||||
- **This place is easily reachable with a wheelchair** corresponds 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>
|
|
||||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds 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 place is not reachable with a wheelchair** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### hs-club-mate
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does this hackerspace serve Club Mate?**
|
The question is **Does this hackerspace serve Club Mate?**
|
||||||
|
|
||||||
|
- **This hackerspace serves club mate** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:drink:club-mate' target='_blank'>drink:club-mate</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This hackerspace does not serve club mate** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:drink:club-mate' target='_blank'>drink:club-mate</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### hackerspaces-start_date
|
||||||
|
|
||||||
|
|
||||||
- **This hackerspace serves club mate** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:drink:club-mate' target='_blank'>drink:club-mate</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This hackerspace does not serve club mate** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:drink:club-mate' target='_blank'>drink:club-mate</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### hackerspaces-start_date
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When was this hackerspace founded?**
|
The question is **When was this hackerspace founded?**
|
||||||
|
|
||||||
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
||||||
This is rendered with `This hackerspace was founded at {start_date}`
|
This is rendered with `This hackerspace was founded at {start_date}`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/hackerspaces/hackerspaces.json
|
This document is autogenerated from assets/layers/hackerspaces/hackerspaces.json
|
|
@ -1,52 +1,42 @@
|
||||||
|
home_location
|
||||||
|
|
||||||
home_location
|
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/svg/home.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/svg/home.svg' height="100px">
|
||||||
|
|
||||||
Meta layer showing the home location of the user. The home location can be set in the [profile settings](https://www.openstreetmap.org/profile/edit) of OpenStreetMap.
|
Meta layer showing the home location of the user. The home location can be set in
|
||||||
|
the [profile settings](https://www.openstreetmap.org/profile/edit) of OpenStreetMap.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [home_location](#home_location)
|
1. [home_location](#home_location)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this
|
||||||
|
toggleable.
|
||||||
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
|
||||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/home_location/home_location.json)
|
[Go to the source code](../assets/layers/home_location/home_location.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:user:home' target='_blank'>user:home</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:user:home%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:user:home' target='_blank'>user:home</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:user:home%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/home_location/home_location.json
|
This document is autogenerated from assets/layers/home_location/home_location.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
hydrant
|
||||||
|
|
||||||
hydrant
|
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,136 +7,103 @@
|
||||||
|
|
||||||
Map layer to show fire hydrants.
|
Map layer to show fire hydrants.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [hydrant](#hydrant)
|
1. [hydrant](#hydrant)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [hydrant-color](#hydrant-color)
|
+ [hydrant-color](#hydrant-color)
|
||||||
+ [hydrant-type](#hydrant-type)
|
+ [hydrant-type](#hydrant-type)
|
||||||
+ [hydrant-state](#hydrant-state)
|
+ [hydrant-state](#hydrant-state)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/hydrant/hydrant.json)
|
[Go to the source code](../assets/layers/hydrant/hydrant.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [string](../SpecialInputElements.md#string) | [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [string](../SpecialInputElements.md#string) | [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fire_hydrant:type#values) [fire_hydrant:type](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type) | [string](../SpecialInputElements.md#string) | [pillar](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpillar) [pipe](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpipe) [wall](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dwall) [underground](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dunderground)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fire_hydrant:type#values) [fire_hydrant:type](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type) | [string](../SpecialInputElements.md#string) | [pillar](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpillar) [pipe](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpipe) [wall](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dwall) [underground](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dunderground)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/emergency#values) [emergency](https://wiki.openstreetmap.org/wiki/Key:emergency) | Multiple choice | [fire_hydrant](https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant) [](https://wiki.openstreetmap.org/wiki/Tag:emergency%3D) [](https://wiki.openstreetmap.org/wiki/Tag:emergency%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/emergency#values) [emergency](https://wiki.openstreetmap.org/wiki/Key:emergency) | Multiple choice | [fire_hydrant](https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant) [](https://wiki.openstreetmap.org/wiki/Tag:emergency%3D) [](https://wiki.openstreetmap.org/wiki/Tag:emergency%3D)
|
||||||
|
|
||||||
|
### hydrant-color
|
||||||
|
|
||||||
|
|
||||||
### hydrant-color
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What color is the hydrant?**
|
The question is **What color is the hydrant?**
|
||||||
|
|
||||||
This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour)
|
This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour)
|
||||||
This is rendered with `The hydrant color is {colour}`
|
This is rendered with `The hydrant color is {colour}`
|
||||||
|
|
||||||
|
- **The hydrant color is unknown.** corresponds with _This option cannot be chosen as answer_
|
||||||
|
- **The hydrant color is yellow.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow' target='_blank'>yellow</a>
|
||||||
|
- **The hydrant color is red.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred' target='_blank'>red</a>
|
||||||
|
|
||||||
|
### hydrant-type
|
||||||
- **The hydrant color is unknown.** corresponds with _This option cannot be chosen as answer_
|
|
||||||
- **The hydrant color is yellow.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow' target='_blank'>yellow</a>
|
|
||||||
- **The hydrant color is red.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred' target='_blank'>red</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### hydrant-type
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What type of hydrant is it?**
|
The question is **What type of hydrant is it?**
|
||||||
|
|
||||||
This rendering asks information about the property [fire_hydrant:type](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type)
|
This rendering asks information about the
|
||||||
|
property [fire_hydrant:type](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type)
|
||||||
This is rendered with ` Hydrant type: {fire_hydrant:type}`
|
This is rendered with ` Hydrant type: {fire_hydrant:type}`
|
||||||
|
|
||||||
|
- **The hydrant type is unknown.** corresponds with _This option cannot be chosen as answer_
|
||||||
|
- **<img style="width:15px" src="./assets/themes/hailhydrant/hydrant_pillar.svg" /> Pillar type.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpillar' target='_blank'>pillar</a>
|
||||||
|
- **<img style="width:15px" src="./assets/themes/hailhydrant/hydrant_unknown.svg" /> Pipe type.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpipe' target='_blank'>pipe</a>
|
||||||
|
- **<img style="width:15px" src="./assets/themes/hailhydrant/hydrant_unknown.svg" /> Wall type.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dwall' target='_blank'>wall</a>
|
||||||
|
- **<img style="width:15px" src="./assets/themes/hailhydrant/hydrant_underground.svg" /> Underground type.** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dunderground' target='_blank'>underground</a>
|
||||||
|
|
||||||
|
### hydrant-state
|
||||||
- **The hydrant type is unknown.** corresponds with _This option cannot be chosen as answer_
|
|
||||||
- **<img style="width:15px" src="./assets/themes/hailhydrant/hydrant_pillar.svg" /> Pillar type.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpillar' target='_blank'>pillar</a>
|
|
||||||
- **<img style="width:15px" src="./assets/themes/hailhydrant/hydrant_unknown.svg" /> Pipe type.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpipe' target='_blank'>pipe</a>
|
|
||||||
- **<img style="width:15px" src="./assets/themes/hailhydrant/hydrant_unknown.svg" /> Wall type.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dwall' target='_blank'>wall</a>
|
|
||||||
- **<img style="width:15px" src="./assets/themes/hailhydrant/hydrant_underground.svg" /> Underground type.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dunderground' target='_blank'>underground</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### hydrant-state
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this hydrant still working?**
|
The question is **Is this hydrant still working?**
|
||||||
|
|
||||||
|
- **The hydrant is (fully or partially) working** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
||||||
|
- **The hydrant is unavailable** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:disused:emergency' target='_blank'>disused:emergency</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:disused:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
||||||
|
- **The hydrant has been removed** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:removed:emergency' target='_blank'>removed:emergency</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:removed:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
- **The hydrant is (fully or partially) working** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
|
||||||
- **The hydrant is unavailable** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:disused:emergency' target='_blank'>disused:emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:disused:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
|
||||||
- **The hydrant has been removed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:removed:emergency' target='_blank'>removed:emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:removed:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/hydrant/hydrant.json
|
This document is autogenerated from assets/layers/hydrant/hydrant.json
|
|
@ -1,75 +1,46 @@
|
||||||
|
information_board
|
||||||
|
|
||||||
information_board
|
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/layers/information_board/board.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/layers/information_board/board.svg' height="100px">
|
||||||
|
|
||||||
A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a feature, a map, ...)
|
A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a
|
||||||
|
feature, a map, ...)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [information_board](#information_board)
|
1. [information_board](#information_board)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [nature](https://mapcomplete.osm.be/nature)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [nature](https://mapcomplete.osm.be/nature)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/information_board/information_board.json)
|
[Go to the source code](../assets/layers/information_board/information_board.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:information' target='_blank'>information</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:information%3Dboard' target='_blank'>board</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:information' target='_blank'>information</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:information%3Dboard' target='_blank'>board</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/information_board/information_board.json
|
This document is autogenerated from assets/layers/information_board/information_board.json
|
|
@ -1,53 +1,45 @@
|
||||||
|
left_right_style
|
||||||
|
|
||||||
left_right_style
|
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Special meta-style which will show one single line, either on the left or on the right depending on the id. This is used in the small popups with left_right roads. Cannot be included in a theme
|
Special meta-style which will show one single line, either on the left or on the right depending on the id. This is used
|
||||||
|
in the small popups with left_right roads. Cannot be included in a theme
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [left_right_style](#left_right_style)
|
1. [left_right_style](#left_right_style)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this
|
||||||
|
toggleable.
|
||||||
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/left_right_style/left_right_style.json)
|
[Go to the source code](../assets/layers/left_right_style/left_right_style.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dleft' target='_blank'>left</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dright' target='_blank'>right</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dleft' target='_blank'>left</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dright' target='_blank'>right</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/left_right_style/left_right_style.json
|
This document is autogenerated from assets/layers/left_right_style/left_right_style.json
|
|
@ -1,92 +1,62 @@
|
||||||
|
lit_streets
|
||||||
|
|
||||||
lit_streets
|
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [lit_streets](#lit_streets)
|
1. [lit_streets](#lit_streets)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [lit](#lit)
|
+ [lit](#lit)
|
||||||
|
|
||||||
|
|
||||||
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [street_lighting](https://mapcomplete.osm.be/street_lighting)
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [street_lighting](https://mapcomplete.osm.be/street_lighting)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/lit_streets/lit_streets.json)
|
[Go to the source code](../assets/layers/lit_streets/lit_streets.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- highway!~^$
|
||||||
|
- lit!~^no$
|
||||||
|
- lit!~^$
|
||||||
|
- service!~^driveway$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- highway!~^$
|
|
||||||
- lit!~^no$
|
|
||||||
- lit!~^$
|
|
||||||
- service!~^driveway$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7)
|
||||||
|
|
||||||
|
### lit
|
||||||
|
|
||||||
|
|
||||||
### lit
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this street lit?**
|
The question is **Is this street lit?**
|
||||||
|
|
||||||
|
- **This street is lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This street is not lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>
|
||||||
|
lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
||||||
- **This street is lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
- **This street is lit at night** corresponds
|
||||||
- **This street is not lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||||
- **This street is lit at night** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>_This option cannot be chosen as answer_
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>_This option
|
||||||
- **This street is lit 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>
|
cannot be chosen as answer_
|
||||||
|
- **This street is lit 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>
|
||||||
|
lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/lit_streets/lit_streets.json
|
This document is autogenerated from assets/layers/lit_streets/lit_streets.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
map
|
||||||
|
|
||||||
map
|
|
||||||
=====
|
=====
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,115 +7,88 @@
|
||||||
|
|
||||||
A map, meant for tourists which is permanently installed in the public space
|
A map, meant for tourists which is permanently installed in the public space
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [map](#map)
|
1. [map](#map)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [map-map_source](#map-map_source)
|
+ [map-map_source](#map-map_source)
|
||||||
+ [map-attribution](#map-attribution)
|
+ [map-attribution](#map-attribution)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [maps](https://mapcomplete.osm.be/maps)
|
||||||
|
- [nature](https://mapcomplete.osm.be/nature)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [maps](https://mapcomplete.osm.be/maps)
|
|
||||||
- [nature](https://mapcomplete.osm.be/nature)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/map/map.json)
|
[Go to the source code](../assets/layers/map/map.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dmap' target='_blank'>map</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:information' target='_blank'>information</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:information%3Dmap' target='_blank'>map</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dmap' target='_blank'>map</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:information' target='_blank'>information</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:information%3Dmap' target='_blank'>map</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/map_source#values) [map_source](https://wiki.openstreetmap.org/wiki/Key:map_source) | [string](../SpecialInputElements.md#string) | [OpenStreetMap](https://wiki.openstreetmap.org/wiki/Tag:map_source%3DOpenStreetMap)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/map_source#values) [map_source](https://wiki.openstreetmap.org/wiki/Key:map_source) | [string](../SpecialInputElements.md#string) | [OpenStreetMap](https://wiki.openstreetmap.org/wiki/Tag:map_source%3DOpenStreetMap)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/map_source:attribution#values) [map_source:attribution](https://wiki.openstreetmap.org/wiki/Key:map_source:attribution) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dyes) [incomplete](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dincomplete) [sticker](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dsticker) [none](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dnone)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/map_source:attribution#values) [map_source:attribution](https://wiki.openstreetmap.org/wiki/Key:map_source:attribution) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dyes) [incomplete](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dincomplete) [sticker](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dsticker) [none](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dnone)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### map-map_source
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### map-map_source
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **On which data is this map based?**
|
The question is **On which data is this map based?**
|
||||||
|
|
||||||
This rendering asks information about the property [map_source](https://wiki.openstreetmap.org/wiki/Key:map_source)
|
This rendering asks information about the property [map_source](https://wiki.openstreetmap.org/wiki/Key:map_source)
|
||||||
This is rendered with `This map is based on {map_source}`
|
This is rendered with `This map is based on {map_source}`
|
||||||
|
|
||||||
|
- **This map is based on OpenStreetMap** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source' target='_blank'>map_source</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source%3DOpenStreetMap' target='_blank'>OpenStreetMap</a>
|
||||||
|
|
||||||
|
### map-attribution
|
||||||
- **This map is based on OpenStreetMap** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source' target='_blank'>map_source</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source%3DOpenStreetMap' target='_blank'>OpenStreetMap</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### map-attribution
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is the OpenStreetMap-attribution given?**
|
The question is **Is the OpenStreetMap-attribution given?**
|
||||||
|
|
||||||
|
- **OpenStreetMap is clearly attributed, including the ODBL-license** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:
|
||||||
|
attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **OpenStreetMap is clearly attributed, but the license is not mentioned** corresponds
|
||||||
- **OpenStreetMap is clearly attributed, including the ODBL-license** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dyes' target='_blank'>yes</a>
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:
|
||||||
- **OpenStreetMap is clearly attributed, but the license is not mentioned** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dincomplete' target='_blank'>incomplete</a>
|
attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dincomplete' target='_blank'>
|
||||||
- **OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dsticker' target='_blank'>sticker</a>
|
incomplete</a>
|
||||||
- **There is no attribution at all** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dnone' target='_blank'>none</a>
|
- **OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it** corresponds
|
||||||
- **There is no attribution at all** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:
|
||||||
|
attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dsticker' target='_blank'>
|
||||||
|
sticker</a>
|
||||||
|
- **There is no attribution at all** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:
|
||||||
|
attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dnone' target='_blank'>
|
||||||
|
none</a>
|
||||||
|
- **There is no attribution at all** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:
|
||||||
|
attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dno' target='_blank'>no</a>_
|
||||||
|
This option cannot be chosen as answer_
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/map/map.json
|
This document is autogenerated from assets/layers/map/map.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
matchpoint
|
||||||
|
|
||||||
matchpoint
|
|
||||||
============
|
============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,28 +7,23 @@
|
||||||
|
|
||||||
The default rendering for a locationInput which snaps onto another object
|
The default rendering for a locationInput which snaps onto another object
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [matchpoint](#matchpoint)
|
1. [matchpoint](#matchpoint)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this
|
||||||
|
toggleable.
|
||||||
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
|
||||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/matchpoint/matchpoint.json)
|
[Go to the source code](../assets/layers/matchpoint/matchpoint.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
@ -44,9 +37,9 @@ Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
Supported attributes
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/matchpoint/matchpoint.json
|
This document is autogenerated from assets/layers/matchpoint/matchpoint.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
maybe_climbing
|
||||||
|
|
||||||
maybe_climbing
|
|
||||||
================
|
================
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,96 +7,67 @@
|
||||||
|
|
||||||
A climbing opportunity?
|
A climbing opportunity?
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [maybe_climbing](#maybe_climbing)
|
1. [maybe_climbing](#maybe_climbing)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [minimap](#minimap)
|
+ [minimap](#minimap)
|
||||||
+ [climbing-opportunity-name](#climbing-opportunity-name)
|
+ [climbing-opportunity-name](#climbing-opportunity-name)
|
||||||
+ [climbing-possible](#climbing-possible)
|
+ [climbing-possible](#climbing-possible)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/maybe_climbing/maybe_climbing.json)
|
[Go to the source code](../assets/layers/maybe_climbing/maybe_climbing.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <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:barrier' target='_blank'>barrier</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dwall' target='_blank'>wall</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dretaining_wall' target='_blank'>retaining_wall</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dcliff' target='_blank'>cliff</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Drock' target='_blank'>rock</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dstone' target='_blank'>stone</a>
|
||||||
|
-
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <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:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dwall' target='_blank'>wall</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dretaining_wall' target='_blank'>retaining_wall</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dcliff' target='_blank'>cliff</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Drock' target='_blank'>rock</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dstone' target='_blank'>stone</a>
|
|
||||||
-
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### minimap
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### climbing-opportunity-name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### climbing-opportunity-name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### climbing-possible
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### climbing-possible
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is climbing possible here?**
|
The question is **Is climbing possible here?**
|
||||||
|
|
||||||
|
- **Climbing is not possible here** corresponds with sport!~^climbing$_This option cannot be chosen as answer_
|
||||||
|
- **Climbing is possible here** corresponds
|
||||||
|
with <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>
|
||||||
- **Climbing is not possible here** corresponds with sport!~^climbing$_This option cannot be chosen as answer_
|
- **Climbing is not possible here** corresponds
|
||||||
- **Climbing is possible here** corresponds with <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>
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>
|
||||||
- **Climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dno' target='_blank'>no</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/maybe_climbing/maybe_climbing.json
|
This document is autogenerated from assets/layers/maybe_climbing/maybe_climbing.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
named_streets
|
||||||
|
|
||||||
named_streets
|
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,49 +7,41 @@
|
||||||
|
|
||||||
Hidden layer with all streets which have a name. Useful to detect addresses
|
Hidden layer with all streets which have a name. Useful to detect addresses
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [named_streets](#named_streets)
|
1. [named_streets](#named_streets)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is not visible by default and must be enabled in the filter by the user.
|
||||||
|
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this
|
||||||
|
toggleable.
|
||||||
- This layer is not visible by default and must be enabled in the filter by the user.
|
- This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden
|
||||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging),
|
||||||
- This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging), enable it by setting the URL-parameter layer-<id>=true
|
enable it by setting the URL-parameter layer-<id>=true
|
||||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
- This layer is needed as dependency for layer [address](#address)
|
- This layer is needed as dependency for layer [address](#address)
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/named_streets/named_streets.json)
|
[Go to the source code](../assets/layers/named_streets/named_streets.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- highway~^..*$
|
||||||
|
- name~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- highway~^..*$
|
|
||||||
- name~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/named_streets/named_streets.json
|
This document is autogenerated from assets/layers/named_streets/named_streets.json
|
|
@ -1,23 +1,20 @@
|
||||||
|
nature_reserve
|
||||||
|
|
||||||
nature_reserve
|
|
||||||
================
|
================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/layers/nature_reserve/nature_reserve.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/layers/nature_reserve/nature_reserve.svg' height="100px">
|
||||||
|
|
||||||
Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. Typisch zijn deze in beheer van Natuurpunt of het Agentschap Natuur en Bos of zijn deze erkend door de overheid.
|
Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. Typisch zijn deze in beheer van
|
||||||
|
Natuurpunt of het Agentschap Natuur en Bos of zijn deze erkend door de overheid.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [nature_reserve](#nature_reserve)
|
1. [nature_reserve](#nature_reserve)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [Access tag](#access-tag)
|
+ [Access tag](#access-tag)
|
||||||
+ [Operator tag](#operator-tag)
|
+ [Operator tag](#operator-tag)
|
||||||
|
@ -33,257 +30,189 @@ Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. T
|
||||||
+ [Surface area](#surface-area)
|
+ [Surface area](#surface-area)
|
||||||
+ [wikipedia](#wikipedia)
|
+ [wikipedia](#wikipedia)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [nature](https://mapcomplete.osm.be/nature)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [nature](https://mapcomplete.osm.be/nature)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/nature_reserve/nature_reserve.json)
|
[Go to the source code](../assets/layers/nature_reserve/nature_reserve.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dnature_reserve' target='_blank'>nature_reserve</a>
|
||||||
|
|protect_class!~^98$&<a href='https://wiki.openstreetmap.org/wiki/Key:boundary' target='_blank'>boundary</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dprotected_area' target='_blank'>protected_area</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dnature_reserve' target='_blank'>nature_reserve</a>|protect_class!~^98$&<a href='https://wiki.openstreetmap.org/wiki/Key:boundary' target='_blank'>boundary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dprotected_area' target='_blank'>protected_area</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:nl#values) [name:nl](https://wiki.openstreetmap.org/wiki/Key:name:nl) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:nl#values) [name:nl](https://wiki.openstreetmap.org/wiki/Key:name:nl) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/curator#values) [curator](https://wiki.openstreetmap.org/wiki/Key:curator) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/curator#values) [curator](https://wiki.openstreetmap.org/wiki/Key:curator) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description:0#values) [description:0](https://wiki.openstreetmap.org/wiki/Key:description:0) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description:0#values) [description:0](https://wiki.openstreetmap.org/wiki/Key:description:0) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/_surface:ha#values) [_surface:ha](https://wiki.openstreetmap.org/wiki/Key:_surface:ha) | Multiple choice | [0](https://wiki.openstreetmap.org/wiki/Tag:_surface:ha%3D0)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/_surface:ha#values) [_surface:ha](https://wiki.openstreetmap.org/wiki/Key:_surface:ha) | Multiple choice | [0](https://wiki.openstreetmap.org/wiki/Tag:_surface:ha%3D0)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Access tag
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Access tag
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is dit gebied toegankelijk?**
|
The question is **Is dit gebied toegankelijk?**
|
||||||
|
|
||||||
This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description)
|
This rendering asks information about the
|
||||||
|
property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description)
|
||||||
This is rendered with `De toegankelijkheid van dit gebied is: {access:description}`
|
This is rendered with `De toegankelijkheid van dit gebied is: {access:description}`
|
||||||
|
|
||||||
|
- **Vrij toegankelijk** corresponds 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>
|
||||||
|
- **Niet toegankelijk** corresponds 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>
|
||||||
|
- **Niet toegankelijk, want privégebied** corresponds
|
||||||
|
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>
|
||||||
|
- **Toegankelijk, ondanks dat het privegebied is** corresponds
|
||||||
|
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>
|
||||||
|
- **Enkel toegankelijk met een gids of tijdens een activiteit** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dguided' target='_blank'>guided</a>
|
||||||
|
- **Toegankelijk mits betaling** corresponds
|
||||||
|
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>
|
||||||
|
&<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>
|
||||||
|
|
||||||
|
### Operator tag
|
||||||
- **Vrij toegankelijk** corresponds 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>
|
|
||||||
- **Niet toegankelijk** corresponds 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>
|
|
||||||
- **Niet toegankelijk, want privégebied** corresponds 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>
|
|
||||||
- **Toegankelijk, ondanks dat het privegebied is** corresponds 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>
|
|
||||||
- **Enkel toegankelijk met een gids of tijdens een activiteit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dguided' target='_blank'>guided</a>
|
|
||||||
- **Toegankelijk mits betaling** corresponds 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>&<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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Operator tag
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wie beheert dit gebied?**
|
The question is **Wie beheert dit gebied?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
This is rendered with `Beheer door {operator}`
|
This is rendered with `Beheer door {operator}`
|
||||||
|
|
||||||
|
- **<img src="./assets/layers/nature_reserve/Natuurpunt.jpg" style="width:1.5em">Dit gebied wordt beheerd door
|
||||||
|
Natuurpunt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt' target='_blank'>Natuurpunt</a>
|
||||||
|
- **<img src="./assets/layers/nature_reserve/Natuurpunt.jpg" style="width:1.5em">Dit gebied wordt beheerd door
|
||||||
|
{operator}** corresponds with operator~^(n|N)atuurpunt.*$_This option cannot be chosen as answer_
|
||||||
|
- **<img src="./assets/layers/nature_reserve/ANB.jpg" style="width:1.5em">Dit gebied wordt beheerd door het Agentschap
|
||||||
|
Natuur en Bos** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>
|
||||||
|
operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos' target='_blank'>
|
||||||
|
Agentschap Natuur en Bos</a>
|
||||||
|
|
||||||
|
### Name:nl-tag
|
||||||
- **<img src="./assets/layers/nature_reserve/Natuurpunt.jpg" style="width:1.5em">Dit gebied wordt beheerd door Natuurpunt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt' target='_blank'>Natuurpunt</a>
|
|
||||||
- **<img src="./assets/layers/nature_reserve/Natuurpunt.jpg" style="width:1.5em">Dit gebied wordt beheerd door {operator}** corresponds with operator~^(n|N)atuurpunt.*$_This option cannot be chosen as answer_
|
|
||||||
- **<img src="./assets/layers/nature_reserve/ANB.jpg" style="width:1.5em">Dit gebied wordt beheerd door het Agentschap Natuur en Bos** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos' target='_blank'>Agentschap Natuur en Bos</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Name:nl-tag
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wat is de Nederlandstalige naam van dit gebied?**
|
The question is **Wat is de Nederlandstalige naam van dit gebied?**
|
||||||
|
|
||||||
This rendering asks information about the property [name:nl](https://wiki.openstreetmap.org/wiki/Key:name:nl)
|
This rendering asks information about the property [name:nl](https://wiki.openstreetmap.org/wiki/Key:name:nl)
|
||||||
This is rendered with `Dit gebied heet {name:nl}`
|
This is rendered with `Dit gebied heet {name:nl}`
|
||||||
|
|
||||||
|
### Name tag
|
||||||
|
|
||||||
### Name tag
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wat is de naam van dit gebied?**
|
The question is **Wat is de naam van dit gebied?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `Dit gebied heet {name}`
|
This is rendered with `Dit gebied heet {name}`
|
||||||
|
|
||||||
|
- **Dit gebied heeft geen naam** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### Dogs?
|
||||||
- **Dit gebied heeft geen naam** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Dogs?
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Are dogs allowed in this nature reserve?**
|
The question is **Are dogs allowed in this nature reserve?**
|
||||||
|
|
||||||
|
- **Dogs have to be leashed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>
|
||||||
|
dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
||||||
|
- **No dogs allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
||||||
|
- **Dogs are allowed to roam freely** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### Website
|
||||||
|
|
||||||
|
|
||||||
- **Dogs have to be leashed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
|
||||||
- **No dogs allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
|
||||||
- **Dogs are allowed to roam freely** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **On which webpage can one find more information about this nature reserve?**
|
The question is **On which webpage can one find more information about this nature reserve?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}'target='_blank'>{website}</a>`
|
This is rendered with `<a href='{website}'target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
### Curator
|
||||||
|
|
||||||
|
The question is **Whom is the curator of this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a
|
||||||
|
name if this is widely published**
|
||||||
|
|
||||||
### Curator
|
This rendering asks information about the property [curator](https://wiki.openstreetmap.org/wiki/Key:curator)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Whom is the curator of this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a name if this is widely published**
|
|
||||||
|
|
||||||
This rendering asks information about the property [curator](https://wiki.openstreetmap.org/wiki/Key:curator)
|
|
||||||
This is rendered with `{curator} is the curator of this nature reserve`
|
This is rendered with `{curator} is the curator of this nature reserve`
|
||||||
|
|
||||||
|
### Email
|
||||||
|
|
||||||
|
The question is **What email adress can one send to with questions and problems with this nature
|
||||||
|
reserve?<br/><span class='subtle'>Respect privacy - only fill out a personal email address if this is widely published**
|
||||||
|
|
||||||
### Email
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What email adress can one send to with questions and problems with this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a personal email address if this is widely published**
|
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
|
||||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
### phone
|
||||||
|
|
||||||
|
The question is **What phone number can one call to with questions and problems with this nature
|
||||||
|
reserve?<br/><span class='subtle'>Respect privacy - only fill out a personal phone number address if this is widely
|
||||||
|
published**
|
||||||
|
|
||||||
### phone
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What phone number can one call to with questions and problems with this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a personal phone number address if this is widely published**
|
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
|
||||||
This is rendered with `<a href='tel:{email}' target='_blank'>{phone}</a>`
|
This is rendered with `<a href='tel:{email}' target='_blank'>{phone}</a>`
|
||||||
|
|
||||||
|
### Non-editable description
|
||||||
|
|
||||||
### Non-editable description
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
This is rendered with `Extra info: <i>{description}</i>`
|
This is rendered with `Extra info: <i>{description}</i>`
|
||||||
|
|
||||||
|
### Editable description
|
||||||
|
|
||||||
### Editable description
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is er extra info die je kwijt wil?**
|
The question is **Is er extra info die je kwijt wil?**
|
||||||
|
|
||||||
This rendering asks information about the property [description:0](https://wiki.openstreetmap.org/wiki/Key:description:0)
|
This rendering asks information about the
|
||||||
|
property [description:0](https://wiki.openstreetmap.org/wiki/Key:description:0)
|
||||||
This is rendered with `Extra info: <i>{description:0}</i>`
|
This is rendered with `Extra info: <i>{description:0}</i>`
|
||||||
|
|
||||||
|
### Surface area
|
||||||
|
|
||||||
### Surface area
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
- **** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_surface:ha' target='_blank'>_surface:ha</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:_surface:ha%3D0' target='_blank'>0</a>
|
||||||
|
|
||||||
|
### wikipedia
|
||||||
|
|
||||||
|
|
||||||
- **** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_surface:ha' target='_blank'>_surface:ha</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_surface:ha%3D0' target='_blank'>0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### wikipedia
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the corresponding Wikidata entity?**
|
The question is **What is the corresponding Wikidata entity?**
|
||||||
|
|
||||||
This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata)
|
This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata)
|
||||||
This is rendered with `{wikipedia():max-height:25rem}`
|
This is rendered with `{wikipedia():max-height:25rem}`
|
||||||
|
|
||||||
|
- **No Wikipedia page has been linked yet** corresponds with _This option cannot be chosen as answer_
|
||||||
|
|
||||||
- **No Wikipedia page has been linked yet** corresponds with _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/nature_reserve/nature_reserve.json
|
This document is autogenerated from assets/layers/nature_reserve/nature_reserve.json
|
|
@ -1,63 +1,46 @@
|
||||||
|
nature_reserve_buurtnatuur
|
||||||
|
|
||||||
nature_reserve_buurtnatuur
|
|
||||||
============================
|
============================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/themes/buurtnatuur/nature_reserve.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/themes/buurtnatuur/nature_reserve.svg' height="100px">
|
||||||
|
|
||||||
Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. Typisch zijn deze in beheer van Natuurpunt of het Agentschap Natuur en Bos of zijn deze erkend door de overheid.
|
Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. Typisch zijn deze in beheer van
|
||||||
|
Natuurpunt of het Agentschap Natuur en Bos of zijn deze erkend door de overheid.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [nature_reserve_buurtnatuur](#nature_reserve_buurtnatuur)
|
1. [nature_reserve_buurtnatuur](#nature_reserve_buurtnatuur)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is needed as dependency for layer [parks](#parks)
|
||||||
|
- This layer is needed as dependency for layer [forest](#forest)
|
||||||
|
|
||||||
- This layer is needed as dependency for layer [parks](#parks)
|
|
||||||
- This layer is needed as dependency for layer [forest](#forest)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/nature_reserve_buurtnatuur/nature_reserve_buurtnatuur.json)
|
[Go to the source code](../assets/layers/nature_reserve_buurtnatuur/nature_reserve_buurtnatuur.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dnature_reserve' target='_blank'>nature_reserve</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:boundary' target='_blank'>boundary</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dprotected_area' target='_blank'>protected_area</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dnature_reserve' target='_blank'>nature_reserve</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:boundary' target='_blank'>boundary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dprotected_area' target='_blank'>protected_area</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/nature_reserve_buurtnatuur/nature_reserve_buurtnatuur.json
|
This document is autogenerated from assets/layers/nature_reserve_buurtnatuur/nature_reserve_buurtnatuur.json
|
|
@ -1,99 +1,60 @@
|
||||||
|
node
|
||||||
|
|
||||||
node
|
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [node](#node)
|
1. [node](#node)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [node-survey:date](#node-surveydate)
|
+ [node-survey:date](#node-surveydate)
|
||||||
+ [node-expected_rcn_route_relations](#node-expected_rcn_route_relations)
|
+ [node-expected_rcn_route_relations](#node-expected_rcn_route_relations)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/node/node.json)
|
[Go to the source code](../assets/layers/node/node.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- rcn_ref~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- rcn_ref~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/expected_rcn_route_relations#values) [expected_rcn_route_relations](https://wiki.openstreetmap.org/wiki/Key:expected_rcn_route_relations) | [int](../SpecialInputElements.md#int) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/expected_rcn_route_relations#values) [expected_rcn_route_relations](https://wiki.openstreetmap.org/wiki/Key:expected_rcn_route_relations) | [int](../SpecialInputElements.md#int) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### node-survey:date
|
|
||||||
|
|
||||||
|
|
||||||
|
### node-survey:date
|
||||||
|
|
||||||
The question is **When was this cycle node last surveyed?**
|
The question is **When was this cycle node last surveyed?**
|
||||||
|
|
||||||
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
||||||
This is rendered with `This cycle node was last surveyed on {survey:date}`
|
This is rendered with `This cycle node was last surveyed on {survey:date}`
|
||||||
|
|
||||||
|
- **Surveyed today!** corresponds with survey:date=
|
||||||
|
|
||||||
|
### node-expected_rcn_route_relations
|
||||||
- **Surveyed today!** corresponds with survey:date=
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### node-expected_rcn_route_relations
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How many other cycle nodes does this node link to?**
|
The question is **How many other cycle nodes does this node link to?**
|
||||||
|
|
||||||
This rendering asks information about the property [expected_rcn_route_relations](https://wiki.openstreetmap.org/wiki/Key:expected_rcn_route_relations)
|
This rendering asks information about the
|
||||||
|
property [expected_rcn_route_relations](https://wiki.openstreetmap.org/wiki/Key:expected_rcn_route_relations)
|
||||||
This is rendered with `This node links to {expected_rcn_route_relations} other cycle nodes.`
|
This is rendered with `This node links to {expected_rcn_route_relations} other cycle nodes.`
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/node/node.json
|
This document is autogenerated from assets/layers/node/node.json
|
|
@ -1,88 +1,58 @@
|
||||||
|
node2node
|
||||||
|
|
||||||
node2node
|
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [node2node](#node2node)
|
1. [node2node](#node2node)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [node2node-survey:date](#node2node-surveydate)
|
+ [node2node-survey:date](#node2node-surveydate)
|
||||||
+ [export_as_gpx](#export_as_gpx)
|
+ [export_as_gpx](#export_as_gpx)
|
||||||
|
|
||||||
|
|
||||||
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
|
|
||||||
|
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/node2node/node2node.json)
|
[Go to the source code](../assets/layers/node2node/node2node.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:network' target='_blank'>network</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:network%3Drcn' target='_blank'>rcn</a>
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:network:type' target='_blank'>network:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:network:type%3Dnode_network' target='_blank'>node_network</a>
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:route' target='_blank'>route</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:route%3Dbicycle' target='_blank'>bicycle</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:network' target='_blank'>network</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:network%3Drcn' target='_blank'>rcn</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:network:type' target='_blank'>network:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:network:type%3Dnode_network' target='_blank'>node_network</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:route' target='_blank'>route</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:route%3Dbicycle' target='_blank'>bicycle</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D)
|
||||||
|
|
||||||
|
### node2node-survey:date
|
||||||
|
|
||||||
|
|
||||||
### node2node-survey:date
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When was this node to node link last surveyed?**
|
The question is **When was this node to node link last surveyed?**
|
||||||
|
|
||||||
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
||||||
This is rendered with `This node to node link was last surveyed on {survey:date}`
|
This is rendered with `This node to node link was last surveyed on {survey:date}`
|
||||||
|
|
||||||
|
- **Surveyed today!** corresponds with survey:date=
|
||||||
|
|
||||||
|
### export_as_gpx
|
||||||
- **Surveyed today!** corresponds with survey:date=
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### export_as_gpx
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/node2node/node2node.json
|
This document is autogenerated from assets/layers/node2node/node2node.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
note_import
|
||||||
|
|
||||||
note_import
|
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,14 +7,12 @@
|
||||||
|
|
||||||
Template for note note imports.
|
Template for note note imports.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [note_import](#note_import)
|
1. [note_import](#note_import)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [conversation](#conversation)
|
+ [conversation](#conversation)
|
||||||
+ [Intro](#intro)
|
+ [Intro](#intro)
|
||||||
+ [import](#import)
|
+ [import](#import)
|
||||||
|
@ -26,104 +22,52 @@ Template for note note imports.
|
||||||
+ [add_image](#add_image)
|
+ [add_image](#add_image)
|
||||||
|
|
||||||
|
|
||||||
|
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://api.openstreetmap.org/api/0.6/notes.json?closed=0&bbox={x_min},{y_min},{x_max},{y_max}`
|
||||||
|
- This layer will automatically load [public_bookcase](./public_bookcase.md) into the layout as it depends on it: a
|
||||||
|
tagrendering needs this layer (import)
|
||||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://api.openstreetmap.org/api/0.6/notes.json?closed=0&bbox={x_min},{y_min},{x_max},{y_max}`
|
|
||||||
- This layer will automatically load [public_bookcase](./public_bookcase.md) into the layout as it depends on it: a tagrendering needs this layer (import)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/note_import/note_import.json)
|
[Go to the source code](../assets/layers/note_import/note_import.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- id~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- id~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### conversation
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### conversation
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Intro
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Intro
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### import
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### import
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### close_note_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### close_note_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### close_note_mapped
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### close_note_mapped
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### comment
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### comment
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### add_image
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### add_image
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/note_import/note_import.json
|
This document is autogenerated from assets/layers/note_import/note_import.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
observation_tower
|
||||||
|
|
||||||
observation_tower
|
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
Towers with a panoramic view
|
Towers with a panoramic view
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [observation_tower](#observation_tower)
|
1. [observation_tower](#observation_tower)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [name](#name)
|
+ [name](#name)
|
||||||
+ [Height](#height)
|
+ [Height](#height)
|
||||||
|
@ -28,191 +24,130 @@ Towers with a panoramic view
|
||||||
+ [wheelchair-access](#wheelchair-access)
|
+ [wheelchair-access](#wheelchair-access)
|
||||||
+ [wikipedia](#wikipedia)
|
+ [wikipedia](#wikipedia)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [observation_towers](https://mapcomplete.osm.be/observation_towers)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [observation_towers](https://mapcomplete.osm.be/observation_towers)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/observation_tower/observation_tower.json)
|
[Go to the source code](../assets/layers/observation_tower/observation_tower.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:tower:type' target='_blank'>tower:type</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:tower:type%3Dobservation' target='_blank'>observation</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:tower:type' target='_blank'>tower:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tower:type%3Dobservation' target='_blank'>observation</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/height#values) [height](https://wiki.openstreetmap.org/wiki/Key:height) | [pfloat](../SpecialInputElements.md#pfloat) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/height#values) [height](https://wiki.openstreetmap.org/wiki/Key:height) | [pfloat](../SpecialInputElements.md#pfloat) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this tower?**
|
The question is **What is the name of this tower?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `This tower is called <b>{name}</b>`
|
This is rendered with `This tower is called <b>{name}</b>`
|
||||||
|
|
||||||
|
- **This tower doesn't have a specific name** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### Height
|
||||||
- **This tower doesn't have a specific name** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Height
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the height of this tower?**
|
The question is **What is the height of this tower?**
|
||||||
|
|
||||||
This rendering asks information about the property [height](https://wiki.openstreetmap.org/wiki/Key:height)
|
This rendering asks information about the property [height](https://wiki.openstreetmap.org/wiki/Key:height)
|
||||||
This is rendered with `This tower is {height} high`
|
This is rendered with `This tower is {height} high`
|
||||||
|
|
||||||
|
### Operator
|
||||||
|
|
||||||
### Operator
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Who maintains this tower?**
|
The question is **Who maintains this tower?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
This is rendered with `Maintained by <b>{operator}</b>`
|
This is rendered with `Maintained by <b>{operator}</b>`
|
||||||
|
|
||||||
|
### website
|
||||||
|
|
||||||
### website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the website of {name}?**
|
The question is **What is the website of {name}?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||||
|
option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### Fee
|
||||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Fee
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How much does one have to pay to enter this tower?**
|
The question is **How much does one have to pay to enter this tower?**
|
||||||
|
|
||||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
This is rendered with `Visiting this tower costs <b>{charge}</b>`
|
This is rendered with `Visiting this tower costs <b>{charge}</b>`
|
||||||
|
|
||||||
|
- **Free to visit** corresponds 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>
|
||||||
|
|
||||||
|
### payment-options
|
||||||
- **Free to visit** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### payment-options
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Which methods of payment are accepted here?**
|
The question is **Which methods of payment are accepted here?**
|
||||||
|
|
||||||
|
- **Cash is accepted here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer
|
||||||
|
will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||||
|
- **Payment cards are accepted here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer
|
||||||
|
will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### wheelchair-access
|
||||||
|
|
||||||
|
|
||||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
|
||||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### wheelchair-access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this place accessible with a wheelchair?**
|
The question is **Is this place accessible with a wheelchair?**
|
||||||
|
|
||||||
|
- **This place is specially adapted for wheelchair users** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||||
|
- **This place is easily reachable with a wheelchair** corresponds
|
||||||
|
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>
|
||||||
|
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds
|
||||||
|
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 place is not reachable with a wheelchair** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### wikipedia
|
||||||
|
|
||||||
|
|
||||||
- **This place is specially adapted for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
|
||||||
- **This place is easily reachable with a wheelchair** corresponds 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>
|
|
||||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds 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 place is not reachable with a wheelchair** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### wikipedia
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the corresponding Wikidata entity?**
|
The question is **What is the corresponding Wikidata entity?**
|
||||||
|
|
||||||
This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata)
|
This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata)
|
||||||
This is rendered with `{wikipedia():max-height:25rem}`
|
This is rendered with `{wikipedia():max-height:25rem}`
|
||||||
|
|
||||||
|
- **No Wikipedia page has been linked yet** corresponds with _This option cannot be chosen as answer_
|
||||||
|
|
||||||
- **No Wikipedia page has been linked yet** corresponds with _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/observation_tower/observation_tower.json
|
This document is autogenerated from assets/layers/observation_tower/observation_tower.json
|
|
@ -1,60 +1,37 @@
|
||||||
|
orchards
|
||||||
|
|
||||||
orchards
|
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/themes/buurtnatuur/forest.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/themes/buurtnatuur/forest.svg' height="100px">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [orchards](#orchards)
|
1. [orchards](#orchards)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/orchards/orchards.json)
|
[Go to the source code](../assets/layers/orchards/orchards.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:landuse' target='_blank'>landuse</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:landuse%3Dorchard' target='_blank'>orchard</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:landuse' target='_blank'>landuse</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:landuse%3Dorchard' target='_blank'>orchard</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/orchards/orchards.json
|
This document is autogenerated from assets/layers/orchards/orchards.json
|
|
@ -1,20 +1,12 @@
|
||||||
|
osm-buildings-fixme
|
||||||
|
|
||||||
osm-buildings-fixme
|
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [osm-buildings-fixme](#osm-buildings-fixme)
|
1. [osm-buildings-fixme](#osm-buildings-fixme)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [building type](#building-type)
|
+ [building type](#building-type)
|
||||||
+ [grb-housenumber](#grb-housenumber)
|
+ [grb-housenumber](#grb-housenumber)
|
||||||
+ [grb-unit](#grb-unit)
|
+ [grb-unit](#grb-unit)
|
||||||
|
@ -24,166 +16,128 @@
|
||||||
+ [fix_verdieping](#fix_verdieping)
|
+ [fix_verdieping](#fix_verdieping)
|
||||||
+ [all_tags](#all_tags)
|
+ [all_tags](#all_tags)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/osm-buildings-fixme/osm-buildings-fixme.json)
|
[Go to the source code](../assets/layers/osm-buildings-fixme/osm-buildings-fixme.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- building~^..*$
|
||||||
|
- fixme~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- building~^..*$
|
|
||||||
- fixme~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/building#values) [building](https://wiki.openstreetmap.org/wiki/Key:building) | [string](../SpecialInputElements.md#string) | [house](https://wiki.openstreetmap.org/wiki/Tag:building%3Dhouse) [detached](https://wiki.openstreetmap.org/wiki/Tag:building%3Ddetached) [semidetached_house](https://wiki.openstreetmap.org/wiki/Tag:building%3Dsemidetached_house) [apartments](https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments) [office](https://wiki.openstreetmap.org/wiki/Tag:building%3Doffice) [apartments](https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments) [shed](https://wiki.openstreetmap.org/wiki/Tag:building%3Dshed) [garage](https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarage) [garages](https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarages) [yes](https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/building#values) [building](https://wiki.openstreetmap.org/wiki/Key:building) | [string](../SpecialInputElements.md#string) | [house](https://wiki.openstreetmap.org/wiki/Tag:building%3Dhouse) [detached](https://wiki.openstreetmap.org/wiki/Tag:building%3Ddetached) [semidetached_house](https://wiki.openstreetmap.org/wiki/Tag:building%3Dsemidetached_house) [apartments](https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments) [office](https://wiki.openstreetmap.org/wiki/Tag:building%3Doffice) [apartments](https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments) [shed](https://wiki.openstreetmap.org/wiki/Tag:building%3Dshed) [garage](https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarage) [garages](https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarages) [yes](https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:housenumber#values) [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:housenumber%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:housenumber%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:housenumber%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:housenumber#values) [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:housenumber%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:housenumber%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:housenumber%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:unit#values) [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:unit%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:unit#values) [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:unit%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/building:min_level#values) [building:min_level](https://wiki.openstreetmap.org/wiki/Key:building:min_level) | [pnat](../SpecialInputElements.md#pnat) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/building:min_level#values) [building:min_level](https://wiki.openstreetmap.org/wiki/Key:building:min_level) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### building type
|
|
||||||
|
|
||||||
|
|
||||||
|
### building type
|
||||||
|
|
||||||
The question is **What kind of building is this?**
|
The question is **What kind of building is this?**
|
||||||
|
|
||||||
This rendering asks information about the property [building](https://wiki.openstreetmap.org/wiki/Key:building)
|
This rendering asks information about the property [building](https://wiki.openstreetmap.org/wiki/Key:building)
|
||||||
This is rendered with `The building type is <b>{building}</b>`
|
This is rendered with `The building type is <b>{building}</b>`
|
||||||
|
|
||||||
|
- **A normal house** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>
|
||||||
|
building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dhouse' target='_blank'>house</a>
|
||||||
|
- **A house detached from other building** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Ddetached' target='_blank'>detached</a>
|
||||||
|
- **A house sharing only one wall with another house** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dsemidetached_house' target='_blank'>
|
||||||
|
semidetached_house</a>
|
||||||
|
- **An apartment building - highrise for living** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments' target='_blank'>apartments</a>
|
||||||
|
- **An office building - highrise for work** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Doffice' target='_blank'>office</a>
|
||||||
|
- **An apartment building** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>
|
||||||
|
building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments' target='_blank'>apartments</a>
|
||||||
|
- **A small shed, e.g. in a garden** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dshed' target='_blank'>shed</a>
|
||||||
|
- **A single garage to park a car** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarage' target='_blank'>garage</a>
|
||||||
|
- **A building containing only garages; typically they are all identical** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarages' target='_blank'>garages</a>
|
||||||
|
- **A building - no specification** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### grb-housenumber
|
||||||
- **A normal house** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dhouse' target='_blank'>house</a>
|
|
||||||
- **A house detached from other building** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Ddetached' target='_blank'>detached</a>
|
|
||||||
- **A house sharing only one wall with another house** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dsemidetached_house' target='_blank'>semidetached_house</a>
|
|
||||||
- **An apartment building - highrise for living** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments' target='_blank'>apartments</a>
|
|
||||||
- **An office building - highrise for work** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Doffice' target='_blank'>office</a>
|
|
||||||
- **An apartment building** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments' target='_blank'>apartments</a>
|
|
||||||
- **A small shed, e.g. in a garden** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dshed' target='_blank'>shed</a>
|
|
||||||
- **A single garage to park a car** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarage' target='_blank'>garage</a>
|
|
||||||
- **A building containing only garages; typically they are all identical** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarages' target='_blank'>garages</a>
|
|
||||||
- **A building - no specification** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### grb-housenumber
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wat is het huisnummer?**
|
The question is **Wat is het huisnummer?**
|
||||||
|
|
||||||
This rendering asks information about the property [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber)
|
This rendering asks information about the
|
||||||
|
property [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber)
|
||||||
This is rendered with `Het huisnummer is <b>{addr:housenumber}</b>`
|
This is rendered with `Het huisnummer is <b>{addr:housenumber}</b>`
|
||||||
|
|
||||||
|
- **Geen huisnummer** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:not:addr:housenumber' target='_blank'>not:addr:housenumber</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:addr:housenumber%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Het huisnummer is <b>{_grbNumber}</b>, wat overeenkomt met het GRB** corresponds with addr:housenumber=
|
||||||
|
- **Dit gebouw heeft geen nummer, net zoals in het GRB** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:not:addr:housenumber' target='_blank'>not:addr:housenumber</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:addr:housenumber%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### grb-unit
|
||||||
- **Geen huisnummer** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:not:addr:housenumber' target='_blank'>not:addr:housenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:addr:housenumber%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Het huisnummer is <b>{_grbNumber}</b>, wat overeenkomt met het GRB** corresponds with addr:housenumber=
|
|
||||||
- **Dit gebouw heeft geen nummer, net zoals in het GRB** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:not:addr:housenumber' target='_blank'>not:addr:housenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:addr:housenumber%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### grb-unit
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wat is de wooneenheid-aanduiding?**
|
The question is **Wat is de wooneenheid-aanduiding?**
|
||||||
|
|
||||||
This rendering asks information about the property [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit)
|
This rendering asks information about the property [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit)
|
||||||
This is rendered with `De wooneenheid-aanduiding is <b>{addr:unit}</b> `
|
This is rendered with `De wooneenheid-aanduiding is <b>{addr:unit}</b> `
|
||||||
|
|
||||||
|
- **Geen wooneenheid-nummer** corresponds with
|
||||||
|
|
||||||
|
### grb-street
|
||||||
- **Geen wooneenheid-nummer** corresponds with
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### grb-street
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wat is de straat?**
|
The question is **Wat is de straat?**
|
||||||
|
|
||||||
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
||||||
This is rendered with `De straat is <b>{addr:street}</b>`
|
This is rendered with `De straat is <b>{addr:street}</b>`
|
||||||
|
|
||||||
|
### grb-fixme
|
||||||
|
|
||||||
### grb-fixme
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wat zegt de fixme?**
|
The question is **Wat zegt de fixme?**
|
||||||
|
|
||||||
This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme)
|
This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme)
|
||||||
This is rendered with `De fixme is <b>{fixme}</b>`
|
This is rendered with `De fixme is <b>{fixme}</b>`
|
||||||
|
|
||||||
|
- **Geen fixme** corresponds with
|
||||||
|
|
||||||
|
### grb-min-level
|
||||||
- **Geen fixme** corresponds with
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### grb-min-level
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Hoeveel verdiepingen ontbreken?**
|
The question is **Hoeveel verdiepingen ontbreken?**
|
||||||
|
|
||||||
This rendering asks information about the property [building:min_level](https://wiki.openstreetmap.org/wiki/Key:building:min_level)
|
This rendering asks information about the
|
||||||
|
property [building:min_level](https://wiki.openstreetmap.org/wiki/Key:building:min_level)
|
||||||
This is rendered with `Dit gebouw begint maar op de {building:min_level} verdieping`
|
This is rendered with `Dit gebouw begint maar op de {building:min_level} verdieping`
|
||||||
|
|
||||||
|
### fix_verdieping
|
||||||
|
|
||||||
### fix_verdieping
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### all_tags
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### all_tags
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/osm-buildings-fixme/osm-buildings-fixme.json
|
This document is autogenerated from assets/layers/osm-buildings-fixme/osm-buildings-fixme.json
|
|
@ -1,72 +1,51 @@
|
||||||
|
osm-buildings
|
||||||
|
|
||||||
osm-buildings
|
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [osm-buildings](#osm-buildings)
|
1. [osm-buildings](#osm-buildings)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [apply_streetname](#apply_streetname)
|
+ [apply_streetname](#apply_streetname)
|
||||||
|
|
||||||
|
|
||||||
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
|
- This layer will automatically load [crab_address](./crab_address.md) into the layout as it depends on it: A
|
||||||
|
calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
embedded_crab_addresses)
|
||||||
- This layer will automatically load [crab_address](./crab_address.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _embedded_crab_addresses)
|
- This layer will automatically load [named_streets](./named_streets.md) into the layout as it depends on it: A
|
||||||
- This layer will automatically load [named_streets](./named_streets.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[3] which calculates the value for _nearby_street_names)
|
calculated tag loads features from this layer (calculatedTag[3] which calculates the value for _nearby_street_names)
|
||||||
- This layer is needed as dependency for layer [grb](#grb)
|
- This layer is needed as dependency for layer [grb](#grb)
|
||||||
- This layer is needed as dependency for layer [grb](#grb)
|
- This layer is needed as dependency for layer [grb](#grb)
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/osm-buildings/osm-buildings.json)
|
[Go to the source code](../assets/layers/osm-buildings/osm-buildings.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- building~^..*$
|
||||||
|
- addr:housenumber~^..*$
|
||||||
|
-
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- building~^..*$
|
|
||||||
- addr:housenumber~^..*$
|
|
||||||
-
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### apply_streetname
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### apply_streetname
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
- **No nearby street has the same name. The CRAB-name is {_name_to_apply}** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:_spelling_is_correct' target='_blank'>_spelling_is_correct</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:_spelling_is_correct%3Dfalse' target='_blank'>false</a>
|
||||||
|
- **There are multiple streetnames applicable here** corresponds
|
||||||
- **No nearby street has the same name. The CRAB-name is {_name_to_apply}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_spelling_is_correct' target='_blank'>_spelling_is_correct</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_spelling_is_correct%3Dfalse' target='_blank'>false</a>
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:_singular_import' target='_blank'>_singular_import</a>
|
||||||
- **There are multiple streetnames applicable here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_singular_import' target='_blank'>_singular_import</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_singular_import%3Dfalse' target='_blank'>false</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:_singular_import%3Dfalse' target='_blank'>false</a>
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/osm-buildings/osm-buildings.json
|
This document is autogenerated from assets/layers/osm-buildings/osm-buildings.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
parking
|
||||||
|
|
||||||
parking
|
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,67 +7,39 @@
|
||||||
|
|
||||||
A layer showing car parkings
|
A layer showing car parkings
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [parking](#parking)
|
1. [parking](#parking)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [parkings](https://mapcomplete.osm.be/parkings)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [parkings](https://mapcomplete.osm.be/parkings)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/parking/parking.json)
|
[Go to the source code](../assets/layers/parking/parking.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dparking' target='_blank'>parking</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dparking' target='_blank'>parking</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/parking/parking.json
|
This document is autogenerated from assets/layers/parking/parking.json
|
|
@ -1,63 +1,48 @@
|
||||||
|
parks
|
||||||
|
|
||||||
parks
|
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src='https://mapcomplete.osm.be/./assets/themes/buurtnatuur/park.svg' height="100px">
|
<img src='https://mapcomplete.osm.be/./assets/themes/buurtnatuur/park.svg' height="100px">
|
||||||
|
|
||||||
Een park is een publiek toegankelijke, groene ruimte binnen de stad. Ze is typisch ingericht voor recreatief gebruik, met (verharde) wandelpaden, zitbanken, vuilnisbakken, een gezellig vijvertje, ...
|
Een park is een publiek toegankelijke, groene ruimte binnen de stad. Ze is typisch ingericht voor recreatief gebruik,
|
||||||
|
met (verharde) wandelpaden, zitbanken, vuilnisbakken, een gezellig vijvertje, ...
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [parks](#parks)
|
1. [parks](#parks)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer will automatically load [nature_reserve_buurtnatuur](./nature_reserve_buurtnatuur.md) into the layout as
|
||||||
|
it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _
|
||||||
|
overlapWithUpperLayers)
|
||||||
- This layer will automatically load [nature_reserve_buurtnatuur](./nature_reserve_buurtnatuur.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _overlapWithUpperLayers)
|
- This layer is needed as dependency for layer [forest](#forest)
|
||||||
- This layer is needed as dependency for layer [forest](#forest)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/parks/parks.json)
|
[Go to the source code](../assets/layers/parks/parks.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <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>
|
||||||
|
|<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>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <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>|<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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/parks/parks.json
|
This document is autogenerated from assets/layers/parks/parks.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
pedestrian_path
|
||||||
|
|
||||||
pedestrian_path
|
|
||||||
=================
|
=================
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,56 +7,45 @@
|
||||||
|
|
||||||
Pedestrian footpaths, especially used for indoor navigation and snapping entrances to this layer
|
Pedestrian footpaths, especially used for indoor navigation and snapping entrances to this layer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [pedestrian_path](#pedestrian_path)
|
1. [pedestrian_path](#pedestrian_path)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is needed as dependency for layer [entrance](#entrance)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [entrances](https://mapcomplete.osm.be/entrances)
|
||||||
- This layer is needed as dependency for layer [entrance](#entrance)
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [entrances](https://mapcomplete.osm.be/entrances)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/pedestrian_path/pedestrian_path.json)
|
[Go to the source code](../assets/layers/pedestrian_path/pedestrian_path.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway' target='_blank'>footway</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath' target='_blank'>path</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcorridor' target='_blank'>corridor</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsteps' target='_blank'>steps</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway' target='_blank'>footway</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath' target='_blank'>path</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcorridor' target='_blank'>corridor</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsteps' target='_blank'>steps</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/pedestrian_path/pedestrian_path.json
|
This document is autogenerated from assets/layers/pedestrian_path/pedestrian_path.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
picnic_table
|
||||||
|
|
||||||
picnic_table
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,83 +7,57 @@
|
||||||
|
|
||||||
The layer showing picnic tables
|
The layer showing picnic tables
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [picnic_table](#picnic_table)
|
1. [picnic_table](#picnic_table)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [picnic_table-material](#picnic_table-material)
|
+ [picnic_table-material](#picnic_table-material)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [benches](https://mapcomplete.osm.be/benches)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [benches](https://mapcomplete.osm.be/benches)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/picnic_table/picnic_table.json)
|
[Go to the source code](../assets/layers/picnic_table/picnic_table.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dpicnic_table' target='_blank'>picnic_table</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dpicnic_table' target='_blank'>picnic_table</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete)
|
||||||
|
|
||||||
|
### picnic_table-material
|
||||||
|
|
||||||
|
|
||||||
### picnic_table-material
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What material is this picnic table made of?**
|
The question is **What material is this picnic table made of?**
|
||||||
|
|
||||||
This rendering asks information about the property [material](https://wiki.openstreetmap.org/wiki/Key:material)
|
This rendering asks information about the property [material](https://wiki.openstreetmap.org/wiki/Key:material)
|
||||||
This is rendered with `This picnic table is made of {material}`
|
This is rendered with `This picnic table is made of {material}`
|
||||||
|
|
||||||
|
- **This is a wooden picnic table** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>
|
||||||
- **This is a wooden picnic table** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a>
|
||||||
- **This is a concrete picnic table** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete' target='_blank'>concrete</a>
|
- **This is a concrete picnic table** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete' target='_blank'>concrete</a>
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/picnic_table/picnic_table.json
|
This document is autogenerated from assets/layers/picnic_table/picnic_table.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
play_forest
|
||||||
|
|
||||||
play_forest
|
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,14 +7,12 @@
|
||||||
|
|
||||||
Een speelbos is een vrij toegankelijke zone in een bos
|
Een speelbos is een vrij toegankelijke zone in een bos
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [play_forest](#play_forest)
|
1. [play_forest](#play_forest)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [play_forest-operator](#play_forest-operator)
|
+ [play_forest-operator](#play_forest-operator)
|
||||||
+ [play_forest-opening_hours](#play_forest-opening_hours)
|
+ [play_forest-opening_hours](#play_forest-opening_hours)
|
||||||
|
@ -25,131 +21,84 @@ Een speelbos is een vrij toegankelijke zone in een bos
|
||||||
+ [questions](#questions)
|
+ [questions](#questions)
|
||||||
+ [play_forest-reviews](#play_forest-reviews)
|
+ [play_forest-reviews](#play_forest-reviews)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/play_forest/play_forest.json)
|
[Go to the source code](../assets/layers/play_forest/play_forest.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:playground' target='_blank'>playground</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:playground%3Dforest' target='_blank'>forest</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:playground' target='_blank'>playground</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:playground%3Dforest' target='_blank'>forest</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Agenstchap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgenstchap Natuur en Bos)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Agenstchap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgenstchap Natuur en Bos)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | Multiple choice | [08:00-22:00](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D08:00-22:00) [Jul-Aug 08:00-22:00](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3DJul-Aug 08:00-22:00)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | Multiple choice | [08:00-22:00](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D08:00-22:00) [Jul-Aug 08:00-22:00](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3DJul-Aug 08:00-22:00)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### play_forest-operator
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### play_forest-operator
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wie beheert dit gebied?**
|
The question is **Wie beheert dit gebied?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
This is rendered with `Dit gebied wordt beheerd door {operator}`
|
This is rendered with `Dit gebied wordt beheerd door {operator}`
|
||||||
|
|
||||||
|
- **Dit gebied wordt beheerd door het <a href='https://www.natuurenbos.be/spelen'>Agentschap Natuur en Bos</a>**
|
||||||
|
corresponds with operator~^[aA][nN][bB]$_This option cannot be chosen as answer_
|
||||||
|
- **Dit gebied wordt beheerd door het <a href='https://www.natuurenbos.be/spelen'>Agentschap Natuur en Bos</a>**
|
||||||
|
corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgenstchap Natuur en Bos' target='_blank'>Agenstchap
|
||||||
|
Natuur en Bos</a>
|
||||||
|
|
||||||
|
### play_forest-opening_hours
|
||||||
- **Dit gebied wordt beheerd door het <a href='https://www.natuurenbos.be/spelen'>Agentschap Natuur en Bos</a>** corresponds with operator~^[aA][nN][bB]$_This option cannot be chosen as answer_
|
|
||||||
- **Dit gebied wordt beheerd door het <a href='https://www.natuurenbos.be/spelen'>Agentschap Natuur en Bos</a>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgenstchap Natuur en Bos' target='_blank'>Agenstchap Natuur en Bos</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### play_forest-opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wanneer is deze speelzone toegankelijk?**
|
The question is **Wanneer is deze speelzone toegankelijk?**
|
||||||
|
|
||||||
|
- **Het hele jaar door overdag toegankelijk (van 08:00 tot 22:00)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D08:00-22:00' target='_blank'>08:00-22:00</a>
|
||||||
|
- **Enkel in de <b>zomervakantie</b> en overdag toegankelijk (van 1 juli tot 31 augustus, van 08:00 tot 22:00**
|
||||||
|
corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3DJul-Aug 08:00-22:00' target='_blank'>Jul-Aug 08:
|
||||||
|
00-22:00</a>
|
||||||
|
|
||||||
|
### play_forest-email
|
||||||
|
|
||||||
|
|
||||||
- **Het hele jaar door overdag toegankelijk (van 08:00 tot 22:00)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D08:00-22:00' target='_blank'>08:00-22:00</a>
|
|
||||||
- **Enkel in de <b>zomervakantie</b> en overdag toegankelijk (van 1 juli tot 31 augustus, van 08:00 tot 22:00** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3DJul-Aug 08:00-22:00' target='_blank'>Jul-Aug 08:00-22:00</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### play_forest-email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wie kan men emailen indien er problemen zijn met de speelzone?**
|
The question is **Wie kan men emailen indien er problemen zijn met de speelzone?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `De bevoegde dienst kan bereikt worden via {email}`
|
This is rendered with `De bevoegde dienst kan bereikt worden via {email}`
|
||||||
|
|
||||||
|
### play_forest-phone
|
||||||
|
|
||||||
### play_forest-phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wie kan men bellen indien er problemen zijn met de speelzone?**
|
The question is **Wie kan men bellen indien er problemen zijn met de speelzone?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `De bevoegde dienst kan getelefoneerd worden via {phone}`
|
This is rendered with `De bevoegde dienst kan getelefoneerd worden via {phone}`
|
||||||
|
|
||||||
|
### questions
|
||||||
|
|
||||||
### questions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### play_forest-reviews
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### play_forest-reviews
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/play_forest/play_forest.json
|
This document is autogenerated from assets/layers/play_forest/play_forest.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
playground
|
||||||
|
|
||||||
playground
|
|
||||||
============
|
============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
Playgrounds
|
Playgrounds
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [playground](#playground)
|
1. [playground](#playground)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [playground-surface](#playground-surface)
|
+ [playground-surface](#playground-surface)
|
||||||
+ [playground-lit](#playground-lit)
|
+ [playground-lit](#playground-lit)
|
||||||
|
@ -32,243 +28,184 @@ Playgrounds
|
||||||
+ [questions](#questions)
|
+ [questions](#questions)
|
||||||
+ [playground-reviews](#playground-reviews)
|
+ [playground-reviews](#playground-reviews)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
- [playgrounds](https://mapcomplete.osm.be/playgrounds)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
- [playgrounds](https://mapcomplete.osm.be/playgrounds)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/playground/playground.json)
|
[Go to the source code](../assets/layers/playground/playground.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dplayground' target='_blank'>playground</a>
|
||||||
|
- playground!~^forest$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dplayground' target='_blank'>playground</a>
|
|
||||||
- playground!~^forest$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/surface#values) [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) [woodchips](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwoodchips) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/surface#values) [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) [woodchips](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwoodchips) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/min_age#values) [min_age](https://wiki.openstreetmap.org/wiki/Key:min_age) | [pnat](../SpecialInputElements.md#pnat) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/min_age#values) [min_age](https://wiki.openstreetmap.org/wiki/Key:min_age) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/max_age#values) [max_age](https://wiki.openstreetmap.org/wiki/Key:max_age) | [pnat](../SpecialInputElements.md#pnat) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/max_age#values) [max_age](https://wiki.openstreetmap.org/wiki/Key:max_age) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [students](https://wiki.openstreetmap.org/wiki/Tag:access%3Dstudents) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [students](https://wiki.openstreetmap.org/wiki/Tag:access%3Dstudents) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [sunrise-sunset](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dsunrise-sunset) [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [sunrise-sunset](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dsunrise-sunset) [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### playground-surface
|
||||||
|
|
||||||
|
The question is **Which is the surface of this playground?<br/><i>If there are multiple, select the most occuring
|
||||||
|
one</i>**
|
||||||
|
|
||||||
|
This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface)
|
||||||
|
|
||||||
### playground-surface
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Which is the surface of this playground?<br/><i>If there are multiple, select the most occuring one</i>**
|
|
||||||
|
|
||||||
This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface)
|
|
||||||
This is rendered with `The surface is <b>{surface}</b>`
|
This is rendered with `The surface is <b>{surface}</b>`
|
||||||
|
|
||||||
|
- **The surface is <b>grass</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass' target='_blank'>grass</a>
|
||||||
|
- **The surface is <b>sand</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand' target='_blank'>sand</a>
|
||||||
|
- **The surface consist of <b>woodchips</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwoodchips' target='_blank'>woodchips</a>
|
||||||
|
- **The surface is <b>paving stones</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
||||||
|
- **The surface is <b>asphalt</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>
|
||||||
|
- **The surface is <b>concrete</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>
|
||||||
|
- **The surface is <b>unpaved</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
- **The surface is <b>paved</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
|
||||||
|
### playground-lit
|
||||||
- **The surface is <b>grass</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass' target='_blank'>grass</a>
|
|
||||||
- **The surface is <b>sand</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand' target='_blank'>sand</a>
|
|
||||||
- **The surface consist of <b>woodchips</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwoodchips' target='_blank'>woodchips</a>
|
|
||||||
- **The surface is <b>paving stones</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
|
||||||
- **The surface is <b>asphalt</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>
|
|
||||||
- **The surface is <b>concrete</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>
|
|
||||||
- **The surface is <b>unpaved</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>_This option cannot be chosen as answer_
|
|
||||||
- **The surface is <b>paved</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### playground-lit
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this playground lit at night?**
|
The question is **Is this playground lit at night?**
|
||||||
|
|
||||||
|
- **This playground is lit at night** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **This playground is not lit at night** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### playground-min_age
|
||||||
|
|
||||||
|
|
||||||
- **This playground is lit at night** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **This playground is not lit at night** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### playground-min_age
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the minimum age required to access this playground?**
|
The question is **What is the minimum age required to access this playground?**
|
||||||
|
|
||||||
This rendering asks information about the property [min_age](https://wiki.openstreetmap.org/wiki/Key:min_age)
|
This rendering asks information about the property [min_age](https://wiki.openstreetmap.org/wiki/Key:min_age)
|
||||||
This is rendered with `Accessible to kids older than {min_age} years`
|
This is rendered with `Accessible to kids older than {min_age} years`
|
||||||
|
|
||||||
|
### playground-max_age
|
||||||
|
|
||||||
### playground-max_age
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the maximum age allowed to access this playground?**
|
The question is **What is the maximum age allowed to access this playground?**
|
||||||
|
|
||||||
This rendering asks information about the property [max_age](https://wiki.openstreetmap.org/wiki/Key:max_age)
|
This rendering asks information about the property [max_age](https://wiki.openstreetmap.org/wiki/Key:max_age)
|
||||||
This is rendered with `Accessible to kids of at most {max_age}`
|
This is rendered with `Accessible to kids of at most {max_age}`
|
||||||
|
|
||||||
|
### playground-operator
|
||||||
|
|
||||||
### playground-operator
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Who operates this playground?**
|
The question is **Who operates this playground?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
This is rendered with `Operated by {operator}`
|
This is rendered with `Operated by {operator}`
|
||||||
|
|
||||||
|
### playground-access
|
||||||
|
|
||||||
### playground-access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this playground accessible to the general public?**
|
The question is **Is this playground accessible to the general public?**
|
||||||
|
|
||||||
|
- **Accessible to the general public** corresponds with _This option cannot be chosen as answer_
|
||||||
|
- **Accessible to the general public** corresponds
|
||||||
|
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>
|
||||||
|
- **Only accessible for clients of the operating business** corresponds
|
||||||
|
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>
|
||||||
|
- **Only accessible to students of the school** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dstudents' target='_blank'>students</a>
|
||||||
|
- **Not accessible** corresponds 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>
|
||||||
|
|
||||||
|
### playground-email
|
||||||
|
|
||||||
|
|
||||||
- **Accessible to the general public** corresponds with _This option cannot be chosen as answer_
|
|
||||||
- **Accessible to the general public** corresponds 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>
|
|
||||||
- **Only accessible for clients of the operating business** corresponds 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>
|
|
||||||
- **Only accessible to students of the school** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dstudents' target='_blank'>students</a>
|
|
||||||
- **Not accessible** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### playground-email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of the playground maintainer?**
|
The question is **What is the email address of the playground maintainer?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}'>{email}</a>`
|
||||||
|
|
||||||
|
### playground-phone
|
||||||
|
|
||||||
### playground-phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number of the playground maintainer?**
|
The question is **What is the phone number of the playground maintainer?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
### Playground-wheelchair
|
||||||
|
|
||||||
### Playground-wheelchair
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this playground accessible to wheelchair users?**
|
The question is **Is this playground accessible to wheelchair users?**
|
||||||
|
|
||||||
|
- **Completely accessible for wheelchair users** corresponds
|
||||||
|
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>
|
||||||
|
- **Limited accessibility for wheelchair users** corresponds
|
||||||
|
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>
|
||||||
|
- **Not accessible for wheelchair users** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### playground-opening_hours
|
||||||
|
|
||||||
|
|
||||||
- **Completely accessible for wheelchair users** corresponds 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>
|
|
||||||
- **Limited accessibility for wheelchair users** corresponds 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>
|
|
||||||
- **Not accessible for wheelchair users** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### playground-opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When is this playground accessible?**
|
The question is **When is this playground accessible?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
This is rendered with `{opening_hours_table(opening_hours)}`
|
This is rendered with `{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
- **Accessible from sunrise till sunset** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dsunrise-sunset' target='_blank'>sunrise-sunset</a>
|
||||||
|
- **Always accessible** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||||
|
- **Always accessible** corresponds with _This option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### questions
|
||||||
- **Accessible from sunrise till sunset** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dsunrise-sunset' target='_blank'>sunrise-sunset</a>
|
|
||||||
- **Always accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
|
||||||
- **Always accessible** corresponds with _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### questions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### playground-reviews
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### playground-reviews
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/playground/playground.json
|
This document is autogenerated from assets/layers/playground/playground.json
|
|
@ -1,60 +1,39 @@
|
||||||
|
postal_code_boundary
|
||||||
|
|
||||||
postal_code_boundary
|
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [postal_code_boundary](#postal_code_boundary)
|
1. [postal_code_boundary](#postal_code_boundary)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [postal_code](#postal_code)
|
+ [postal_code](#postal_code)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is needed as dependency for layer [town_hall](#town_hall)
|
||||||
|
|
||||||
|
|
||||||
- This layer is needed as dependency for layer [town_hall](#town_hall)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/postal_code_boundary/postal_code_boundary.json)
|
[Go to the source code](../assets/layers/postal_code_boundary/postal_code_boundary.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:boundary' target='_blank'>boundary</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dpostal_code' target='_blank'>postal_code</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:bounary' target='_blank'>bounary</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:bounary%3Dadministrative' target='_blank'>administrative</a>
|
||||||
|
&postal_code~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:boundary' target='_blank'>boundary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dpostal_code' target='_blank'>postal_code</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:bounary' target='_blank'>bounary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bounary%3Dadministrative' target='_blank'>administrative</a>&postal_code~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### postal_code
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### postal_code
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/postal_code_boundary/postal_code_boundary.json
|
This document is autogenerated from assets/layers/postal_code_boundary/postal_code_boundary.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
postboxes
|
||||||
|
|
||||||
postboxes
|
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,77 +7,43 @@
|
||||||
|
|
||||||
The layer showing postboxes.
|
The layer showing postboxes.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [postboxes](#postboxes)
|
1. [postboxes](#postboxes)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [minimap](#minimap)
|
+ [minimap](#minimap)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [postboxes](https://mapcomplete.osm.be/postboxes)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [postboxes](https://mapcomplete.osm.be/postboxes)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/postboxes/postboxes.json)
|
[Go to the source code](../assets/layers/postboxes/postboxes.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpost_box' target='_blank'>post_box</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpost_box' target='_blank'>post_box</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### minimap
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/postboxes/postboxes.json
|
This document is autogenerated from assets/layers/postboxes/postboxes.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
postoffices
|
||||||
|
|
||||||
postoffices
|
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,103 +7,64 @@
|
||||||
|
|
||||||
A layer showing post offices.
|
A layer showing post offices.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [postoffices](#postoffices)
|
1. [postoffices](#postoffices)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [minimap](#minimap)
|
+ [minimap](#minimap)
|
||||||
+ [OH](#oh)
|
+ [OH](#oh)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [postboxes](https://mapcomplete.osm.be/postboxes)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [postboxes](https://mapcomplete.osm.be/postboxes)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/postoffices/postoffices.json)
|
[Go to the source code](../assets/layers/postoffices/postoffices.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpost_office' target='_blank'>post_office</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpost_office' target='_blank'>post_office</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [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)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### minimap
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### OH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### OH
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What are the opening hours for this post office?**
|
The question is **What are the opening hours for this post office?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
This is rendered with `Opening Hours: {opening_hours_table()}`
|
This is rendered with `Opening Hours: {opening_hours_table()}`
|
||||||
|
|
||||||
|
- **24/7 opened (including holidays)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>
|
||||||
- **24/7 opened (including holidays)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/postoffices/postoffices.json
|
This document is autogenerated from assets/layers/postoffices/postoffices.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
public_bookcase
|
||||||
|
|
||||||
public_bookcase
|
|
||||||
=================
|
=================
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A streetside cabinet with books, accessible to anyone
|
A streetside cabinet with books, accessible to anyone
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [public_bookcase](#public_bookcase)
|
1. [public_bookcase](#public_bookcase)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [public_bookcase-name](#public_bookcase-name)
|
+ [public_bookcase-name](#public_bookcase-name)
|
||||||
+ [public_bookcase-capacity](#public_bookcase-capacity)
|
+ [public_bookcase-capacity](#public_bookcase-capacity)
|
||||||
|
@ -31,216 +27,147 @@ A streetside cabinet with books, accessible to anyone
|
||||||
+ [public_bookcase-website](#public_bookcase-website)
|
+ [public_bookcase-website](#public_bookcase-website)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is needed as dependency for layer [note_import](#note_import)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [bookcases](https://mapcomplete.osm.be/bookcases)
|
||||||
- This layer is needed as dependency for layer [note_import](#note_import)
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [bookcases](https://mapcomplete.osm.be/bookcases)
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/public_bookcase/public_bookcase.json)
|
[Go to the source code](../assets/layers/public_bookcase/public_bookcase.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpublic_bookcase' target='_blank'>public_bookcase</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpublic_bookcase' target='_blank'>public_bookcase</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/books#values) [books](https://wiki.openstreetmap.org/wiki/Key:books) | Multiple choice | [children](https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren) [adults](https://wiki.openstreetmap.org/wiki/Tag:books%3Dadults) [children;adults](https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren;adults)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/books#values) [books](https://wiki.openstreetmap.org/wiki/Key:books) | Multiple choice | [children](https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren) [adults](https://wiki.openstreetmap.org/wiki/Tag:books%3Dadults) [children;adults](https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren;adults)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/indoor#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/indoor#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Little Free Library](https://wiki.openstreetmap.org/wiki/Tag:brand%3DLittle Free Library) [](https://wiki.openstreetmap.org/wiki/Tag:brand%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Little Free Library](https://wiki.openstreetmap.org/wiki/Tag:brand%3DLittle Free Library) [](https://wiki.openstreetmap.org/wiki/Tag:brand%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:ref%3D)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:ref%3D)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### public_bookcase-name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### public_bookcase-name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this public bookcase?**
|
The question is **What is the name of this public bookcase?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `The name of this bookcase is {name}`
|
This is rendered with `The name of this bookcase is {name}`
|
||||||
|
|
||||||
|
- **This bookcase doesn't have a name** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### public_bookcase-capacity
|
||||||
- **This bookcase doesn't have a name** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### public_bookcase-capacity
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How many books fit into this public bookcase?**
|
The question is **How many books fit into this public bookcase?**
|
||||||
|
|
||||||
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
||||||
This is rendered with `{capacity} books fit in this bookcase`
|
This is rendered with `{capacity} books fit in this bookcase`
|
||||||
|
|
||||||
|
### bookcase-booktypes
|
||||||
|
|
||||||
### bookcase-booktypes
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What kind of books can be found in this public bookcase?**
|
The question is **What kind of books can be found in this public bookcase?**
|
||||||
|
|
||||||
|
- **Mostly children books** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:books' target='_blank'>
|
||||||
|
books</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren' target='_blank'>children</a>
|
||||||
|
- **Mostly books for adults** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:books' target='_blank'>
|
||||||
|
books</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:books%3Dadults' target='_blank'>adults</a>
|
||||||
|
- **Both books for kids and adults** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:books' target='_blank'>books</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren;adults' target='_blank'>children;adults</a>
|
||||||
|
|
||||||
|
### bookcase-is-indoors
|
||||||
|
|
||||||
|
|
||||||
- **Mostly children books** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:books' target='_blank'>books</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren' target='_blank'>children</a>
|
|
||||||
- **Mostly books for adults** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:books' target='_blank'>books</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:books%3Dadults' target='_blank'>adults</a>
|
|
||||||
- **Both books for kids and adults** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:books' target='_blank'>books</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren;adults' target='_blank'>children;adults</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bookcase-is-indoors
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this bookcase located outdoors?**
|
The question is **Is this bookcase located outdoors?**
|
||||||
|
|
||||||
|
- **This bookcase is located indoors** corresponds
|
||||||
|
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 bookcase is located outdoors** corresponds
|
||||||
|
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 bookcase is located outdoors** corresponds with _This option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### bookcase-is-accessible
|
||||||
|
|
||||||
|
|
||||||
- **This bookcase is located indoors** corresponds 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 bookcase is located outdoors** corresponds 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 bookcase is located outdoors** corresponds with _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bookcase-is-accessible
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this public bookcase freely accessible?**
|
The question is **Is this public bookcase freely accessible?**
|
||||||
|
|
||||||
|
- **Publicly accessible** corresponds 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>
|
||||||
|
- **Only accessible to customers** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### public_bookcase-operator
|
||||||
|
|
||||||
|
|
||||||
- **Publicly accessible** corresponds 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>
|
|
||||||
- **Only accessible to customers** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### public_bookcase-operator
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Who maintains this public bookcase?**
|
The question is **Who maintains this public bookcase?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
This is rendered with `Operated by {operator}`
|
This is rendered with `Operated by {operator}`
|
||||||
|
|
||||||
|
### public_bookcase-brand
|
||||||
|
|
||||||
### public_bookcase-brand
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this public bookcase part of a bigger network?**
|
The question is **Is this public bookcase part of a bigger network?**
|
||||||
|
|
||||||
This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand)
|
This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand)
|
||||||
This is rendered with `This public bookcase is part of {brand}`
|
This is rendered with `This public bookcase is part of {brand}`
|
||||||
|
|
||||||
|
- **Part of the network 'Little Free Library'** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DLittle Free Library' target='_blank'>Little Free Library</a>
|
||||||
|
- **This public bookcase is not part of a bigger network** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:nobrand' target='_blank'>nobrand</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:nobrand%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### public_bookcase-ref
|
||||||
- **Part of the network 'Little Free Library'** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DLittle Free Library' target='_blank'>Little Free Library</a>
|
|
||||||
- **This public bookcase is not part of a bigger network** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:nobrand' target='_blank'>nobrand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nobrand%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### public_bookcase-ref
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the reference number of this public bookcase?**
|
The question is **What is the reference number of this public bookcase?**
|
||||||
|
|
||||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||||
This is rendered with `The reference number of this public bookcase within {brand} is {ref}`
|
This is rendered with `The reference number of this public bookcase within {brand} is {ref}`
|
||||||
|
|
||||||
|
- **This bookcase is not part of a bigger network** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:nobrand' target='_blank'>nobrand</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:nobrand%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
### public_bookcase-start_date
|
||||||
- **This bookcase is not part of a bigger network** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:nobrand' target='_blank'>nobrand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nobrand%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### public_bookcase-start_date
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When was this public bookcase installed?**
|
The question is **When was this public bookcase installed?**
|
||||||
|
|
||||||
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
||||||
This is rendered with `Installed on {start_date}`
|
This is rendered with `Installed on {start_date}`
|
||||||
|
|
||||||
|
### public_bookcase-website
|
||||||
|
|
||||||
### public_bookcase-website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is there a website with more information about this public bookcase?**
|
The question is **Is there a website with more information about this public bookcase?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `More info on <a href='{website}' target='_blank'>the website</a>`
|
This is rendered with `More info on <a href='{website}' target='_blank'>the website</a>`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/public_bookcase/public_bookcase.json
|
This document is autogenerated from assets/layers/public_bookcase/public_bookcase.json
|
|
@ -1,54 +1,39 @@
|
||||||
|
raw_inspire_polygons
|
||||||
|
|
||||||
raw_inspire_polygons
|
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [raw_inspire_polygons](#raw_inspire_polygons)
|
1. [raw_inspire_polygons](#raw_inspire_polygons)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this
|
||||||
|
toggleable.
|
||||||
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://osm-uk-addresses.russss.dev/inspire/{z}/{x}/{y}.json`
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
- This layer will automatically load [address](./address.md) into the layout as it depends on it: A calculated tag
|
||||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://osm-uk-addresses.russss.dev/inspire/{z}/{x}/{y}.json`
|
loads features from this layer (calculatedTag[0] which calculates the value for _has_address)
|
||||||
- This layer will automatically load [address](./address.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _has_address)
|
- This layer is needed as dependency for layer [to_import](#to_import)
|
||||||
- This layer is needed as dependency for layer [to_import](#to_import)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/raw_inspire_polygons/raw_inspire_polygons.json)
|
[Go to the source code](../assets/layers/raw_inspire_polygons/raw_inspire_polygons.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- inspireid~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- inspireid~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/raw_inspire_polygons/raw_inspire_polygons.json
|
This document is autogenerated from assets/layers/raw_inspire_polygons/raw_inspire_polygons.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
service_ways
|
||||||
|
|
||||||
service_ways
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,43 +7,33 @@
|
||||||
|
|
||||||
A seperate layer with service roads, as to remove them from the intersection testing
|
A seperate layer with service roads, as to remove them from the intersection testing
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [service_ways](#service_ways)
|
1. [service_ways](#service_ways)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
|
|
||||||
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
|
|
||||||
|
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/service_ways/service_ways.json)
|
[Go to the source code](../assets/layers/service_ways/service_ways.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dservice' target='_blank'>service</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dservice' target='_blank'>service</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/service_ways/service_ways.json
|
This document is autogenerated from assets/layers/service_ways/service_ways.json
|
|
@ -1,52 +1,37 @@
|
||||||
|
shadow
|
||||||
|
|
||||||
shadow
|
|
||||||
========
|
========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [shadow](#shadow)
|
1. [shadow](#shadow)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this
|
||||||
|
toggleable.
|
||||||
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/MapComplete/master/assets/themes/speelplekken/shadow.geojson`
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
|
||||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/MapComplete/master/assets/themes/speelplekken/shadow.geojson`
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/shadow/shadow.json)
|
[Go to the source code](../assets/layers/shadow/shadow.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:shadow' target='_blank'>shadow</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:shadow%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:shadow' target='_blank'>shadow</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shadow%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/shadow/shadow.json
|
This document is autogenerated from assets/layers/shadow/shadow.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
shops
|
||||||
|
|
||||||
shops
|
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A shop
|
A shop
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [shops](#shops)
|
1. [shops](#shops)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [shops-name](#shops-name)
|
+ [shops-name](#shops-name)
|
||||||
+ [shops-shop](#shops-shop)
|
+ [shops-shop](#shops-shop)
|
||||||
|
@ -28,167 +24,108 @@ A shop
|
||||||
+ [questions](#questions)
|
+ [questions](#questions)
|
||||||
+ [reviews](#reviews)
|
+ [reviews](#reviews)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
- [shops](https://mapcomplete.osm.be/shops)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
- [shops](https://mapcomplete.osm.be/shops)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/shops/shops.json)
|
[Go to the source code](../assets/layers/shops/shops.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- shop~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- shop~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | [string](../SpecialInputElements.md#string) | [convenience](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | [string](../SpecialInputElements.md#string) | [convenience](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### shops-name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### shops-name
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the name of this shop?**
|
The question is **What is the name of this shop?**
|
||||||
|
|
||||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
This is rendered with `This shop is called <i>{name}</i>`
|
This is rendered with `This shop is called <i>{name}</i>`
|
||||||
|
|
||||||
|
### shops-shop
|
||||||
|
|
||||||
### shops-shop
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What does this shop sell?**
|
The question is **What does this shop sell?**
|
||||||
|
|
||||||
This rendering asks information about the property [shop](https://wiki.openstreetmap.org/wiki/Key:shop)
|
This rendering asks information about the property [shop](https://wiki.openstreetmap.org/wiki/Key:shop)
|
||||||
This is rendered with `This shop sells {shop}`
|
This is rendered with `This shop sells {shop}`
|
||||||
|
|
||||||
|
- **Convenience store** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience' target='_blank'>convenience</a>
|
||||||
|
- **Supermarket** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket' target='_blank'>supermarket</a>
|
||||||
|
- **Clothing store** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes' target='_blank'>clothes</a>
|
||||||
|
- **Hairdresser** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser' target='_blank'>hairdresser</a>
|
||||||
|
- **Bakery** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery' target='_blank'>bakery</a>
|
||||||
|
- **Car repair (garage)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>
|
||||||
|
shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair' target='_blank'>car_repair</a>
|
||||||
|
- **Car dealer** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar' target='_blank'>car</a>
|
||||||
|
|
||||||
|
### shops-phone
|
||||||
- **Convenience store** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience' target='_blank'>convenience</a>
|
|
||||||
- **Supermarket** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket' target='_blank'>supermarket</a>
|
|
||||||
- **Clothing store** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes' target='_blank'>clothes</a>
|
|
||||||
- **Hairdresser** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser' target='_blank'>hairdresser</a>
|
|
||||||
- **Bakery** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery' target='_blank'>bakery</a>
|
|
||||||
- **Car repair (garage)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair' target='_blank'>car_repair</a>
|
|
||||||
- **Car dealer** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar' target='_blank'>car</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### shops-phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number?**
|
The question is **What is the phone number?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
### shops-website
|
||||||
|
|
||||||
### shops-website
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the website of this shop?**
|
The question is **What is the website of this shop?**
|
||||||
|
|
||||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
This is rendered with `<a href='{website}'>{website}</a>`
|
This is rendered with `<a href='{website}'>{website}</a>`
|
||||||
|
|
||||||
|
### shops-email
|
||||||
|
|
||||||
### shops-email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of this shop?**
|
The question is **What is the email address of this shop?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}'>{email}</a>`
|
||||||
|
|
||||||
|
### shops-opening_hours
|
||||||
|
|
||||||
### shops-opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What are the opening hours of this shop?**
|
The question is **What are the opening hours of this shop?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
This is rendered with `{opening_hours_table(opening_hours)}`
|
This is rendered with `{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
### questions
|
||||||
|
|
||||||
### questions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### reviews
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### reviews
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/shops/shops.json
|
This document is autogenerated from assets/layers/shops/shops.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
sidewalks
|
||||||
|
|
||||||
sidewalks
|
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,14 +7,12 @@
|
||||||
|
|
||||||
Layer showing sidewalks of highways
|
Layer showing sidewalks of highways
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [sidewalks](#sidewalks)
|
1. [sidewalks](#sidewalks)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [streetname](#streetname)
|
+ [streetname](#streetname)
|
||||||
+ [left-sidewalk_minimap](#left-sidewalk_minimap)
|
+ [left-sidewalk_minimap](#left-sidewalk_minimap)
|
||||||
+ [left-has_sidewalk](#left-has_sidewalk)
|
+ [left-has_sidewalk](#left-has_sidewalk)
|
||||||
|
@ -27,150 +23,96 @@ Layer showing sidewalks of highways
|
||||||
+ [right-sidewalk_width](#right-sidewalk_width)
|
+ [right-sidewalk_width](#right-sidewalk_width)
|
||||||
+ [questions](#questions)
|
+ [questions](#questions)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/sidewalks/sidewalks.json)
|
[Go to the source code](../assets/layers/sidewalks/sidewalks.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dresidential' target='_blank'>residential</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dunclassified' target='_blank'>unclassified</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary' target='_blank'>tertiary</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary' target='_blank'>secondary</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dresidential' target='_blank'>residential</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dunclassified' target='_blank'>unclassified</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary' target='_blank'>tertiary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary' target='_blank'>secondary</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sidewalk:left#values) [sidewalk:left](https://wiki.openstreetmap.org/wiki/Key:sidewalk:left) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sidewalk:left%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sidewalk:left%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sidewalk:left#values) [sidewalk:left](https://wiki.openstreetmap.org/wiki/Key:sidewalk:left) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sidewalk:left%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sidewalk:left%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sidewalk:left:width#values) [sidewalk:left:width](https://wiki.openstreetmap.org/wiki/Key:sidewalk:left:width) | [length](../SpecialInputElements.md#length) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sidewalk:left:width#values) [sidewalk:left:width](https://wiki.openstreetmap.org/wiki/Key:sidewalk:left:width) | [length](../SpecialInputElements.md#length) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sidewalk:right#values) [sidewalk:right](https://wiki.openstreetmap.org/wiki/Key:sidewalk:right) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sidewalk:right%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sidewalk:right%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sidewalk:right#values) [sidewalk:right](https://wiki.openstreetmap.org/wiki/Key:sidewalk:right) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sidewalk:right%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sidewalk:right%3Dno)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sidewalk:right:width#values) [sidewalk:right:width](https://wiki.openstreetmap.org/wiki/Key:sidewalk:right:width) | [length](../SpecialInputElements.md#length) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sidewalk:right:width#values) [sidewalk:right:width](https://wiki.openstreetmap.org/wiki/Key:sidewalk:right:width) | [length](../SpecialInputElements.md#length) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### streetname
|
|
||||||
|
|
||||||
|
|
||||||
|
### streetname
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### left-sidewalk_minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### left-sidewalk_minimap
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### left-has_sidewalk
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### left-has_sidewalk
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is there a sidewalk on this side of the road?**
|
The question is **Is there a sidewalk on this side of the road?**
|
||||||
|
|
||||||
|
- **Yes, there is a sidewalk on this side of the road** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:sidewalk:left' target='_blank'>sidewalk:left</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sidewalk:left%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **No, there is no seperated sidewalk to walk on** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:sidewalk:left' target='_blank'>sidewalk:left</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sidewalk:left%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### left-sidewalk_width
|
||||||
|
|
||||||
|
|
||||||
- **Yes, there is a sidewalk on this side of the road** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sidewalk:left' target='_blank'>sidewalk:left</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sidewalk:left%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **No, there is no seperated sidewalk to walk on** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sidewalk:left' target='_blank'>sidewalk:left</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sidewalk:left%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### left-sidewalk_width
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the width of the sidewalk on this side of the road?**
|
The question is **What is the width of the sidewalk on this side of the road?**
|
||||||
|
|
||||||
This rendering asks information about the property [sidewalk:left:width](https://wiki.openstreetmap.org/wiki/Key:sidewalk:left:width)
|
This rendering asks information about the
|
||||||
|
property [sidewalk:left:width](https://wiki.openstreetmap.org/wiki/Key:sidewalk:left:width)
|
||||||
This is rendered with `This sidewalk is {sidewalk:left:width}m wide`
|
This is rendered with `This sidewalk is {sidewalk:left:width}m wide`
|
||||||
|
|
||||||
|
### questions
|
||||||
|
|
||||||
### questions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### right-sidewalk_minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### right-sidewalk_minimap
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### right-has_sidewalk
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### right-has_sidewalk
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is there a sidewalk on this side of the road?**
|
The question is **Is there a sidewalk on this side of the road?**
|
||||||
|
|
||||||
|
- **Yes, there is a sidewalk on this side of the road** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:sidewalk:right' target='_blank'>sidewalk:right</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sidewalk:right%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **No, there is no seperated sidewalk to walk on** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:sidewalk:right' target='_blank'>sidewalk:right</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sidewalk:right%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### right-sidewalk_width
|
||||||
|
|
||||||
|
|
||||||
- **Yes, there is a sidewalk on this side of the road** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sidewalk:right' target='_blank'>sidewalk:right</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sidewalk:right%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **No, there is no seperated sidewalk to walk on** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sidewalk:right' target='_blank'>sidewalk:right</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sidewalk:right%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### right-sidewalk_width
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the width of the sidewalk on this side of the road?**
|
The question is **What is the width of the sidewalk on this side of the road?**
|
||||||
|
|
||||||
This rendering asks information about the property [sidewalk:right:width](https://wiki.openstreetmap.org/wiki/Key:sidewalk:right:width)
|
This rendering asks information about the
|
||||||
|
property [sidewalk:right:width](https://wiki.openstreetmap.org/wiki/Key:sidewalk:right:width)
|
||||||
This is rendered with `This sidewalk is {sidewalk:right:width}m wide`
|
This is rendered with `This sidewalk is {sidewalk:right:width}m wide`
|
||||||
|
|
||||||
|
### questions
|
||||||
|
|
||||||
### questions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/sidewalks/sidewalks.json
|
This document is autogenerated from assets/layers/sidewalks/sidewalks.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
slow_roads
|
||||||
|
|
||||||
slow_roads
|
|
||||||
============
|
============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,129 +7,125 @@
|
||||||
|
|
||||||
All carfree roads
|
All carfree roads
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [slow_roads](#slow_roads)
|
1. [slow_roads](#slow_roads)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [explanation](#explanation)
|
+ [explanation](#explanation)
|
||||||
+ [slow_roads-surface](#slow_roads-surface)
|
+ [slow_roads-surface](#slow_roads-surface)
|
||||||
+ [slow_road_is_lit](#slow_road_is_lit)
|
+ [slow_road_is_lit](#slow_road_is_lit)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/slow_roads/slow_roads.json)
|
[Go to the source code](../assets/layers/slow_roads/slow_roads.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpedestrian' target='_blank'>pedestrian</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway' target='_blank'>footway</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath' target='_blank'>path</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dbridleway' target='_blank'>bridleway</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street' target='_blank'>living_street</a>
|
||||||
|
|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrack' target='_blank'>track</a>
|
||||||
|
- access!~^no$
|
||||||
|
- access!~^private$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpedestrian' target='_blank'>pedestrian</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway' target='_blank'>footway</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath' target='_blank'>path</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dbridleway' target='_blank'>bridleway</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street' target='_blank'>living_street</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrack' target='_blank'>track</a>
|
|
||||||
- access!~^no$
|
|
||||||
- access!~^private$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/highway#values) [highway](https://wiki.openstreetmap.org/wiki/Key:highway) | Multiple choice | [living_street](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street) [pedestrian](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpedestrian) [footway](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway) [path](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath) [bridleway](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dbridleway) [track](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrack)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/highway#values) [highway](https://wiki.openstreetmap.org/wiki/Key:highway) | Multiple choice | [living_street](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street) [pedestrian](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpedestrian) [footway](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway) [path](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath) [bridleway](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dbridleway) [track](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrack)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/surface#values) [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [grass](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass) [ground](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/surface#values) [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [grass](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass) [ground](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### explanation
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### explanation
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
- **<div class='flex'><img src='./assets/layers/slow_roads/woonerf.svg' style='width: 150px; height: auto; margin-right: 0.5em;' /> <div>
|
||||||
|
Dit is een woonerf: <ul><li>Voetgangers mogen hier de volledige breedte van de straat gebruiken</li><li>Gemotoriseerd
|
||||||
|
verkeer mag maximaal <b>20km/h</b> rijden</li></ul></div></div>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street' target='_blank'>living_street</a>
|
||||||
|
- **Dit is een brede, autovrije straat** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpedestrian' target='_blank'>pedestrian</a>
|
||||||
|
- **Dit is een voetpaadje** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>
|
||||||
|
highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway' target='_blank'>footway</a>
|
||||||
|
- **Dit is een wegeltje of bospad** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath' target='_blank'>path</a>
|
||||||
|
- **Dit is een ruiterswegel** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dbridleway' target='_blank'>bridleway</a>
|
||||||
|
- **Dit is een tractorspoor of weg om landbouwgrond te bereikken** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrack' target='_blank'>track</a>
|
||||||
|
|
||||||
|
### slow_roads-surface
|
||||||
|
|
||||||
|
|
||||||
- **<div class='flex'><img src='./assets/layers/slow_roads/woonerf.svg' style='width: 150px; height: auto; margin-right: 0.5em;' /> <div> Dit is een woonerf: <ul><li>Voetgangers mogen hier de volledige breedte van de straat gebruiken</li><li>Gemotoriseerd verkeer mag maximaal <b>20km/h</b> rijden</li></ul></div></div>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street' target='_blank'>living_street</a>
|
|
||||||
- **Dit is een brede, autovrije straat** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpedestrian' target='_blank'>pedestrian</a>
|
|
||||||
- **Dit is een voetpaadje** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway' target='_blank'>footway</a>
|
|
||||||
- **Dit is een wegeltje of bospad** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath' target='_blank'>path</a>
|
|
||||||
- **Dit is een ruiterswegel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dbridleway' target='_blank'>bridleway</a>
|
|
||||||
- **Dit is een tractorspoor of weg om landbouwgrond te bereikken** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrack' target='_blank'>track</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### slow_roads-surface
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Wat is de wegverharding van dit pad?**
|
The question is **Wat is de wegverharding van dit pad?**
|
||||||
|
|
||||||
This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface)
|
This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface)
|
||||||
This is rendered with `The surface is <b>{surface}</b>`
|
This is rendered with `The surface is <b>{surface}</b>`
|
||||||
|
|
||||||
|
- **The surface is <b>grass</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass' target='_blank'>grass</a>
|
||||||
|
- **The surface is <b>ground</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground' target='_blank'>ground</a>
|
||||||
|
- **The surface is <b>unpaved</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
- **The surface is <b>sand</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand' target='_blank'>sand</a>
|
||||||
|
- **The surface is <b>paving stones</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
||||||
|
- **The surface is <b>asphalt</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>
|
||||||
|
- **The surface is <b>concrete</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>
|
||||||
|
- **The surface is <b>paved</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>_This option cannot be
|
||||||
|
chosen as answer_
|
||||||
|
|
||||||
|
### slow_road_is_lit
|
||||||
- **The surface is <b>grass</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass' target='_blank'>grass</a>
|
|
||||||
- **The surface is <b>ground</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground' target='_blank'>ground</a>
|
|
||||||
- **The surface is <b>unpaved</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>_This option cannot be chosen as answer_
|
|
||||||
- **The surface is <b>sand</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand' target='_blank'>sand</a>
|
|
||||||
- **The surface is <b>paving stones</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
|
||||||
- **The surface is <b>asphalt</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>
|
|
||||||
- **The surface is <b>concrete</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>
|
|
||||||
- **The surface is <b>paved</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### slow_road_is_lit
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is deze weg 's nachts verlicht?**
|
The question is **Is deze weg 's nachts verlicht?**
|
||||||
|
|
||||||
|
- **'s nachts verlicht** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Niet verlicht** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
||||||
- **'s nachts verlicht** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Niet verlicht** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/slow_roads/slow_roads.json
|
This document is autogenerated from assets/layers/slow_roads/slow_roads.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
split_point
|
||||||
|
|
||||||
split_point
|
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,43 +7,30 @@
|
||||||
|
|
||||||
Layer rendering the little scissors for the minimap in the 'splitRoadWizard'
|
Layer rendering the little scissors for the minimap in the 'splitRoadWizard'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [split_point](#split_point)
|
1. [split_point](#split_point)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/split_point/split_point.json)
|
[Go to the source code](../assets/layers/split_point/split_point.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:_split_point' target='_blank'>_split_point</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:_split_point%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:_split_point' target='_blank'>_split_point</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_split_point%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/split_point/split_point.json
|
This document is autogenerated from assets/layers/split_point/split_point.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
sport_pitch
|
||||||
|
|
||||||
sport_pitch
|
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A sport pitch
|
A sport pitch
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [sport_pitch](#sport_pitch)
|
1. [sport_pitch](#sport_pitch)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [sport_pitch-sport](#sport_pitch-sport)
|
+ [sport_pitch-sport](#sport_pitch-sport)
|
||||||
+ [sport_pitch-surface](#sport_pitch-surface)
|
+ [sport_pitch-surface](#sport_pitch-surface)
|
||||||
|
@ -29,207 +25,158 @@ A sport pitch
|
||||||
+ [questions](#questions)
|
+ [questions](#questions)
|
||||||
+ [sport-pitch-reviews](#sport-pitch-reviews)
|
+ [sport-pitch-reviews](#sport-pitch-reviews)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
- [sport_pitches](https://mapcomplete.osm.be/sport_pitches)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
- [sport_pitches](https://mapcomplete.osm.be/sport_pitches)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/sport_pitch/sport_pitch.json)
|
[Go to the source code](../assets/layers/sport_pitch/sport_pitch.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <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>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sport#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sport#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/surface#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/surface#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [public](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [public](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/reservation#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/reservation#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [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)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### sport_pitch-sport
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### sport_pitch-sport
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Which sport can be played here?**
|
The question is **Which sport can be played here?**
|
||||||
|
|
||||||
This rendering asks information about the property [sport](https://wiki.openstreetmap.org/wiki/Key:sport)
|
This rendering asks information about the property [sport](https://wiki.openstreetmap.org/wiki/Key:sport)
|
||||||
This is rendered with `{sport} is played here`
|
This is rendered with `{sport} is played here`
|
||||||
|
|
||||||
|
- **Basketball is played here** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbasketball' target='_blank'>basketball</a>
|
||||||
|
- **Soccer is played here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>
|
||||||
|
sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsoccer' target='_blank'>soccer</a>
|
||||||
|
- **This is a pingpong table** corresponds with <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>
|
||||||
|
- **Tennis is played here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>
|
||||||
|
sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtennis' target='_blank'>tennis</a>
|
||||||
|
- **Korfball is played here** corresponds 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** corresponds
|
||||||
|
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_
|
||||||
|
|
||||||
|
### sport_pitch-surface
|
||||||
- **Basketball is played here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbasketball' target='_blank'>basketball</a>
|
|
||||||
- **Soccer is played here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsoccer' target='_blank'>soccer</a>
|
|
||||||
- **This is a pingpong table** corresponds with <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>
|
|
||||||
- **Tennis is played here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtennis' target='_blank'>tennis</a>
|
|
||||||
- **Korfball is played here** corresponds 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** corresponds 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_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### sport_pitch-surface
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Which is the surface of this sport pitch?**
|
The question is **Which is the surface of this sport pitch?**
|
||||||
|
|
||||||
This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface)
|
This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface)
|
||||||
This is rendered with `The surface is <b>{surface}</b>`
|
This is rendered with `The surface is <b>{surface}</b>`
|
||||||
|
|
||||||
|
- **The surface is <b>grass</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass' target='_blank'>grass</a>
|
||||||
|
- **The surface is <b>sand</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand' target='_blank'>sand</a>
|
||||||
|
- **The surface is <b>paving stones</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
||||||
|
- **The surface is <b>asphalt</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>
|
||||||
|
- **The surface is <b>concrete</b>** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>
|
||||||
|
|
||||||
|
### sport-pitch-access
|
||||||
- **The surface is <b>grass</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass' target='_blank'>grass</a>
|
|
||||||
- **The surface is <b>sand</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand' target='_blank'>sand</a>
|
|
||||||
- **The surface is <b>paving stones</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
|
||||||
- **The surface is <b>asphalt</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>
|
|
||||||
- **The surface is <b>concrete</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### sport-pitch-access
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is this sport pitch publicly accessible?**
|
The question is **Is this sport pitch publicly accessible?**
|
||||||
|
|
||||||
|
- **Public access** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>
|
||||||
|
- **Limited access (e.g. only with an appointment, during certain hours, ...)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dlimited' target='_blank'>limited</a>
|
||||||
|
- **Only accessible for members of the club** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers' target='_blank'>members</a>
|
||||||
|
- **Private - not accessible to the public** corresponds
|
||||||
|
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>
|
||||||
|
|
||||||
|
### sport-pitch-reservation
|
||||||
|
|
||||||
|
|
||||||
- **Public access** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>
|
|
||||||
- **Limited access (e.g. only with an appointment, during certain hours, ...)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dlimited' target='_blank'>limited</a>
|
|
||||||
- **Only accessible for members of the club** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers' target='_blank'>members</a>
|
|
||||||
- **Private - not accessible to the public** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### sport-pitch-reservation
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Does one have to make an appointment to use this sport pitch?**
|
The question is **Does one have to make an appointment to use this sport pitch?**
|
||||||
|
|
||||||
|
- **Making an appointment is obligatory to use this sport pitch** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:reservation' target='_blank'>reservation</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired' target='_blank'>required</a>
|
||||||
|
- **Making an appointment is recommended when using this sport pitch** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:reservation' target='_blank'>reservation</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended' target='_blank'>recommended</a>
|
||||||
|
- **Making an appointment is possible, but not necessary to use this sport pitch** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:reservation' target='_blank'>reservation</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes' target='_blank'>yes</a>
|
||||||
|
- **Making an appointment is not possible** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:reservation' target='_blank'>reservation</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
### sport_pitch-phone
|
||||||
|
|
||||||
|
|
||||||
- **Making an appointment is obligatory to use this sport pitch** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reservation' target='_blank'>reservation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired' target='_blank'>required</a>
|
|
||||||
- **Making an appointment is recommended when using this sport pitch** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reservation' target='_blank'>reservation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended' target='_blank'>recommended</a>
|
|
||||||
- **Making an appointment is possible, but not necessary to use this sport pitch** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reservation' target='_blank'>reservation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **Making an appointment is not possible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reservation' target='_blank'>reservation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### sport_pitch-phone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the phone number of the operator?**
|
The question is **What is the phone number of the operator?**
|
||||||
|
|
||||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
### sport_pitch-email
|
||||||
|
|
||||||
### sport_pitch-email
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What is the email address of the operator?**
|
The question is **What is the email address of the operator?**
|
||||||
|
|
||||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
### sport_pitch-opening_hours
|
||||||
|
|
||||||
### sport_pitch-opening_hours
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When is this pitch accessible?**
|
The question is **When is this pitch accessible?**
|
||||||
|
|
||||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
This rendering asks information about the
|
||||||
|
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
This is rendered with `Openingsuren: {opening_hours_table()}`
|
This is rendered with `Openingsuren: {opening_hours_table()}`
|
||||||
|
|
||||||
|
- **24/7 toegankelijk** corresponds with _This option cannot be chosen as answer_
|
||||||
|
- **Always accessible** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||||
|
|
||||||
|
### questions
|
||||||
- **24/7 toegankelijk** corresponds with _This option cannot be chosen as answer_
|
|
||||||
- **Always accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### questions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### sport-pitch-reviews
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### sport-pitch-reviews
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/sport_pitch/sport_pitch.json
|
This document is autogenerated from assets/layers/sport_pitch/sport_pitch.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
street_lamps
|
||||||
|
|
||||||
street_lamps
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
A layer showing street lights
|
A layer showing street lights
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [street_lamps](#street_lamps)
|
1. [street_lamps](#street_lamps)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [ref](#ref)
|
+ [ref](#ref)
|
||||||
+ [support](#support)
|
+ [support](#support)
|
||||||
+ [lamp_mount](#lamp_mount)
|
+ [lamp_mount](#lamp_mount)
|
||||||
|
@ -27,200 +23,185 @@ A layer showing street lights
|
||||||
+ [lit](#lit)
|
+ [lit](#lit)
|
||||||
+ [direction](#direction)
|
+ [direction](#direction)
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
- [street_lighting](https://mapcomplete.osm.be/street_lighting)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
- [street_lighting](https://mapcomplete.osm.be/street_lighting)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/street_lamps/street_lamps.json)
|
[Go to the source code](../assets/layers/street_lamps/street_lamps.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dstreet_lamp' target='_blank'>street_lamp</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dstreet_lamp' target='_blank'>street_lamp</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/support#values) [support](https://wiki.openstreetmap.org/wiki/Key:support) | Multiple choice | [catenary](https://wiki.openstreetmap.org/wiki/Tag:support%3Dcatenary) [ceiling](https://wiki.openstreetmap.org/wiki/Tag:support%3Dceiling) [ground](https://wiki.openstreetmap.org/wiki/Tag:support%3Dground) [pedestal](https://wiki.openstreetmap.org/wiki/Tag:support%3Dpedestal) [pole](https://wiki.openstreetmap.org/wiki/Tag:support%3Dpole) [wall](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall) [wall_mount](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mount)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/support#values) [support](https://wiki.openstreetmap.org/wiki/Key:support) | Multiple choice | [catenary](https://wiki.openstreetmap.org/wiki/Tag:support%3Dcatenary) [ceiling](https://wiki.openstreetmap.org/wiki/Tag:support%3Dceiling) [ground](https://wiki.openstreetmap.org/wiki/Tag:support%3Dground) [pedestal](https://wiki.openstreetmap.org/wiki/Tag:support%3Dpedestal) [pole](https://wiki.openstreetmap.org/wiki/Tag:support%3Dpole) [wall](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall) [wall_mount](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mount)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/lamp_mount#values) [lamp_mount](https://wiki.openstreetmap.org/wiki/Key:lamp_mount) | Multiple choice | [straight_mast](https://wiki.openstreetmap.org/wiki/Tag:lamp_mount%3Dstraight_mast) [bent_mast](https://wiki.openstreetmap.org/wiki/Tag:lamp_mount%3Dbent_mast)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/lamp_mount#values) [lamp_mount](https://wiki.openstreetmap.org/wiki/Key:lamp_mount) | Multiple choice | [straight_mast](https://wiki.openstreetmap.org/wiki/Tag:lamp_mount%3Dstraight_mast) [bent_mast](https://wiki.openstreetmap.org/wiki/Tag:lamp_mount%3Dbent_mast)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/light:method#values) [light:method](https://wiki.openstreetmap.org/wiki/Key:light:method) | Multiple choice | [LED](https://wiki.openstreetmap.org/wiki/Tag:light:method%3DLED) [incandescent](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dincandescent) [halogen](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dhalogen) [discharge](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Ddischarge) [mercury](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dmercury) [metal-halide](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dmetal-halide) [fluorescent](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dfluorescent) [sodium](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dsodium) [low_pressure_sodium](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dlow_pressure_sodium) [high_pressure_sodium](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dhigh_pressure_sodium) [gas](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dgas)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/light:method#values) [light:method](https://wiki.openstreetmap.org/wiki/Key:light:method) | Multiple choice | [LED](https://wiki.openstreetmap.org/wiki/Tag:light:method%3DLED) [incandescent](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dincandescent) [halogen](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dhalogen) [discharge](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Ddischarge) [mercury](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dmercury) [metal-halide](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dmetal-halide) [fluorescent](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dfluorescent) [sodium](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dsodium) [low_pressure_sodium](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dlow_pressure_sodium) [high_pressure_sodium](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dhigh_pressure_sodium) [gas](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dgas)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/light:colour#values) [light:colour](https://wiki.openstreetmap.org/wiki/Key:light:colour) | [color](../SpecialInputElements.md#color) | [white](https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dwhite) [green](https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dgreen) [orange](https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dorange)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/light:colour#values) [light:colour](https://wiki.openstreetmap.org/wiki/Key:light:colour) | [color](../SpecialInputElements.md#color) | [white](https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dwhite) [green](https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dgreen) [orange](https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dorange)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/light:count#values) [light:count](https://wiki.openstreetmap.org/wiki/Key:light:count) | [pnat](../SpecialInputElements.md#pnat) | [1](https://wiki.openstreetmap.org/wiki/Tag:light:count%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:light:count%3D2)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/light:count#values) [light:count](https://wiki.openstreetmap.org/wiki/Key:light:count) | [pnat](../SpecialInputElements.md#pnat) | [1](https://wiki.openstreetmap.org/wiki/Tag:light:count%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:light:count%3D2)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/light:lit#values) [light:lit](https://wiki.openstreetmap.org/wiki/Key:light:lit) | Multiple choice | [dusk-dawn](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Ddusk-dawn) [24/7](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3D24/7) [motion](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Dmotion) [demand](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Ddemand)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/light:lit#values) [light:lit](https://wiki.openstreetmap.org/wiki/Key:light:lit) | Multiple choice | [dusk-dawn](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Ddusk-dawn) [24/7](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3D24/7) [motion](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Dmotion) [demand](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Ddemand)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/light:direction#values) [light:direction](https://wiki.openstreetmap.org/wiki/Key:light:direction) | [direction](../SpecialInputElements.md#direction) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/light:direction#values) [light:direction](https://wiki.openstreetmap.org/wiki/Key:light:direction) | [direction](../SpecialInputElements.md#direction) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### ref
|
|
||||||
|
|
||||||
|
|
||||||
|
### ref
|
||||||
|
|
||||||
The question is **What is the reference number of this street lamp?**
|
The question is **What is the reference number of this street lamp?**
|
||||||
|
|
||||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||||
This is rendered with `This street lamp has the reference number {ref}`
|
This is rendered with `This street lamp has the reference number {ref}`
|
||||||
|
|
||||||
|
### support
|
||||||
|
|
||||||
### support
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How is this street lamp mounted?**
|
The question is **How is this street lamp mounted?**
|
||||||
|
|
||||||
|
- **This lamp is suspended using cables** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dcatenary' target='_blank'>catenary</a>
|
||||||
|
- **This lamp is mounted on a ceiling** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dceiling' target='_blank'>ceiling</a>
|
||||||
|
- **This lamp is mounted in the ground** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dground' target='_blank'>ground</a>
|
||||||
|
- **This lamp is mounted on a short pole (mostly < 1.5m)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dpedestal' target='_blank'>pedestal</a>
|
||||||
|
- **This lamp is mounted on a pole** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dpole' target='_blank'>pole</a>
|
||||||
|
- **This lamp is mounted directly to the wall** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall' target='_blank'>wall</a>
|
||||||
|
- **This lamp is mounted to the wall using a metal bar** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mount' target='_blank'>wall_mount</a>
|
||||||
|
|
||||||
|
### lamp_mount
|
||||||
|
|
||||||
|
|
||||||
- **This lamp is suspended using cables** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dcatenary' target='_blank'>catenary</a>
|
|
||||||
- **This lamp is mounted on a ceiling** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dceiling' target='_blank'>ceiling</a>
|
|
||||||
- **This lamp is mounted in the ground** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dground' target='_blank'>ground</a>
|
|
||||||
- **This lamp is mounted on a short pole (mostly < 1.5m)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dpedestal' target='_blank'>pedestal</a>
|
|
||||||
- **This lamp is mounted on a pole** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dpole' target='_blank'>pole</a>
|
|
||||||
- **This lamp is mounted directly to the wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall' target='_blank'>wall</a>
|
|
||||||
- **This lamp is mounted to the wall using a metal bar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mount' target='_blank'>wall_mount</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### lamp_mount
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How is this lamp mounted to the pole?**
|
The question is **How is this lamp mounted to the pole?**
|
||||||
|
|
||||||
|
- **This lamp sits atop of a straight mast** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:lamp_mount' target='_blank'>lamp_mount</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lamp_mount%3Dstraight_mast' target='_blank'>straight_mast</a>
|
||||||
|
- **This lamp sits at the end of a bent mast** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:lamp_mount' target='_blank'>lamp_mount</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lamp_mount%3Dbent_mast' target='_blank'>bent_mast</a>
|
||||||
|
|
||||||
|
### method
|
||||||
|
|
||||||
|
|
||||||
- **This lamp sits atop of a straight mast** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lamp_mount' target='_blank'>lamp_mount</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lamp_mount%3Dstraight_mast' target='_blank'>straight_mast</a>
|
|
||||||
- **This lamp sits at the end of a bent mast** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lamp_mount' target='_blank'>lamp_mount</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lamp_mount%3Dbent_mast' target='_blank'>bent_mast</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### method
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What kind of lighting does this lamp use?**
|
The question is **What kind of lighting does this lamp use?**
|
||||||
|
|
||||||
|
- **This lamp is lit electrically** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Delectric' target='_blank'>electric</a>_This option
|
||||||
|
cannot be chosen as answer_
|
||||||
|
- **This lamp uses LEDs** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3DLED' target='_blank'>LED</a>
|
||||||
|
- **This lamp uses incandescent lighting** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dincandescent' target='_blank'>incandescent</a>
|
||||||
|
- **This lamp uses halogen lighting** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dhalogen' target='_blank'>halogen</a>
|
||||||
|
- **This lamp uses discharge lamps (unknown type)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Ddischarge' target='_blank'>discharge</a>
|
||||||
|
- **This lamp uses a mercury-vapour lamp (lightly blueish)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dmercury' target='_blank'>mercury</a>
|
||||||
|
- **This lamp uses metal-halide lamps (bright white)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dmetal-halide' target='_blank'>metal-halide</a>
|
||||||
|
- **This lamp uses fluorescent lighting** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dfluorescent' target='_blank'>fluorescent</a>
|
||||||
|
- **This lamp uses sodium lamps (unknown type)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dsodium' target='_blank'>sodium</a>
|
||||||
|
- **This lamp uses low pressure sodium lamps (monochrome orange)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dlow_pressure_sodium' target='_blank'>
|
||||||
|
low_pressure_sodium</a>
|
||||||
|
- **This lamp uses high pressure sodium lamps (orange with white)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dhigh_pressure_sodium' target='_blank'>
|
||||||
|
high_pressure_sodium</a>
|
||||||
|
- **This lamp is lit using gas** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dgas' target='_blank'>gas</a>
|
||||||
|
|
||||||
|
### colour
|
||||||
|
|
||||||
|
|
||||||
- **This lamp is lit electrically** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Delectric' target='_blank'>electric</a>_This option cannot be chosen as answer_
|
|
||||||
- **This lamp uses LEDs** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3DLED' target='_blank'>LED</a>
|
|
||||||
- **This lamp uses incandescent lighting** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dincandescent' target='_blank'>incandescent</a>
|
|
||||||
- **This lamp uses halogen lighting** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dhalogen' target='_blank'>halogen</a>
|
|
||||||
- **This lamp uses discharge lamps (unknown type)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Ddischarge' target='_blank'>discharge</a>
|
|
||||||
- **This lamp uses a mercury-vapour lamp (lightly blueish)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dmercury' target='_blank'>mercury</a>
|
|
||||||
- **This lamp uses metal-halide lamps (bright white)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dmetal-halide' target='_blank'>metal-halide</a>
|
|
||||||
- **This lamp uses fluorescent lighting** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dfluorescent' target='_blank'>fluorescent</a>
|
|
||||||
- **This lamp uses sodium lamps (unknown type)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dsodium' target='_blank'>sodium</a>
|
|
||||||
- **This lamp uses low pressure sodium lamps (monochrome orange)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dlow_pressure_sodium' target='_blank'>low_pressure_sodium</a>
|
|
||||||
- **This lamp uses high pressure sodium lamps (orange with white)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dhigh_pressure_sodium' target='_blank'>high_pressure_sodium</a>
|
|
||||||
- **This lamp is lit using gas** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:method' target='_blank'>light:method</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dgas' target='_blank'>gas</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### colour
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What colour light does this lamp emit?**
|
The question is **What colour light does this lamp emit?**
|
||||||
|
|
||||||
This rendering asks information about the property [light:colour](https://wiki.openstreetmap.org/wiki/Key:light:colour)
|
This rendering asks information about the property [light:colour](https://wiki.openstreetmap.org/wiki/Key:light:colour)
|
||||||
This is rendered with `This lamp emits {light:colour} light`
|
This is rendered with `This lamp emits {light:colour} light`
|
||||||
|
|
||||||
|
- **This lamp emits white light** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:colour' target='_blank'>light:colour</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dwhite' target='_blank'>white</a>
|
||||||
|
- **This lamp emits green light** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:colour' target='_blank'>light:colour</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dgreen' target='_blank'>green</a>
|
||||||
|
- **This lamp emits orange light** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:colour' target='_blank'>light:colour</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dorange' target='_blank'>orange</a>
|
||||||
|
|
||||||
|
### count
|
||||||
- **This lamp emits white light** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:colour' target='_blank'>light:colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dwhite' target='_blank'>white</a>
|
|
||||||
- **This lamp emits green light** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:colour' target='_blank'>light:colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dgreen' target='_blank'>green</a>
|
|
||||||
- **This lamp emits orange light** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:colour' target='_blank'>light:colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dorange' target='_blank'>orange</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### count
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How many fixtures does this light have?**
|
The question is **How many fixtures does this light have?**
|
||||||
|
|
||||||
This rendering asks information about the property [light:count](https://wiki.openstreetmap.org/wiki/Key:light:count)
|
This rendering asks information about the property [light:count](https://wiki.openstreetmap.org/wiki/Key:light:count)
|
||||||
This is rendered with `This lamp has {light:count} fixtures`
|
This is rendered with `This lamp has {light:count} fixtures`
|
||||||
|
|
||||||
|
- **This lamp has 1 fixture** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:count' target='_blank'>light:count</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:count%3D1' target='_blank'>1</a>
|
||||||
|
- **This lamp has 2 fixtures** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:count' target='_blank'>light:count</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:count%3D2' target='_blank'>2</a>
|
||||||
|
|
||||||
|
### lit
|
||||||
- **This lamp has 1 fixture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:count' target='_blank'>light:count</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:count%3D1' target='_blank'>1</a>
|
|
||||||
- **This lamp has 2 fixtures** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:count' target='_blank'>light:count</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:count%3D2' target='_blank'>2</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### lit
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **When is this lamp lit?**
|
The question is **When is this lamp lit?**
|
||||||
|
|
||||||
|
- **This lamp is lit at night** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:lit' target='_blank'>light:lit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Ddusk-dawn' target='_blank'>dusk-dawn</a>
|
||||||
|
- **This lamp is lit 24/7** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:lit' target='_blank'>light:lit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:lit%3D24/7' target='_blank'>24/7</a>
|
||||||
|
- **This lamp is lit based on motion** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:lit' target='_blank'>light:lit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Dmotion' target='_blank'>motion</a>
|
||||||
|
- **This lamp is lit based on demand (e.g. with a pushbutton)** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:light:lit' target='_blank'>light:lit</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Ddemand' target='_blank'>demand</a>
|
||||||
|
|
||||||
|
### direction
|
||||||
|
|
||||||
|
|
||||||
- **This lamp is lit at night** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:lit' target='_blank'>light:lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Ddusk-dawn' target='_blank'>dusk-dawn</a>
|
|
||||||
- **This lamp is lit 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:lit' target='_blank'>light:lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:lit%3D24/7' target='_blank'>24/7</a>
|
|
||||||
- **This lamp is lit based on motion** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:lit' target='_blank'>light:lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Dmotion' target='_blank'>motion</a>
|
|
||||||
- **This lamp is lit based on demand (e.g. with a pushbutton)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:light:lit' target='_blank'>light:lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Ddemand' target='_blank'>demand</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### direction
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Where does this lamp point to?**
|
The question is **Where does this lamp point to?**
|
||||||
|
|
||||||
This rendering asks information about the property [light:direction](https://wiki.openstreetmap.org/wiki/Key:light:direction)
|
This rendering asks information about the
|
||||||
This is rendered with `This lamp points towards {light:direction}`
|
property [light:direction](https://wiki.openstreetmap.org/wiki/Key:light:direction)
|
||||||
|
This is rendered with `This lamp points towards {light:direction}`
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/street_lamps/street_lamps.json
|
This document is autogenerated from assets/layers/street_lamps/street_lamps.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
surveillance_camera
|
||||||
|
|
||||||
surveillance_camera
|
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,15 +7,13 @@
|
||||||
|
|
||||||
This layer shows surveillance cameras and allows a contributor to update information and add new cameras
|
This layer shows surveillance cameras and allows a contributor to update information and add new cameras
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [surveillance_camera](#surveillance_camera)
|
1. [surveillance_camera](#surveillance_camera)
|
||||||
* [Themes using this layer](#themes-using-this-layer)
|
* [Themes using this layer](#themes-using-this-layer)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [images](#images)
|
+ [images](#images)
|
||||||
+ [Camera type: fixed; panning; dome](#camera-type-fixed;-panning;-dome)
|
+ [Camera type: fixed; panning; dome](#camera-type-fixed;-panning;-dome)
|
||||||
+ [camera_direction](#camera_direction)
|
+ [camera_direction](#camera_direction)
|
||||||
|
@ -29,200 +25,162 @@ This layer shows surveillance cameras and allows a contributor to update informa
|
||||||
+ [camera:mount](#cameramount)
|
+ [camera:mount](#cameramount)
|
||||||
|
|
||||||
|
|
||||||
|
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on
|
||||||
|
it: a preset snaps to this layer (presets[1])
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1])
|
- [surveillance](https://mapcomplete.osm.be/surveillance)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Themes using this layer
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [personal](https://mapcomplete.osm.be/personal)
|
|
||||||
- [surveillance](https://mapcomplete.osm.be/surveillance)
|
|
||||||
|
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/surveillance_camera/surveillance_camera.json)
|
[Go to the source code](../assets/layers/surveillance_camera/surveillance_camera.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- <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%3Dsurveillance' target='_blank'>surveillance</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>
|
||||||
|
|<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%3DANPR' target='_blank'>ANPR</a>
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- <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%3Dsurveillance' target='_blank'>surveillance</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>|<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%3DANPR' target='_blank'>ANPR</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/camera:type#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/camera:type#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/camera:direction#values) [camera:direction](https://wiki.openstreetmap.org/wiki/Key:camera:direction) | [direction](../SpecialInputElements.md#direction) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/camera:direction#values) [camera:direction](https://wiki.openstreetmap.org/wiki/Key:camera:direction) | [direction](../SpecialInputElements.md#direction) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/surveillance#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/surveillance#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/indoor#values) [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)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/indoor#values) [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)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [nat](../SpecialInputElements.md#nat) |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [nat](../SpecialInputElements.md#nat) |
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/surveillance:zone#values) [surveillance:zone](https://wiki.openstreetmap.org/wiki/Key:surveillance:zone) | [string](../SpecialInputElements.md#string) | [parking](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dparking) [traffic](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dtraffic) [entrance](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dentrance) [corridor](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dcorridor) [public_transport_platform](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dpublic_transport_platform) [shop](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dshop)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/surveillance:zone#values) [surveillance:zone](https://wiki.openstreetmap.org/wiki/Key:surveillance:zone) | [string](../SpecialInputElements.md#string) | [parking](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dparking) [traffic](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dtraffic) [entrance](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dentrance) [corridor](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dcorridor) [public_transport_platform](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dpublic_transport_platform) [shop](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dshop)
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/camera:mount#values) [camera:mount](https://wiki.openstreetmap.org/wiki/Key:camera:mount) | [string](../SpecialInputElements.md#string) | [wall](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dwall) [pole](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dpole) [ceiling](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dceiling)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/camera:mount#values) [camera:mount](https://wiki.openstreetmap.org/wiki/Key:camera:mount) | [string](../SpecialInputElements.md#string) | [wall](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dwall) [pole](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dpole) [ceiling](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dceiling)
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
### images
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### Camera type: fixed; panning; dome
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Camera type: fixed; panning; dome
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What kind of camera is this?**
|
The question is **What kind of camera is this?**
|
||||||
|
|
||||||
|
- **A fixed (non-moving) camera** corresponds
|
||||||
|
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>
|
||||||
|
- **A dome camera (which can turn)** corresponds
|
||||||
|
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** corresponds 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>
|
||||||
|
|
||||||
|
### camera_direction
|
||||||
|
|
||||||
|
|
||||||
- **A fixed (non-moving) camera** corresponds 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>
|
|
||||||
- **A dome camera (which can turn)** corresponds 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** corresponds 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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### camera_direction
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **In which geographical direction does this camera film?**
|
The question is **In which geographical direction does this camera film?**
|
||||||
|
|
||||||
This rendering asks information about the property [camera:direction](https://wiki.openstreetmap.org/wiki/Key:camera:direction)
|
This rendering asks information about the
|
||||||
|
property [camera:direction](https://wiki.openstreetmap.org/wiki/Key:camera:direction)
|
||||||
This is rendered with `Films to a compass heading of {camera:direction}`
|
This is rendered with `Films to a compass heading of {camera:direction}`
|
||||||
|
|
||||||
|
- **Films to a compass heading of {direction}** corresponds with direction~^..*$_This option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### Operator
|
||||||
- **Films to a compass heading of {direction}** corresponds with direction~^..*$_This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Operator
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Who operates this CCTV?**
|
The question is **Who operates this CCTV?**
|
||||||
|
|
||||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
This is rendered with `Operated by {operator}`
|
This is rendered with `Operated by {operator}`
|
||||||
|
|
||||||
|
### Surveillance type: public, outdoor, indoor
|
||||||
|
|
||||||
### Surveillance type: public, outdoor, indoor
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What kind of surveillance is this camera**
|
The question is **What kind of surveillance is this camera**
|
||||||
|
|
||||||
|
- **A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or
|
||||||
|
tunnel,...** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance' target='_blank'>
|
||||||
|
surveillance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Dpublic' target='_blank'>public</a>
|
||||||
|
- **An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private
|
||||||
|
driveway, ...)** corresponds 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, ...** corresponds
|
||||||
|
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
|
||||||
|
|
||||||
|
|
||||||
- **A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel,...** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance' target='_blank'>surveillance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Dpublic' target='_blank'>public</a>
|
|
||||||
- **An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, ...)** corresponds 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, ...** corresponds 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **Is the public space surveilled by this camera an indoor or outdoor space?**
|
The question is **Is the public space surveilled by this camera an indoor or outdoor space?**
|
||||||
|
|
||||||
|
- **This camera is located indoors** corresponds
|
||||||
|
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** corresponds
|
||||||
|
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** corresponds with _This option cannot be chosen as answer_
|
||||||
|
|
||||||
|
### Level
|
||||||
|
|
||||||
|
|
||||||
- **This camera is located indoors** corresponds 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** corresponds 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** corresponds with _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Level
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **On which level is this camera located?**
|
The question is **On which level is this camera located?**
|
||||||
|
|
||||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||||
This is rendered with `Located on level {level}`
|
This is rendered with `Located on level {level}`
|
||||||
|
|
||||||
|
### Surveillance:zone
|
||||||
|
|
||||||
### Surveillance:zone
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **What exactly is surveilled here?**
|
The question is **What exactly is surveilled here?**
|
||||||
|
|
||||||
This rendering asks information about the property [surveillance:zone](https://wiki.openstreetmap.org/wiki/Key:surveillance:zone)
|
This rendering asks information about the
|
||||||
|
property [surveillance:zone](https://wiki.openstreetmap.org/wiki/Key:surveillance:zone)
|
||||||
This is rendered with ` Surveills a {surveillance:zone}`
|
This is rendered with ` Surveills a {surveillance:zone}`
|
||||||
|
|
||||||
|
- **Surveills a parking** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:zone' target='_blank'>surveillance:zone</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dparking' target='_blank'>parking</a>
|
||||||
|
- **Surveills the traffic** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:zone' target='_blank'>surveillance:zone</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dtraffic' target='_blank'>traffic</a>
|
||||||
|
- **Surveills an entrance** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:zone' target='_blank'>surveillance:zone</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dentrance' target='_blank'>entrance</a>
|
||||||
|
- **Surveills a corridor** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:zone' target='_blank'>surveillance:zone</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dcorridor' target='_blank'>corridor</a>
|
||||||
|
- **Surveills a public tranport platform** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:zone' target='_blank'>surveillance:zone</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dpublic_transport_platform' target='_blank'>
|
||||||
|
public_transport_platform</a>
|
||||||
|
- **Surveills a shop** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:zone' target='_blank'>surveillance:zone</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dshop' target='_blank'>shop</a>
|
||||||
|
|
||||||
|
### camera:mount
|
||||||
- **Surveills a parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:zone' target='_blank'>surveillance:zone</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dparking' target='_blank'>parking</a>
|
|
||||||
- **Surveills the traffic** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:zone' target='_blank'>surveillance:zone</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dtraffic' target='_blank'>traffic</a>
|
|
||||||
- **Surveills an entrance** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:zone' target='_blank'>surveillance:zone</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dentrance' target='_blank'>entrance</a>
|
|
||||||
- **Surveills a corridor** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:zone' target='_blank'>surveillance:zone</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dcorridor' target='_blank'>corridor</a>
|
|
||||||
- **Surveills a public tranport platform** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:zone' target='_blank'>surveillance:zone</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dpublic_transport_platform' target='_blank'>public_transport_platform</a>
|
|
||||||
- **Surveills a shop** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surveillance:zone' target='_blank'>surveillance:zone</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dshop' target='_blank'>shop</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### camera:mount
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The question is **How is this camera placed?**
|
The question is **How is this camera placed?**
|
||||||
|
|
||||||
This rendering asks information about the property [camera:mount](https://wiki.openstreetmap.org/wiki/Key:camera:mount)
|
This rendering asks information about the property [camera:mount](https://wiki.openstreetmap.org/wiki/Key:camera:mount)
|
||||||
This is rendered with `Mounting method: {camera:mount}`
|
This is rendered with `Mounting method: {camera:mount}`
|
||||||
|
|
||||||
|
- **This camera is placed against a wall** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:camera:mount' target='_blank'>camera:mount</a>
|
||||||
- **This camera is placed against a wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:camera:mount' target='_blank'>camera:mount</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dwall' target='_blank'>wall</a>
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dwall' target='_blank'>wall</a>
|
||||||
- **This camera is placed one a pole** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:camera:mount' target='_blank'>camera:mount</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dpole' target='_blank'>pole</a>
|
- **This camera is placed one a pole** corresponds
|
||||||
- **This camera is placed on the ceiling** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:camera:mount' target='_blank'>camera:mount</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dceiling' target='_blank'>ceiling</a>
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:camera:mount' target='_blank'>camera:mount</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dpole' target='_blank'>pole</a>
|
||||||
|
- **This camera is placed on the ceiling** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:camera:mount' target='_blank'>camera:mount</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dceiling' target='_blank'>ceiling</a>
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/surveillance_camera/surveillance_camera.json
|
This document is autogenerated from assets/layers/surveillance_camera/surveillance_camera.json
|
|
@ -1,6 +1,4 @@
|
||||||
|
to_import
|
||||||
|
|
||||||
to_import
|
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,94 +7,67 @@
|
||||||
|
|
||||||
Alamat
|
Alamat
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Table of contents
|
## Table of contents
|
||||||
|
|
||||||
1. [to_import](#to_import)
|
1. [to_import](#to_import)
|
||||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
|
||||||
- [Supported attributes](#supported-attributes)
|
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||||
|
- [Supported attributes](#supported-attributes)
|
||||||
+ [uk_addresses_explanation](#uk_addresses_explanation)
|
+ [uk_addresses_explanation](#uk_addresses_explanation)
|
||||||
+ [uk_addresses_embedding_outline](#uk_addresses_embedding_outline)
|
+ [uk_addresses_embedding_outline](#uk_addresses_embedding_outline)
|
||||||
+ [uk_addresses_import_button](#uk_addresses_import_button)
|
+ [uk_addresses_import_button](#uk_addresses_import_button)
|
||||||
|
|
||||||
|
|
||||||
|
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://osm-uk-addresses.russss.dev/addresses/{z}/{x}/{y}.json`
|
||||||
|
- This layer will automatically load [address](./address.md) into the layout as it depends on it: a tagrendering
|
||||||
|
needs this layer (uk_addresses_import_button)
|
||||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://osm-uk-addresses.russss.dev/addresses/{z}/{x}/{y}.json`
|
- This layer will automatically load [address](./address.md) into the layout as it depends on it: A calculated tag
|
||||||
- This layer will automatically load [address](./address.md) into the layout as it depends on it: a tagrendering needs this layer (uk_addresses_import_button)
|
loads features from this layer (calculatedTag[0] which calculates the value for _embedding_object)
|
||||||
- This layer will automatically load [address](./address.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _embedding_object)
|
- This layer will automatically load [raw_inspire_polygons](./raw_inspire_polygons.md) into the layout as it depends
|
||||||
- This layer will automatically load [raw_inspire_polygons](./raw_inspire_polygons.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[3] which calculates the value for _embedding_inspire_polygon_has_address)
|
on it: A calculated tag loads features from this layer (calculatedTag[3] which calculates the value for _
|
||||||
|
embedding_inspire_polygon_has_address)
|
||||||
|
|
||||||
[Go to the source code](../assets/layers/to_import/to_import.json)
|
[Go to the source code](../assets/layers/to_import/to_import.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Basic tags for this layer
|
Basic tags for this layer
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Elements must have the all of following tags to be shown on this layer:
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
- inspireid~^..*$
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
- inspireid~^..*$
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Supported attributes
|
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Warning** This quick overview is incomplete
|
**Warning** This quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute | type | values which are supported by this layer
|
attribute | type | values which are supported by this layer
|
||||||
----------- | ------ | ------------------------------------------
|
----------- | ------ | ------------------------------------------
|
||||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/_embedding_object:id#values) [_embedding_object:id](https://wiki.openstreetmap.org/wiki/Key:_embedding_object:id) | Multiple choice | [true](https://wiki.openstreetmap.org/wiki/Tag:_embedding_object:id%3Dtrue) [false](https://wiki.openstreetmap.org/wiki/Tag:_embedding_object:id%3Dfalse)
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/_embedding_object:id#values) [_embedding_object:id](https://wiki.openstreetmap.org/wiki/Key:_embedding_object:id) | Multiple choice | [true](https://wiki.openstreetmap.org/wiki/Tag:_embedding_object:id%3Dtrue) [false](https://wiki.openstreetmap.org/wiki/Tag:_embedding_object:id%3Dfalse)
|
||||||
|
|
||||||
|
### uk_addresses_explanation
|
||||||
|
|
||||||
|
|
||||||
### uk_addresses_explanation
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
### uk_addresses_embedding_outline
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### uk_addresses_embedding_outline
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
- **The INSPIRE-polygon containing this point has at least one address contained** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_object:id' target='_blank'>_embedding_object:id</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_object:id%3Dtrue' target='_blank'>true</a>
|
||||||
|
- **The INSPIRE-polygon containing this point has <b>no</b> addresses contained** corresponds
|
||||||
|
with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_object:id' target='_blank'>_embedding_object:id</a>
|
||||||
|
=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_object:id%3Dfalse' target='_blank'>false</a>
|
||||||
|
|
||||||
|
### uk_addresses_import_button
|
||||||
|
|
||||||
|
|
||||||
- **The INSPIRE-polygon containing this point has at least one address contained** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_object:id' target='_blank'>_embedding_object:id</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_object:id%3Dtrue' target='_blank'>true</a>
|
|
||||||
- **The INSPIRE-polygon containing this point has <b>no</b> addresses contained** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_object:id' target='_blank'>_embedding_object:id</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_object:id%3Dfalse' target='_blank'>false</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### uk_addresses_import_button
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
_This tagrendering has no question and is thus read-only_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from assets/layers/to_import/to_import.json
|
This document is autogenerated from assets/layers/to_import/to_import.json
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue