Ticket #8762: defaultpresets.xml

File defaultpresets.xml, 494.8 KB (added by kr12, 13 years ago)

fix

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<?xml-stylesheet type="text/xsl" href="defaultpresets.xsl"?>
3<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0">
4 <!--
5 Pics have been derived from
6 http://de.wikipedia.org/wiki/Bildtafel_der_Verkehrszeichen_in_Deutschland (german street sign SVGs)
7 http://commons.wikimedia.org/wiki/Image:National_Park_Service_sample_pictographs.svg (various monochrome pictograms)
8 http://www.kde.org
9 http://openclipart.org/media/view/media/clip_art
10 http://www.sjjb.co.uk/mapicons/ (meanwhile in osm svn)
11-->
12 <!--
13File types (for icons):
14jpg, png, svg (preferable)
15-->
16 <!--
17XML entities:
18
19item:
20 name: the text to display
21 icon: the icon to display
22 - relative to the icon path
23 - URL's are also supported to allow remote icons (are cached locally)
24 type: the data types - way,node,relation,closedway (separated by comma)
25 name_template: define custom formatting for OSM primitives
26 see http://josm.openstreetmap.de/wiki/NameTemplate
27
28link: link to the relating map features website
29 href: the URL
30
31label: simple static text label
32 text: the text to display
33
34key: fixed key/value pair to be set
35 key: key to set
36 value: value to set
37 match: none/key/key!/keyvalue (default is "keyvalue", see below for more information)
38
39text: text box
40 key: key to set
41 text: fixed label to display
42 default: default string to display (defaults to "")
43 use_last_as_default: true/false/force (default is "false")
44 auto_increment: may contain a comma separated list of integer increments or
45 decrements, e.g. "-2,-1,+1,+2"; a button will be shown next
46 to the text field for each value, allowing the user to select
47 auto-increment with the given stepping. auto-increment only
48 happens if the user selects it. default is no auto-increment;
49 mutually exclusive with use_last_as_default.
50 match: none/key/key!/keyvalue (default is "none", see below for more information)
51 length: length of input box (number of characters allowed)
52
53combo: combo box, with multiple choices and possible to enter free form text
54 key: key to set
55 text: fixed label to display
56 values: comma separated list of values
57 values_from: to use instead of "values" if the list of values has to be obtained with a Java method
58 of this form: public static String[] getValues();
59 The value must be: "full.package.name.ClassName#methodName"
60 display_values: comma separated list of values to be displayed instead of the
61 database values, order and number must be equal to values
62 short_descriptions: comma separated list of texts to be displayed below each
63 display_value. (Only if it is not possible to describe
64 the entry in 2-3 words.) Instead of comma separeted list
65 instead using values, display_values and short_descriptions, the following form is also supported:
66 <list_entry value="" display_value="" short_description="" icon="" icon_size=""/>
67 icon: location of icon
68 icon_size: maximal size of icon. If tag is not setup it is taken default size of icon file
69 default: default string to display (defaults to "")
70 use_last_as_default: true/false/force (default is "false")
71 editable: allow to add other values as text (default is "true")
72 match: none/key/key!/keyvalue (default is none, see below for more information)
73
74multiselect: list of values from which zero or more can be selected
75 key: key to set
76 text: fixed label to display
77 delimiter: character that separates values (default: semicolon) - this
78 will also be used to separate selected values in the tag.
79 values: delimiter-separated list of values (delimiter can be escaped with backslash)
80 values_from: to use instead of "values" if the list of values has to be obtained with a Java method
81 of this form: public static String[] getValues();
82 The value must be: "full.package.name.ClassName#methodName"
83 rows: specify the number of rows to display (default -1)
84 display_values: delimiter-separated list of values to be displayed instead of the
85 database values, order and number must be equal to values
86 short_descriptions: delimiter-separated list of texts to be displayed below each
87 display_value. (Only if it is not possible to describe
88 the entry in 2-3 words.) Instead of a separated list
89 instead using values, display_values and short_descriptions, the following form is also supported:
90 <list_entry value="" display_value="" short_description="" icon="" icon_size=""/>
91 icon: location of icon
92 icon_size: maximal size of icon. If tag is not setup it is taken default size of icon file
93 default: default string to display (defaults to "")
94 use_last_as_default: true/false/force (default is "false")
95 match: none/key/key!/keyvalue (default is "none", see below for more information)
96
97check: checkbox
98 key: key to set
99 text: fixed label to display
100 default: ticked on/off
101 value_on: the value to set when checked (default is "yes")
102 value_off: the value to set when unchecked (default is "no")
103 match: none/key/key!/keyvalue (default is "none", see below for more information)
104
105role: type to specify possible roles in relations
106 key: the role name used in relation
107 text: fixed label to display
108 requisite: optional/required (default is "optional")
109 count: how often can the role occur (if not given unlimited number is assumed)
110 type: the data types - way,node,relation,closedway (separated by comma)
111 member_expression: an expression (cf. search dialog) for objects of this role
112
113 presets: For external files <presets>should have following attributes:
114 author: the author of the preset
115 version: a version number of some sort (e.g. creation date)
116 description: what is your preset meant to be
117 shortdescription: very short description
118 link: a link to a helpful website (optional)
119 The fields description, shortdescription and link may also be localized (e.g. de.link)
120
121See also http://josm.openstreetmap.de/wiki/TaggingPresets.
122
123The fields "name", "text", "display_values" may also be localized (e.g. de.name).
124When translations of equal words but different meanings may conflict, a translation
125context should be specified. Use "name_context", "text_context" or "values_context"
126for this. The context should be a meaningful short description to help translators.
127
128In JOSM internally all "name", "text" and "display_values" are translated when
129no specific translation has been given in XML file. When no "display_values"
130are supplied, then "values" will be treated as "display_values" and translated instead.
131
132The match attribute allows to change the matching process, i.e., determining whether
133the tags of an OSM object fit into this preset.
134 - none: neutral, i.e., do not consider this item for matching
135 - key: positive if key matches, neutral otherwise
136 - key!: positive if key matches, negative otherwise
137 - keyvalue: positive if key and value matches, negative otherwise
138Note that for a match, at least one positive and no negative is required.
139-->
140 <!-- TODO: add building to objects that can be-->
141
142 <group name="Highways" icon="presets/way_secondary.png">
143 <group name="Streets" icon="presets/way_secondary.png">
144 <item name="Motorway" icon="presets/motorway.png" type="way">
145 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=motorway"
146 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=motorway"
147 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:highway=motorway"
148 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=motorway"
149 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=motorway"
150 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:highway=motorway"
151 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=motorway"
152 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=motorway"
153 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=motorway"/>
154 <label text="Edit Motorway"/>
155 <space/>
156 <key key="highway" value="motorway"/>
157 <text key="ref" text="Reference"/>
158 <optional>
159 <text key="name" text="Name"/>
160 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
161 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
162 <text key="maxspeed" text="Max. speed (km/h)"/>
163 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground" default="asphalt"/>
164 <check key="oneway" text="Oneway" default="on"/>
165 <check key="bridge" text="Bridge" default="off"/>
166 <check key="tunnel" text="Tunnel" default="off"/>
167 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
168 <check key="embankment" text="Embankment" default="off"/>
169 <check key="lit" text="Lit" default="off"/>
170 </optional>
171 </item>
172 <item name="Motorway Link" icon="presets/motorway.png" type="way">
173 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=motorway_link"
174 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=motorway_link"
175 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:highway=motorway_link"
176 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=motorway_link"
177 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=motorway_link"
178 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=motorway_link"
179 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=motorway_link"
180 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=motorway_link"
181 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=motorway_link"/>
182 <label text="Edit Motorway Link"/>
183 <space/>
184 <key key="highway" value="motorway_link"/>
185 <optional>
186 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
187 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
188 <text key="maxspeed" text="Max. speed (km/h)"/>
189 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground" default="asphalt"/>
190 <check key="oneway" text="Oneway" default="on"/>
191 <check key="bridge" text="Bridge" default="off"/>
192 <check key="tunnel" text="Tunnel" default="off"/>
193 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
194 <check key="embankment" text="Embankment" default="off"/>
195 <check key="lit" text="Lit" default="off"/>
196 </optional>
197 </item>
198 <item name="Trunk" icon="presets/trunk.png" type="way">
199 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=trunk"
200 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=trunk"
201 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=trunk"
202 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=trunk"
203 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=trunk"
204 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=trunk"
205 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=trunk"
206 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=trunk"/>
207 <label text="Edit Trunk"/>
208 <space/>
209 <key key="highway" value="trunk"/>
210 <text key="ref" text="Reference"/>
211 <optional>
212 <text key="name" text="Name"/>
213 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
214 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
215 <text key="maxspeed" text="Max. speed (km/h)"/>
216 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground" default="asphalt"/>
217 <check key="oneway" text="Oneway" default="on"/>
218 <check key="motorroad" text="Motorroad" default="on"/>
219 <check key="bridge" text="Bridge" default="off"/>
220 <check key="tunnel" text="Tunnel" default="off"/>
221 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
222 <check key="embankment" text="Embankment" default="off"/>
223 <check key="lit" text="Lit" default="off"/>
224 </optional>
225 </item>
226 <item name="Trunk Link" icon="presets/trunk.png" type="way">
227 <link href="http://wiki.openstreetmap.org/wiki/Link_(highway)"
228 de.href="http://wiki.openstreetmap.org/wiki/DE:Link_(highway)"
229 fr.href="http://wiki.openstreetmap.org/wiki/FR:Link_(highway)"
230 it.href="http://wiki.openstreetmap.org/wiki/IT:Link_(highway)"
231 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Link_(highway)"
232 ru.href="http://wiki.openstreetmap.org/wiki/RU:Link_(highway)"
233 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Link_(highway)"/>
234 <label text="Edit Trunk Link"/>
235 <space/>
236 <key key="highway" value="trunk_link"/>
237 <text key="ref" text="Reference"/>
238 <optional>
239 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
240 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
241 <text key="maxspeed" text="Max. speed (km/h)"/>
242 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground" default="asphalt"/>
243 <check key="oneway" text="Oneway" default="on"/>
244 <check key="motorroad" text="Motorroad" default="on"/>
245 <check key="bridge" text="Bridge" default="off"/>
246 <check key="tunnel" text="Tunnel" default="off"/>
247 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
248 <check key="embankment" text="Embankment" default="off"/>
249 <check key="lit" text="Lit" default="off"/>
250 </optional>
251 </item>
252 <separator/>
253 <item name="Primary" icon="presets/way_primary.png" type="way">
254 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=primary"
255 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=primary"
256 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=primary"
257 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=primary"
258 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=primary"
259 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=primary"
260 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=primary"/>
261 <label text="Edit Primary Road"/>
262 <space/>
263 <key key="highway" value="primary"/>
264 <text key="ref" text="Reference"/>
265 <optional>
266 <text key="name" text="Name"/>
267 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
268 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
269 <text key="maxspeed" text="Max. speed (km/h)"/>
270 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground" default="asphalt"/>
271 <check key="oneway" text="Oneway" default="off"/>
272 <check key="motorroad" text="Motorroad" default="off"/>
273 <check key="bridge" text="Bridge" default="off"/>
274 <check key="tunnel" text="Tunnel" default="off"/>
275 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
276 <check key="embankment" text="Embankment" default="off"/>
277 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
278 <check key="lit" text="Lit" default="off"/>
279 </optional>
280 </item>
281 <item name="Primary Link" icon="presets/way_primary.png" type="way">
282 <link href="http://wiki.openstreetmap.org/wiki/Link_(highway)"
283 de.href="http://wiki.openstreetmap.org/wiki/DE:Link_(highway)"
284 fr.href="http://wiki.openstreetmap.org/wiki/FR:Link_(highway)"
285 it.href="http://wiki.openstreetmap.org/wiki/IT:Link_(highway)"
286 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Link_(highway)"
287 ru.href="http://wiki.openstreetmap.org/wiki/RU:Link_(highway)"
288 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Link_(highway)"/>
289 <label text="Edit Primary Link"/>
290 <space/>
291 <key key="highway" value="primary_link"/>
292 <optional>
293 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
294 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
295 <text key="maxspeed" text="Max. speed (km/h)"/>
296 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground" default="asphalt"/>
297 <check key="oneway" text="Oneway" default="off"/>
298 <check key="motorroad" text="Motorroad" default="off"/>
299 <check key="bridge" text="Bridge" default="off"/>
300 <check key="tunnel" text="Tunnel" default="off"/>
301 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
302 <check key="embankment" text="Embankment" default="off"/>
303 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
304 <check key="lit" text="Lit" default="off"/>
305 </optional>
306 </item>
307 <item name="Secondary" icon="presets/way_secondary.png" type="way">
308 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=secondary"
309 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=secondary"
310 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=secondary"
311 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=secondary"
312 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=secondary"
313 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=secondary"
314 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=secondary"
315 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=secondary"/>
316 <label text="Edit Secondary Road"/>
317 <space/>
318 <key key="highway" value="secondary"/>
319 <text key="ref" text="Reference"/>
320 <optional>
321 <text key="name" text="Name"/>
322 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
323 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
324 <text key="maxspeed" text="Max. speed (km/h)"/>
325 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
326 <check key="oneway" text="Oneway" default="off"/>
327 <check key="bridge" text="Bridge" default="off"/>
328 <check key="tunnel" text="Tunnel" default="off"/>
329 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
330 <check key="embankment" text="Embankment" default="off"/>
331 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
332 <check key="lit" text="Lit" default="off"/>
333 </optional>
334 </item>
335 <item name="Secondary Link" icon="presets/way_secondary.png" type="way">
336 <link href="http://wiki.openstreetmap.org/wiki/Link_(highway)"
337 de.href="http://wiki.openstreetmap.org/wiki/DE:Link_(highway)"
338 fr.href="http://wiki.openstreetmap.org/wiki/FR:Link_(highway)"
339 it.href="http://wiki.openstreetmap.org/wiki/IT:Link_(highway)"
340 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Link_(highway)"
341 ru.href="http://wiki.openstreetmap.org/wiki/RU:Link_(highway)"
342 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Link_(highway)"/>
343 <label text="Edit Secondary Link"/>
344 <space/>
345 <key key="highway" value="secondary_link"/>
346 <optional>
347 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
348 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
349 <text key="maxspeed" text="Max. speed (km/h)"/>
350 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
351 <check key="oneway" text="Oneway" default="off"/>
352 <check key="bridge" text="Bridge" default="off"/>
353 <check key="tunnel" text="Tunnel" default="off"/>
354 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
355 <check key="embankment" text="Embankment" default="off"/>
356 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
357 <check key="lit" text="Lit" default="off"/>
358 </optional>
359 </item>
360 <item name="Tertiary" icon="presets/way_tertiary.png" type="way">
361 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=tertiary"
362 da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:highway=tertiary"
363 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=tertiary"
364 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=tertiary"
365 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=tertiary"
366 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=tertiary"
367 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=tertiary"
368 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=tertiary"
369 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=tertiary"/>
370 <label text="Edit Tertiary Road"/>
371 <space/>
372 <key key="highway" value="tertiary"/>
373 <text key="ref" text="Reference"/>
374 <optional>
375 <text key="name" text="Name"/>
376 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
377 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
378 <text key="maxspeed" text="Max. speed (km/h)"/>
379 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
380 <check key="oneway" text="Oneway" default="off"/>
381 <check key="bridge" text="Bridge" default="off"/>
382 <check key="tunnel" text="Tunnel" default="off"/>
383 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
384 <check key="embankment" text="Embankment" default="off"/>
385 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
386 <check key="lit" text="Lit" default="off"/>
387 </optional>
388 </item>
389 <item name="Tertiary Link" icon="presets/way_tertiary.png" type="way">
390 <link href="http://wiki.openstreetmap.org/wiki/Link_(highway)"
391 de.href="http://wiki.openstreetmap.org/wiki/DE:Link_(highway)"
392 fr.href="http://wiki.openstreetmap.org/wiki/FR:Link_(highway)"
393 it.href="http://wiki.openstreetmap.org/wiki/IT:Link_(highway)"
394 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Link_(highway)"
395 ru.href="http://wiki.openstreetmap.org/wiki/RU:Link_(highway)"
396 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Link_(highway)"/>
397 <label text="Edit Tertiary Link"/>
398 <space/>
399 <key key="highway" value="tertiary_link"/>
400 <optional>
401 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
402 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
403 <text key="maxspeed" text="Max. speed (km/h)"/>
404 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
405 <check key="oneway" text="Oneway" default="off"/>
406 <check key="bridge" text="Bridge" default="off"/>
407 <check key="tunnel" text="Tunnel" default="off"/>
408 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
409 <check key="embankment" text="Embankment" default="off"/>
410 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
411 <check key="lit" text="Lit" default="off"/>
412 </optional>
413 </item>
414 <item name="Unclassified" icon="presets/way_unclassified.png" type="way,closedway">
415 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=unclassified"
416 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=unclassified"
417 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=unclassified"
418 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=unclassified"
419 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=unclassified"
420 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=unclassified"
421 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=unclassified"
422 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=unclassified"/>
423 <label text="Edit Unclassified Road"/>
424 <space/>
425 <key key="highway" value="unclassified"/>
426 <optional>
427 <text key="name" text="Name"/>
428 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
429 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
430 <text key="maxspeed" text="Max. speed (km/h)"/>
431 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
432 <check key="oneway" text="Oneway" default="off"/>
433 <check key="bridge" text="Bridge" default="off"/>
434 <check key="tunnel" text="Tunnel" default="off"/>
435 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
436 <check key="embankment" text="Embankment" default="off"/>
437 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
438 <check key="lit" text="Lit" default="off"/>
439 <check key="passing_places" text="Passing Places" default="off"/>
440 <text key="width" text="Width (meters)" length="7"/>
441 </optional>
442 </item>
443 <item name="Residential" icon="presets/residential.png" type="way,closedway">
444 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=residential"
445 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=residential"
446 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=residential"
447 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=residential"
448 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=residential"
449 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=residential"
450 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=residential"
451 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=residential"/>
452 <label text="Edit Residential Street"/>
453 <space/>
454 <key key="highway" value="residential"/>
455 <text key="name" text="Name"/>
456 <optional>
457 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
458 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
459 <text key="maxspeed" text="Max. speed (km/h)"/>
460 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
461 <check key="oneway" text="Oneway" default="off"/>
462 <check key="bridge" text="Bridge" default="off"/>
463 <check key="tunnel" text="Tunnel" default="off"/>
464 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
465 <check key="embankment" text="Embankment" default="off"/>
466 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
467 <check key="lit" text="Lit" default="off"/>
468 <text key="width" text="Width (meters)" length="7"/>
469 </optional>
470 </item>
471 <item name="Living Street" icon="presets/living_street.png" type="way,closedway">
472 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=living_street"
473 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=living_street"
474 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:highway=living_street"
475 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=living_street"
476 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=living_street"
477 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=living_street"/>
478 <label text="Edit Living Street"/>
479 <space/>
480 <key key="highway" value="living_street"/>
481 <text key="name" text="Name"/>
482 <optional>
483 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
484 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
485 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
486 <check key="oneway" text="Oneway" default="off"/>
487 <check key="bridge" text="Bridge" default="off"/>
488 <check key="tunnel" text="Tunnel" default="off"/>
489 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
490 <check key="embankment" text="Embankment" default="off"/>
491 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
492 <check key="lit" text="Lit" default="off"/>
493 <text key="width" text="Width (meters)" length="7"/>
494 </optional>
495 </item>
496 <item name="Pedestrian" icon="presets/pedestrian.png" type="way,closedway,relation">
497 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=pedestrian"
498 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=pedestrian"
499 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:highway=pedestrian"
500 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=pedestrian"
501 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=pedestrian"
502 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=pedestrian"
503 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=pedestrian"
504 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=pedestrian"
505 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=pedestrian"/>
506 <label text="Edit Pedestrian Street"/>
507 <space/>
508 <key key="highway" value="pedestrian"/>
509 <text key="name" text="Name"/>
510 <optional>
511 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
512 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
513 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
514 <check key="area" text="Area" default="off"/>
515 <check key="bridge" text="Bridge" default="off"/>
516 <check key="tunnel" text="Tunnel" default="off"/>
517 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
518 <check key="embankment" text="Embankment" default="off"/>
519 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
520 <check key="lit" text="Lit" default="off"/>
521 <text key="width" text="Width (meters)" length="7"/>
522 </optional>
523 </item>
524 <item name="Service" icon="presets/way_unclassified.png" type="way,closedway">
525 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=service"
526 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=service"
527 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=service"
528 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=service"
529 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:highway=service"
530 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=service"
531 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=service"
532 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=service"/>
533 <label text="Edit Serviceway"/>
534 <space/>
535 <key key="highway" value="service"/>
536 <optional>
537 <combo key="service" text="Serviceway type" values="alley,driveway,parking_aisle"/>
538 <text key="name" text="Name"/>
539 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
540 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
541 <text key="maxspeed" text="Max. speed (km/h)"/>
542 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
543 <check key="oneway" text="Oneway" default="off"/>
544 <check key="bridge" text="Bridge" default="off"/>
545 <check key="tunnel" text="Tunnel" default="off"/>
546 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
547 <check key="embankment" text="Embankment" default="off"/>
548 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
549 <check key="lit" text="Lit" default="off"/>
550 <check key="passing_places" text="Passing Places" default="off"/>
551 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
552 <text key="width" text="Width (meters)" length="7"/>
553 </optional>
554 </item>
555 <item name="Parking Aisle" icon="presets/way_unclassified.png" type="way,closedway">
556 <link href="http://wiki.openstreetmap.org/wiki/Tag:service=parking_aisle"
557 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:service=parking_aisle"
558 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:service=parking_aisle"
559 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:service=parking_aisle"
560 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:service=parking_aisle"
561 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:service=parking_aisle"
562 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:service=parking_aisle"/>
563 <label text="Edit Parking Aisle"/>
564 <space/>
565 <key key="highway" value="service"/>
566 <key key="service" value="parking_aisle"/>
567 <optional>
568 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
569 <check key="oneway" text="Oneway" default="off"/>
570 <check key="lit" text="Lit" default="off"/>
571 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
572 </optional>
573 </item>
574 <item name="Road (Unknown Type)" icon="presets/way_unclassified.png" type="way,closedway">
575 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=road"
576 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=road"
577 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=road"
578 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=road"
579 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=road"
580 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=road"
581 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=road"/>
582 <label text="Edit Road of unknown type"/>
583 <space/>
584 <key key="highway" value="road"/>
585 <optional>
586 <text key="name" text="Name"/>
587 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
588 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
589 <text key="maxspeed" text="Max. speed (km/h)"/>
590 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
591 <check key="oneway" text="Oneway" default="off"/>
592 <check key="bridge" text="Bridge" default="off"/>
593 <check key="tunnel" text="Tunnel" default="off"/>
594 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
595 <check key="embankment" text="Embankment" default="off"/>
596 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
597 <check key="lit" text="Lit" default="off"/>
598 <text key="width" text="Width (meters)" length="7"/>
599 </optional>
600 </item>
601 <item name="Construction" icon="presets/construction.png" type="way,closedway">
602 <label text="Edit Highway Under Construction"/>
603 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=construction"
604 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:construction"
605 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:construction"
606 it.href="http://wiki.openstreetmap.org/wiki/IT:Key:construction"
607 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:construction"
608 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:construction"/>
609 <space/>
610 <key key="highway" value="construction"/>
611 <optional>
612 <text key="name" text="Name"/>
613 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
614 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
615 <text key="maxspeed" text="Max. speed (km/h)"/>
616 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
617 <check key="oneway" text="Oneway" default="off"/>
618 <check key="bridge" text="Bridge" default="off"/>
619 <check key="tunnel" text="Tunnel" default="off"/>
620 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
621 <check key="embankment" text="Embankment" default="off"/>
622 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
623 <check key="lit" text="Lit" default="off"/>
624 <combo key="junction" text="Junction" values="roundabout,jughandle,yes"/>
625 <text key="width" text="Width (meters)" length="7"/>
626 </optional>
627 </item>
628 <separator/>
629 <item name="Road Restrictions" icon="presets/restrictions.png" type="node,way">
630 <link href="http://wiki.openstreetmap.org/wiki/Key:access"
631 da.href="http://wiki.openstreetmap.org/wiki/Da:Key:access"
632 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:access"
633 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:access"
634 it.href="http://wiki.openstreetmap.org/wiki/IT:Key:access"
635 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:access"
636 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Key:access"
637 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:access"
638 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:access"
639 sv.href="http://wiki.openstreetmap.org/wiki/Sv:Key:access"
640 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Key:access"/>
641 <label text="Edit Road Restrictions"/>
642 <check key="oneway" text="Oneway" default="off"/>
643 <check key="toll" text="Toll" default="off"/>
644 <check key="noexit" text="No exit (cul-de-sac)" default="off"/>
645 <label text="Transport mode restrictions"/>
646 <combo key="access" text="General Access" values="yes,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
647 <combo key="foot" text="Foot" values="yes,official,designated,permissive,destination,delivery,private,no" match="key"/>
648 <combo key="horse" text="Horse" values="yes,official,designated,permissive,destination,delivery,private,no" match="key"/>
649 <label text="Vehicles per type"/>
650 <combo key="vehicle" text="All vehicles" values="yes,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
651 <combo key="bicycle" text="Bicycle" values="yes,official,designated,permissive,destination,delivery,private,no" match="key"/>
652 <combo key="motor_vehicle" text="Motor vehicles" values="yes,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
653 <combo key="motorcycle" text="Motorcycle" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
654 <combo key="motorcar" text="Motorcar" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
655 <combo key="goods" text="Light Commercial Vehicles (goods)" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
656 <combo key="hgv" text="Heavy Goods Vehicles (hgv)" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
657 <label text="Vehicles per use"/>
658 <combo key="agricultural" text="Agricultural" values="yes,official,designated,destination,permissive,private,no" match="key"/>
659 <combo key="emergency" text="Emergency vehicles" values="yes,official,designated,destination,permissive,private,no" match="key"/>
660 <combo key="hov" text="High-occupancy vehicles (hov)" values="yes,official,designated,destination,permissive,private,no" match="key"/>
661 <combo key="psv" text="Public Service Vehicles (psv)" values="yes,official,designated,destination,permissive,private,no" match="key"/>
662 <text key="maxspeed" text="Max. speed (km/h)"/>
663 <text key="minspeed" text="Min. speed (km/h)" match="key"/>
664 <text key="maxweight" text="Max. weight (tonnes)" match="key"/>
665 <text key="maxaxleload" text="Max. axleload (tonnes)" match="key"/>
666 <text key="maxheight" text="Max. height (meters)" match="key"/>
667 <text key="maxwidth" text="Max. width (meters)" match="key"/>
668 <text key="maxlength" text="Max. length (meters)" match="key"/>
669 <combo key="overtaking" text="Overtaking" values="yes,both,forward,backward,no" match="key"/>
670 </item>
671 <separator/>
672 <item name="Roundabout" icon="presets/roundabout.png" type="node,closedway">
673 <link href="http://wiki.openstreetmap.org/wiki/Tag:junction=roundabout"
674 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:junction=roundabout"
675 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:junction=roundabout"
676 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:junction=roundabout"
677 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:junction=roundabout"
678 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:junction=roundabout"
679 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:junction=roundabout"
680 ro.href="http://wiki.openstreetmap.org/wiki/Ro:Tag:junction=roundabout"
681 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:junction=roundabout"/>
682 <label text="Edit Junction"/>
683 <space/>
684 <key key="junction" value="roundabout"/>
685 <combo key="highway" text="Type" values="motorway,motorway_link,trunk,trunk_link,primary,primary_link,secondary,tertiary,unclassified,residential,living_street,service,bus_guideway,construction"/>
686 <optional>
687 <text key="name" text="Name"/>
688 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
689 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
690 <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
691 <check key="oneway" text="Oneway" default="off"/>
692 <check key="bridge" text="Bridge" default="off"/>
693 <check key="tunnel" text="Tunnel" default="off"/>
694 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
695 <check key="embankment" text="Embankment" default="off"/>
696 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
697 <text key="width" text="Width (meters)" length="7"/>
698 <check key="lit" text="Lit" default="off"/>
699 <combo key="landuse" text="Landuse" values="grass"/>
700 </optional>
701 </item>
702 <item name="Bridge" icon="presets/bridge.png" type="way">
703 <link href="http://wiki.openstreetmap.org/wiki/Key:bridge"
704 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:bridge"
705 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Key:bridge"
706 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:bridge"
707 it.href="http://wiki.openstreetmap.org/wiki/IT:Key:bridge"
708 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:bridge"
709 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:bridge"
710 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:bridge"
711 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Key:bridge"/>
712 <label text="Edit Bridge"/>
713 <space/>
714 <combo key="bridge" text="Bridge" values="yes,viaduct,swing,aqueduct" match="key!" default="yes"/>
715 <optional>
716 <text key="name" text="Name"/>
717 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5" default="1"/>
718 <text key="maxspeed" text="Max. speed (km/h)"/>
719 <text key="maxweight" text="Max. weight (tonnes)"/>
720 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
721 <text key="width" text="Width (meters)" length="7"/>
722 <text key="height" text="Height (meters)" length="7"/>
723 </optional>
724 </item>
725 <item name="Ford" icon="presets/ford.png" type="node,way">
726 <label text="Edit Ford"/>
727 <link href="http://wiki.openstreetmap.org/wiki/Key:ford"
728 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:ford"
729 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:ford"/>
730 <space/>
731 <key key="ford" value="yes"/>
732 <optional>
733 <text key="name" text="Name"/>
734 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
735 <space/>
736 <check key="foot" text="Foot" default="on"/>
737 <check key="bicycle" text="Bicycle" default="on"/>
738 <check key="horse" text="Horse" default="off"/>
739 <check key="motorcycle" text="Motorcycle" default="off"/>
740 <check key="motorcar" text="Motorcar" default="off"/>
741 </optional>
742 </item>
743 </group>
744 <!-- Streets -->
745 <group name="Ways" icon="presets/way_unclassified.png">
746 <item name="Track" icon="presets/track1.png" type="way,closedway">
747 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=track"
748 da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:highway=track"
749 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=track"
750 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=track"
751 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=track"
752 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=track"
753 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=track"
754 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=track"
755 sv.href="http://wiki.openstreetmap.org/wiki/Sv:Tag:highway=track"
756 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=track"/>
757 <label text="Edit Track"/>
758 <combo key="tracktype" text="Tracktype" values="grade1,grade2,grade3,grade4,grade5"/>
759 <space/>
760 <key key="highway" value="track"/>
761 <optional>
762 <text key="name" text="Name"/>
763 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
764 <combo key="surface" text="Surface" values="paved,concrete,cobblestone,gravel,ground,grass,sand"/>
765 <check key="oneway" text="Oneway" default="off"/>
766 <check key="bridge" text="Bridge" default="off"/>
767 <check key="tunnel" text="Tunnel" default="off"/>
768 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
769 <check key="embankment" text="Embankment" default="off"/>
770 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
771 <check key="lit" text="Lit" default="off"/>
772 <combo key="mtb:scale" text="MTB Scale" values="0,1,2,3,4,5"/>
773 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
774 <combo key="motor_vehicle" text="Motor vehicles" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
775 <combo key="motorcycle" text="Motorcycle" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
776 <combo key="motorcar" text="Motorcar" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
777 <text key="width" text="Width (meters)" length="7"/>
778 </optional>
779 </item>
780 <item name="Path" icon="presets/path.png" type="way,closedway">
781 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=path"
782 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=path"
783 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=path"
784 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=path"
785 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=path"
786 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=path"
787 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=path"
788 sv.href="http://wiki.openstreetmap.org/wiki/Sv:Tag:highway=path"/>
789 <label text="Edit Path"/>
790 <space/>
791 <key key="highway" value="path"/>
792 <optional>
793 <text key="name" text="Name"/>
794 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
795 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
796 <check key="oneway" text="Oneway" default="off"/>
797 <check key="bridge" text="Bridge" default="off"/>
798 <check key="tunnel" text="Tunnel" default="off"/>
799 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
800 <check key="embankment" text="Embankment" default="off"/>
801 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
802 <check key="lit" text="Lit" default="off"/>
803 <combo key="sac_scale" text="SAC Scale">
804 <list_entry value="hiking" display_value="T1 - hiking trail" short_description="Trail well cleared. Area flat or slightly sloped, no fall hazard"/>
805 <list_entry value="mountain_hiking" display_value="T2 - mountain hiking trail" short_description="Trail with continuous line and balanced ascent. Terrain partially steep, fall hazard possible"/>
806 <list_entry value="demanding_mountain_hiking" display_value="T3 - difficult, exposed hiking trail" short_description="exposed sites may be secured with ropes or chains, possible need to use hands for balance. Partly exposed sites with fall hazard, scree, pathless jagged rocks"/>
807 <list_entry value="alpine_hiking" display_value="T4 - difficult, exposed, steep alpine trail" short_description="sometimes need for hand use to get ahead. Terrain quite exposed, precarious grassy acclivities, jagged rocks, facile snow-free glaciers"/>
808 <list_entry value="demanding_alpine_hiking" display_value="T5 - difficult alpine trail with climbing" short_description="single plainly climbing up to second grade. Exposed, demanding terrain, jagged rocks, few dangerous glacier and snow"/>
809 <list_entry value="difficult_alpine_hiking" display_value="T6 - hazardous alpine trail with climbing" short_description="climbing up to second grade. Often very exposed, precarious jagged rocks, glacier with danger to slip and fall"/>
810 </combo>
811 <combo key="mtb:scale" text="MTB Scale" values="0,1,2,3,4,5"/>
812 <combo key="trail_visibility" text="Visibility" values="excellent,good,intermediate,bad,horrible,no"/>
813 <combo key="foot" text="Foot" values="yes,official,designated,permissive,destination,delivery,private,no"/>
814 <combo key="bicycle" text="Bicycle" values="yes,official,designated,permissive,destination,delivery,private,no"/>
815 <combo key="horse" text="Horse" values="yes,official,designated,permissive,destination,delivery,private,no"/>
816 <combo key="wheelchair" text="Wheelchairs" values="unknown,yes,official,no"/>
817 <combo key="ski" text="Ski" values="yes,official,designated,permissive,private,no"/>
818 <combo key="snowmobile" text="Snowmobile" values="yes,official,designated,permissive,destination,delivery,private,no"/>
819 <!-- <combo key="motorcar" text="Motorcar" values="yes,designated,no" default="no"/>-->
820 <text key="width" text="Width (meters)" length="7"/>
821 </optional>
822 </item>
823 <separator/>
824 <item name="Dedicated Bridleway" icon="presets/equestrian.png" type="way">
825 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=bridleway"
826 da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:highway=bridleway"
827 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=bridleway"
828 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=bridleway"
829 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=bridleway"
830 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=bridleway"/>
831 <label text="Edit Bridleway"/>
832 <space/>
833 <key key="highway" value="bridleway"/>
834 <optional>
835 <text key="name" text="Name"/>
836 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
837 <text key="maxspeed" text="Max. speed (km/h)"/>
838 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
839 <check key="oneway" text="Oneway" default="off"/>
840 <check key="bridge" text="Bridge" default="off"/>
841 <check key="tunnel" text="Tunnel" default="off"/>
842 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
843 <check key="embankment" text="Embankment" default="off"/>
844 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
845 <check key="lit" text="Lit" default="off"/>
846 <text key="width" text="Width (meters)" length="7"/>
847 </optional>
848 </item>
849 <item name="Cycle Lane" type="way">
850 <link href="http://wiki.openstreetmap.org/wiki/Bicycle"
851 de.href="http://wiki.openstreetmap.org/wiki/DE:Bicycle"
852 fr.href="http://wiki.openstreetmap.org/wiki/FR:Bicycle"
853 hr.href="http://wiki.openstreetmap.org/wiki/Hr:Bicycle"
854 it.href="http://wiki.openstreetmap.org/wiki/IT:Bicycle"
855 ja.href="http://wiki.openstreetmap.org/wiki/JA:Bicycle"
856 nl.href="http://wiki.openstreetmap.org/wiki/NL:Bicycle"
857 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Bicycle"/>
858 <label text="Edit Cycle Lane"/>
859 <combo key="cycleway" text="Cycleway" values="lane,track,opposite_lane,opposite_track,opposite,share_busway,shared_lane" match="key"/>
860 <combo key="cycleway:left" text="Cycleway left" values="lane,track,opposite_lane,opposite_track,opposite,share_busway,shared_lane"/>
861 <combo key="cycleway:right" text="Cycleway right" values="lane,track,opposite_lane,opposite_track,opposite,share_busway,shared_lane"/>
862 <check key="oneway:bicycle" text="Oneway (bicycle)" default="off"/>
863 <space/>
864 <label text="Edit Highway"/>
865 <combo key="highway" text="Highway" values="motorway,motorway_link,trunk,trunk_link,primary,primary_link,secondary,tertiary,unclassified,residential,living_street,service,bus_guideway,construction"/>
866 <check key="oneway" text="Oneway" default="off"/>
867 </item>
868 <item name="Dedicated Cycleway" icon="presets/cycleway.png" type="way">
869 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=cycleway"
870 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=cycleway"
871 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=cycleway"
872 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=cycleway"
873 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=cycleway"
874 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=cycleway"
875 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=cycleway"/>
876 <label text="Edit Cycleway"/>
877 <space/>
878 <key key="highway" value="cycleway"/>
879 <optional>
880 <text key="name" text="Name"/>
881 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
882 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
883 <check key="oneway" text="Oneway" default="off"/>
884 <check key="bridge" text="Bridge" default="off"/>
885 <check key="tunnel" text="Tunnel" default="off"/>
886 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
887 <check key="embankment" text="Embankment" default="off"/>
888 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
889 <check key="lit" text="Lit" default="off"/>
890 <combo key="foot" text="Pedestrians" values="unknown,yes,no"/>
891 <text key="width" text="Width (meters)" length="7"/>
892 </optional>
893 </item>
894 <item name="Segregated Foot- and Cycleway" icon="presets/foot_and_cycleway_segregated.png" type="way">
895 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=cycleway"
896 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=cycleway"
897 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=cycleway"/>
898 <label text="Edit Cycleway"/>
899 <space/>
900 <key key="highway" value="path"/>
901 <key key="bicycle" value="designated"/>
902 <key key="foot" value="designated"/>
903 <key key="segregated" value="yes"/>
904 <optional>
905 <text key="name" text="Name"/>
906 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
907 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
908 <check key="oneway" text="Oneway" default="off"/>
909 <check key="bridge" text="Bridge" default="off"/>
910 <check key="tunnel" text="Tunnel" default="off"/>
911 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
912 <check key="embankment" text="Embankment" default="off"/>
913 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
914 <check key="lit" text="Lit" default="off"/>
915 <text key="width" text="Width (meters)" length="7"/>
916 </optional>
917 </item>
918 <item name="Combined Foot- and Cycleway" icon="presets/foot_and_cycleway_combined.png" type="way">
919 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=cycleway"
920 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=cycleway"
921 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=cycleway"/>
922 <label text="Edit Cycleway"/>
923 <space/>
924 <key key="highway" value="path"/>
925 <key key="bicycle" value="designated"/>
926 <key key="foot" value="designated"/>
927 <key key="segregated" value="no"/>
928 <optional>
929 <text key="name" text="Name"/>
930 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
931 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
932 <check key="oneway" text="Oneway" default="off"/>
933 <check key="bridge" text="Bridge" default="off"/>
934 <check key="tunnel" text="Tunnel" default="off"/>
935 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
936 <check key="embankment" text="Embankment" default="off"/>
937 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
938 <check key="lit" text="Lit" default="off"/>
939 <check key="passing_places" text="Passing Places" default="off"/>
940 <text key="width" text="Width (meters)" length="7"/>
941 </optional>
942 </item>
943 <item name="Dedicated Footway" icon="presets/footway.png" type="way">
944 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=footway"
945 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=footway"
946 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=footway"
947 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=footway"
948 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=footway"
949 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=footway"
950 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=footway"/>
951 <label text="Edit Footway"/>
952 <space/>
953 <key key="highway" value="footway"/>
954 <optional>
955 <text key="name" text="Name"/>
956 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
957 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
958 <check key="bridge" text="Bridge" default="off"/>
959 <check key="tunnel" text="Tunnel" default="off"/>
960 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
961 <check key="embankment" text="Embankment" default="off"/>
962 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
963 <check key="lit" text="Lit" default="off"/>
964 <check key="passing_places" text="Passing Places" default="off"/>
965 <text key="width" text="Width (meters)" length="7"/>
966 </optional>
967 </item>
968 <item name="Steps" icon="presets/steps.png" type="way">
969 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=steps"
970 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=steps"
971 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=steps"
972 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=steps"
973 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=steps"
974 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=steps"
975 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=steps"/>
976 <label text="Edit Flight of Steps"/>
977 <space/>
978 <key key="highway" value="steps"/>
979 <optional>
980 <text key="name" text="Name"/>
981 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
982 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
983 <text key="step_count" text="Amount of Steps"/>
984 <check key="oneway" text="Oneway" default="off"/>
985 <check key="bridge" text="Bridge" default="off"/>
986 <check key="tunnel" text="Tunnel" default="off"/>
987 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
988 <check key="embankment" text="Embankment" default="off"/>
989 <check key="lit" text="Lit" default="off"/>
990 <text key="width" text="Width (meters)" length="7"/>
991 </optional>
992 </item>
993 </group>
994 <!-- Ways -->
995 <group name="Waypoints" icon="presets/waypoints.png">
996 <item name="Motorway Junction" icon="presets/motorway_exit.png" type="node">
997 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=motorway_junction"
998 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=motorway_junction"
999 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:highway=motorway_junction"
1000 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=motorway_junction"
1001 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=motorway_junction"/>
1002 <label text="Edit Motorway Junction"/>
1003 <space/>
1004 <key key="highway" value="motorway_junction"/>
1005 <text key="name" text="Name"/>
1006 <text key="ref" text="Number"/>
1007 <text key="exit_to" text="Exit to"/>
1008 </item>
1009 <item name="Services" icon="styles/standard/vehicle/services.png" type="node,closedway,relation">
1010 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=services"
1011 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=services"
1012 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=services"
1013 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=services"
1014 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=services"
1015 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=services"/>
1016 <label text="Edit Service Station"/>
1017 <space/>
1018 <key key="highway" value="services"/>
1019 <optional>
1020 <text key="name" text="Name"/>
1021 <text key="operator" text="Operator"/>
1022 <check key="toilets" text="Toilets" default="off"/>
1023 </optional>
1024 </item>
1025 <item name="Rest Area" icon="presets/parking.png" type="node,closedway">
1026 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=rest_area"
1027 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=rest_area"
1028 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=rest_area"
1029 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=rest_area"
1030 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=rest_area"
1031 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=rest_area"
1032 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=rest_area"
1033 sv.href="http://wiki.openstreetmap.org/wiki/Sv:Tag:highway=rest_area"/>
1034 <label text="Edit Rest Area"/>
1035 <space/>
1036 <key key="highway" value="rest_area"/>
1037 <optional>
1038 <text key="name" text="Name"/>
1039 <check key="toilets" text="Toilets" default="off"/>
1040 </optional>
1041 </item>
1042 <item name="Emergency Phone" icon="presets/telephone.png" type="node">
1043 <link href="http://wiki.openstreetmap.org/wiki/Tag:emergency=phone"
1044 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:emergency=phone"
1045 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:emergency=phone"
1046 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:emergency=phone"/>
1047 <key key="emergency" value="phone"/>
1048 </item>
1049 <separator/>
1050 <item name="Traffic Signal" icon="presets/traffic-light.png" type="node">
1051 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=traffic_signals"
1052 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=traffic_signals"
1053 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=traffic_signals"
1054 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=traffic_signals"
1055 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=traffic_signals"/>
1056 <key key="highway" value="traffic_signals"/>
1057 <optional>
1058 <combo key="crossing" text="Pedestrian crossing type" values="uncontrolled,traffic_signals,island,unmarked,no,unknown"/>
1059 <check key="horse" text="Cross on horseback" default="off"/>
1060 <check key="bicycle" text="Cross by bicycle" default="off"/>
1061 <check key="supervised" text="Crossing attendant" default="off"/>
1062 <combo key="crossing_ref" text="Crossing type name (UK)" values="zebra,pelican,toucan,puffin,pegasus,tiger"/>
1063 </optional>
1064 </item>
1065 <item name="Stop" icon="presets/Stop.png" type="node">
1066 <key key="highway" value="stop"/>
1067 </item>
1068 <item name="Give way" icon="styles/standard/vehicle/restriction/right_of_way.png" type="node">
1069 <key key="highway" value="give_way"/>
1070 </item>
1071 <item name="Mini-roundabout" icon="presets/roundabout_left.png" type="node">
1072 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=mini_roundabout"
1073 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=mini_roundabout"
1074 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=mini_roundabout"
1075 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=mini_roundabout"
1076 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=mini_roundabout"
1077 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=mini_roundabout"/>
1078 <key key="highway" value="mini_roundabout"/>
1079 <combo key="direction" text="Direction" values="clockwise"/>
1080 </item>
1081 <item name="Pedestrian Crossing" icon="styles/standard/vehicle/zebra_crossing.png" type="node">
1082 <link href="http://wiki.openstreetmap.org/wiki/Key:crossing"
1083 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:crossing"
1084 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Key:crossing"
1085 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:crossing"
1086 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:crossing"
1087 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:crossing"
1088 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:crossing"/>
1089 <label text="Edit Crossing"/>
1090 <key key="highway" value="crossing"/>
1091 <combo key="crossing" text="Type" values="uncontrolled,traffic_signals,island,unmarked,no,unknown"/>
1092 <check key="bicycle" text="Cross by bicycle" default="off"/>
1093 <check key="horse" text="Cross on horseback" default="off"/>
1094 <check key="supervised" text="Crossing attendant" default="off"/>
1095 <combo key="crossing_ref" text="Type name (UK)" values="zebra,pelican,toucan,puffin,pegasus,tiger"/>
1096 </item>
1097 <item name="Traffic Calming" icon="presets/chicane.png" type="node,way">
1098 <link href="http://wiki.openstreetmap.org/wiki/Key:traffic_calming"
1099 es.href="http://wiki.openstreetmap.org/wiki/ES:Key:traffic_calming"
1100 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Key:traffic_calming"
1101 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:traffic_calming"
1102 it.href="http://wiki.openstreetmap.org/wiki/IT:Key:traffic_calming"
1103 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Key:traffic_calming"
1104 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:traffic_calming"
1105 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:traffic_calming"/>
1106 <label text="Edit Traffic Calming"/>
1107 <combo key="traffic_calming" text="Type" values="yes,bump,chicane,choker,cushion,hump,island,rumble_strip,table" match="key"/>
1108 </item>
1109 <item name="Passing Place" icon="presets/passingplace.png" type="node">
1110 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=passing_place"
1111 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=passing_place"
1112 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=passing_place"/>
1113 <label text="Edit Passing Place"/>
1114 <key key="highway" value="passing_place"/>
1115 </item>
1116 <item name="Turning Circle" icon="presets/turning_circle.png" type="node">
1117 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=turning_circle"
1118 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=turning_circle"
1119 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=turning_circle"
1120 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=turning_circle"
1121 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=turning_circle"/>
1122 <key key="highway" value="turning_circle"/>
1123 </item>
1124 <item name="City Limit" icon="presets/citylimit.png" type="node">
1125 <link href="http://wiki.openstreetmap.org/wiki/Tag:traffic_sign=city_limit"
1126 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:traffic_sign"
1127 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:traffic_sign"/>
1128 <label text="Edit City Limit Sign"/>
1129 <space/>
1130 <key key="traffic_sign" value="city_limit"/>
1131 <space/>
1132 <text key="name" text="Name"/>
1133 <text key="alt_name" text="Second Name"/>
1134 </item>
1135 <item name="Speed Camera" icon="presets/speed_camera.png" type="node">
1136 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=speed_camera"
1137 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=speed_camera"
1138 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=speed_camera"
1139 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=speed_camera"
1140 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=speed_camera"/>
1141 <key key="highway" value="speed_camera"/>
1142 </item>
1143 <separator/>
1144 <item name="Grit Bin" icon="styles/standard/misc/grit_bin.png" type="node">
1145 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=grit_bin"
1146 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=grit_bin"
1147 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=grit_bin"
1148 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=grit_bin"/>
1149 <key key="amenity" value="grit_bin"/>
1150 </item>
1151 <separator/>
1152 <item name="Mountain Pass" icon="presets/mountain_pass.png" type="node">
1153 <link href="http://wiki.openstreetmap.org/wiki/Key:mountain_pass"
1154 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:mountain_pass"
1155 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:mountain_pass"
1156 it.href="http://wiki.openstreetmap.org/wiki/IT:Key:mountain_pass"
1157 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:mountain_pass"
1158 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:mountain_pass"/>
1159 <label text="Edit Mountain Pass"/>
1160 <space/>
1161 <key key="mountain_pass" value="yes"/>
1162 <optional>
1163 <text key="name" text="Name"/>
1164 <text key="ele" text="Elevation"/>
1165 <text key="wikipedia" text="Wikipedia"/>
1166 </optional>
1167 </item>
1168 </group>
1169 <!-- Waypoints -->
1170 <group name="Barriers" icon="presets/barrier.png">
1171
1172 <!-- *** node barriers *** -->
1173 <item name="Block" icon="presets/block.png" type="node,way,closedway">
1174 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=block"
1175 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=block"
1176 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=block"/>
1177 <label text="Edit Block"/>
1178 <space/>
1179 <key key="barrier" value="block"/>
1180 <label text="Allowed traffic:"/>
1181 <space/>
1182 <check key="foot" text="Foot" default="on"/>
1183 <check key="bicycle" text="Bicycle" default="on"/>
1184 <check key="horse" text="Horse" default="off"/>
1185 <check key="motorcycle" text="Motorcycle" default="off"/>
1186 </item>
1187 <!-- block -->
1188 <item name="Bollard" icon="presets/bollard.png" type="node,way">
1189 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=bollard"
1190 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=bollard"
1191 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:barrier=bollard"
1192 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=bollard"
1193 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:barrier=bollard"
1194 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=bollard"/>
1195 <label text="Edit Bollard"/>
1196 <space/>
1197 <key key="barrier" value="bollard"/>
1198 <label text="Allowed traffic:"/>
1199 <space/>
1200 <check key="foot" text="Foot" default="on"/>
1201 <check key="bicycle" text="Bicycle" default="on"/>
1202 <check key="horse" text="Horse" default="off"/>
1203 <check key="motorcycle" text="Motorcycle" default="off"/>
1204 <optional>
1205 <text key="maxwidth" text="Max. width (meters)" length="7"/>
1206 <combo key="bollard" text="Bollard type" values="rising,removable"/>
1207 </optional>
1208 </item>
1209 <!-- bollard -->
1210 <item name="Cycle Barrier" icon="styles/standard/vehicle/cycle_barrier.png" type="node">
1211 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=cycle_barrier"
1212 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=cycle_barrier"
1213 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:barrier=cycle_barrier"
1214 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=cycle_barrier"/>
1215 <label text="Edit Cycle Barrier"/>
1216 <space/>
1217 <key key="barrier" value="cycle_barrier"/>
1218 <label text="Allowed traffic:"/>
1219 <space/>
1220 <check key="foot" text="Foot" default="on"/>
1221 <check key="bicycle" text="Bicycle" default="on"/>
1222 <check key="horse" text="Horse" default="off"/>
1223 <check key="motorcycle" text="Motorcycle" default="off"/>
1224 <optional>
1225 <text key="maxwidth" text="Max. width (meters)" length="7"/>
1226 </optional>
1227 </item>
1228 <!-- cycle_barrier -->
1229 <item name="Cattle Grid" icon="presets/cattle_grid.png" type="node">
1230 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=cattle_grid"/>
1231 <label text="Edit Cattle Grid"/>
1232 <space/>
1233 <key key="barrier" value="cattle_grid"/>
1234 <label text="Allowed traffic:"/>
1235 <space/>
1236 <check key="foot" text="Foot" default="on"/>
1237 <check key="bicycle" text="Bicycle" default="on"/>
1238 <check key="motorcycle" text="Motorcycle" default="off"/>
1239 <check key="motorcar" text="Motorcar" default="off"/>
1240 </item>
1241 <!-- cattle_grid -->
1242 <item name="Bus Trap" icon="presets/empty.png" type="node">
1243 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=bus_trap"
1244 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=bus_trap"/>
1245 <label text="Edit Bus Trap"/>
1246 <space/>
1247 <key key="barrier" value="bus_trap"/>
1248 <optional>
1249 <text key="maxwidth" text="Max. width (meters)" length="7"/>
1250 </optional>
1251 </item>
1252 <!-- bus_trap -->
1253 <item name="Spikes" icon="presets/empty.png" type="node">
1254 <label text="Edit Spikes"/>
1255 <space/>
1256 <key key="barrier" value="spikes"/>
1257 <label text="Allowed traffic:"/>
1258 <space/>
1259 <check key="foot" text="Foot" default="on"/>
1260 <check key="bicycle" text="Bicycle" default="on"/>
1261 <check key="horse" text="Horse" default="off"/>
1262 <check key="motorcycle" text="Motorcycle" default="off"/>
1263 <check key="motorcar" text="Motorcar" default="off"/>
1264 </item>
1265 <!-- spikes -->
1266 <item name="Toll Booth" icon="presets/toll_station.png" type="node,closedway">
1267 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=toll_booth"
1268 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=toll_booth"
1269 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:barrier=toll_booth"
1270 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=toll_booth"
1271 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=toll_booth"
1272 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=toll_booth"
1273 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=toll_booth"
1274 zh_CN.href="http://wiki.openstreetmap.org/wiki/Zh-hans:Tag:barrier=toll_booth"/>
1275 <label text="Edit Toll Booth"/>
1276 <space/>
1277 <key key="barrier" value="toll_booth"/>
1278 <optional>
1279 <text key="name" text="Name"/>
1280 <text key="operator" text="Operator"/>
1281 </optional>
1282 </item>
1283 <!-- toll_booth -->
1284 <item name="Border Control" icon="presets/douane.png" type="node">
1285 <label text="Edit Border Control"/>
1286 <space/>
1287 <key key="barrier" value="border_control"/>
1288 <label text="Allowed traffic:"/>
1289 <space/>
1290 <check key="foot" text="Foot" default="on"/>
1291 <check key="bicycle" text="Bicycle" default="on"/>
1292 <check key="horse" text="Horse" default="off"/>
1293 <check key="motorcycle" text="Motorcycle" default="off"/>
1294 <check key="motorcar" text="Motorcar" default="off"/>
1295 </item>
1296 <!-- border_control -->
1297 <separator/>
1298
1299 <!-- *** linear barriers *** -->
1300 <item name="Hedge" icon="presets/hedge.png" type="way,closedway,relation">
1301 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=hedge"
1302 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=hedge"
1303 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:barrier=hedge"
1304 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=hedge"
1305 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:barrier=hedge"
1306 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=hedge"
1307 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=hedge"
1308 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=hedge"/>
1309 <label text="Edit Hedge"/>
1310 <space/>
1311 <key key="barrier" value="hedge"/>
1312 <optional>
1313 <text key="height" text="Height (meters)" length="7"/>
1314 <text key="genus" text="Genus"/>
1315 <text key="species" text="Species"/>
1316 <text key="taxon" text="Taxon"/>
1317 </optional>
1318 </item>
1319 <!-- hedge -->
1320 <item name="Fence" icon="presets/fence.png" type="way,closedway">
1321 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=fence"
1322 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=fence"
1323 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:barrier=fence"
1324 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=fence"
1325 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:barrier=fence"
1326 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=fence"
1327 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=fence"
1328 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=fence"/>
1329 <label text="Edit Fence"/>
1330 <space/>
1331 <key key="barrier" value="fence"/>
1332 <optional>
1333 <combo key="fence_type" text="Type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
1334 <text key="height" text="Height (meters)" length="7"/>
1335 <combo key="material" text="Material" values="brick,concrate,stone,steel,timber"/>
1336 </optional>
1337 </item>
1338 <!-- fence -->
1339 <item name="Guard Rail" type="way">
1340 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=guard_rail"/>
1341 <label text="Edit Guard Rail"/>
1342 <space/>
1343 <key key="barrier" value="guard_rail"/>
1344 <optional>
1345 <text key="height" text="Height (meters)" length="7"/>
1346 </optional>
1347 </item>
1348 <!-- guard_rail -->
1349 <item name="Wall" icon="presets/wall.png" type="way,closedway">
1350 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=wall"
1351 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=wall"
1352 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:barrier=wall"
1353 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=wall"
1354 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=wall"
1355 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=wall"
1356 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=wall"
1357 zh_CN.href="http://wiki.openstreetmap.org/wiki/Zh-hans:Tag:barrier=wall"/>
1358 <label text="Edit Wall"/>
1359 <space/>
1360 <key key="barrier" value="wall"/>
1361 <optional>
1362 <text key="height" text="Height (meters)" length="7"/>
1363 <combo key="material" text="Material" values="brick,earth,concrate,stone,steel,timber"/>
1364 <combo key="fence_type" text="Fence type on top" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
1365 </optional>
1366 </item>
1367 <!-- wall -->
1368 <item name="City Wall" icon="presets/city_wall.png" type="way,closedway">
1369 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=city_wall"
1370 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=city_wall"
1371 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=city_wall"
1372 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=city_wall"/>
1373 <label text="Edit City Wall"/>
1374 <space/>
1375 <key key="barrier" value="city_wall"/>
1376 <optional>
1377 <text key="height" text="Height (meters)" length="7"/>
1378 <combo key="material" text="Material" values="brick,earth,concrate,stone,steel,timber"/>
1379 </optional>
1380 </item>
1381 <!-- city_wall -->
1382 <item name="Retaining Wall" icon="presets/retaining_wall.png" type="way,closedway">
1383 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=retaining_wall"
1384 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=retaining_wall"
1385 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=retaining_wall"
1386 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=retaining_wall"
1387 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=retaining_wall"
1388 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=retaining_wall"/>
1389 <label text="Edit Retaining Wall. Note: left side is top"/>
1390 <space/>
1391 <key key="barrier" value="retaining_wall"/>
1392 <optional>
1393 <text key="height" text="Height (meters)" length="7"/>
1394 <combo key="material" text="Material" values="brick,earth,concrate,stone,steel,timber"/>
1395 </optional>
1396 </item>
1397 <!-- retaining_wall -->
1398 <item name="Ditch" name_context="Barrier" type="way">
1399 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=ditch"
1400 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:barrier=ditch"
1401 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=ditch"
1402 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=ditch"
1403 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=ditch"/>
1404 <label text="Edit Ditch"/>
1405 <space/>
1406 <key key="barrier" value="ditch"/>
1407 <optional>
1408 <text key="width" text="Width (meters)" length="7"/>
1409 </optional>
1410 </item>
1411 <!-- ditch -->
1412 <item name="Kerb" type="way,closedway">
1413 <label text="Edit Kerb"/>
1414 <space/>
1415 <key key="barrier" value="kerb"/>
1416 <optional>
1417 <text key="height" text="Height (meters)" length="7"/>
1418 </optional>
1419 </item>
1420 <!-- kerb -->
1421 <separator/>
1422
1423 <!-- *** access *** -->
1424 <item name="Entrance" icon="styles/standard/vehicle/entrance.png" type="node">
1425 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=entrance"
1426 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=entrance"
1427 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=entrance"/>
1428 <label text="Edit Entrance"/>
1429 <space/>
1430 <key key="barrier" value="entrance"/>
1431 <label text="Allowed traffic:"/>
1432 <space/>
1433 <check key="foot" text="Foot" default="on"/>
1434 <check key="bicycle" text="Bicycle" default="on"/>
1435 <check key="horse" text="Horse" default="off"/>
1436 <check key="motorcycle" text="Motorcycle" default="off"/>
1437 <check key="motorcar" text="Motorcar" default="off"/>
1438 <check key="train" text="Train" default="off"/>
1439 <check key="boat" text="Boat" default="off"/>
1440 <optional>
1441 <text key="maxwidth" text="Max. width (meters)" length="7"/>
1442 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
1443 </optional>
1444 </item>
1445 <!-- entrance -->
1446 <item name="Gate" icon="presets/gate.png" type="node">
1447 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=gate"
1448 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:barrier=gate"
1449 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=gate"
1450 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=gate"
1451 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=gate"
1452 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=gate"/>
1453 <label text="Edit Gate"/>
1454 <space/>
1455 <key key="barrier" value="gate"/>
1456 <label text="Allowed traffic:"/>
1457 <space/>
1458 <check key="foot" text="Foot" default="on"/>
1459 <check key="bicycle" text="Bicycle" default="on"/>
1460 <check key="horse" text="Horse" default="off"/>
1461 <check key="motorcycle" text="Motorcycle" default="off"/>
1462 <check key="motorcar" text="Motorcar" default="off"/>
1463 <check key="train" text="Train" default="off"/>
1464 <check key="boat" text="Boat" default="off"/>
1465 <optional>
1466 <text key="maxwidth" text="Max. width (meters)" length="7"/>
1467 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
1468 </optional>
1469 </item>
1470 <!-- gate -->
1471 <item name="Lift Gate" icon="presets/lift_gate.png" type="node">
1472 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=lift_gate"
1473 de.href="http://wiki.openstreetmap.org/wiki/FR:Tag:barrier=lift_gate"
1474 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=lift_gate"
1475 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=lift_gate"
1476 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=lift_gate"
1477 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=lift_gate"/>
1478 <label text="Edit Lift Gate"/>
1479 <space/>
1480 <key key="barrier" value="lift_gate"/>
1481 <label text="Allowed traffic:"/>
1482 <space/>
1483 <check key="foot" text="Foot" default="on"/>
1484 <check key="bicycle" text="Bicycle" default="on"/>
1485 <check key="horse" text="Horse" default="off"/>
1486 <check key="motorcycle" text="Motorcycle" default="off"/>
1487 <check key="motorcar" text="Motorcar" default="off"/>
1488 <check key="train" text="Train" default="off"/>
1489 <optional>
1490 <text key="maxwidth" text="Max. width (meters)" length="7"/>
1491 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
1492 </optional>
1493 </item>
1494 <!-- lift_gate -->
1495 <item name="Hampshire Gate" icon="presets/empty.png" type="node">
1496 <label text="Edit Hampshire Gate"/>
1497 <space/>
1498 <key key="barrier" value="hampshire_gate"/>
1499 <label text="Allowed traffic:"/>
1500 <space/>
1501 <check key="foot" text="Foot" default="on"/>
1502 <check key="bicycle" text="Bicycle" default="on"/>
1503 <check key="horse" text="Horse" default="off"/>
1504 <check key="motorcycle" text="Motorcycle" default="off"/>
1505 <check key="motorcar" text="Motorcar" default="off"/>
1506 <optional>
1507 <text key="maxwidth" text="Max. width (meters)" length="7"/>
1508 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
1509 </optional>
1510 </item>
1511 <!-- hampshire_gate -->
1512 <item name="Bump Gate" icon="presets/empty.png" type="node">
1513 <label text="Edit Bump Gate"/>
1514 <space/>
1515 <key key="barrier" value="bump_gate"/>
1516 <label text="Allowed traffic:"/>
1517 <space/>
1518 <check key="foot" text="Foot" default="on"/>
1519 <check key="bicycle" text="Bicycle" default="on"/>
1520 <check key="horse" text="Horse" default="off"/>
1521 <check key="motorcycle" text="Motorcycle" default="off"/>
1522 <check key="motorcar" text="Motorcar" default="off"/>
1523 <optional>
1524 <text key="maxwidth" text="Max. width (meters)" length="7"/>
1525 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
1526 </optional>
1527 </item>
1528 <!-- bump_gate -->
1529 <item name="Kissing Gate" icon="presets/empty.png" type="node">
1530 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=kissing_gate"/>
1531 <label text="Edit Kissing Gate"/>
1532 <space/>
1533 <key key="barrier" value="kissing_gate"/>
1534 <label text="Allowed traffic:"/>
1535 <space/>
1536 <check key="foot" text="Foot" default="on"/>
1537 <check key="bicycle" text="Bicycle" default="off"/>
1538 <optional>
1539 <text key="maxwidth" text="Max. width (meters)" length="7"/>
1540 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
1541 </optional>
1542 </item>
1543 <!-- kissing_gate -->
1544 <item name="Chain" type="node">
1545 <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=chain"
1546 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=chain"/>
1547 <label text="Edit Chain"/>
1548 <space/>
1549 <key key="barrier" value="chain"/>
1550 <label text="Allowed traffic:"/>
1551 <space/>
1552 <check key="foot" text="Foot" default="on"/>
1553 <check key="bicycle" text="Bicycle" default="on"/>
1554 <check key="horse" text="Horse" default="off"/>
1555 <check key="motorcycle" text="Motorcycle" default="off"/>
1556 <check key="motorcar" text="Motorcar" default="off"/>
1557 <check key="boat" text="Boat" default="off"/>
1558 <optional>
1559 <text key="maxwidth" text="Max. width (meters)" length="7"/>
1560 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
1561 </optional>
1562 </item>
1563 <!-- chain -->
1564 <item name="Stile" icon="presets/stile.png" type="node">
1565 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=stile"/>
1566 <label text="Edit Stile"/>
1567 <space/>
1568 <key key="barrier" value="stile"/>
1569 <optional>
1570 <combo key="stile" text="Type" values="ladder,squeezer,stepover"/>
1571 <combo key="material" text="Material" values="metal,stone,wood"/>
1572 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
1573 </optional>
1574 <label text="Allowed traffic:"/>
1575 <space/>
1576 <check key="foot" text="Foot" default="on"/>
1577 <check key="bicycle" text="Bicycle" default="off"/>
1578 </item>
1579 <!-- stile -->
1580 <item name="Turnstile" icon="styles/standard/vehicle/turnstile.png" type="node">
1581 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=stile"
1582 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:highway=stile"
1583 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=stile"/>
1584 <label text="Edit Turnstile"/>
1585 <space/>
1586 <key key="barrier" value="turnstile"/>
1587 <label text="Allowed traffic:"/>
1588 <space/>
1589 <check key="foot" text="Foot" default="on"/>
1590 <check key="bicycle" text="Bicycle" default="off"/>
1591 </item>
1592 <!-- turnstile -->
1593 <item name="Sally Port" icon="styles/standard/vehicle/sally_port.png" type="node">
1594 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=sally_port"
1595 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=sally_port"
1596 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=sally_port"/>
1597 <label text="Edit Sally Port"/>
1598 <space/>
1599 <key key="barrier" value="sally_port"/>
1600 <label text="Allowed traffic:"/>
1601 <space/>
1602 <check key="foot" text="Foot" default="on"/>
1603 <check key="bicycle" text="Bicycle" default="on"/>
1604 <check key="horse" text="Horse" default="off"/>
1605 <check key="motorcycle" text="Motorcycle" default="off"/>
1606 <check key="motorcar" text="Motorcar" default="off"/>
1607 <optional>
1608 <text key="maxheight" text="Max. height (meters)" length="7"/>
1609 <text key="maxwidth" text="Max. width (meters)" length="7"/>
1610 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
1611 </optional>
1612 </item>
1613 <!-- sally_port -->
1614
1615 </group>
1616 <!-- Barriers -->
1617 <group name="Passageways" icon="presets/tunnel.png">
1618 <item name="Tunnel" icon="presets/tunnel.png" type="way">
1619 <label text="Edit Tunnel"/>
1620 <link href="http://wiki.openstreetmap.org/wiki/Key:tunnel"
1621 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:tunnel"
1622 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Key:tunnel"
1623 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:tunnel"
1624 it.href="http://wiki.openstreetmap.org/wiki/IT:Key:tunnel"
1625 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:tunnel"
1626 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:tunnel"
1627 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:tunnel"
1628 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Key:tunnel"/>
1629 <space/>
1630 <key key="tunnel" value="yes"/>
1631 <optional>
1632 <text key="name" text="Name"/>
1633 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5" default="-1"/>
1634 <text key="maxspeed" text="Max. speed (km/h)"/>
1635 <text key="width" text="Width (meters)" length="7"/>
1636 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
1637 <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
1638 </optional>
1639 </item>
1640 <item name="Building Passage" icon="presets/tunnel.png" type="way">
1641 <label text="Edit Building Passage"/>
1642 <link href="http://wiki.openstreetmap.org/wiki/Key:tunnel"
1643 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:tunnel"
1644 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Key:tunnel"
1645 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:tunnel"
1646 it.href="http://wiki.openstreetmap.org/wiki/IT:Key:tunnel"
1647 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:tunnel"
1648 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:tunnel"
1649 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:tunnel"
1650 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Key:tunnel"/>
1651 <space/>
1652 <key key="tunnel" value="building_passage"/>
1653 <optional>
1654 <text key="name" text="Name"/>
1655 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
1656 <text key="maxspeed" text="Max. speed (km/h)"/>
1657 <text key="width" text="Width (meters)" length="7"/>
1658 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
1659 </optional>
1660 </item>
1661 <item name="Arcade" type="way">
1662 <label text="Edit Arcade"/>
1663 <link href="http://wiki.openstreetmap.org/wiki/Key:covered"
1664 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:covered"
1665 it.href="http://wiki.openstreetmap.org/wiki/IT:Key:covered"
1666 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:covered"
1667 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:covered"/>
1668 <space/>
1669 <key key="covered" value="arcade"/>
1670 <check key="arcade:left" value_on="open" text="Open on left side"/>
1671 <check key="arcade:right" value_on="open" text="Open on right side"/>
1672 <optional>
1673 <text key="name" text="Name"/>
1674 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
1675 <text key="width" text="Width (meters)" length="7"/>
1676 </optional>
1677 </item>
1678 <item name="Colonnade" type="way">
1679 <label text="Edit Colonnade"/>
1680 <link href="http://wiki.openstreetmap.org/wiki/Key:covered"
1681 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:covered"
1682 it.href="http://wiki.openstreetmap.org/wiki/IT:Key:covered"
1683 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:covered"
1684 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:covered"/>
1685 <space/>
1686 <key key="covered" value="colonnade"/>
1687 <check key="colonnade:left" value_on="open" text="Open on left side"/>
1688 <check key="colonnade:right" value_on="open" text="Open on right side"/>
1689 <optional>
1690 <text key="name" text="Name"/>
1691 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
1692 <text key="width" text="Width (meters)" length="7"/>
1693 </optional>
1694 </item>
1695 <item name="Avalanche Protector" type="way">
1696 <label text="Edit Avalanche Protector"/>
1697 <link href="http://wiki.openstreetmap.org/wiki/Key:tunnel"
1698 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:tunnel"
1699 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Key:tunnel"
1700 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:tunnel"
1701 it.href="http://wiki.openstreetmap.org/wiki/IT:Key:tunnel"
1702 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:tunnel"
1703 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:tunnel"
1704 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:tunnel"
1705 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Key:tunnel"/>
1706 <space/>
1707 <key key="tunnel" value="avalanche_protector"/>
1708 <check key="avalanche_protector:left" value_on="open" text="Open on left side"/>
1709 <check key="avalanche_protector:right" value_on="open" text="Open on right side"/>
1710 <optional>
1711 <text key="name" text="Name"/>
1712 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
1713 <text key="width" text="Width (meters)" length="7"/>
1714 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
1715 </optional>
1716 </item>
1717 </group>
1718 </group>
1719 <!-- Passageways -->
1720 <group name="Water" icon="presets/waterway.png">
1721 <group name="Water" icon="presets/waterway.png">
1722 <separator/>
1723 <item name="Drain" icon="presets/waterway.png" type="way">
1724 <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=drain"
1725 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=drain"
1726 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=drain"
1727 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=drain"/>
1728 <label text="Edit Drain"/>
1729 <space/>
1730 <key key="waterway" value="drain"/>
1731 <text key="name" text="Name"/>
1732 <text key="width" text="Width (meters)" length="7"/>
1733 <space/>
1734 <check key="intermittent" text="Intermittent" default="off"/>
1735 <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
1736 <space/>
1737 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
1738 <check key="tunnel" text="Culvert" value_on="culvert"/>
1739 <check key="bridge" text="Aqueduct" value_on="aqueduct"/>
1740 </item>
1741 <item name="Ditch" icon="presets/waterway.png" type="way">
1742 <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=ditch"
1743 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=ditch"
1744 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=ditch"
1745 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=ditch"/>
1746 <label text="Edit Ditch"/>
1747 <text key="width" text="Width (meters)" length="7"/>
1748 <space/>
1749 <key key="waterway" value="ditch"/>
1750 <text key="name" text="Name"/>
1751 <space/>
1752 <check key="intermittent" text="Intermittent" default="off"/>
1753 <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
1754 <space/>
1755 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
1756 <check key="tunnel" text="Culvert" value_on="culvert"/>
1757 <check key="bridge" text="Aqueduct" value_on="aqueduct"/>
1758 </item>
1759 <item name="Stream" icon="presets/waterway.png" type="way">
1760 <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=stream"
1761 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=stream"
1762 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:waterway=stream"
1763 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:waterway=stream"
1764 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=stream"
1765 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=stream"
1766 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=stream"/>
1767 <label text="Edit Stream"/>
1768 <space/>
1769 <key key="waterway" value="stream"/>
1770 <text key="name" text="Name"/>
1771 <space/>
1772 <check key="intermittent" text="Intermittent" default="off"/>
1773 <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
1774 <space/>
1775 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
1776 </item>
1777 <item name="Canal" icon="presets/waterway.png" type="way">
1778 <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=canal"
1779 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:waterway=canal"
1780 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=canal"
1781 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=canal"
1782 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=canal"/>
1783 <label text="Edit Canal"/>
1784 <space/>
1785 <key key="waterway" value="canal"/>
1786 <text key="name" text="Name"/>
1787 <text key="wikipedia" text="Wikipedia"/>
1788 <text key="width" text="Width (meters)" length="7"/>
1789 <space/>
1790 <check key="intermittent" text="Intermittent" default="off"/>
1791 <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
1792 <space/>
1793 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
1794 <check key="tunnel" text="Culvert" value_on="culvert"/>
1795 <check key="bridge" text="Aqueduct" value_on="aqueduct"/>
1796 </item>
1797 <item name="River" icon="presets/river.png" type="way">
1798 <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=river"
1799 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=river"
1800 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:waterway=river"
1801 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:waterway=river"
1802 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=river"
1803 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=river"/>
1804 <label text="Edit River"/>
1805 <space/>
1806 <key key="waterway" value="river"/>
1807 <text key="name" text="Name"/>
1808 <space/>
1809 <check key="intermittent" text="Intermittent" default="off"/>
1810 <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
1811 <space/>
1812 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
1813 <text key="wikipedia" text="Wikipedia"/>
1814 </item>
1815 <separator/>
1816 <item name="Spring" icon="presets/spring.png" type="node,closedway">
1817 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=spring"
1818 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:natural=spring"
1819 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:natural=spring"
1820 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=spring"
1821 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=spring"/>
1822 <label text="Edit Spring"/>
1823 <key key="natural" value="spring"/>
1824 <text key="name" text="Name"/>
1825 <space/>
1826 <check key="intermittent" text="Intermittent" default="off"/>
1827 <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
1828 <space/>
1829 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
1830 <check key="tunnel" text="Culvert" value_on="culvert"/>
1831 <check key="bridge" text="Aqueduct" value_on="aqueduct"/>
1832 </item>
1833 <item name="Waterfall" icon="presets/waterfall.png" type="node,way">
1834 <label text="Edit Waterfall"/>
1835 <space/>
1836 <key key="waterway" value="waterfall"/>
1837 <text key="name" text="Name"/>
1838 <text key="height" text="Height (meters)" length="7"/>
1839 <space/>
1840 <check key="intermittent" text="Intermittent" default="off"/>
1841 <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
1842 <space/>
1843 <text key="wikipedia" text="Wikipedia"/>
1844 </item>
1845 <item name="Weir" icon="presets/weir.png" type="node,way">
1846 <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=weir"
1847 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=weir"
1848 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:waterway=weir"
1849 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=weir"
1850 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=weir"
1851 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=weir"/>
1852 <label text="Edit Weir"/>
1853 <space/>
1854 <key key="waterway" value="weir"/>
1855 <text key="name" text="Name"/>
1856 <check key="intermittent" text="Intermittent" default="off"/>
1857 </item>
1858 <item name="Dam" icon="presets/dam.png" type="node,way,closedway">
1859 <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=dam"
1860 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=dam"
1861 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=dam"
1862 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=dam"
1863 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=dam"/>
1864 <label text="Edit Dam"/>
1865 <space/>
1866 <key key="waterway" value="dam"/>
1867 <text key="name" text="Name"/>
1868 <text key="height" text="Height (meters)" length="7"/>
1869 <text key="width" text="Width (meters)" length="7"/>
1870 <text key="wikipedia" text="Wikipedia"/>
1871 <space/>
1872 <combo key="material" text="Material" values="earth,concrate,stone,steel,timber"/>
1873 </item>
1874 <item name="Groyne" icon="presets/groyne.png" type="node,way,closedway">
1875 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=groyne"
1876 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=groyne"
1877 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:man_made=groyne"
1878 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=groyne"/>
1879 <label text="Edit Groyne"/>
1880 <space/>
1881 <key key="man_made" value="groyne"/>
1882 </item>
1883 <item name="Breakwater" icon="presets/groyne.png" type="way,closedway">
1884 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=breakwater"
1885 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=breakwater"
1886 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=breakwater"/>
1887 <label text="Edit Breakwater"/>
1888 <space/>
1889 <key key="man_made" value="breakwater"/>
1890 <text key="height" text="Height (meters)" length="7"/>
1891 <text key="width" text="Width (meters)" length="7"/>
1892 <text key="ref" text="Reference"/>
1893 <text key="name" text="Name"/>
1894 <space/>
1895 <combo key="material" text="Material" values="earth,concrate,stone,steel,timber"/>
1896 </item>
1897 <separator/>
1898 <item name="Culvert" icon="presets/tunnel.png" type="way">
1899 <label text="Edit Culvert"/>
1900 <link href="http://wiki.openstreetmap.org/wiki/Tag:tunnel=culvert"
1901 de.href="http://wiki.openstreetmap.org/wiki/DE:tunnel=culvert"
1902 ja.href="http://wiki.openstreetmap.org/wiki/JA:tunnel=culvert"
1903 pl.href="http://wiki.openstreetmap.org/wiki/Pl:tunnel=culvert"
1904 ru.href="http://wiki.openstreetmap.org/wiki/RU:tunnel=culvert"/>
1905 <space/>
1906 <key key="tunnel" value="culvert"/>
1907 <optional>
1908 <text key="name" text="Name"/>
1909 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5" default="-1"/>
1910 <text key="width" text="Width (meters)" length="7"/>
1911 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
1912 <space/>
1913 <check key="boat" text="Boat" default="off"/>
1914 <check key="foot" text="Foot" default="off"/>
1915 <check key="bicycle" text="Bicycle" default="off"/>
1916 <check key="horse" text="Horse" default="off"/>
1917 <check key="motorcycle" text="Motorcycle" default="off"/>
1918 <check key="motorcar" text="Motorcar" default="off"/>
1919 <space/>
1920 <combo key="barrier" text="Barrier (entrance)" values="yes,fence,railing,chain,chicane,cycle_barrier,debris,entrance,gate,rope"/>
1921 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
1922 </optional>
1923 </item>
1924 <separator/>
1925 <item name="Basin" icon="presets/landuse_water.png" type="node,closedway,relation">
1926 <label text="Edit Basin Landuse"/>
1927 <space/>
1928 <key key="landuse" value="basin"/>
1929 <text key="name" text="Name"/>
1930 <space/>
1931 <optional>
1932 <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
1933 <check text="Dam" key="waterway" value_on="dam"/>
1934 <check key="embankment" text="Embankment" default="off"/>
1935 <combo key="barrier" text="Barrier" values="retaining_wall"/>
1936 <combo key="material" text="Material of barrier/dam" values="brick,earth,concrate,stone,steel,timber"/>
1937 </optional>
1938 </item>
1939 <item name="Reservoir" icon="presets/landuse_water.png" type="node,closedway,relation">
1940 <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=reservoir"
1941 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=reservoir"
1942 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=reservoir"
1943 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=reservoir"
1944 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=reservoir"/>
1945 <label text="Edit Reservoir Landuse"/>
1946 <space/>
1947 <key key="landuse" value="reservoir"/>
1948 <text key="name" text="Name"/>
1949 <space/>
1950 <optional>
1951 <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
1952 <check text="Dam" key="waterway" value_on="dam"/>
1953 <!-- TODO dam area -->
1954 <check key="embankment" text="Embankment" default="off"/>
1955 <combo key="barrier" text="Barrier" values="retaining_wall"/>
1956 <combo key="material" text="Material of barrier/dam" values="brick,earth,concrate,stone,steel,timber"/>
1957 </optional>
1958 </item>
1959 <item name="Covered Reservoir" icon="presets/reservoir_covered.png" type="node,closedway,relation">
1960 <label text="Edit Covered Reservoir"/>
1961 <key key="man_made" value="reservoir_covered"/>
1962 <text key="name" text="Name"/>
1963 </item>
1964 <separator/>
1965 <item name="Water" icon="presets/water.png" type="node,closedway,relation">
1966 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=water"
1967 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=water"
1968 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:natural=water"
1969 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:natural=water"
1970 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=water"
1971 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=water"/>
1972 <label text="Edit Water"/>
1973 <key key="natural" value="water"/>
1974 <text key="name" text="Name"/>
1975 </item>
1976 <item name="Land" icon="presets/landuse.png" type="node,closedway,relation">
1977 <label text="Edit Land"/>
1978 <key key="natural" value="land"/>
1979 <text key="name" text="Name"/>
1980 </item>
1981 <item name="Coastline" icon="presets/coastline.png" type="node,way,closedway,relation">
1982 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=coastline"
1983 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=coastline"
1984 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=coastline"
1985 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=coastline"/>
1986 <label text="Edit Coastline"/>
1987 <key key="natural" value="coastline"/>
1988 <text key="name" text="Name"/>
1989 <optional>
1990 <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
1991 </optional>
1992 </item>
1993 <item name="Riverbank" icon="presets/waterway.png" type="closedway,relation">
1994 <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=riverbank"
1995 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=riverbank"
1996 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:waterway=riverbank"
1997 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=riverbank"
1998 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=riverbank"
1999 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=riverbank"/>
2000 <label text="Edit Riverbank"/>
2001 <key key="waterway" value="riverbank"/>
2002 <text key="name" text="Name"/>
2003 <optional>
2004 <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
2005 <!-- TODO dam area -->
2006 </optional>
2007 </item>
2008 <separator/>
2009 <item name="Wetland" icon="presets/empty.png" type="node,closedway,relation">
2010 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=wetland"
2011 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=wetland"
2012 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:natural=wetland"
2013 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:natural=wetland"
2014 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:natural=wetland"
2015 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=wetland"
2016 pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:natural=wetland"
2017 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=wetland"
2018 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=wetland"/>
2019 <label text="Edit Wetland"/>
2020 <key key="natural" value="wetland"/>
2021 <text key="name" text="Name"/>
2022 <combo key="wetland" text="Type" values="swamp,bog,marsh,reedbed,saltmarsh,tidalflat,mangrove"/>
2023 </item>
2024 <item name="Mud" icon="presets/mud.png" type="node,closedway,relation">
2025 <label text="Edit Mud"/>
2026 <key key="natural" value="mud"/>
2027 <text key="name" text="Name"/>
2028 </item>
2029 <item name="Beach" icon="presets/beach.png" type="node,closedway,relation">
2030 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=beach"
2031 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:natural=beach"
2032 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=beach"
2033 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=beach"
2034 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=beach"/>
2035 <label text="Edit Beach"/>
2036 <key key="natural" value="beach"/>
2037 <text key="name" text="Name"/>
2038 <space/>
2039 <optional>
2040 <combo key="access" text="General access" values="yes,customers,destination,official,permissive,private,no"/>
2041 </optional>
2042 </item>
2043 <item name="Bay" icon="presets/bay.png" type="node,closedway,relation">
2044 <label text="Edit Bay"/>
2045 <key key="natural" value="bay"/>
2046 <text key="name" text="Name"/>
2047 </item>
2048 <item name="Cliff" icon="presets/cliff.png" type="node,way,closedway,relation">
2049 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=cliff"
2050 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=cliff"
2051 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=cliff"
2052 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=cliff"
2053 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=cliff"/>
2054 <label text="Edit Cliff. Note: left side is top"/>
2055 <key key="natural" value="cliff"/>
2056 <text key="name" text="Name"/>
2057 </item>
2058 </group>
2059 <!-- Water -->
2060 <group name="Shipping" icon="presets/ferry.png">
2061 <item name="Ferry Terminal" icon="presets/ferry.png" type="node,closedway">
2062 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=ferry_terminal"
2063 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=ferry_terminal"
2064 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=ferry_terminal"
2065 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=ferry_terminal"
2066 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=ferry_terminal"
2067 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=ferry_terminal"/>
2068 <label text="Edit Ferry Terminal"/>
2069 <key key="amenity" value="ferry_terminal"/>
2070 <text key="name" text="Name"/>
2071 <combo key="cargo" text="Cargo" values="passengers,vehicle,bicycle,hgv,passengers;vehicle"/>
2072 </item>
2073 <item name="Ferry Route" icon="presets/ferry.png" type="way,closedway">
2074 <link href="http://wiki.openstreetmap.org/wiki/Tag:route=ferry"
2075 da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:route=ferry"
2076 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:route=ferry"
2077 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:route=ferry"
2078 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:route=ferry"/>
2079 <label text="Edit Ferry"/>
2080 <space/>
2081 <key key="route" value="ferry"/>
2082 <optional>
2083 <text key="name" text="Name"/>
2084 </optional>
2085 </item>
2086 <separator/>
2087 <item name="Marina" icon="presets/marina.png" type="node,closedway">
2088 <label text="Edit Marina"/>
2089 <key key="leisure" value="marina"/>
2090 <text key="name" text="Name"/>
2091 </item>
2092 <item name="Pier" icon="presets/pier.png" type="way,closedway">
2093 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=pier"
2094 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=pier"
2095 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:man_made=pier"
2096 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=pier"
2097 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=pier"/>
2098 <label text="Edit Pier"/>
2099 <key key="man_made" value="pier"/>
2100 <text key="name" text="Name"/>
2101 <text key="height" text="Height (meters)" length="7"/>
2102 <text key="width" text="Width (meters)" length="7"/>
2103 <space/>
2104 <combo key="material" text="Material" values="earth,concrate,stone,steel,wood"/>
2105 </item>
2106 <item name="Lock Gate" icon="presets/lock_gate.png" type="node">
2107 <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=lock_gate"
2108 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=lock_gate"
2109 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=lock_gate"
2110 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=lock_gate"/>
2111 <key key="waterway" value="lock_gate"/>
2112 </item>
2113 <item name="Turning Point" icon="presets/turning.png" type="node">
2114 <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=turning_point"
2115 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=turning_point"/>
2116 <key key="waterway" value="turning_point"/>
2117 </item>
2118 <separator/>
2119 <item name="Slipway" icon="styles/standard/nautical/slipway.png" type="node">
2120 <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=slipway"
2121 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:leisure=slipway"
2122 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:leisure=slipway"
2123 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:leisure=slipway"
2124 pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:leisure=slipway"
2125 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:leisure=slipway"/>
2126 <label text="Edit Slipway"/>
2127 <key key="leisure" value="slipway"/>
2128 <text key="name" text="Name"/>
2129 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
2130 </item>
2131 <item name="Boatyard" icon="presets/boatyard.png" type="node,closedway">
2132 <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=boatyard"
2133 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=boatyard"/>
2134 <label text="Edit Boatyard"/>
2135 <space/>
2136 <key key="waterway" value="boatyard"/>
2137 <text key="name" text="Name"/>
2138 </item>
2139 <item name="Dock" icon="presets/boatyard.png" type="node,closedway">
2140 <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=dock"
2141 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=dock"
2142 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=dock"
2143 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=dock"/>
2144 <label text="Edit Dock"/>
2145 <space/>
2146 <key key="waterway" value="dock"/>
2147 <text key="name" text="Name"/>
2148 </item>
2149 </group>
2150 <!-- Shipping -->
2151 </group>
2152 <group name="Transport" icon="presets/railway.png">
2153 <group name="Railway" icon="presets/railway.png">
2154 <item name="Rail" icon="presets/railway.png" type="way">
2155 <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=rail"
2156 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:railway=rail"
2157 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=rail"
2158 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:railway=rail"
2159 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:railway=rail"/>
2160 <label text="Edit Rail"/>
2161 <space/>
2162 <key key="railway" value="rail"/>
2163 <optional>
2164 <combo key="tracks" text="Parallel tracks" values="2,3,4,5,6"/>
2165 <combo key="usage" text="Usage" values="main,branch,industrial,military,tourism"/>
2166 <combo key="service" text="Service/Type" values="yard,siding,spur"/>
2167 <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
2168 <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
2169 <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
2170 <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
2171 <space/>
2172 <check key="bridge" text="Bridge" default="off"/>
2173 <check key="tunnel" text="Tunnel" default="off"/>
2174 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
2175 <check key="embankment" text="Embankment" default="off"/>
2176 <space/>
2177 <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
2178 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
2179 </optional>
2180 </item>
2181 <item name="Narrow Gauge Rail" icon="presets/railway.png" type="way">
2182 <label text="Edit Narrow Gauge Rail"/>
2183 <space/>
2184 <key key="railway" value="narrow_gauge"/>
2185 <optional>
2186 <combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
2187 <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
2188 <combo key="service" text="Types" values="yard,siding,spur"/>
2189 <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
2190 <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
2191 <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
2192 <space/>
2193 <check key="bridge" text="Bridge" default="off"/>
2194 <check key="tunnel" text="Tunnel" default="off"/>
2195 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
2196 <check key="embankment" text="Embankment" default="off"/>
2197 <space/>
2198 <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
2199 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
2200 </optional>
2201 </item>
2202 <item name="Monorail" icon="presets/railway.png" type="way">
2203 <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=monorail"
2204 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=monorail"
2205 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=monorail"/>
2206 <label text="Edit Monorail"/>
2207 <space/>
2208 <key key="railway" value="monorail"/>
2209 <optional>
2210 <combo key="service" text="Types" values="yard,siding,spur"/>
2211 <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
2212 <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
2213 <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
2214 <space/>
2215 <check key="bridge" text="Bridge" default="off"/>
2216 <check key="tunnel" text="Tunnel" default="off"/>
2217 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
2218 <check key="embankment" text="Embankment" default="off"/>
2219 <space/>
2220 <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
2221 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
2222 </optional>
2223 </item>
2224 <item name="Light Rail" icon="presets/rail_light.png" type="way">
2225 <label text="Edit Light Rail"/>
2226 <space/>
2227 <key key="railway" value="light_rail"/>
2228 <optional>
2229 <combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
2230 <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
2231 <combo key="service" text="Types" values="yard,siding,spur"/>
2232 <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
2233 <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
2234 <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
2235 <space/>
2236 <check key="bridge" text="Bridge" default="off"/>
2237 <check key="tunnel" text="Tunnel" default="off"/>
2238 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
2239 <check key="embankment" text="Embankment" default="off"/>
2240 <space/>
2241 <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
2242 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
2243 </optional>
2244 </item>
2245 <item name="Subway" icon="presets/rail_light.png" type="way">
2246 <label text="Edit Subway"/>
2247 <space/>
2248 <key key="railway" value="subway"/>
2249 <optional>
2250 <combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
2251 <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
2252 <combo key="service" text="Types" values="yard,siding,spur"/>
2253 <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
2254 <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
2255 <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
2256 <space/>
2257 <check key="bridge" text="Bridge" default="off"/>
2258 <check key="tunnel" text="Tunnel" default="off"/>
2259 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
2260 <check key="embankment" text="Embankment" default="off"/>
2261 </optional>
2262 </item>
2263 <item name="Tram" icon="presets/tram.png" type="way">
2264 <label text="Edit Tram"/>
2265 <space/>
2266 <key key="railway" value="tram"/>
2267 <optional>
2268 <combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
2269 <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
2270 <combo key="service" text="Types" values="yard,siding,spur"/>
2271 <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
2272 <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
2273 <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
2274 <space/>
2275 <check key="bridge" text="Bridge" default="off"/>
2276 <check key="tunnel" text="Tunnel" default="off"/>
2277 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
2278 <check key="embankment" text="Embankment" default="off"/>
2279 <space/>
2280 <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
2281 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
2282 </optional>
2283 </item>
2284 <item name="Bus Guideway" icon="presets/busway.png" type="way">
2285 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=bus_guideway"
2286 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=bus_guideway"
2287 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=bus_guideway"/>
2288 <label text="Edit Bus Guideway"/>
2289 <space/>
2290 <key key="highway" value="bus_guideway"/>
2291 <optional>
2292 <text key="name" text="Name"/>
2293 <check key="oneway" text="Oneway" default="off"/>
2294 <check key="bridge" text="Bridge" default="off"/>
2295 <check key="tunnel" text="Tunnel" default="off"/>
2296 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
2297 <check key="embankment" text="Embankment" default="off"/>
2298 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
2299 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
2300 <text key="maxspeed" text="Max. speed (km/h)"/>
2301 <text key="width" text="Width (meters)" length="7"/>
2302 <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
2303 </optional>
2304 </item>
2305 <separator/>
2306 <item name="Preserved" icon="presets/rail_preserved.png" type="way">
2307 <label text="Edit Preserved Railway"/>
2308 <space/>
2309 <key key="railway" value="preserved"/>
2310 <optional>
2311 <combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
2312 <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
2313 <combo key="service" text="Types" values="yard,siding,spur"/>
2314 <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
2315 <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
2316 <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
2317 <space/>
2318 <check key="embankment" text="Embankment" default="off"/>
2319 </optional>
2320 </item>
2321 <item name="Disused Rail" icon="presets/railway.png" type="way">
2322 <label text="Edit Disused Railway"/>
2323 <space/>
2324 <key key="railway" value="disused"/>
2325 <combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
2326 <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
2327 <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
2328 <combo key="service" text="Optional Types" values="yard,siding,spur"/>
2329 <space/>
2330 <check key="bridge" text="Bridge" default="off"/>
2331 <check key="tunnel" text="Tunnel" default="off"/>
2332 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
2333 <check key="embankment" text="Embankment" default="off"/>
2334 <space/>
2335 <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
2336 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
2337 </item>
2338 <item name="Abandoned Rail" icon="presets/railway.png" type="way">
2339 <key key="railway" value="abandoned"/>
2340 <combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
2341 <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
2342 <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
2343 <space/>
2344 <check key="bridge" text="Bridge" default="off"/>
2345 <check key="tunnel" text="Tunnel" default="off"/>
2346 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
2347 <check key="embankment" text="Embankment" default="off"/>
2348 <space/>
2349 <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
2350 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
2351 </item>
2352 <item name="Demolished Rail" icon="presets/railway.png" type="way">
2353 <combo key="demolished:rail" text="Demolished Rail" value="rail,narrow_gauge,light_rail,monorail,tram,bus_guideway"/>
2354 <text key="demolished" text="Demolition date"/>
2355 <space/>
2356 <check key="bridge" text="Bridge" default="off"/>
2357 <check key="tunnel" text="Tunnel" default="off"/>
2358 <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
2359 <check key="embankment" text="Embankment" default="off"/>
2360 <space/>
2361 <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
2362 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
2363 </item>
2364 <separator/>
2365 <item name="Level Crossing" icon="presets/level_crossing.png" type="node">
2366 <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=level_crossing"
2367 bg.href="http://wiki.openstreetmap.org/wiki/BG:Tag:railway=level_crossing"
2368 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=level_crossing"
2369 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:railway=level_crossing"
2370 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:railway=level_crossing"
2371 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:railway=level_crossing"
2372 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:railway=level_crossing"
2373 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:railway=level_crossing"
2374 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=level_crossing"
2375 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:railway=level_crossing"/>
2376 <key key="railway" value="level_crossing"/>
2377 </item>
2378 <item name="Crossing" icon="presets/crossing.png" type="node">
2379 <link href="http://wiki.openstreetmap.org/wiki/Key:crossing"/>
2380 <key key="railway" value="crossing"/>
2381 <optional>
2382 <combo key="crossing" text="Crossing type" values="uncontrolled,traffic_signals,island,unmarked,no,unknown"/>
2383 <check key="horse" text="Cross on horseback" default="off"/>
2384 <check key="bicycle" text="Cross by bicycle" default="off"/>
2385 <check key="supervised" text="Crossing attendant" default="off"/>
2386 </optional>
2387 </item>
2388 <item name="Turntable" icon="presets/turntable.png" type="node,closedway">
2389 <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=turntable"
2390 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=turntable"
2391 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=turntable"/>
2392 <key key="railway" value="turntable"/>
2393 </item>
2394 <!-- TODO propose http://en.wikipedia.org/wiki/Transfer_table
2395 <item name="Transfer table" icon="presets/turntable.png" type="node,closedway">
2396 <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=transfer_table"/>
2397 <key key="railway" value="transfer_table"/>
2398 </item>
2399 -->
2400 <item name="Buffer Stop" icon="styles/standard/transport/buffer_stop.png" type="node">
2401 <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=buffer_stop"
2402 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=buffer_stop"/>
2403 <key key="railway" value="buffer_stop"/>
2404 </item>
2405 </group>
2406 <!-- Railway -->
2407 <group name="Aerialway" icon="presets/aerialway.png">
2408 <item name="Chair Lift" icon="presets/chair_lift.png" type="way">
2409 <link href="http://wiki.openstreetmap.org/wiki/Tag:aerialway=chair_lift"/>
2410 <label text="Edit Chair Lift"/>
2411 <key key="aerialway" value="chair_lift"/>
2412 <text key="name" text="Name"/>
2413 <text key="ref" text="Reference number"/>
2414 <optional>
2415 <text key="aerialway:capacity" text="Number of people per hour"/>
2416 <text key="aerialway:occupancy" text="Number of people per chair"/>
2417 <text key="aerialway:duration" text="Typical journey time in minutes"/>
2418 <check key="aerialway:bubble" text="Has bubble?" default="off"/>
2419 <check key="aerialway:heating" text="Has heating?" default="off"/>
2420 </optional>
2421 </item>
2422 <item name="Drag Lift" icon="presets/drag_lift.png" type="way">
2423 <link href="http://wiki.openstreetmap.org/wiki/Tag:aerialway=drag_lift"/>
2424 <label text="Edit Drag Lift"/>
2425 <key key="aerialway" value="drag_lift"/>
2426 <text key="name" text="Name"/>
2427 <text key="ref" text="Reference number"/>
2428 <optional>
2429 <text key="aerialway:capacity" text="Number of people per hour"/>
2430 <text key="aerialway:duration" text="Typical journey time in minutes"/>
2431 </optional>
2432 </item>
2433 <item name="Cable Car" icon="presets/cable_car.png" type="way">
2434 <link href="http://wiki.openstreetmap.org/wiki/Tag:aerialway=cable_car"
2435 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:aerialway=cable_car"
2436 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aerialway=cable_car"
2437 sv.href="http://wiki.openstreetmap.org/wiki/Sv:Tag:aerialway=cable_car"/>
2438 <label text="Edit Cable Car"/>
2439 <key key="aerialway" value="cable_car"/>
2440 <text key="name" text="Name"/>
2441 <text key="ref" text="Reference number"/>
2442 <optional>
2443 <text key="aerialway:capacity" text="Number of people per hour"/>
2444 <text key="aerialway:occupancy" text="Number of people per car"/>
2445 <text key="aerialway:duration" text="Typical journey time in minutes"/>
2446 <check key="aerialway:heating" text="Has heating?" default="off"/>
2447 </optional>
2448 </item>
2449 <item name="Gondola" icon="presets/gondola.png" type="way">
2450 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps"
2451 fr.href="http://wiki.openstreetmap.org/wiki/FR:Proposed_features/Piste_Maps"
2452 it.href="http://wiki.openstreetmap.org/wiki/IT:Proposed_features/Piste_Maps"
2453 ru.href="http://wiki.openstreetmap.org/wiki/RU:Proposed_features/Piste_Maps"/>
2454 <label text="Edit Gondola"/>
2455 <key key="aerialway" value="gondola"/>
2456 <text key="name" text="Name"/>
2457 <text key="ref" text="Reference number"/>
2458 <optional>
2459 <text key="aerialway:capacity" text="Number of people per hour"/>
2460 <text key="aerialway:occupancy" text="Number of people per gondola"/>
2461 <text key="aerialway:duration" text="Typical journey time in minutes"/>
2462 <check key="aerialway:heating" text="Has heating?" default="off"/>
2463 </optional>
2464 </item>
2465 <item name="Mixed Lift" type="way">
2466 <link href="http://wiki.openstreetmap.org/wiki/Tag:aerialway=mixed_lift"/>
2467 <label text="Edit Mixed Lift (containing both gondolas and chairs)"/>
2468 <key key="aerialway" value="mixed_lift"/>
2469 <text key="name" text="Name"/>
2470 <text key="ref" text="Reference number"/>
2471 <optional>
2472 <text key="aerialway:capacity" text="Number of people per hour"/>
2473 <text key="aerialway:occupancy" text="Number of people per gondola/chair"/>
2474 <text key="aerialway:duration" text="Typical journey time in minutes"/>
2475 <check key="aerialway:bubble" text="Has bubble?" default="off"/>
2476 <check key="aerialway:heating" text="Has heating?" default="off"/>
2477 </optional>
2478 </item>
2479 <item name="T-bar Lift" icon="presets/drag_lift.png" type="way">
2480 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
2481 <label text="Edit T-bar Lift"/>
2482 <key key="aerialway" value="t-bar"/>
2483 <text key="name" text="Name"/>
2484 <text key="ref" text="Reference number"/>
2485 <optional>
2486 <text key="aerialway:capacity" text="Number of people per hour"/>
2487 <text key="aerialway:duration" text="Typical journey time in minutes"/>
2488 </optional>
2489 </item>
2490 <item name="J-bar Lift" icon="presets/drag_lift.png" type="way">
2491 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
2492 <label text="Edit J-bar Lift"/>
2493 <key key="aerialway" value="j-bar"/>
2494 <text key="name" text="Name"/>
2495 <text key="ref" text="Reference number"/>
2496 <optional>
2497 <text key="aerialway:capacity" text="Number of people per hour"/>
2498 <text key="aerialway:duration" text="Typical journey time in minutes"/>
2499 </optional>
2500 </item>
2501 <item name="Platter Lift" icon="presets/drag_lift.png" type="way">
2502 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
2503 <label text="Edit Platter Lift"/>
2504 <key key="aerialway" value="platter"/>
2505 <text key="name" text="Name"/>
2506 <text key="ref" text="Reference number"/>
2507 <optional>
2508 <text key="aerialway:capacity" text="Number of people per hour"/>
2509 <text key="aerialway:duration" text="Typical journey time in minutes"/>
2510 </optional>
2511 </item>
2512 <item name="Rope Tow" type="way">
2513 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
2514 <label text="Edit Rope Tow"/>
2515 <key key="aerialway" value="rope_tow"/>
2516 <text key="name" text="Name"/>
2517 <text key="ref" text="Reference number"/>
2518 <optional>
2519 <text key="aerialway:capacity" text="Number of people per hour"/>
2520 <text key="aerialway:duration" text="Typical journey time in minutes"/>
2521 </optional>
2522 </item>
2523 <item name="Magic Carpet" type="way">
2524 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
2525 <label text="Edit Magic Carpet"/>
2526 <key key="aerialway" value="magic_carpet"/>
2527 <text key="name" text="Name"/>
2528 <text key="ref" text="Reference number"/>
2529 <optional>
2530 <text key="aerialway:capacity" text="Number of people per hour"/>
2531 <text key="aerialway:duration" text="Typical journey time in minutes"/>
2532 </optional>
2533 </item>
2534 <item name="Goods" name_context="aerialway" icon="presets/goods.png" type="way">
2535 <label text="Edit Goods" text_context="aerialway"/>
2536 <key key="aerialway" value="goods"/>
2537 <text key="name" text="Name"/>
2538 <text key="ref" text="Reference number"/>
2539 <optional>
2540 <text key="aerialway:duration" text="Typical journey time in minutes"/>
2541 </optional>
2542 </item>
2543 <separator/>
2544 <item name="Station" name_context="aerialway" icon="presets/aerialway_station.png" type="node,closedway">
2545 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
2546 <label text="Edit Station" text_context="aerialway"/>
2547 <key key="aerialway" value="station"/>
2548 <text key="name" text="Name"/>
2549 </item>
2550 <item name="Pylon" name_context="aerialway" icon="presets/power_tower.png" type="node">
2551 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
2552 <label text="Edit Pylon" text_context="aerialway"/>
2553 <key key="aerialway" value="pylon"/>
2554 <text key="name" text="Name"/>
2555 <text key="height" text="Height (meters)" length="7"/>
2556 </item>
2557 </group>
2558 <!-- Aerialway -->
2559 <separator/>
2560 <group name="Car" icon="presets/car.png">
2561 <item name="Parking" icon="presets/parking.png" type="node,closedway">
2562 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=parking"
2563 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=parking"
2564 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=parking"
2565 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=parking"
2566 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=parking"
2567 pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:amenity=parking"
2568 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=parking"
2569 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=parking"/>
2570 <label text="Edit Parking"/>
2571 <key key="amenity" value="parking"/>
2572 <text key="name" text="Name"/>
2573 <text key="ref" text="Reference number"/>
2574 <combo key="parking" text="Type" values="multi-storey,surface,underground" default="surface"/>
2575 <text key="maxheight" text="Max. height (meters)"/>
2576 <combo key="access" text="Access" values="yes,private,customers,permissive,no"/>
2577 <check key="park_ride" text="Park and Ride"/>
2578 <combo key="fee" text="Fee" values="yes,no"/>
2579 <text key="operator" text="Operator"/>
2580 <space/>
2581 <text key="capacity" text="Capacity (overall)"/>
2582 <combo key="capacity:disabled" text="Spaces for Disabled" values="yes,no,unknown,1,2,3"/>
2583 <combo key="capacity:women" text="Spaces for Women" values="yes,no,unknown,1,2,3"/>
2584 <combo key="capacity:parent" text="Spaces for Parents" values="yes,no,unknown,1,2,3"/>
2585 <label text="See the Wiki for other capacity:[types]=*."/>
2586 <optional>
2587 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
2588 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
2589 </optional>
2590 </item>
2591 <item name="Parking space" icon="presets/parking.png" type="node,closedway">
2592 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=parking_space"
2593 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=parking_space"
2594 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=parking_space"/>
2595 <label text="Edit Parking space"/>
2596 <key key="amenity" value="parking_space"/>
2597 <text key="name" text="Name"/>
2598 <text key="ref" text="Reference number"/>
2599 <combo key="parking" text="Type" values="multi-storey,surface,underground,rooftop"/>
2600 <text key="capacity" text="Capacity"/>
2601 <space/>
2602 <combo key="access" text="Access" values="yes,private,customers,permissive,no"/>
2603 <combo key="fee" text="Fee" values="yes,no,interval"/>
2604 <text key="operator" text="Operator"/>
2605 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
2606 <check key="covered" text="Covered (with roof)"/>
2607 <combo key="stay" text="Time Limit (minutes)" values="0,30-60,30-180,30+"/>
2608 <combo key="supervised" text="Supervised" values="yes,no,interval"/>
2609 <combo key="lit" text="Lit" values="yes,no,interval"/>
2610 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
2611 </item>
2612 <item name="Parking entrance" icon="presets/parking.png" type="node">
2613 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=parking_entrance"
2614 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=parking_entrance"/>
2615 <label text="Edit Parking entrance"/>
2616 <key key="amenity" value="parking_entrance"/>
2617 <text key="name" text="Name"/>
2618 <text key="ref" text="Reference number"/>
2619 <space/>
2620 <combo key="parking" text="Type" values="multi-storey,surface,underground,rooftop"/>
2621 <combo key="access" text="Access" values="yes,private,customers,permissive,no"/>
2622 <combo key="fee" text="Fee" values="yes,no,interval"/>
2623 <text key="operator" text="Operator"/>
2624 <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
2625 <check key="covered" text="Covered (with roof)"/>
2626 <combo key="stay" text="Time Limit (minutes)" values="0,30-60,30-180,30+"/>
2627 <combo key="supervised" text="Supervised" values="yes,no,interval"/>
2628 <combo key="lit" text="Lit" values="yes,no,interval"/>
2629 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
2630 </item>
2631 <separator/>
2632 <item name="Fuel" icon="presets/fuel.png" type="node,closedway">
2633 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=fuel"
2634 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=fuel"
2635 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=fuel"
2636 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=fuel"
2637 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=fuel"
2638 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=fuel"
2639 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=fuel"
2640 no.href="http://wiki.openstreetmap.org/wiki/No:Tag:amenity=fuel"
2641 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=fuel"
2642 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=fuel"/>
2643 <label text="Edit Fuel"/>
2644 <key key="amenity" value="fuel"/>
2645 <combo key="brand" text="Brand" values="Agip,Aral,Avia,BP,Chevron,Citgo,Esso,Exxon,Gulf,Mobil,OMV,Petro-Canada,Pioneer,Q8,Repsol,Shell,Sunoco,Statoil,Tamoil,Texaco,Total,Independent"/>
2646 <optional>
2647 <text key="name" text="Name"/>
2648 <text key="operator" text="Operator"/>
2649 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
2650 <combo key="shop" text="With shop" values="yes,convenience,kiosk,no"/>
2651 <label text="Fuel types:"/>
2652 <check key="fuel:diesel" text="Diesel" default="off"/>
2653 <check key="fuel:biodiesel" text="Bio Diesel" default="off"/>
2654 <check key="fuel:GTL_diesel" text="Diesel (Gas To Liquid - ultimate diesel)" default="off"/>
2655 <check key="fuel:HGV_diesel" text="Diesel for Heavy Good Vehicles" default="off"/>
2656 <check key="fuel:octane_80" text="Octane 80" default="off"/>
2657 <check key="fuel:octane_91" text="Octane 91" default="off"/>
2658 <check key="fuel:octane_92" text="Octane 92" default="off"/>
2659 <check key="fuel:octane_95" text="Octane 95" default="off"/>
2660 <check key="fuel:octane_98" text="Octane 98" default="off"/>
2661 <check key="fuel:octane_100" text="Octane 100" default="off"/>
2662 <check key="fuel:e10" text="E10 (10% Ethanol mix)" default="off"/>
2663 <check key="fuel:e85" text="E85 (85% Ethanol mix)" default="off"/>
2664 <check key="fuel:lpg" text="LPG (Liquefied petroleum gas)" default="off"/>
2665 <check key="fuel:cng" text="CNG (Compressed Natural Gas)" default="off"/>
2666 <check key="fuel:1_25" text="1/25 mix (mofa/moped)" default="off"/>
2667 <check key="fuel:1_50" text="1/50 mix (mofa/moped)" default="off"/>
2668 </optional>
2669 </item>
2670 <item name="Charging Station" icon="styles/standard/accommodation/camping/hookup.png" type="node">
2671 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=fuel"/>
2672 <label text="Edit Charging Station (for electric cars)"/>
2673 <key key="amenity" value="charging_station"/>
2674 <text key="operator" text="Operator"/>
2675 <text key="voltage" text="Voltage"/>
2676 <text key="amperage" text="Amperage"/>
2677 </item>
2678 <item name="Wash" icon="presets/car_wash.png" type="node,closedway">
2679 <label text="Edit Car Wash"/>
2680 <key key="amenity" value="car_wash"/>
2681 <text key="name" text="Name"/>
2682 <text key="brand" text="Brand"/>
2683 <text key="operator" text="Operator"/>
2684 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
2685 </item>
2686 <separator/>
2687 <item name="Car Dealer" icon="presets/car.png" type="node,closedway">
2688 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=car"
2689 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:shop=car"
2690 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=car"
2691 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=car"
2692 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:shop=car"
2693 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=car"
2694 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=car"/>
2695 <label text="Edit Car Shop"/>
2696 <key key="shop" value="car"/>
2697 <text key="name" text="Name"/>
2698 <text key="operator" text="Operator"/>
2699 </item>
2700 <item name="Repair" icon="presets/car_repair.png" type="node,closedway">
2701 <label text="Edit Car Repair"/>
2702 <key key="shop" value="car_repair"/>
2703 <text key="name" text="Name"/>
2704 <text key="brand" text="Brand"/>
2705 <text key="operator" text="Operator"/>
2706 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
2707 </item>
2708 <item name="Tyres" icon="presets/tyres.png" type="node,closedway">
2709 <label text="Edit Tyres"/>
2710 <key key="shop" value="tyres"/>
2711 <text key="name" text="Name"/>
2712 <text key="brand" text="Brand"/>
2713 <text key="operator" text="Operator"/>
2714 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
2715 <label text="Contact:"/>
2716 <text key="phone" text="Phone Number"/>
2717 <text key="fax" text="Fax Number"/>
2718 <text key="website" text="Website"/>
2719 <text key="email" text="Email Address"/>
2720 </item>
2721 <separator/>
2722 <item name="Rental" icon="presets/car_rental.png" type="node,closedway">
2723 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=car_rental"
2724 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=car_rental"
2725 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=car_rental"
2726 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=car_rental"
2727 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=car_rental"/>
2728 <label text="Edit Car Rental"/>
2729 <key key="amenity" value="car_rental"/>
2730 <text key="name" text="Name"/>
2731 <text key="brand" text="Brand"/>
2732 <text key="operator" text="Operator"/>
2733 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
2734 </item>
2735 <item name="Sharing" icon="presets/car_sharing.png" type="node,closedway">
2736 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=car_sharing"
2737 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=car_sharing"
2738 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=car_sharing"
2739 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=car_sharing"
2740 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=car_sharing"
2741 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=car_sharing"
2742 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=car_sharing"/>
2743 <label text="Edit Car Sharing"/>
2744 <key key="amenity" value="car_sharing"/>
2745 <text key="operator" text="Operator"/>
2746 <text key="capacity" text="Capacity"/>
2747 <text key="name" text="Name"/>
2748 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
2749 <text key="website" text="Website"/>
2750 </item>
2751 </group>
2752 <!-- Car -->
2753 <group name="Motorcycle" icon="presets/motorbike.png">
2754 <item name="Parking" icon="styles/standard/vehicle/parking/motorbike.png" type="node,closedway">
2755 <label text="Edit Motorcycle Parking"/>
2756 <key key="amenity" value="motorcycle_parking"/>
2757 <text key="name" text="Name"/>
2758 <text key="capacity" text="Capacity"/>
2759 <combo key="parking" text="Type" values="multi-storey,surface,underground" default="surface"/>
2760 <combo key="fee" text="Fee" values="yes,no"/>
2761 </item>
2762 <item name="Motorcycle Dealer" icon="presets/motorbike.png" type="node,closedway">
2763 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=motorcycle"
2764 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=motorcycle"
2765 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=motorcycle"
2766 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=motorcycle"/>
2767 <label text="Edit Shop Motorcycle"/>
2768 <key key="shop" value="motorcycle"/>
2769 <text key="name" text="Name"/>
2770 <combo key="brand" text="Brand" values="independent"/>
2771 <text key="operator" text="Operator"/>
2772 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
2773 <label text="Services:"/>
2774 <combo key="sale" text="Sale" values="yes,brand,used,no" values_context="motorcycle"/>
2775 <combo key="rental" text="Rental" values="yes,brand,no"/>
2776 <combo key="repair" text="Repair" values="yes,brand,oldtimer,no"/>
2777 <combo key="safety_inspection" text="Safety inspection" values="yes,DEKRA,GTÜ,MOT,TÜV,no"/>
2778 <combo key="parts" text="Parts" values="yes,brand,oldtimer,no"/>
2779 <combo key="clothes" text="Clothes" values="yes,brand,no"/>
2780 <text key="services" text="Other"/>
2781 <label text="Contact:"/>
2782 <text key="phone" text="Phone Number"/>
2783 <text key="fax" text="Fax Number"/>
2784 <text key="website" text="Website"/>
2785 <text key="email" text="Email Address"/>
2786 </item>
2787 </group>
2788 <!-- Motorcycle -->
2789 <group name="Bicycle" icon="presets/bike.png">
2790 <item name="Parking" icon="styles/standard/vehicle/parking/bicycle.png" type="node,closedway">
2791 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bicycle_parking"
2792 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bicycle_parking"
2793 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=bicycle_parking"
2794 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=bicycle_parking"
2795 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=bicycle_parking"
2796 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bicycle_parking"
2797 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bicycle_parking"
2798 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:amenity=bicycle_parking"/>
2799 <label text="Edit Bicycle Parking"/>
2800 <key key="amenity" value="bicycle_parking"/>
2801 <text key="name" text="Name"/>
2802 <text key="operator" text="Operator"/>
2803 <text key="capacity" text="Capacity"/>
2804 <combo key="bicycle_parking" text="Type" values="anchors,building,ground_slots,informal,lockers,shed,stands,wall_loops"/>
2805 <check key="covered" text="Covered" default="off"/>
2806 <check key="supervised" text="Supervised" default="off"/>
2807 </item>
2808 <item name="Bike Dealer" icon="presets/bike.png" type="node,closedway">
2809 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=bicycle"
2810 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:shop=bicycle"
2811 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:shop=bicycle"
2812 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=bicycle"
2813 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=bicycle"
2814 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=bicycle"
2815 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:shop=bicycle"/>
2816 <label text="Edit Bicycle Shop"/>
2817 <key key="shop" value="bicycle"/>
2818 <text key="name" text="Name"/>
2819 <check key="service:bicycle:retail" text="Bicycles are sold"/>
2820 <check key="service:bicycle:second_hand" text="Second-hand bicycles are sold"/>
2821 <check key="service:bicycle:repair" text="Bicycles are repaired"/>
2822 <check key="service:bicycle:rental" text="Bicycles are rented"/>
2823 <check key="service:bicycle:pump" text="Free bicycle pump"/>
2824 <check key="service:bicycle:diy" text="Tools for do-it-yourself repair (may be a bike co-operative)"/>
2825 <check key="service:bicycle:cleaning" text="Bicycles are washed (for a fee)"/>
2826 </item>
2827 <item name="Rental" icon="presets/bicycle_rental.png" type="node,closedway">
2828 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bicycle_rental"
2829 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bicycle_rental"
2830 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=bicycle_rental"
2831 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=bicycle_rental"
2832 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=bicycle_rental"
2833 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=bicycle_rental"
2834 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bicycle_rental"
2835 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bicycle_rental"
2836 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bicycle_rental"
2837 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:amenity=bicycle_rental"/>
2838 <label text="Edit Bicycle Rental"/>
2839 <key key="amenity" value="bicycle_rental"/>
2840 <text key="name" text="Name"/>
2841 </item>
2842 </group>
2843 <!-- Bicycle -->
2844 <group name="Public Transport" icon="presets/bus.png">
2845 <item name="Public transport route" icon="presets/path.png" type="relation">
2846 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Public_Transport#Route"/>
2847 <label text="Edit Route"/>
2848 <key key="type" value="route"/>
2849 <combo key="route" text="Route type" values="train,subway,monorail,tram,bus,trolleybus,aerialway,ferry"/>
2850 <text key="name" text="Name"/>
2851 <text key="ref" text="Reference"/>
2852 <optional>
2853 <text key="from" text="From (initial stop)"/>
2854 <text key="to" text="To (terminal stop)"/>
2855 <text key="via" text="Via (intermediate stops)"/>
2856 <text key="operator" text="Operator"/>
2857 <text key="network" text="Network"/>
2858 <text key="description" text="Description"/>
2859 <combo key="colour" text="Color (HTML name or hexadecimal code)" values_context="color" values="black,brown,green,red,blue,gray,white,#CD853F"/>
2860 </optional>
2861 <roles>
2862 <role key="" text="route segment" requisite="required" type="way"/>
2863 <role key="stop" text="stop position" requisite="optional" type="node" member_expression="public_transport=stop_position"/>
2864 <role key="stop_exit_only" text="stop position (exit only)" requisite="optional" type="node" member_expression="public_transport=stop_position"/>
2865 <role key="stop_entry_only" text="stop position (entry only)" requisite="optional" type="node" member_expression="public_transport=stop_position"/>
2866 <role key="platform" text="platform" requisite="optional" type="node,way,closedway" member_expression="public_transport=platform"/>
2867 <role key="platform_exit_only" text="platform (exit only)" requisite="optional" type="node,way,closedway" member_expression="public_transport=platform"/>
2868 <role key="platform_entry_only" text="platform (entry only)" requisite="optional" type="node,way,closedway" member_expression="public_transport=platform"/>
2869 </roles>
2870 </item>
2871 <item name="Route master" icon="presets/path.png" type="relation">
2872 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Public_Transport#Route_master"/>
2873 <label text="Edit Route master"/>
2874 <key key="type" value="route_master"/>
2875 <combo key="route" text="Route type" values="train,subway,monorail,tram,bus,trolleybus,aerialway,ferry"/>
2876 <text key="name" text="Name"/>
2877 <text key="ref" text="Reference"/>
2878 <optional>
2879 <text key="operator" text="Operator"/>
2880 <text key="network" text="Network"/>
2881 <combo key="colour" text="Color (HTML name or hexadecimal code)" values_context="color" values="black,brown,green,red,blue,gray,white,#CD853F"/>
2882 </optional>
2883 <roles>
2884 <role key="" text="route variant/direction (at least 2)" requisite="required" type="relation" member_expression="type=route"/>
2885 <!-- FIXME: at least 2 members are required -->
2886 </roles>
2887 </item>
2888 <item name="Stop Area" type="relation" icon="presets/interpolation.png">
2889 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Public_Transport#Stop_area"/>
2890 <label text="Edit Stop Area"/>
2891 <key key="type" value="public_transport"/>
2892 <key key="public_transport" value="stop_area"/>
2893 <text key="name" text="Name"/>
2894 <optional>
2895 <text key="ref" text="Reference"/>
2896 <text key="uic_ref" text="UIC reference"/>
2897 <text key="uic_name" text="UIC name"/>
2898 <text key="operator" text="Operator"/>
2899 <text key="network" text="Network"/>
2900 </optional>
2901 <roles>
2902 <role key="stop" text="Stop Position" requisite="optional" type="node" member_expression="public_transport=stop_position"/>
2903 <role key="platform" text="Platform" requisite="optional" type="node,way,closedway" member_expression="public_transport=platform"/>
2904 <role key="" text="Station or amenities" requisite="optional" type="node,way,closedway" member_expression="amenity|public_transport=station"/>
2905 </roles>
2906 </item>
2907 <separator/>
2908 <item name="Stop Position" type="node" icon="presets/barrier.png">
2909 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Public_Transport#Stop_area"/>
2910 <key key="public_transport" value="stop_position"/>
2911 <text key="name" text="Name"/>
2912 <optional>
2913 <text key="ref" text="Reference"/>
2914 <text key="uic_ref" text="UIC reference"/>
2915 <text key="uic_name" text="UIC name"/>
2916 <text key="operator" text="Operator"/>
2917 <text key="network" text="Network"/>
2918 </optional>
2919 <space/>
2920 <check key="bus" text="Bus"/>
2921 <check key="highway" value_on="bus_stop" value_off="" text="Bus stop (legacy)"/>
2922 <check key="tram" text="Tram"/>
2923 <check key="railway" value_on="tram_stop" value_off="" text="Tram stop (legacy)"/>
2924 <check key="train" text="Train"/>
2925 <check key="railway" value_on="station" value_off="" text="Railway station (legacy)"/>
2926 <check key="railway" value_on="halt" value_off="" text="Railway halt (legacy)"/>
2927 <check key="trolleybus" text="Trolleybus"/>
2928 <check key="share_taxi" text="Share taxi"/>
2929 <check key="subway" text="Subway"/>
2930 <check key="monorail" text="Monorail"/>
2931 <check key="funicular" text="Funicular"/>
2932 <check key="aerialway" text="Aerialway"/>
2933 <check key="ferry" text="Ferry"/>
2934 </item>
2935 <item name="Platform" type="node,way,closedway" icon="presets/platform_bus.png">
2936 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Public_Transport#Platform"/>
2937 <key key="public_transport" value="platform"/>
2938 <text key="name" text="Name"/>
2939 <check key="bench" text="Bench"/>
2940 <check key="shelter" text="Shelter"/>
2941 <check key="covered" text="Covered"/>
2942 <combo key="wheelchair" text="Wheelchair" values="yes,no,limited,only"/>
2943 <optional>
2944 <text key="ref" text="Reference"/>
2945 <text key="uic_ref" text="UIC reference"/>
2946 <text key="uic_name" text="UIC name"/>
2947 <text key="operator" text="Operator"/>
2948 <text key="network" text="Network"/>
2949 <space/>
2950 <check key="bus" text="Bus"/>
2951 <check key="highway" value_on="platform" text="Highway platform (legacy)"/>
2952 <check key="tram" text="Tram"/>
2953 <check key="train" text="Train"/>
2954 <check key="railway" value_on="platform" text="Railway platform (legacy)"/>
2955 <check key="trolleybus" text="Trolleybus"/>
2956 <check key="share_taxi" text="Share taxi"/>
2957 <check key="subway" text="Subway"/>
2958 <check key="monorail" text="Monorail"/>
2959 <check key="funicular" text="funicular"/>
2960 <check key="aerialway" text="aerialway"/>
2961 <check key="ferry" text="ferry"/>
2962 </optional>
2963 </item>
2964 <item name="Station" type="node,closedway" icon="styles/standard/transport/railway_station.png">
2965 <link href="http://wiki.openstreetmap.org/wiki/Tag:public_transport=station"/>
2966 <key key="public_transport" value="station"/>
2967 <text key="name" text="Name"/>
2968 <check key="area" text="Area"/>
2969 <check key="building" text="Building"/>
2970 <text key="operator" text="Operator"/>
2971 <text key="network" text="Network"/>
2972 </item>
2973 <separator/>
2974 <item name="Subway Entrance" icon="presets/underground.png" type="node">
2975 <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=subway_entrance"
2976 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:railway=subway_entrance"
2977 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=subway_entrance"
2978 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:railway=subway_entrance"/>
2979 <label text="Edit Subway Entrance"/>
2980 <space/>
2981 <key key="railway" value="subway_entrance"/>
2982 <optional>
2983 <text key="name" text="Name"/>
2984 <check key="wheelchair" text="Wheelchair" default="off"/>
2985 <check key="bicycle" text="Bicycle" default="off"/>
2986 <check key="train" text="Train" default="off"/>
2987 </optional>
2988 </item>
2989 <item name="Ticket Machine" de.name="Fahrausweisautomat" icon="presets/vending_machine.png" type="node">
2990 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=vending_machine"
2991 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=vending_machine"
2992 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=vending_machine"
2993 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=vending_machine"
2994 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=vending_machine"/>
2995 <key key="amenity" value="vending_machine"/>
2996 <key key="vending" value="public_transport_tickets"/>
2997 <text key="name" text="Name"/>
2998 <text key="operator" text="Operator"/>
2999 <text key="ref" text="Reference Number"/>
3000 <check key="payment:coins" text="Coins" default="off"/>
3001 <check key="payment:notes" text="Notes" default="off"/>
3002 <check key="payment:electronic_purses" text="Electronic purses and Charge cards" default="off"/>
3003 <check key="payment:debit_cards" text="Debit cards" default="off"/>
3004 <check key="payment:credit_cards" text="Credit cards" default="off"/>
3005 <check key="payment:account_cards" text="Account or loyalty cards" default="off"/>
3006 </item>
3007 </group>
3008 <group name="Public Transport (legacy)" icon="presets/bus.png">
3009 <item name="Station" name_context="railway" icon="styles/standard/transport/railway_station.png" type="node,closedway">
3010 <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=station"
3011 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=station"
3012 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:railway=station"
3013 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:railway=station"
3014 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=station"
3015 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:railway=station"/>
3016 <label text="Edit Station" text_context="railway"/>
3017 <space/>
3018 <key key="railway" value="station"/>
3019 <optional>
3020 <text key="name" text="Name"/>
3021 <text key="uic_ref" text="UIC-Reference"/>
3022 </optional>
3023 </item>
3024 <item name="Railway Halt" icon="presets/station.png" type="node">
3025 <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=halt"
3026 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=halt"
3027 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=halt"
3028 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:railway=halt"/>
3029 <label text="Edit Halt"/>
3030 <space/>
3031 <key key="railway" value="halt"/>
3032 <optional>
3033 <text key="name" text="Name"/>
3034 </optional>
3035 </item>
3036 <item name="Tram Stop" icon="presets/tram.png" type="node">
3037 <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=tram_stop"
3038 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=tram_stop"
3039 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=tram_stop"/>
3040 <label text="Edit Tram Stop"/>
3041 <space/>
3042 <key key="railway" value="tram_stop"/>
3043 <optional>
3044 <text key="name" text="Name"/>
3045 </optional>
3046 </item>
3047 <item name="Railway Platform" icon="presets/platform_rail.png" type="way,closedway">
3048 <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=platform"
3049 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=platform"
3050 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=platform"/>
3051 <label text="Edit Railway Platform"/>
3052 <key key="railway" value="platform"/>
3053 <space/>
3054 <text key="ref" text="Reference (track number)"/>
3055 <text key="width" text="Width (meters)" length="7"/>
3056 <check key="area" text="Area" default="off"/>
3057 </item>
3058 <separator/>
3059 <item name="Bus Station" icon="presets/bus.png" type="node,closedway">
3060 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bus_station"
3061 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bus_station"
3062 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bus_station"
3063 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bus_station"
3064 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bus_station"/>
3065 <label text="Edit Bus Station"/>
3066 <key key="amenity" value="bus_station"/>
3067 <optional>
3068 <text key="name" text="Name"/>
3069 </optional>
3070 </item>
3071 <item name="Bus Stop" icon="presets/bus_small.png" type="node">
3072 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=bus_stop"
3073 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=bus_stop"
3074 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:highway=bus_stop"
3075 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=bus_stop"
3076 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=bus_stop"
3077 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=bus_stop"/>
3078 <label text="Edit Bus Stop"/>
3079 <space/>
3080 <key key="highway" value="bus_stop"/>
3081 <optional>
3082 <text key="name" text="Name"/>
3083 <check key="shelter" text="Shelter"/>
3084 <check key="bench" text="Bench"/>
3085 <check key="tactile_paving" text="Tactile Paving"/>
3086
3087 </optional>
3088 </item>
3089 <item name="Bus Platform" icon="presets/platform_bus.png" type="node,way,closedway">
3090 <label text="Edit Bus Platform"/>
3091 <key key="highway" value="platform"/>
3092 <space/>
3093 <text key="ref" text="Reference (track number)"/>
3094 <text key="width" text="Width (meters)" length="7"/>
3095 <check key="area" text="Area" default="off"/>
3096 </item>
3097 </group>
3098 <!-- Public Transport -->
3099 <item name="Taxi" icon="presets/taxi.png" type="node,closedway">
3100 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=taxi"
3101 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=taxi"
3102 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=taxi"
3103 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=taxi"/>
3104 <label text="Edit Taxi station"/>
3105 <key key="amenity" value="taxi"/>
3106 <text key="name" text="Name"/>
3107 </item>
3108 <separator/>
3109 <group name="Airport" icon="presets/plane.png">
3110 <item name="Airport Ground" icon="presets/plane.png" type="node,closedway">
3111 <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=aerodrome"
3112 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=aerodrome"
3113 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=aerodrome"/>
3114 <label text="Edit Airport Ground"/>
3115 <key key="aeroway" value="aerodrome"/>
3116 <text key="name" text="Name"/>
3117 <optional>
3118 <text key="iata" text="IATA"/>
3119 <text key="icao" text="ICAO"/>
3120 <text key="wikipedia" text="Wikipedia"/>
3121 <space/>
3122 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
3123 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
3124 </optional>
3125 </item>
3126 <separator/>
3127 <item name="Runway" icon="presets/runway.png" type="way">
3128 <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=runway"
3129 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:aeroway=runway"
3130 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:aeroway=runway"
3131 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=runway"
3132 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=runway"/>
3133 <label text="Edit Runway"/>
3134 <key key="aeroway" value="runway"/>
3135 <optional>
3136 <text key="ref" text="Reference"/>
3137 </optional>
3138 </item>
3139 <item name="Taxiway" icon="presets/taxiway.png" type="way">
3140 <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=taxiway"
3141 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:aeroway=taxiway"
3142 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=taxiway"
3143 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=taxiway"/>
3144 <label text="Edit Taxiway"/>
3145 <key key="aeroway" value="taxiway"/>
3146 <optional>
3147 <text key="ref" text="Reference"/>
3148 </optional>
3149 </item>
3150 <item name="Helipad" icon="styles/standard/transport/airport/helipad.png" type="node,closedway">
3151 <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=helipad"
3152 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:aeroway=helipad"
3153 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=helipad"
3154 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=helipad"/>
3155 <label text="Edit Helipad"/>
3156 <key key="aeroway" value="helipad"/>
3157 <optional>
3158 <text key="ref" text="Reference"/>
3159 </optional>
3160 </item>
3161 <item name="Apron" icon="presets/apron.png" type="closedway">
3162 <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=apron"
3163 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:aeroway=apron"
3164 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=apron"
3165 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=apron"/>
3166 <label text="Apron"/>
3167 <key key="aeroway" value="apron"/>
3168 </item>
3169 <item name="Hangar" icon="presets/hangar.png" type="node,closedway">
3170 <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=hangar"/>
3171 <label text="Hangar"/>
3172 <key key="building" value="hangar"/>
3173 </item>
3174 <item name="Beacon" icon="styles/standard/misc/landmark/beacon.png" type="node">
3175 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=beacon"
3176 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=beacon"
3177 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=beacon"/>
3178 <label text="Beacon"/>
3179 <key key="man_made" value="beacon"/>
3180 </item>
3181 <item name="Windsock" icon="styles/standard/transport/airport/windsock.png" type="node">
3182 <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=windsock"
3183 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=windsock"/>
3184 <label text="Windsock"/>
3185 <key key="aeroway" value="windsock"/>
3186 </item>
3187 <separator/>
3188 <item name="Terminal" icon="styles/standard/transport/airport/terminal.png" type="node,closedway">
3189 <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=terminal"
3190 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:aeroway=terminal"
3191 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=terminal"
3192 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=terminal"/>
3193 <label text="Edit Terminal"/>
3194 <key key="aeroway" value="terminal"/>
3195 <text key="name" text="Name"/>
3196 </item>
3197 <item name="Gate" name_context="airport" icon="presets/aeroway_gate.png" type="node">
3198 <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=gate"
3199 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=gate"
3200 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=gate"/>
3201 <label text="Edit Terminal Gate"/>
3202 <key key="aeroway" value="gate"/>
3203 <text key="ref" text="Reference"/>
3204 </item>
3205 </group>
3206 <!-- Aeroway -->
3207 </group>
3208 <group name="Facilities" icon="presets/bed.png">
3209 <group name="Accommodation" icon="presets/bed.png">
3210 <item name="Hotel" icon="presets/bed.png" type="node,closedway">
3211 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=hotel"
3212 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:tourism=hotel"
3213 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=hotel"
3214 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:tourism=hotel"
3215 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=hotel"
3216 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=hotel"/>
3217 <label text="Edit Hotel"/>
3218 <key key="tourism" value="hotel"/>
3219 <text key="name" text="Name"/>
3220 <text key="operator" text="Operator"/>
3221 <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
3222 <space/>
3223 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3224 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3225 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3226 <check key="wheelchair" text="Wheelchairs"/>
3227 <space/>
3228 <text key="phone" text="Phone Number"/>
3229 <text key="fax" text="Fax Number"/>
3230 <text key="website" text="Website"/>
3231 <text key="email" text="Email Address"/>
3232 </item>
3233 <item name="Motel" icon="styles/standard/accommodation/motel.png" type="node,closedway">
3234 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=motel"
3235 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:tourism=motel"
3236 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=motel"/>
3237 <label text="Edit Motel"/>
3238 <key key="tourism" value="motel"/>
3239 <text key="name" text="Name"/>
3240 <text key="operator" text="Operator"/>
3241 <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
3242 <space/>
3243 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3244 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3245 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3246 <check key="wheelchair" text="Wheelchairs"/>
3247 <space/>
3248 <text key="phone" text="Phone Number"/>
3249 <text key="fax" text="Fax Number"/>
3250 <text key="website" text="Website"/>
3251 <text key="email" text="Email Address"/>
3252 </item>
3253 <item name="Guest House" icon="styles/standard/accommodation/guest_house.png" type="node,closedway">
3254 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=guest_house"
3255 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:tourism=guest_house"
3256 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=guest_house"/>
3257 <label text="Edit Guest House"/>
3258 <key key="tourism" value="guest_house"/>
3259 <text key="name" text="Name"/>
3260 <text key="operator" text="Operator"/>
3261 <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
3262 <space/>
3263 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3264 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3265 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3266 <check key="wheelchair" text="Wheelchairs"/>
3267 <space/>
3268 <text key="phone" text="Phone Number"/>
3269 <text key="fax" text="Fax Number"/>
3270 <text key="website" text="Website"/>
3271 <text key="email" text="Email Address"/>
3272 </item>
3273 <item name="Chalet" icon="styles/standard/accommodation/chalet.png" type="node,closedway">
3274 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=chalet"
3275 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:tourism=chalet"
3276 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=chalet"
3277 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=chalet"/>
3278 <label text="Edit Chalet"/>
3279 <key key="tourism" value="chalet"/>
3280 <text key="name" text="Name"/>
3281 <text key="operator" text="Operator"/>
3282 <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
3283 <space/>
3284 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3285 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3286 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3287 <check key="wheelchair" text="Wheelchairs"/>
3288 <space/>
3289 <text key="phone" text="Phone Number"/>
3290 <text key="fax" text="Fax Number"/>
3291 <text key="website" text="Website"/>
3292 <text key="email" text="Email Address"/>
3293 </item>
3294 <item name="Hostel" icon="presets/hostel.png" type="node,closedway">
3295 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=hostel"
3296 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=hostel"
3297 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:tourism=hostel"
3298 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=hostel"
3299 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=hostel"/>
3300 <label text="Edit Hostel"/>
3301 <key key="tourism" value="hostel"/>
3302 <text key="name" text="Name"/>
3303 <text key="operator" text="Operator"/>
3304 <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
3305 <space/>
3306 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3307 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3308 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3309 <check key="wheelchair" text="Wheelchairs"/>
3310 <space/>
3311 <text key="phone" text="Phone Number"/>
3312 <text key="fax" text="Fax Number"/>
3313 <text key="website" text="Website"/>
3314 <text key="email" text="Email Address"/>
3315 </item>
3316 <item name="Alpine Hut" icon="styles/standard/accommodation/alpine_hut.png" type="node,closedway">
3317 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=alpine_hut"
3318 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:tourism=alpine_hut"
3319 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:tourism=alpine_hut"
3320 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=alpine_hut"
3321 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=alpine_hut"/>
3322 <label text="Edit Alpine Hut"/>
3323 <key key="tourism" value="alpine_hut"/>
3324 <text key="name" text="Name"/>
3325 <text key="operator" text="Operator"/>
3326 <text key="ele" text="Elevation"/>
3327 <space/>
3328 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3329 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3330 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3331 <check key="wheelchair" text="Wheelchairs"/>
3332 <space/>
3333 <text key="phone" text="Phone Number"/>
3334 <text key="fax" text="Fax Number"/>
3335 <text key="website" text="Website"/>
3336 <text key="email" text="Email Address"/>
3337 </item>
3338 <separator/>
3339 <item name="Caravan Site" icon="presets/caravan2.png" type="node,closedway">
3340 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=caravan_site"
3341 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:tourism=caravan_site"
3342 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=caravan_site"/>
3343 <label text="Edit Caravan Site"/>
3344 <key key="tourism" value="caravan_site"/>
3345 <text key="name" text="Name"/>
3346 <text key="operator" text="Operator"/>
3347 <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
3348 <space/>
3349 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3350 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3351 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3352 <check key="wheelchair" text="Wheelchairs"/>
3353 <space/>
3354 <text key="capacity" text="Number of places"/>
3355 <combo key="fee" text="Requires a fee" values="yes,no,interval"/>
3356 <check key="power_supply" text="Power supply" default="off"/>
3357 <check key="tents" text="Tents allowed" default="off"/>
3358 <space/>
3359 <text key="phone" text="Phone Number"/>
3360 <text key="fax" text="Fax Number"/>
3361 <text key="website" text="Website"/>
3362 <text key="email" text="Email Address"/>
3363 </item>
3364 <item name="Camping Site" icon="presets/tent.png" type="node,closedway">
3365 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=camp_site"
3366 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:tourism=camp_site"
3367 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:tourism=camp_site"
3368 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=camp_site"
3369 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:tourism=camp_site"
3370 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=camp_site"
3371 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=camp_site"/>
3372 <label text="Edit Camping Site"/>
3373 <key key="tourism" value="camp_site"/>
3374 <text key="name" text="Name"/>
3375 <text key="operator" text="Operator"/>
3376 <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
3377 <space/>
3378 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3379 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3380 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3381 <check key="wheelchair" text="Wheelchairs"/>
3382 <space/>
3383 <text key="phone" text="Phone Number"/>
3384 <text key="fax" text="Fax Number"/>
3385 <text key="website" text="Website"/>
3386 <text key="email" text="Email Address"/>
3387 </item>
3388 </group>
3389 <!-- Accomodation -->
3390 <group name="Food+Drinks" icon="presets/restaurant.png">
3391 <item name="Restaurant" icon="presets/restaurant.png" type="node,closedway">
3392 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=restaurant"
3393 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=restaurant"
3394 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=restaurant"
3395 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=restaurant"
3396 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=restaurant"
3397 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=restaurant"
3398 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=restaurant"/>
3399 <label text="Edit Restaurant"/>
3400 <key key="amenity" value="restaurant"/>
3401 <text key="name" text="Name"/>
3402 <text key="operator" text="Operator"/>
3403 <multiselect key="cuisine" text="Cuisine" values="italian;chinese;pizza;burger;greek;german;indian;regional;kebab;turkish;asian;thai;mexican;japanese;french;sandwich;sushi"/>
3404 <check key="microbrewery" text="Microbrewery" default="off"/>
3405 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3406 <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
3407 <space/>
3408 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3409 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3410 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3411 <check key="wheelchair" text="Wheelchairs"/>
3412 <space/>
3413 <text key="phone" text="Phone Number"/>
3414 <text key="fax" text="Fax Number"/>
3415 <text key="website" text="Website"/>
3416 <text key="email" text="Email Address"/>
3417 </item>
3418 <item name="Fast Food" icon="presets/fastfood.png" type="node,closedway">
3419 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=fast_food"
3420 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=fast_food"
3421 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=fast_food"
3422 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=fast_food"
3423 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=fast_food"/>
3424 <label text="Edit Fast Food Restaurant"/>
3425 <key key="amenity" value="fast_food"/>
3426 <text key="name" text="Name"/>
3427 <text key="operator" text="Operator"/>
3428 <combo key="cuisine" text="Cuisine" values="italian,chinese,pizza,burger,greek,german,indian,regional,kebab,turkish,asian,thai,mexican,japanese,french,sandwich,sushi,fish_and_chips,chicken"/>
3429 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3430 <space/>
3431 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3432 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3433 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3434 <check key="wheelchair" text="Wheelchairs"/>
3435 <space/>
3436 <text key="phone" text="Phone Number"/>
3437 <text key="fax" text="Fax Number"/>
3438 <text key="website" text="Website"/>
3439 <text key="email" text="Email Address"/>
3440 </item>
3441 <item name="Food Court" icon="presets/fastfood.png" type="node,closedway">
3442 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=food_court"
3443 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=food_court"
3444 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=food_court"
3445 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=food_court"/>
3446 <label text="Edit Food Court"/>
3447 <key key="amenity" value="food_court"/>
3448 <text key="name" text="Name"/>
3449 <text key="operator" text="Operator"/>
3450 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3451 <space/>
3452 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3453 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3454 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3455 <check key="wheelchair" text="Wheelchairs"/>
3456 <space/>
3457 <text key="phone" text="Phone Number"/>
3458 <text key="fax" text="Fax Number"/>
3459 <text key="website" text="Website"/>
3460 <text key="email" text="Email Address"/>
3461 </item>
3462 <item name="Cafe" icon="presets/cafe.png" type="node,closedway">
3463 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=cafe"
3464 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=cafe"
3465 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=cafe"
3466 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=cafe"
3467 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=cafe"
3468 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=cafe"
3469 zh_CN.href="http://wiki.openstreetmap.org/wiki/Zh-hans:Tag:amenity=cafe"/>
3470 <label text="Edit Cafe"/>
3471 <key key="amenity" value="cafe"/>
3472 <text key="name" text="Name"/>
3473 <text key="operator" text="Operator"/>
3474 <combo key="cuisine" text="Cuisine" values="ice_cream"/>
3475 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3476 <space/>
3477 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3478 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3479 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3480 <check key="wheelchair" text="Wheelchairs"/>
3481 <space/>
3482 <text key="phone" text="Phone Number"/>
3483 <text key="fax" text="Fax Number"/>
3484 <text key="website" text="Website"/>
3485 <text key="email" text="Email Address"/>
3486 </item>
3487 <item name="Pub" icon="presets/pub.png" type="node,closedway">
3488 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=pub"
3489 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=pub"
3490 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=pub"
3491 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=pub"
3492 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=pub"/>
3493 <label text="Edit Pub"/>
3494 <key key="amenity" value="pub"/>
3495 <text key="name" text="Name"/>
3496 <text key="operator" text="Operator"/>
3497 <check key="microbrewery" text="Microbrewery" default="off"/>
3498 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3499 <space/>
3500 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3501 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3502 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3503 <check key="wheelchair" text="Wheelchairs"/>
3504 <space/>
3505 <text key="phone" text="Phone Number"/>
3506 <text key="fax" text="Fax Number"/>
3507 <text key="website" text="Website"/>
3508 <text key="email" text="Email Address"/>
3509 </item>
3510 <item name="Biergarten" icon="presets/biergarten.png" type="node,closedway">
3511 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=biergarten"
3512 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=biergarten"
3513 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=biergarten"
3514 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=biergarten"
3515 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=biergarten"/>
3516 <label text="Edit Biergarten"/>
3517 <key key="amenity" value="biergarten"/>
3518 <text key="name" text="Name"/>
3519 <text key="operator" text="Operator"/>
3520 <check key="microbrewery" text="Microbrewery" default="off"/>
3521 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3522 <space/>
3523 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3524 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3525 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3526 <check key="wheelchair" text="Wheelchairs"/>
3527 <space/>
3528 <text key="phone" text="Phone Number"/>
3529 <text key="fax" text="Fax Number"/>
3530 <text key="website" text="Website"/>
3531 <text key="email" text="Email Address"/>
3532 </item>
3533 <item name="Bar" icon="presets/bar.png" type="node,closedway">
3534 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bar"
3535 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bar"
3536 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=bar"
3537 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=bar"
3538 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bar"
3539 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bar"
3540 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bar"
3541 zh_CN.href="http://wiki.openstreetmap.org/wiki/Zh-hans:Tag:amenity=bar"/>
3542 <label text="Edit Bar"/>
3543 <key key="amenity" value="bar"/>
3544 <text key="name" text="Name"/>
3545 <text key="operator" text="Operator"/>
3546 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3547 <space/>
3548 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3549 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3550 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3551 <check key="wheelchair" text="Wheelchairs"/>
3552 <space/>
3553 <text key="phone" text="Phone Number"/>
3554 <text key="fax" text="Fax Number"/>
3555 <text key="website" text="Website"/>
3556 <text key="email" text="Email Address"/>
3557 </item>
3558 <item name="Nightclub" icon="presets/bar.png" type="node,closedway">
3559 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=nightclub"
3560 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=nightclub"
3561 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=nightclub"
3562 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=nightclub"
3563 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=nightclub"
3564 ro.href="http://wiki.openstreetmap.org/wiki/Ro:Tag:amenity=nightclub"
3565 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=nightclub"/>
3566 <label text="Edit Nightclub"/>
3567 <key key="amenity" value="nightclub"/>
3568 <text key="name" text="Name"/>
3569 <text key="operator" text="Operator"/>
3570 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3571 <space/>
3572 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3573 <check key="wheelchair" text="Wheelchairs"/>
3574 <space/>
3575 <text key="phone" text="Phone Number"/>
3576 <text key="fax" text="Fax Number"/>
3577 <text key="website" text="Website"/>
3578 <text key="email" text="Email Address"/>
3579 </item>
3580 <item name="Stripclub" icon="styles/standard/leisure/stripclub.png" type="node,closedway">
3581 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=stripclub"
3582 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=stripclub"
3583 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=stripclub"
3584 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=stripclub"/>
3585 <label text="Edit Stripclub"/>
3586 <space/>
3587 <key key="amenity" value="stripclub"/>
3588 <text key="name" text="Name"/>
3589 <text key="operator" text="Operator"/>
3590 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
3591 <space/>
3592 <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
3593 <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
3594 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3595 <check key="wheelchair" text="Wheelchairs"/>
3596 <space/>
3597 <text key="phone" text="Phone Number"/>
3598 <text key="fax" text="Fax Number"/>
3599 <text key="website" text="Website"/>
3600 <text key="email" text="Email Address"/>
3601 </item>
3602 </group>
3603 <!-- Food+Drinks -->
3604 <group name="Tourism" icon="presets/sightseeing.png">
3605 <item name="Attraction" icon="presets/sightseeing.png" type="node,closedway">
3606 <label text="Edit Attraction"/>
3607 <key key="tourism" value="attraction"/>
3608 <text key="name" text="Name"/>
3609 <text key="opening_hours" text="Opening Hours"/>
3610 </item>
3611 <item name="Viewpoint" icon="presets/viewpoint.png" type="node,closedway">
3612 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=viewpoint"
3613 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:tourism=viewpoint"
3614 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=viewpoint"
3615 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:tourism=viewpoint"
3616 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=viewpoint"/>
3617 <label text="Edit Viewpoint"/>
3618 <key key="tourism" value="viewpoint"/>
3619 <text key="name" text="Name"/>
3620 <!--<check key="man_made" value="tower" text="Look-Out Tower" default="off"/>-->
3621 </item>
3622 <separator/>
3623 <item name="Information Office" icon="presets/informationoffice.png" type="node,closedway">
3624 <link href="http://wiki.openstreetmap.org/wiki/Key:information"
3625 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:information"
3626 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:information"
3627 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:information"
3628 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:information"/>
3629 <key key="tourism" value="information"/>
3630 <key key="information" value="office"/>
3631 <text key="name" text="Name"/>
3632 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3633 </item>
3634 <item name="Map" icon="presets/map.png" type="node">
3635 <link href="http://wiki.openstreetmap.org/wiki/Key:information"/>
3636 <key key="tourism" value="information"/>
3637 <key key="information" value="map"/>
3638 <text key="name" text="Name"/>
3639 <combo key="map_type" text="Detail Grade" values="topo,street,scheme"/>
3640 <combo key="map_size" text="Shown Area" values="site,city,region"/>
3641 <text key="description" text="Closer Description"/>
3642 <space/>
3643 <label text="Routes shown for:"/>
3644 <check key="hiking" text="Hiking" default="off"/>
3645 <check key="bicycle" text="Cycling" default="off"/>
3646 <check key="mtb" text="Mountainbiking" default="off"/>
3647 <check key="ski" text="Skiing" default="off"/>
3648 <check key="horse" text="Riding" default="off"/>
3649 <label text="... other transportation modes possible"/>
3650 </item>
3651 <item name="Information Board" icon="presets/board.png" type="node">
3652 <link href="http://wiki.openstreetmap.org/wiki/Tag:information=board"
3653 de.href="http://wiki.openstreetmap.org/wiki/DE:Proposed_features/information"
3654 it.href="http://wiki.openstreetmap.org/wiki/IT:Proposed_features/information"/>
3655 <key key="tourism" value="information"/>
3656 <key key="information" value="board"/>
3657 <text key="name" text="Name"/>
3658 <combo key="board_type" text="Board Content" values="notice,history,nature,wildlife,plants" default="board"/>
3659 <text key="description" text="Closer Description"/>
3660 </item>
3661 <item name="Guidepost" icon="presets/guidepost.png" type="node">
3662 <link href="http://wiki.openstreetmap.org/wiki/Tag:information=guidepost"
3663 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:information=guidepost"
3664 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:information=guidepost"/>
3665 <key key="tourism" value="information"/>
3666 <key key="information" value="guidepost"/>
3667 <text key="name" text="Name"/>
3668 <text key="ele" text="Elevation"/>
3669 <space/>
3670 <label text="Routes shown for:"/>
3671 <check key="hiking" text="Hiking" default="off"/>
3672 <check key="bicycle" text="Cycling" default="off"/>
3673 <check key="mtb" text="Mountainbiking" default="off"/>
3674 <check key="ski" text="Skiing" default="off"/>
3675 <check key="horse" text="Riding" default="off"/>
3676 <label text="... other transportation modes possible"/>
3677 </item>
3678 <item name="Information Terminal" icon="presets/information.png" type="node">
3679 <link href="http://wiki.openstreetmap.org/wiki/Key:information"/>
3680 <key key="tourism" value="information"/>
3681 <key key="information" value="terminal"/>
3682 <text key="name" text="Name"/>
3683 <text key="description" text="Closer description"/>
3684 <text key="operator" text="Operator"/>
3685 <text key="ref" text="Reference number"/>
3686 <combo key="fee" text="Fee" values="yes,no"/>
3687 </item>
3688 <item name="Audioguide" icon="presets/information.png" type="node">
3689 <link href="http://wiki.openstreetmap.org/wiki/Key:information"/>
3690 <key key="tourism" value="information"/>
3691 <key key="information" value="audioguide"/>
3692 <text key="name" text="Name"/>
3693 <text key="description" text="Closer description"/>
3694 <text key="operator" text="Operator"/>
3695 <text key="ref" text="Reference number"/>
3696 <combo key="fee" text="Fee" values="yes,no"/>
3697 <space/>
3698 <label text="Audioguide via mobile phone?"/>
3699 <text key="phone" text="Phone number"/>
3700 </item>
3701 <item name="Other Information Points" icon="presets/information.png" type="node,closedway">
3702 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=information"
3703 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=information"
3704 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:tourism=information"
3705 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=information"
3706 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=information"/>
3707 <key key="tourism" value="information"/>
3708 <text key="name" text="Name"/>
3709 <text key="description" text="Closer Description"/>
3710 </item>
3711 </group>
3712 <!-- Tourism -->
3713 <group name="Leisure" icon="presets/theme_park.png">
3714 <item name="Cinema" icon="presets/cinema.png" type="node,closedway,relation">
3715 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=cinema"
3716 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=cinema"
3717 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=cinema"
3718 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=cinema"
3719 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=cinema"
3720 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=cinema"/>
3721 <label text="Edit Cinema"/>
3722 <key key="amenity" value="cinema"/>
3723 <text key="name" text="Name"/>
3724 <text key="operator" text="Operator"/>
3725 <combo key="opening_hours" text="Opening Hours" values="Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
3726 </item>
3727 <item name="Zoo" icon="presets/zoo.png" type="node,closedway">
3728 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=zoo"
3729 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:tourism=zoo"
3730 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=zoo"/>
3731 <label text="Edit Zoo"/>
3732 <key key="tourism" value="zoo"/>
3733 <text key="name" text="Name"/>
3734 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3735 <text key="wikipedia" text="Wikipedia"/>
3736 <space/>
3737 <text key="phone" text="Phone Number"/>
3738 <text key="fax" text="Fax Number"/>
3739 <text key="website" text="Website"/>
3740 <text key="email" text="Email Address"/>
3741 <space/>
3742 <optional>
3743 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
3744 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
3745 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
3746 </optional>
3747 </item>
3748 <item name="Dog Park" icon="presets/dogpark.png" type="node,closedway">
3749 <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=dog_park"
3750 da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:leisure=dog_park"
3751 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:leisure=dog_park"
3752 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:leisure=dog_park"
3753 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:leisure=dog_park"
3754 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:leisure=dog_park"
3755 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:leisure=dog_park"
3756 sv.href="http://wiki.openstreetmap.org/wiki/Sv:Tag:leisure=dog_park"/>
3757 <label text="Edit Dog Park"/>
3758 <key key="leisure" value="dog_park"/>
3759 <text key="name" text="Name"/>
3760 <check key="area" text="Area" default="off"/>
3761 <combo key="barrier" text="Barrier" values="fence,wall"/>
3762 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3763 <check key="lit" text="Lit" default="off"/>
3764 <space/>
3765 <optional>
3766 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
3767 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
3768 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
3769 </optional>
3770 </item>
3771 <item name="Theme Park" icon="presets/theme_park.png" type="node,closedway">
3772 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=theme_park"
3773 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=theme_park"
3774 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=theme_park"/>
3775 <label text="Edit Theme Park"/>
3776 <key key="tourism" value="theme_park"/>
3777 <text key="name" text="Name"/>
3778 <text key="operator" text="Operator"/>
3779 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3780 <space/>
3781 <text key="phone" text="Phone Number"/>
3782 <text key="fax" text="Fax Number"/>
3783 <text key="website" text="Website"/>
3784 <text key="email" text="Email Address"/>
3785 <space/>
3786 <optional>
3787 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
3788 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
3789 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
3790 </optional>
3791 </item>
3792 <item name="Water Park" icon="presets/swimming.png" type="node,closedway">
3793 <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=water_park"
3794 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:leisure=water_park"
3795 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:leisure=water_park"
3796 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:leisure=water_park"
3797 pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:leisure=water_park"
3798 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:leisurem=water_park"
3799 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:leisure=water_park"/>
3800 <label text="Edit Water Park"/>
3801 <key key="leisure" value="water_park"/>
3802 <text key="name" text="Name"/>
3803 <text key="operator" text="Operator"/>
3804 <combo key="opening_hours" text="Opening Hours" values="Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
3805 <space/>
3806 <text key="phone" text="Phone Number"/>
3807 <text key="fax" text="Fax Number"/>
3808 <text key="website" text="Website"/>
3809 <text key="email" text="Email Address"/>
3810 </item>
3811 <item name="Sauna" de.name="Sauna" icon="presets/sauna.png" type="node,closedway">
3812 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=sauna"
3813 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=sauna"
3814 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=sauna"
3815 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=sauna"/>
3816 <label text="Edit Sauna"/>
3817 <key key="leisure" value="sauna"/>
3818 <text key="name" text="Name"/>
3819 <text key="operator" text="Operator"/>
3820 <combo key="opening_hours" text="Opening Hours" values="Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
3821 <combo key="access" text="Access" values="yes,permissive,private,unknown"/>
3822 <space/>
3823 <text key="phone" text="Phone Number"/>
3824 <text key="fax" text="Fax Number"/>
3825 <text key="website" text="Website"/>
3826 <text key="email" text="Email Address"/>
3827 </item>
3828 <item name="Horse riding" icon="presets/equestrian.png" type="node,closedway">
3829 <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=horse_riding"/>
3830 <label text="Edit Horse riding"/>
3831 <key key="leisure" value="horse_riding"/>
3832 <text key="name" text="Name"/>
3833 <text key="operator" text="Operator"/>
3834 <combo key="opening_hours" text="Opening Hours" values="Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
3835 <text key="fee" text="Fee"/>
3836 <space/>
3837 <text key="phone" text="Phone Number"/>
3838 <text key="fax" text="Fax Number"/>
3839 <text key="website" text="Website"/>
3840 <text key="email" text="Email Address"/>
3841 </item>
3842 <item name="Brothel" de.name="Bordell" icon="styles/standard/leisure/stripclub.png" type="node,closedway">
3843 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=brothel"
3844 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=brothel"
3845 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=brothel"
3846 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=brothel"
3847 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=brothel"/>
3848 <label text="Edit Brothel"/>
3849 <key key="amenity" value="brothel"/>
3850 <text key="name" text="Name"/>
3851 <text key="operator" text="Operator"/>
3852 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
3853 <space/>
3854 <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
3855 <check key="wheelchair" text="Wheelchairs"/>
3856 <space/>
3857 <text key="phone" text="Phone Number"/>
3858 <text key="fax" text="Fax Number"/>
3859 <text key="website" text="Website"/>
3860 <text key="email" text="Email Address"/>
3861 </item>
3862 <separator/>
3863 <item name="Playground" icon="styles/standard/leisure/playground.png" type="node,closedway">
3864 <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=playground"
3865 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:leisure=playground"
3866 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:leisure=playground"
3867 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:leisure=playground"
3868 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:leisure=playground"
3869 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:leisure=playground"
3870 pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:leisure=playground"
3871 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:leisure=playground"
3872 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:leisure=playground"/>
3873 <label text="Edit Playground"/>
3874 <key key="leisure" value="playground"/>
3875 <text key="name" text="Name"/>
3876 <space/>
3877 <optional>
3878 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
3879 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
3880 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
3881 </optional>
3882 </item>
3883 <item name="Picnic Site" icon="presets/picnic.png" type="node,closedway">
3884 <label text="Edit Picnic Site"/>
3885 <key key="tourism" value="picnic_site"/>
3886 <text key="name" text="Name"/>
3887 <check key="fireplace" text="Fireplace" default="off"/>
3888 </item>
3889 <item name="Public Grill" icon="presets/bbq.png" type="node">
3890 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bbq"
3891 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bbq"
3892 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bbq"
3893 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bbq"
3894 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bbq"/>
3895 <label text="Edit Public Grill"/>
3896 <space/>
3897 <key key="amenity" value="bbq"/>
3898 <text key="name" text="Name"/>
3899 <check key="covered" text="Covered"/>
3900 <combo key="fuel" text="Fuel" text_context="grill" values="charcoal,electric,wood"/>
3901 </item>
3902 <item name="Fishing" icon="presets/fishing.png" type="node,closedway">
3903 <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=fishing"
3904 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:leisure=fishing"
3905 pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:leisure=fishing"
3906 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:leisure=fishing"/>
3907 <label text="Edit Fishing"/>
3908 <key key="leisure" value="fishing"/>
3909 <text key="name" text="Name"/>
3910 </item>
3911 <item name="Private Swimming Pool" icon="presets/swimming.png" type="node,closedway">
3912 <key key="leisure" value="swimming_pool"/>
3913 <key key="access" value="private"/>
3914 </item>
3915 </group>
3916 <!-- Leisure -->
3917 <group name="Culture" icon="presets/theater.png">
3918 <item name="Museum" icon="presets/State_Public.png" type="node,closedway">
3919 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=museum"
3920 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:tourism=museum"
3921 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=museum"
3922 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=museum"/>
3923 <label text="Edit Museum"/>
3924 <key key="tourism" value="museum"/>
3925 <text key="name" text="Name"/>
3926 <text key="operator" text="Operator"/>
3927 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3928 <text key="wikipedia" text="Wikipedia"/>
3929 </item>
3930 <item name="Theatre" icon="presets/theater.png" type="node,closedway,relation">
3931 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=theatre"
3932 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=theatre"
3933 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=theatre"
3934 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=theatre"
3935 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=theatre"/>
3936 <label text="Edit Theatre"/>
3937 <key key="amenity" value="theatre"/>
3938 <text key="name" text="Name"/>
3939 <text key="operator" text="Operator"/>
3940 </item>
3941 <item name="Library" icon="styles/standard/shop/rental/library.png" type="node,closedway,relation">
3942 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=library"
3943 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=library"
3944 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=library"
3945 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=library"
3946 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=library"
3947 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=library"
3948 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=library"/>
3949 <label text="Edit Library"/>
3950 <key key="amenity" value="library"/>
3951 <text key="name" text="Name"/>
3952 <text key="operator" text="Operator"/>
3953 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3954 </item>
3955 <item name="Arts Centre" icon="presets/arts_centre.png" type="node,closedway,relation">
3956 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=arts_centre"
3957 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=arts_centre"
3958 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=arts_centre"
3959 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=arts_centre"
3960 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=arts_centre"/>
3961 <label text="Edit Arts Centre"/>
3962 <key key="amenity" value="arts_centre"/>
3963 <text key="name" text="Name"/>
3964 </item>
3965 <item name="Artwork" icon="presets/arts_centre.png" type="node,way,closedway">
3966 <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=artwork"
3967 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:tourism=artwork"
3968 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:tourism=artwork"
3969 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=artwork"
3970 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:tourism=artwork"
3971 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=artwork"/>
3972 <label text="Edit Artwork"/>
3973 <key key="tourism" value="artwork"/>
3974 <text key="name" text="Name"/>
3975 </item>
3976 <item name="Place of Worship" icon="presets/church.png" type="node,closedway,relation">
3977 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=place_of_worship"
3978 da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:amenity=place_of_worship"
3979 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=place_of_worship"
3980 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=place_of_worship"
3981 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=place_of_worship"
3982 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=place_of_worship"
3983 no.href="http://wiki.openstreetmap.org/wiki/No:Tag:amenity=place_of_worship"
3984 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=place_of_worship"
3985 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=place_of_worship"
3986 sv.href="http://wiki.openstreetmap.org/wiki/Sv:Tag:amenity=place_of_worship"/>
3987 <label text="Edit Place of Worship"/>
3988 <key key="amenity" value="place_of_worship"/>
3989 <text key="name" text="Name"/>
3990 <combo key="religion" text="Religion" values="animism,bahai,buddhist,christian,hindu,jain,jewish,muslim,paganism,sikh,spiritualist,taoist,unitarian,zoroastrian"/>
3991 <combo key="denomination" text="Denomination" values="anglican,baptist,catholic,evangelical,jehovahs_witness,lutheran,methodist,mormon,orthodox,pentecostal,presbyterian,protestant,quaker,shia,sunni"/>
3992 <combo key="service_times" text="Service Times" values="Su 10:00,Su 10:30,Su 11:00"/>
3993 <combo key="opening_hours" text="Opening Hours for visiting" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
3994 <space/>
3995 <optional>
3996 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
3997 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
3998 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
3999 </optional>
4000 </item>
4001 <item name="Recording Studio" icon="presets/studio.png" type="node,closedway,relation">
4002 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=studio"
4003 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=studio"
4004 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=studio"/>
4005 <label text="Edit Studio"/>
4006 <space/>
4007 <key key="amenity" value="studio"/>
4008 <text key="name" text="Name"/>
4009 <text key="operator" text="Operator"/>
4010 <combo key="type" text="Type" values="audio,video"/>
4011 <text key="phone" text="Phone Number"/>
4012 <text key="website" text="Website"/>
4013 </item>
4014 </group>
4015 <!-- Culture -->
4016 <group name="Public Building" icon="presets/townhall.png">
4017 <item name="Public Building" icon="styles/standard/service.png" type="node,closedway,relation">
4018 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=public_building"
4019 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=public_building"
4020 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=public_building"
4021 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=public_building"/>
4022 <label text="Edit Public Building"/>
4023 <key key="amenity" value="public_building"/>
4024 <text key="name" text="Name"/>
4025 </item>
4026 <item name="Town hall" icon="presets/townhall.png" type="node,closedway,relation">
4027 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=townhall"
4028 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=townhall"
4029 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=townhall"
4030 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=townhall"
4031 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=townhall"
4032 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=townhall"/>
4033 <label text="Edit Town hall"/>
4034 <key key="amenity" value="townhall"/>
4035 <text key="name" text="Name"/>
4036 </item>
4037 <item name="Community Centre" icon="presets/community_centre.png" type="node,closedway">
4038 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=community_centre"
4039 da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:amenity=community_centre"
4040 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=community_centre"
4041 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=community_centre"
4042 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=community_centre"
4043 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=community_centre"/>
4044 <label text="Community Centre"/>
4045 <space/>
4046 <key key="amenity" value="community_centre"/>
4047 <text key="name" text="Name"/>
4048 <text key="operator" text="Operator"/>
4049 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
4050 </item>
4051 <item name="Embassy" icon="presets/embassy.png" type="node,closedway,relation">
4052 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=embassy"
4053 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=embassy"
4054 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=embassy"
4055 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=embassy"
4056 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=embassy"/>
4057 <label text="Edit Embassy"/>
4058 <key key="amenity" value="embassy"/>
4059 <text key="name" text="Name"/>
4060 </item>
4061 <item name="Courthouse" icon="presets/JusticeScales.png" type="node,closedway,relation">
4062 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=courthouse"
4063 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=courthouse"
4064 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=courthouse"
4065 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=courthouse"
4066 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=courthouse"/>
4067 <label text="Edit Courthouse"/>
4068 <key key="amenity" value="courthouse"/>
4069 <text key="name" text="Name"/>
4070 </item>
4071 <item name="Prison" icon="presets/prison.png" type="node,closedway,relation">
4072 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=prison"
4073 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=prison"
4074 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=prison"
4075 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=prison"
4076 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=prison"/>
4077 <label text="Edit Prison"/>
4078 <key key="amenity" value="prison"/>
4079 <text key="name" text="Name"/>
4080 <space/>
4081 <optional>
4082 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4083 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4084 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4085 </optional>
4086 </item>
4087 <item name="Police" icon="styles/standard/service/police.png" type="node,closedway,relation">
4088 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=police"
4089 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=police"
4090 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=police"
4091 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=police"
4092 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=police"
4093 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=police"
4094 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=police"
4095 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=police"/>
4096 <label text="Edit Police"/>
4097 <key key="amenity" value="police"/>
4098 <text key="name" text="Name"/>
4099 </item>
4100 <item name="Fire Station" icon="presets/firebrigade.png" type="node,closedway,relation">
4101 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=fire_station"
4102 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=fire_station"
4103 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=fire_station"
4104 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=fire_station"
4105 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=fire_station"
4106 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=fire_station"
4107 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=fire_station"/>
4108 <label text="Edit Fire Station"/>
4109 <key key="amenity" value="fire_station"/>
4110 <text key="name" text="Name"/>
4111 </item>
4112 <item name="Post Office" icon="styles/standard/service/post_office.png" type="node,closedway,relation">
4113 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=post_office"
4114 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=post_office"
4115 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=post_office"
4116 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=post_office"
4117 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=post_office"
4118 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=post_office"
4119 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=post_office"/>
4120 <label text="Edit Post Office"/>
4121 <key key="amenity" value="post_office"/>
4122 <text key="name" text="Name"/>
4123 <text key="operator" text="Operator"/>
4124 </item>
4125 </group>
4126 <!-- Public Buildings -->
4127 <group name="Education" icon="presets/school.png">
4128 <item name="Kindergarten" icon="presets/kindergarten.png" type="node,closedway,relation">
4129 <label text="Edit Kindergarten"/>
4130 <key key="amenity" value="kindergarten"/>
4131 <text key="name" text="Name"/>
4132 </item>
4133 <item name="School" icon="presets/school.png" type="node,closedway,relation">
4134 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=school"
4135 ar.href="http://wiki.openstreetmap.org/wiki/Ar:Tag:amenity=school"
4136 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=school"
4137 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=school"
4138 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=school"
4139 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=school"
4140 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:amenity=school"
4141 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=school"
4142 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=school"
4143 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:amenity=school"/>
4144 <label text="Edit School"/>
4145 <key key="amenity" value="school"/>
4146 <text key="name" text="Name"/>
4147 </item>
4148 <item name="University" icon="styles/standard/education/university.png" type="node,closedway,relation">
4149 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=university"
4150 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=university"
4151 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=university"
4152 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=university"
4153 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=university"
4154 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=university"
4155 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=university"
4156 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:amenity=university"/>
4157 <label text="Edit University"/>
4158 <key key="amenity" value="university"/>
4159 <text key="name" text="Name"/>
4160 </item>
4161 <item name="College" icon="styles/standard/education/college.png" type="node,closedway,relation">
4162 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=college"
4163 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=college"
4164 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=college"
4165 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=college"
4166 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=college"/>
4167 <label text="Edit College"/>
4168 <key key="amenity" value="college"/>
4169 <text key="name" text="Name"/>
4170 </item>
4171 <item name="Driving School" icon="styles/standard/education/driving_school.png" type="node,closedway">
4172 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/driving_school"/>
4173 <label text="Edit Driving School"/>
4174 <space/>
4175 <key key="amenity" value="driving_school"/>
4176 <text key="name" text="Name"/>
4177 <text key="operator" text="Operator"/>
4178 <text key="license_classes" text="License Classes" values="A1;A;B;BE;C"/>
4179 </item>
4180 </group>
4181 <!-- Education -->
4182 <group name="Health" icon="presets/pharmacy.png">
4183 <item name="Hospital" icon="styles/standard/health/hospital.png" type="node,closedway">
4184 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=hospital"
4185 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=hospital"
4186 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=hospital"
4187 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=hospital"
4188 pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:amenity=hospital"
4189 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=hospital"
4190 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=hospital"/>
4191 <label text="Edit Hospital"/>
4192 <key key="amenity" value="hospital"/>
4193 <text key="name" text="Name"/>
4194 <space/>
4195 <optional>
4196 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4197 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4198 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4199 </optional>
4200 </item>
4201 <item name="Clinic" icon="styles/standard/health/hospital.png" type="node,closedway">
4202 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=clinic"
4203 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=clinic"/>
4204 <label text="Edit Clinic"/>
4205 <key key="amenity" value="clinic"/>
4206 <text key="name" text="Name"/>
4207 </item>
4208 <item name="Doctors" icon="styles/standard/health/doctor.png" type="node,closedway">
4209 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=doctors"
4210 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=doctors"
4211 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=doctors"/>
4212 <label text="Edit Doctors"/>
4213 <key key="amenity" value="doctors"/>
4214 <text key="name" text="Name"/>
4215 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
4216 </item>
4217 <item name="Dentist" icon="styles/standard/health/dentist.png" type="node,closedway">
4218 <label text="Edit Dentist"/>
4219 <key key="amenity" value="dentist"/>
4220 <text key="name" text="Name"/>
4221 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
4222 </item>
4223 <item name="Nursing Home" type="node,closedway">
4224 <label text="Edit Nursing Home"/>
4225 <key key="amenity" value="nursing_home"/>
4226 <text key="name" text="Name"/>
4227 <text key="operator" text="Operator"/>
4228 </item>
4229 <item name="Retirement Home" type="node,closedway">
4230 <link href="http://wiki.openstreetmap.org/wiki/Key:social_facility"
4231 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:social_facility"
4232 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:social_facility"
4233 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:social_facility"
4234 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:social_facility"/>
4235 <label text="Edit Retirement Home"/>
4236 <key key="amenity" value="social_facility"/>
4237 <key key="social_facility" value="group_home"/>
4238 <key key="social_facility:for" value="senior"/>
4239 <text key="name" text="Name"/>
4240 <text key="operator" text="Operator"/>
4241 <text key="capacity" text="Capacity"/>
4242 </item>
4243 <separator/>
4244 <item name="Pharmacy" icon="presets/pharmacy.png" type="node,closedway">
4245 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=pharmacy"
4246 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=pharmacy"
4247 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=pharmacy"
4248 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=pharmacy"
4249 no.href="http://wiki.openstreetmap.org/wiki/No:Tag:amenity=pharmacy"
4250 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=pharmacy"
4251 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=pharmacy"/>
4252 <label text="Edit Pharmacy"/>
4253 <key key="amenity" value="pharmacy"/>
4254 <check key="dispensing" text="Dispensing" default="off"/>
4255 <text key="name" text="Name"/>
4256 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
4257 </item>
4258 <item name="Hearing Aids" icon="presets/hearing_aids.png" type="node,closedway">
4259 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=hearing_aids"
4260 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=hearing_aids"/>
4261 <label text="Edit Hearing Aids"/>
4262 <space/>
4263 <key key="shop" value="hearing_aids"/>
4264 <text key="name" text="Name"/>
4265 <text key="operator" text="Operator"/>
4266 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
4267 </item>
4268 <separator/>
4269 <item name="Baby Hatch" icon="presets/baby_hatch.png" type="node,closedway">
4270 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=baby_hatch"
4271 cs.href="http://wiki.openstreetmap.org/wiki/CS:Tag:amenity=baby_hatch"
4272 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=baby_hatch"
4273 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=baby_hatch"
4274 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=baby_hatch"
4275 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=baby_hatch"
4276 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=baby_hatch"
4277 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=baby_hatch"
4278 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:amenity=baby_hatch"
4279 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=baby_hatch"/>
4280 <label text="Edit Baby Hatch"/>
4281 <key key="amenity" value="baby_hatch"/>
4282 <text key="operator" text="Operator"/>
4283 <text key="opening_hours" text="Opening Hours"/>
4284 </item>
4285 <separator/>
4286 <item name="Emergency Access Point" icon="styles/standard/service/emergency_access_point.png" type="node,closedway">
4287 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=emergency_access_point"
4288 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=emergency_access_point"
4289 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=emergency_access_point"
4290 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=emergency_access_point"
4291 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=emergency_access_point"/>
4292 <label text="Edit Emergency Access Point"/>
4293 <space/>
4294 <key key="highway" value="emergency_access_point"/>
4295 <text key="ref" text="Point Number"/>
4296 <text key="name" text="Point Name"/>
4297 <text key="operator" text="Operator"/>
4298 <text key="phone" text="Phone Number"/>
4299 <label text="(Use international code, like +12-345-67890)"/>
4300 <space/>
4301 </item>
4302 <separator/>
4303 <item name="Veterinary" icon="styles/standard/health/veterinary.png" type="node,closedway">
4304 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=veterinary"
4305 da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:amenity=veterinary"
4306 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=veterinary"
4307 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=veterinary"
4308 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=veterinary"/>
4309 <label text="Edit Veterinary"/>
4310 <key key="amenity" value="veterinary"/>
4311 <text key="name" text="Name"/>
4312 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
4313 </item>
4314 </group>
4315 <!-- Health -->
4316 <group name="Facilities" icon="presets/telephone.png">
4317 <item name="Toilets" icon="presets/toilet.png" type="node,closedway">
4318 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=toilets"
4319 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=toilets"
4320 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=toilets"
4321 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=toilets"
4322 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=toilets"
4323 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=toilets"/>
4324 <key key="amenity" value="toilets"/>
4325 <text key="operator" text="Operator"/>
4326 <text key="ref" text="Reference number"/>
4327 <combo key="fee" text="Fee" values="yes,no"/>
4328 <combo key="wheelchair" text="Wheelchair" values="no,limited,yes"/>
4329 <text key="note" text="Note"/>
4330 </item>
4331 <item name="Post Box" icon="styles/standard/service/post_box.png" type="node">
4332 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=post_box"
4333 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=post_box"
4334 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=post_box"
4335 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=post_box"
4336 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=post_box"/>
4337 <key key="amenity" value="post_box"/>
4338 <text key="operator" text="Operator"/>
4339 </item>
4340 <item name="Telephone" icon="presets/telephone.png" type="node">
4341 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=telephone"
4342 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=telephone"
4343 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=telephone"
4344 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=telephone"
4345 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=telephone"
4346 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=telephone"
4347 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=telephone"/>
4348 <label text="Edit Telephone"/>
4349 <key key="amenity" value="telephone"/>
4350 <text key="operator" text="Operator"/>
4351 <check key="payment:coins" text="Coins" default="off"/>
4352 <check key="payment:notes" text="Notes" default="off"/>
4353 <check key="payment:electronic_purses" text="Electronic purses and Charge cards" default="off"/>
4354 <check key="payment:debit_cards" text="Debit cards" default="off"/>
4355 <check key="payment:credit_cards" text="Credit cards" default="off"/>
4356 <check key="payment:telephone_cards" text="Telephone cards" default="off"/>
4357 </item>
4358 <item name="Clock" icon="styles/standard/service/clock.png" type="node">
4359 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=clock"
4360 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=clock"
4361 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=clock"
4362 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=clock"
4363 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=clock"/>
4364 <label text="Edit Clock"/>
4365 <key key="amenity" value="clock"/>
4366 <optional>
4367 <combo key="display" text="Display" values="analog,digital,sundial,unorthodox" values_context="display"/>
4368 <combo key="support" text="Support" values="pole,wall_mounted,billboard,ground"/>
4369 <combo key="visibility" text="Visibility/readability" values="house,street,area" display_values="house (up to 5m),street (up to 20m),area (more than 20m)"/>
4370 <check key="date" text="Shows current date" default="off"/>
4371 <check key="thermometer" text="Shows temperature" default="off"/>
4372 <check key="barometer" text="Shows barometric pressure" default="off"/>
4373 <check key="hygrometer" text="Shows humidity" default="off"/>
4374 </optional>
4375 </item>
4376 <item name="Recycling" icon="presets/recycling.png" type="node,closedway">
4377 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=recycling"
4378 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=recycling"
4379 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=recycling"
4380 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=recycling"
4381 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=recycling"
4382 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=recycling"
4383 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=recycling"
4384 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=recycling"/>
4385 <label text="Edit Recycling station"/>
4386 <key key="amenity" value="recycling"/>
4387 <check key="recycling:batteries" text="Batteries" default="off"/>
4388 <check key="recycling:cans" text="Cans" default="off"/>
4389 <check key="recycling:clothes" text="Clothes" default="off"/>
4390 <check key="recycling:glass" text="Glass" default="off"/>
4391 <check key="recycling:paper" text="Paper" default="off"/>
4392 <check key="recycling:scrap_metal" text="Scrap Metal" default="off"/>
4393 <combo key="recycling_type" text="Type" values="container,centre"/>
4394 </item>
4395 <item name="Waste Basket" icon="styles/standard/service/recycling/trash-bin.png" type="node">
4396 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=waste_basket"
4397 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=waste_basket"
4398 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=waste_basket"
4399 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=waste_basket"
4400 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=waste_basket"
4401 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=waste_basket"
4402 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=waste_basket"/>
4403 <label text="Edit Waste Basket"/>
4404 <key key="amenity" value="waste_basket"/>
4405 </item>
4406 <item name="Waste Disposal" icon="styles/standard/service/recycling/waste_disposal.png" type="node">
4407 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=waste_disposal"
4408 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=waste_disposal"
4409 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:amenity=waste_disposal"
4410 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=waste_disposal"
4411 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=waste_disposal"/>
4412 <label text="Edit Waste Disposal"/>
4413 <key key="amenity" value="waste_disposal"/>
4414 </item>
4415 <separator/>
4416 <item name="Bench" icon="presets/bench.png" type="node">
4417 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bench"
4418 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bench"
4419 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=bench"
4420 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bench"
4421 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bench"
4422 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bench"/>
4423 <key key="amenity" value="bench"/>
4424 <check key="backrest" text="Backrest"/>
4425 <combo key="material" text="Material" values="stone,metal,wood,plastic"/>
4426 <combo key="colour" text="Color (HTML name or hexadecimal code)" values_context="color" values="black,brown,green,red,blue,gray,white,#CD853F"/>
4427 <combo key="seats" text="Amount of Seats" values="2,3,4,5,6,7,8,9,10"/>
4428 </item>
4429 <item name="Shelter" icon="presets/shelter.png" type="node,closedway">
4430 <label text="Edit Shelter"/>
4431 <key key="amenity" value="shelter"/>
4432 <text key="name" text="Name"/>
4433 <check key="fireplace" text="Fireplace" default="off"/>
4434 <combo key="shelter_type" text="Type of shelter" values="weather_shelter,public_transport,picnic_shelter,wildlife_hide" values_context="shelter"/>
4435 </item>
4436 <item name="Hunting Stand" icon="presets/hunting_stand.png" type="node">
4437 <label text="Edit Hunting Stand"/>
4438 <key key="amenity" value="hunting_stand"/>
4439 <combo key="height" text="Height" values="low,half,full,5,10,15,20"/>
4440 <check key="shelter" text="Shelter"/>
4441 <check key="hide" text="Hide"/>
4442 <check key="lock" text="Lock"/>
4443 </item>
4444 <separator/>
4445 <item name="Drinking Water" icon="presets/drinking_water.png" type="node">
4446 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=drinking_water"
4447 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=drinking_water"
4448 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=drinking_water"
4449 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=drinking_water"
4450 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=drinking_water"/>
4451 <label text="Edit Drinking Water"/>
4452 <key key="amenity" value="drinking_water"/>
4453 <text key="name" text="Name"/>
4454 </item>
4455 <item name="Fire Hydrant" icon="presets/fire_hydrant.png" type="node">
4456 <link href="http://wiki.openstreetmap.org/wiki/Tag:emergency=fire_hydrant"
4457 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:emergency=fire_hydrant"
4458 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:emergency=fire_hydrant"
4459 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:emergency=fire_hydrant"
4460 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:emergency=fire_hydrant"
4461 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:emergency=fire_hydrant"
4462 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:emergency=fire_hydrant"/>
4463 <label text="Edit Fire Hydrant"/>
4464 <key key="emergency" value="fire_hydrant"/>
4465 <combo key="fire_hydrant:type" text="Type" values="underground,pillar,wall,pond" values_context="pipeline" default="pillar"/>
4466 <combo key="fire_hydrant:diameter" text="Diameter (in mm)" values="50,80,100,150,200,250,300,400"/>
4467 <space/>
4468 <text key="name" text="Name"/>
4469 <text key="ref" text="Reference"/>
4470 <text key="operator" text="Operator"/>
4471 <space/>
4472 <combo key="fire_hydrant:position" text="Position" values_context="hydrant position" values="lane,parking_lot,sidewalk,green"/>
4473 <combo key="fire_hydrant:pressure" text="Pressure (in bar)" values="5,6,8,suction"/>
4474 <text key="fire_hydrant:count" text="Count" values=""/>
4475 </item>
4476 </group>
4477 <!-- Facilities -->
4478 </group>
4479 <!-- Facilities -->
4480 <group name="Sports" icon="presets/soccer.png">
4481 <group name="Sport Facilities" icon="presets/stadium.png">
4482 <item name="Stadium" icon="presets/stadium.png" type="node,closedway">
4483 <label text="Edit Stadium"/>
4484 <key key="leisure" value="stadium"/>
4485 <text key="name" text="Name"/>
4486 <space/>
4487 <label text="select sport:"/>
4488 <space/>
4489 <multiselect key="sport" text="sport" values="multi;archery;athletics;american_football;australian_football;baseball;basketball;boules;bowls;canadian_football;canoe;climbing;cricket;cricket_nets;croquet;cycling;dog_racing;equestrian;gaelic_games;golf;gymnastics;hockey;horse_racing;motor;pelota;racquet;rugby_league;rugby_union;shooting;skateboard;skating;skiing;soccer;swimming;table_tennis;tennis"/>
4490 <space/>
4491 <optional>
4492 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4493 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4494 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4495 </optional>
4496 </item>
4497 <item name="Sports Centre" icon="presets/sports_centre.png" type="node,closedway">
4498 <label text="Edit Sports Centre"/>
4499 <key key="leisure" value="sports_centre"/>
4500 <text key="name" text="Name"/>
4501 <space/>
4502 <label text="select sport:"/>
4503 <multiselect rows="4" key="sport" text="sport" values="multi;archery;athletics;american_football;australian_football;baseball;basketball;boules;bowls;canadian_football;canoe;climbing;cricket;cricket_nets;croquet;cycling;dog_racing;equestrian;gaelic_games;golf;gymnastics;hockey;horse_racing;motor;pelota;racquet;rugby_league;rugby_union;shooting;skateboard;skating;skiing;soccer;swimming;table_tennis;tennis"/>
4504 <space/>
4505 <optional>
4506 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4507 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4508 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4509 </optional>
4510 </item>
4511 <item name="Pitch" icon="presets/pitch.png" type="node,closedway">
4512 <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=pitch"/>
4513 <!-- http://commons.wikimedia.org/wiki/Category:SVG_sport_field_diagrams -->
4514 <label text="Edit Pitch"/>
4515 <key key="leisure" value="pitch"/>
4516 <text key="name" text="Name"/>
4517 <space/>
4518 <label text="select sport:"/>
4519 <combo key="sport" text="sport">
4520 <list_entry value="multi"/>
4521 <list_entry value="archery" icon="presets/archery"/>
4522 <list_entry value="athletics" icon="presets/pitch/athletics"/>
4523 <list_entry value="american_football" icon="presets/pitch/american_football"/>
4524 <list_entry value="australian_football" icon="presets/pitch/australian_football"/>
4525 <list_entry value="baseball" icon="presets/pitch/baseball"/>
4526 <list_entry value="basketball" icon="presets/pitch/basketball"/>
4527 <list_entry value="boules" icon="presets/boules"/>
4528 <list_entry value="bowls" icon="presets/bowls"/>
4529 <list_entry value="canadian_football" icon="presets/pitch/american_football"/>
4530 <list_entry value="canoe" icon="presets/canoe"/>
4531 <list_entry value="climbing" icon="presets/climbing"/>
4532 <list_entry value="cricket" icon="presets/pitch/cricket_field"/>
4533 <list_entry value="cricket_nets" icon="presets/pitch/cricket"/>
4534 <list_entry value="croquet" icon="presets/pitch/croquet"/>
4535 <list_entry value="cycling" icon="presets/cycling"/>
4536 <list_entry value="dog_racing" icon="presets/pitch/dog_racing"/>
4537 <list_entry value="equestrian" icon="presets/equestrian"/>
4538 <list_entry value="gaelic_games"/>
4539 <list_entry value="golf" icon="presets/pitch/golf"/>
4540 <list_entry value="gymnastics" icon="presets/pitch/gymnastics"/>
4541 <list_entry value="hockey" icon="presets/pitch/horse_racing"/>
4542 <list_entry value="motor" icon="presets/motor"/>
4543 <list_entry value="netball" icon="presets/pitch/netball"/>
4544 <list_entry value="pelota" icon="presets/pitch/pelota"/>
4545 <list_entry value="racquet" icon="presets/pitch/racquet"/>
4546 <list_entry value="rugby_league" icon="presets/pitch/rugby_league"/>
4547 <list_entry value="rugby_union" icon="presets/pitch/rugby_union"/>
4548 <list_entry value="shooting" icon="presets/shooting"/>
4549 <list_entry value="skateboard" icon="presets/skateboard"/>
4550 <list_entry value="skating" icon="presets/skating"/>
4551 <list_entry value="skiing" icon="presets/skiing_downhill"/>
4552 <list_entry value="soccer" icon="presets/pitch/soccer"/>
4553 <list_entry value="speedway_track" icon="presets/pitch/speedway_track_tr"/>
4554 <list_entry value="table_tennis" icon="presets/pitch/table_tennis"/>
4555 <list_entry value="tchoukball" icon="presets/pitch/tchoukball"/>
4556 <list_entry value="tennis" icon="presets/pitch/tennis"/>
4557 </combo>
4558 <check key="covered" text="Covered" default="off"/>
4559 <space/>
4560 <optional>
4561 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4562 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4563 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4564 </optional>
4565 </item>
4566 <item name="Racetrack" icon="presets/stadium.png" type="node,way,closedway,relation">
4567 <label text="Edit Racetrack"/>
4568 <key key="leisure" value="track"/>
4569 <text key="name" text="Name"/>
4570 <space/>
4571 <label text="select sport:"/>
4572 <space/>
4573 <combo key="sport" text="sport" values="multi,archery,athletics,boules,bowls,canadian_football,canoe,climbing,cycling,dog_racing,equestrian,gaelic_games,golf,gymnastics,horse_racing,motor,pelota,racquet,shooting,skateboard,skating,skiing"/>
4574 <!-- TODO only race-->
4575 <space/>
4576 <optional>
4577 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4578 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4579 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4580 </optional>
4581 </item>
4582 <item name="Golf Course" icon="presets/golf.png" type="node,closedway">
4583 <label text="Edit Golf Course"/>
4584 <key key="leisure" value="golf_course"/>
4585 <text key="name" text="Name"/>
4586 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
4587 <space/>
4588 <optional>
4589 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4590 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4591 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4592 </optional>
4593 </item>
4594 <item name="Miniature Golf" icon="presets/golf.png" type="node,closedway">
4595 <label text="Edit Miniature Golf"/>
4596 <key key="leisure" value="miniature_golf"/>
4597 <text key="name" text="Name"/>
4598 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
4599 <space/>
4600 <optional>
4601 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4602 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4603 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4604 </optional>
4605 </item>
4606 </group>
4607 <!-- Sport facilities -->
4608 <group name="Sport" icon="presets/rowing.png">
4609 <item name="Multi" icon="styles/standard/sport/multi.png" type="node,closedway">
4610 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=multi"/>
4611 <label text="Edit Multi"/>
4612 <key key="sport" value="multi"/>
4613 <text key="name" text="Name"/>
4614 <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track"/>
4615 </item>
4616 <item name="9pin" icon="styles/standard/sport/10pin.png" type="node,closedway">
4617 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=9pin"
4618 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:sport=9pin"/>
4619 <label text="Edit 9pin"/>
4620 <key key="sport" value="9pin"/>
4621 <text key="name" text="Name"/>
4622 <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
4623 </item>
4624 <item name="10pin" icon="styles/standard/sport/10pin.png" type="node,closedway">
4625 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=10pin"/>
4626 <label text="Edit 10pin"/>
4627 <key key="sport" value="10pin"/>
4628 <text key="name" text="Name"/>
4629 <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
4630 </item>
4631 <item name="Archery" icon="styles/standard/sport/archery.png" type="node,closedway">
4632 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=archery"/>
4633 <label text="Edit Archery"/>
4634 <key key="sport" value="archery"/>
4635 <text key="name" text="Name"/>
4636 <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
4637 </item>
4638 <item name="Athletics" icon="presets/athletics.png" type="node,closedway">
4639 <link href="http://wiki.openstreetmap.org/wiki/Tag:sports=athletics"/>
4640 <label text="Edit Athletics"/>
4641 <key key="sport" value="athletics"/>
4642 <text key="name" text="Name"/>
4643 <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track" default="track"/>
4644 </item>
4645 <item name="Climbing" icon="styles/standard/sport/climbing.png" type="node,closedway">
4646 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=climbing"
4647 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:sport=climbing"/>
4648 <label text="Edit Climbing"/>
4649 <key key="sport" value="climbing"/>
4650 <text key="name" text="Name"/>
4651 <combo key="leisure" text="type" values="sports_centre"/>
4652 </item>
4653 <item name="Canoeing" icon="presets/canoe.png" type="node,way,closedway">
4654 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=canoe"/>
4655 <label text="Edit Canoeing"/>
4656 <key key="sport" value="canoe"/>
4657 <text key="name" text="Name"/>
4658 </item>
4659 <item name="Cycling" icon="presets/cycling.png" type="node,closedway">
4660 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=cycling"/>
4661 <label text="Edit Cycling"/>
4662 <key key="sport" value="cycling"/>
4663 <text key="name" text="Name"/>
4664 <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track"/>
4665 </item>
4666 <item name="Dog Racing" icon="styles/standard/leisure/dog.png" type="node,closedway">
4667 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=dog_racing"/>
4668 <label text="Edit Dog Racing"/>
4669 <key key="sport" value="dog_racing"/>
4670 <text key="name" text="Name"/>
4671 <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track"/>
4672 </item>
4673 <item name="Equestrian" icon="presets/equestrian.png" type="node,closedway">
4674 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=equestrian"/>
4675 <label text="Edit Equestrian"/>
4676 <key key="sport" value="equestrian"/>
4677 <text key="name" text="Name"/>
4678 <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track" values_context="riding"/>
4679 <combo key="surface" text="Surface" values="grass,sand,clay,dirt,fine_gravel,ground,mud,unpaved,compacted"/>
4680 </item>
4681 <item name="Horse Racing" icon="presets/equestrian.png" type="node,closedway">
4682 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=horse_racing"/>
4683 <label text="Edit Horse Racing"/>
4684 <key key="sport" value="horse_racing"/>
4685 <text key="name" text="Name"/>
4686 <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track" values_context="riding"/>
4687 <combo key="surface" text="Surface" values="grass,sand,clay,dirt,fine_gravel,ground,mud,unpaved,compacted"/>
4688 </item>
4689 <item name="Gymnastics" icon="presets/gymnastics.png" type="node,closedway">
4690 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=gymnastics"/>
4691 <label text="Edit Gymnastics"/>
4692 <key key="sport" value="gymnastics"/>
4693 <text key="name" text="Name"/>
4694 <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
4695 </item>
4696 <item name="Skating" icon="presets/skating.png" type="node,closedway">
4697 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=skating"
4698 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=skating"/>
4699 <label text="Edit Skating"/>
4700 <key key="sport" value="skating"/>
4701 <text key="name" text="Name"/>
4702 <combo key="leisure" text="type" values="ice_rink,pitch,sports_centre,stadium" default="ice_rink"/>
4703 </item>
4704 <item name="Skateboard" icon="styles/standard/sport/skateboard.png" type="node,closedway">
4705 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=skateboard"
4706 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=skateboard"/>
4707 <label text="Edit Skateboard"/>
4708 <key key="sport" value="skateboard"/>
4709 <text key="name" text="Name"/>
4710 <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track" default="pitch"/>
4711 </item>
4712 <item name="Swimming" icon="presets/swimming.png" type="node,closedway">
4713 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=swimming"
4714 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=swimming"/>
4715 <label text="Edit Swimming"/>
4716 <key key="sport" value="swimming"/>
4717 <text key="name" text="Name"/>
4718 <combo key="leisure" text="type" values="sports_centre,stadium,swimming_pool,water_park" default="swimming_pool"/>
4719 </item>
4720 <item name="Skiing" icon="presets/skiing_downhill.png" type="node,way,closedway">
4721 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps"/>
4722 <label text="Edit Skiing"/>
4723 <key key="sport" value="skiing"/>
4724 <text key="name" text="Name"/>
4725 <combo key="piste:type" text="Piste type" values="downhill,nordic,skitour,snow_park"/>
4726 <combo key="piste:difficulty" text="Difficulty" values="novice,easy,intermediate,advanced,expert,freeride"/>
4727 <combo key="piste:grooming" text="Grooming" values="classic,mogul,skating,classic;skating,scooter,backcountry"/>
4728 </item>
4729 <item name="Shooting" icon="presets/range.png" type="node,closedway">
4730 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=shooting"
4731 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:sport=shooting"
4732 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:sport=shooting"
4733 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:sport=shooting"
4734 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=shooting"/>
4735 <label text="Edit Shooting"/>
4736 <key key="sport" value="shooting"/>
4737 <text key="name" text="Name"/>
4738 <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track"/>
4739 </item>
4740 </group>
4741 <!-- Sport -->
4742 <group name="Sport (Ball)" icon="presets/soccer.png">
4743 <item name="Soccer" icon="presets/soccer.png" type="node,closedway">
4744 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=soccer"
4745 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:sport=soccer"
4746 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=soccer"/>
4747 <label text="Edit Soccer"/>
4748 <key key="sport" value="soccer"/>
4749 <text key="name" text="Name"/>
4750 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4751 <space/>
4752 <optional>
4753 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4754 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4755 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4756 </optional>
4757 </item>
4758 <item name="Australian Football" icon="presets/soccer.png" type="node,closedway">
4759 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=australian_football"/>
4760 <label text="Edit Australian Football"/>
4761 <key key="sport" value="australian_football"/>
4762 <text key="name" text="Name"/>
4763 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4764 <space/>
4765 <optional>
4766 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4767 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4768 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4769 </optional>
4770 </item>
4771 <item name="American Football" icon="presets/football.png" type="node,closedway">
4772 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=american_football"/>
4773 <label text="Edit American Football"/>
4774 <key key="sport" value="american_football"/>
4775 <text key="name" text="Name"/>
4776 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4777 <space/>
4778 <optional>
4779 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4780 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4781 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4782 </optional>
4783 </item>
4784 <item name="Canadian Football" icon="presets/football.png" type="node,closedway">
4785 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=canadian_football"/>
4786 <label text="Edit Canadian Football"/>
4787 <key key="sport" value="canadian_football"/>
4788 <text key="name" text="Name"/>
4789 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4790 <space/>
4791 <optional>
4792 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4793 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4794 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4795 </optional>
4796 </item>
4797 <item name="Gaelic Games" icon="presets/soccer.png" type="node,closedway">
4798 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=gaelic_games"/>
4799 <label text="Edit Gaelic Games"/>
4800 <key key="sport" value="gaelic_games"/>
4801 <text key="name" text="Name"/>
4802 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4803 <optional>
4804 <check key="gaelic_games:hurling" text="Hurling" text_context="gaelic game" default="off"/>
4805 <check key="gaelic_games:football" text="Football" text_context="gaelic game" default="off"/>
4806 <check key="gaelic_games:camogie" text="Camogie" text_context="gaelic game" default="off"/>
4807 <check key="gaelic_games:rounders" text="Rounders" text_context="gaelic game" default="off"/>
4808 <space/>
4809 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4810 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4811 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4812 </optional>
4813 </item>
4814 <item name="Rugby League" icon="presets/football.png" type="node,closedway">
4815 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=rugby_league"
4816 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:sport=rugby_league"/>
4817 <label text="Edit Rugby League"/>
4818 <key key="sport" value="rugby_league"/>
4819 <text key="name" text="Name"/>
4820 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4821 <space/>
4822 <optional>
4823 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4824 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4825 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4826 </optional>
4827 </item>
4828 <item name="Rugby Union" icon="presets/football.png" type="node,closedway">
4829 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=rugby_union"
4830 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:sport=rugby_union"/>
4831 <label text="Edit Rugby Union"/>
4832 <key key="sport" value="rugby_union"/>
4833 <text key="name" text="Name"/>
4834 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4835 <space/>
4836 <optional>
4837 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4838 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4839 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4840 </optional>
4841 </item>
4842 <item name="Baseball" icon="presets/baseball.png" type="node,closedway">
4843 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=baseball"/>
4844 <label text="Edit Baseball"/>
4845 <key key="sport" value="baseball"/>
4846 <text key="name" text="Name"/>
4847 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4848 <space/>
4849 <optional>
4850 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4851 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4852 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4853 </optional>
4854 </item>
4855 <item name="Basketball" icon="presets/basketball.png" type="node,closedway">
4856 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=basketball"/>
4857 <label text="Edit Basketball"/>
4858 <key key="sport" value="basketball"/>
4859 <text key="name" text="Name"/>
4860 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4861 <space/>
4862 <optional>
4863 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall" default="fence"/>
4864 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4865 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4866 </optional>
4867 </item>
4868 <item name="Volleyball" icon="styles/standard/sport/volleyball.png" type="node,closedway">
4869 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=volleyball"/>
4870 <label text="Edit Volleyball"/>
4871 <space/>
4872 <key key="sport" value="volleyball"/>
4873 <text key="name" text="Name"/>
4874 <text key="operator" text="Operator"/>
4875 <combo key="leisure" text="Type" values="stadium,pitch,sports_centre"/>
4876 <space/>
4877 <optional>
4878 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4879 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4880 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4881 </optional>
4882 </item>
4883 <item name="Beachvolleyball" icon="presets/beachvolleyball.png" type="node,closedway">
4884 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=beachvolleyball"/>
4885 <label text="Edit Beachvolleyball"/>
4886 <space/>
4887 <key key="sport" value="beachvolleyball"/>
4888 <text key="name" text="Name"/>
4889 <text key="operator" text="Operator"/>
4890 <combo key="leisure" text="Type" values="stadium,pitch,sports_centre"/>
4891 </item>
4892 <item name="Golf" icon="presets/golf.png" type="node,closedway">
4893 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=golf"
4894 pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:sport=golf"
4895 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:sport=golf"/>
4896 <label text="Edit Golf"/>
4897 <key key="sport" value="golf"/>
4898 <text key="name" text="Name"/>
4899 <combo key="leisure" text="type" values="golf_course,pitch,sports_centre,stadium" default="golf_course"/>
4900 <space/>
4901 <optional>
4902 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4903 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4904 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4905 </optional>
4906 </item>
4907 <item name="Boule" icon="presets/boule.png" type="node,closedway">
4908 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=boules"/>
4909 <label text="Edit Boule"/>
4910 <key key="sport" value="boules"/>
4911 <text key="name" text="Name"/>
4912 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4913 </item>
4914 <item name="Bowls" icon="presets/boule.png" type="node,closedway">
4915 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=bowls"/>
4916 <label text="Edit Bowls"/>
4917 <key key="sport" value="bowls"/>
4918 <text key="name" text="Name"/>
4919 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4920 <space/>
4921 <optional>
4922 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4923 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4924 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4925 </optional>
4926 </item>
4927 <item name="Cricket" icon="presets/cricket.png" type="node,closedway">
4928 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=cricket"/>
4929 <label text="Edit Cricket"/>
4930 <key key="sport" value="cricket"/>
4931 <text key="name" text="Name"/>
4932 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4933 <space/>
4934 <optional>
4935 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4936 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4937 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4938 </optional>
4939 </item>
4940 <item name="Cricket Nets" icon="presets/cricket.png" type="node,closedway">
4941 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=cricket_nets"/>
4942 <label text="Edit Cricket Nets"/>
4943 <key key="sport" value="cricket_nets"/>
4944 <text key="name" text="Name"/>
4945 <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
4946 <space/>
4947 <optional>
4948 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4949 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4950 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4951 </optional>
4952 </item>
4953 <item name="Croquet" icon="styles/standard/sport/croquet.png" type="node,closedway">
4954 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=croquet"/>
4955 <label text="Edit Croquet"/>
4956 <key key="sport" value="croquet"/>
4957 <text key="name" text="Name"/>
4958 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4959 <space/>
4960 <optional>
4961 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4962 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4963 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4964 </optional>
4965 </item>
4966 <item name="Hockey" icon="presets/Hockey.png" type="node,closedway">
4967 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=hockey"/>
4968 <label text="Edit Hockey"/>
4969 <key key="sport" value="hockey"/>
4970 <text key="name" text="Name"/>
4971 <combo key="leisure" text="type" values="ice_rink,pitch,sports_centre,stadium"/>
4972 <space/>
4973 <optional>
4974 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall" default="fence"/>
4975 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4976 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4977 </optional>
4978 </item>
4979 <item name="Pelota" icon="presets/pelota.png" type="node,closedway">
4980 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=pelota"
4981 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=pelota"/>
4982 <label text="Edit Pelota"/>
4983 <key key="sport" value="pelota"/>
4984 <text key="name" text="Name"/>
4985 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
4986 <space/>
4987 <optional>
4988 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
4989 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
4990 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
4991 </optional>
4992 </item>
4993 <item name="Racquet" icon="presets/racquetball.png" type="node,closedway">
4994 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=racquet"
4995 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=racquet"/>
4996 <label text="Edit Racquet"/>
4997 <key key="sport" value="racquet"/>
4998 <text key="name" text="Name"/>
4999 <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
5000 <space/>
5001 <optional>
5002 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
5003 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
5004 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
5005 </optional>
5006 </item>
5007 <item name="Table Tennis" icon="presets/table_tennis.png" type="node,closedway">
5008 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=table_tennis"/>
5009 <label text="Edit Table Tennis"/>
5010 <key key="sport" value="table_tennis"/>
5011 <text key="name" text="Name"/>
5012 <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
5013 <space/>
5014 <optional>
5015 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
5016 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
5017 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
5018 </optional>
5019 </item>
5020 <item name="Tennis" icon="presets/tennis.png" type="node,closedway">
5021 <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=tennis"/>
5022 <label text="Edit Tennis"/>
5023 <key key="sport" value="tennis"/>
5024 <text key="name" text="Name"/>
5025 <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
5026 <space/>
5027 <optional>
5028 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall" default="fence"/>
5029 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
5030 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
5031 </optional>
5032 </item>
5033 </group>
5034 <!-- Sport (Ball) -->
5035 <group name="Motorsport" icon="presets/motorbike.png">
5036 <item name="Motorsport" icon="styles/standard/sport/motor.png" type="node,closedway">
5037 <label text="Edit Motorsport"/>
5038 <key key="sport" value="motor"/>
5039 <text key="name" text="Name"/>
5040 <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track"/>
5041 <space/>
5042 <optional>
5043 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
5044 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
5045 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
5046 </optional>
5047 </item>
5048 <item name="Karting" icon="presets/karting.png" type="node,closedway">
5049 <label text="Edit Karting"/>
5050 <key key="sport" value="karting"/>
5051 <text key="name" text="Name"/>
5052 <combo key="leisure" text="type" values="pitch,sports_centre,track"/>
5053 <space/>
5054 <optional>
5055 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
5056 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
5057 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
5058 </optional>
5059 </item>
5060 <item name="Motocross" icon="styles/standard/sport/motocross.png" type="node,closedway">
5061 <label text="Edit Motocross"/>
5062 <key key="sport" value="motocross"/>
5063 <text key="name" text="Name"/>
5064 <combo key="leisure" text="type" values="pitch,sports_centre,track"/>
5065 </item>
5066 <item name="Safety Training" icon="presets/safety_training.png" type="node,closedway">
5067 <label text="Edit Safety Training"/>
5068 <key key="sport" value="safety_training"/>
5069 <text key="name" text="Name"/>
5070 <combo key="leisure" text="type" values="pitch,sports_centre,track"/>
5071 <space/>
5072 <optional>
5073 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
5074 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
5075 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
5076 </optional>
5077 </item>
5078 <separator/>
5079 <item name="Model Aerodrome" icon="presets/plane.png" type="node,closedway">
5080 <label text="Edit Model Aerodrome"/>
5081 <key key="sport" value="model_aerodrome"/>
5082 <text key="name" text="Name"/>
5083 <combo key="leisure" text="type" values="pitch,sports_centre,track"/>
5084 </item>
5085 <item name="RC Car" icon="presets/car.png" type="node,closedway">
5086 <label text="Edit RC Car"/>
5087 <key key="sport" value="rc_car"/>
5088 <text key="name" text="Name"/>
5089 <combo key="leisure" text="type" values="pitch,sports_centre,track"/>
5090 </item>
5091 </group>
5092 <!-- Motorsport -->
5093 </group>
5094 <!-- Sports -->
5095 <group name="Man Made" icon="presets/works.png">
5096 <group name="Man Made" icon="presets/works.png">
5097 <item name="Building" icon="styles/standard/misc/landmark/building.png" type="node,closedway,relation">
5098 <link href="http://wiki.openstreetmap.org/wiki/Key:building"
5099 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:building"
5100 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:building"
5101 hu.href="http://wiki.openstreetmap.org/wiki/HU:Key:building"
5102 it.href="http://wiki.openstreetmap.org/wiki/IT:Key:building"
5103 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:building"
5104 nl.href="http://wiki.openstreetmap.org/wiki/NL:Key:building"
5105 no.href="http://wiki.openstreetmap.org/wiki/No:Key:building"
5106 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Key:building"
5107 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:building"
5108 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:building"
5109 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Key:building"/>
5110 <label text="Edit Building"/>
5111 <combo key="building" text="Building" values="yes,roof,garage,industrial,church,school,hangar,commercial,farm,transportation,greenhouse,office,university" default="yes" match="keyvalue" use_last_as_default="true"/>
5112 <text key="name" text="Name"/>
5113 <space/>
5114 <text key="height" text="Height (meters)" length="7"/>
5115 <text key="building:levels" text="levels" length="3"/>
5116 <text key="building:levels:underground" text="underground levels" length="3"/>
5117 <text key="roof:levels" text="roof levels" length="3"/>
5118 <combo key="roof:shape" text="roof shape" values="flat,gabled,half-hipped,hipped,pyramidal,gambrel,mansard,dome,round"/>
5119 <combo key="building:material" text="building material" values="brick,clay,concrete,earth,glass,mdf,metal,plaster,stone,timber_framing,trash,wood"/>
5120 <combo key="roof:material" text="roof material" values="acrylic_glass,concrete,copper,eternit,glass,grass,gravel,metal,roof_tiles,slate,stone,tar_paper,thatch,wood"/>
5121 <space/>
5122 <text key="addr:housenumber" text="housenumber" length="5" auto_increment="-2,-1,+1,+2"/>
5123 </item>
5124 <item name="Building part" icon="styles/standard/misc/landmark/building.png" type="node,closedway,relation">
5125 <link href="http://wiki.openstreetmap.org/wiki/Key:building:part"/>
5126 <label text="Edit Building:part"/>
5127 <key key="building:part" value="yes" match="keyvalue"/>
5128 <text key="name" text="Name"/>
5129 <space/>
5130 <text key="height" text="Height (meters)" length="7"/>
5131 <text key="building:levels" text="levels" length="3"/>
5132 <text key="building:levels:underground" text="underground levels" length="3"/>
5133 <text key="roof:levels" text="roof levels" length="3"/>
5134 <combo key="roof:shape" text="roof shape" values="flat,gabled,half-hipped,hipped,pyramidal,gambrel,mansard,dome,round"/>
5135 <combo key="building:material" text="building material" values="brick,clay,concrete,earth,glass,mdf,metal,plaster,stone,timber_framing,trash,wood"/>
5136 <combo key="roof:material" text="roof material" values="acrylic_glass,concrete,copper,eternit,glass,grass,gravel,metal,roof_tiles,slate,stone,tar_paper,thatch,wood"/>
5137 <space/>
5138 </item>
5139
5140 <item name="Residential Building" icon="styles/standard/misc/landmark/building.png" type="node,closedway,relation">
5141 <link href="http://wiki.openstreetmap.org/wiki/Key:building"
5142 de.href="http://wiki.openstreetmap.org/wiki/DE:Key:building"
5143 fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:building"
5144 it.href="http://wiki.openstreetmap.org/wiki/IT:Key:building"
5145 ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:building"
5146 nl.href="http://wiki.openstreetmap.org/wiki/NL:Key:building"
5147 no.href="http://wiki.openstreetmap.org/wiki/NO:Key:building"
5148 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Key:building"
5149 ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:building"/>
5150 <label text="Edit Residential Building"/>
5151 <combo key="building" text="Building" values="residential,apartments,house,hut,terrace,detached,roof" default="residential" match="keyvalue"/>
5152 <text key="name" text="Name"/>
5153 <space/>
5154 <text key="height" text="Height (meters)" length="7"/>
5155 <text key="building:levels" text="levels" length="3"/>
5156 <text key="building:levels:underground" text="underground levels" length="3"/>
5157 <text key="roof:levels" text="roof levels" length="3"/>
5158 <combo key="roof:shape" text="roof shape" values="flat,gabled,half-hipped,hipped,pyramidal,gambrel,mansard,dome,round"/>
5159 <combo key="building:material" text="building material" values="brick,clay,concrete,earth,glass,mdf,metal,plaster,stone,timber_framing,trash,wood"/>
5160 <combo key="roof:material" text="roof material" values="acrylic_glass,concrete,copper,eternit,glass,grass,gravel,metal,roof_tiles,slate,stone,tar_paper,thatch,wood"/>
5161 <space/>
5162 <text key="addr:housenumber" text="housenumber" length="5" auto_increment="-2,-1,+1,+2"/>
5163 </item>
5164 <item name="Tower" icon="presets/tower.png" type="node,closedway">
5165 <label text="Edit Tower"/>
5166 <key key="man_made" value="tower"/>
5167 <text key="name" text="Name"/>
5168 <combo key="tower:type" text="Tower type" values="communication,observation"/>
5169 <check key="man_made" value_on="water_tower"/>
5170 <!-- TODO man_made=water_tower -->
5171 <optional>
5172 <text key="height" text="Height (meters)" length="7"/>
5173 <text key="operator" text="Operator"/>
5174 </optional>
5175 </item>
5176 <item name="Flagpole" icon="presets/flag.png" type="node">
5177 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=flagpole"
5178 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=flagpole"/>
5179 <key key="man_made" value="flagpole"/>
5180 </item>
5181 <separator/>
5182 <item name="Works" icon="presets/works.png" type="node,closedway">
5183 <label text="Edit Works"/>
5184 <key key="man_made" value="works"/>
5185 <text key="name" text="Name"/>
5186 </item>
5187 <item name="Chimney" icon="presets/chimney.png" type="node">
5188 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Chimney"/>
5189 <label text="Edit Chimney"/>
5190 <space/>
5191 <key key="man_made" value="chimney"/>
5192 <text key="name" text="Name"/>
5193 <text key="operator" text="Operator"/>
5194 <text key="height" text="Height (meters)" length="7"/>
5195 <space/>
5196 <check key="disused" text="Disused" default="off"/>
5197 </item>
5198 <item name="Windmill" icon="presets/windmill.png" type="node,closedway">
5199 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=windmill"
5200 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:man_made=windmill"
5201 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:man_made=windmill"
5202 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=windmill"/>
5203 <label text="Edit Windmill"/>
5204 <key key="man_made" value="windmill"/>
5205 <text key="name" text="Name"/>
5206 </item>
5207 <item name="Gasometer" icon="presets/gasometer.png" type="node,closedway">
5208 <label text="Edit Gasometer"/>
5209 <key key="man_made" value="gasometer"/>
5210 <text key="name" text="Name"/>
5211 <space/>
5212 <check key="disused" text="Disused" default="off"/>
5213 </item>
5214 <item name="Pipeline" icon="presets/path.png" type="way,node">
5215 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=pipeline"
5216 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=pipeline"
5217 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=pipeline"
5218 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=pipeline"/>
5219 <label text="Edit Pipeline"/>
5220 <key key="man_made" value="pipeline"/>
5221 <text key="operator" text="Operator"/>
5222 <combo key="type" text="Type" values="water,gas,heat,oil,sewage,air,smoke"/>
5223 <!-- TODO fix autocomplate "water"-->
5224 <combo key="location" text="Location" values="underground,underwater,overground" values_context="pipeline"/>
5225 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
5226 <check key="disused" text="Disused" default="off"/>
5227 </item>
5228 <item name="Pipeline point feature" icon="http://upload.wikimedia.org/wikipedia/commons/f/fe/Valve_ico27x27.png" type="node">
5229 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=pipeline"
5230 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=pipeline"
5231 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=pipeline"
5232 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=pipeline"/>
5233 <label text="Edit Pipeline"/>
5234 <text key="operator" text="Operator"/>
5235 <combo key="pipeline" text="Type" values="marker,valve,manhole" default="manhole" use_last_as_default="true"/>
5236 <combo key="location" text="Location" values="underground,underwater,overground"/>
5237 </item>
5238
5239 <item name="Crane" icon="presets/crane.png" type="node,closedway">
5240 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=crane"
5241 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=crane"
5242 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=crane"/>
5243 <label text="Edit Crane"/>
5244 <key key="man_made" value="crane"/>
5245 <text key="name" text="Name"/>
5246 <text key="operator" text="Operator"/>
5247 <space/>
5248 <combo key="crane:type" text="crane type" values="bulk-handling,container,deck,floor-mounted,gantry,hammerhead,hoist,jib,level_luffing,overhead,portal,rail,saulendrehkran,self-erecting,slewing_pillar,tower,travel_lift,winch"/>
5249 <combo key="crane:mobile" text="mobile" values="rail,street,work_site"/>
5250 <text key="crane:maxload" text="max load"/>
5251 <text key="crane:maxradius" text="Length of the boom"/>
5252 <space/>
5253 <text key="height" text="Height (meters)" length="7"/>
5254 </item>
5255 <item name="Mineshaft" icon="presets/mineshaft.png" type="node,closedway">
5256 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=mineshaft"
5257 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=mineshaft"
5258 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=mineshaft"/>
5259 <label text="Edit Mineshaft"/>
5260 <key key="man_made" value="mineshaft"/>
5261 <text key="name" text="Name"/>
5262 <combo key="mineshaft_type" text="Function" values="winding,air"/>
5263 <text key="depth" text="Depth in meters"/>
5264 <text key="operator" text="Operator"/>
5265 <combo key="resource" text="Resource" values="aggregate,bauxite,coal,copper,dimension_stone,gold,ilmenite,iron_ore,lead,limestone,nickel,rutile,salt,silver,tin,zinc,zircon,antimony,arsenic,asbestos,barite,bastnasite,bentonite,beryl,bismuth,bitumen,borax,boron,bromide,caesium,chromite,cobalt,diamond,diatomite,dolomite,feldspar,fluorite,garnet,graphite,gypsum,iodine,jade,kaolinite,lanthanum,lithium,magnesite,magnesium,manganese,marble,mercury,mica,molybdenite,monazite,niobium,oil_sand,oil_shale,opal,palladium,peat,perlite,phospate,potash,platinum,radium,ruby,rubidium,sapphire,scandium,silica,sodium_carbonate,spongolite,strontium,sulphur,talc,terbium,tantalum,topaz,tungsten,uranium,vanadium,vermiculite,wollastonite,yttrium,zeolite"/>
5266 <combo key="headframe" text="Visible Headframe" values="yes,no"/>
5267 <check key="disused" text="Disused" default="off"/>
5268 </item>
5269 <item name="Adit" icon="presets/adit.png" type="node">
5270 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=adit"
5271 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=adit"
5272 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=adit"
5273 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=adit"/>
5274 <label text="Edit Adit"/>
5275 <key key="man_made" value="adit"/>
5276 <text key="name" text="Name"/>
5277 <text key="length" text="Length in meters"/>
5278 <text key="operator" text="Operator"/>
5279 <combo key="resource" text="Resource" values="aggregate,bauxite,coal,copper,dimension_stone,gold,ilmenite,iron_ore,lead,limestone,nickel,rutile,salt,silver,tin,zinc,zircon,antimony,arsenic,asbestos,barite,bastnasite,bentonite,beryl,bismuth,bitumen,borax,boron,bromide,caesium,chromite,cobalt,diamond,diatomite,dolomite,feldspar,fluorite,garnet,graphite,gypsum,iodine,jade,kaolinite,lanthanum,lithium,magnesite,magnesium,manganese,marble,mercury,mica,molybdenite,monazite,niobium,oil_sand,oil_shale,opal,palladium,peat,perlite,phospate,potash,platinum,radium,ruby,rubidium,sapphire,scandium,silica,sodium_carbonate,spongolite,strontium,sulphur,talc,terbium,tantalum,topaz,tungsten,uranium,vanadium,vermiculite,wollastonite,yttrium,zeolite"/>
5280 <check key="disused" text="Disused" default="off"/>
5281 </item>
5282 <separator/>
5283 <item name="Water Tower" icon="presets/water_tower.png" type="node,closedway">
5284 <label text="Edit Water Tower"/>
5285 <key key="man_made" value="water_tower"/>
5286 <text key="name" text="Name"/>
5287 <text key="height" text="Height (meters)" length="7"/>
5288 <space/>
5289 <check key="disused" text="Disused" default="off"/>
5290 </item>
5291 <item name="Water Works" icon="presets/water_works.png" type="node,closedway">
5292 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=water_works"
5293 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:man_made=water_works"
5294 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=water_works"
5295 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=water_works"/>
5296 <label text="Edit Water Works"/>
5297 <space/>
5298 <key key="man_made" value="water_works"/>
5299 <text key="name" text="Name"/>
5300 <text key="operator" text="Operator"/>
5301 </item>
5302 <item name="Wastewater Plant" icon="presets/wastewater_plant.png" type="node,closedway">
5303 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=wastewater_plant"
5304 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=wastewater_plant"
5305 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:man_made=wastewater_plant"
5306 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:man_made=wastewater_plant"
5307 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:man_made=wastewater_plant"
5308 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=wastewater_plant"
5309 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=wastewater_plant"/>
5310 <label text="Edit Wastewater Plant"/>
5311 <key key="man_made" value="wastewater_plant"/>
5312 <text key="name" text="Name"/>
5313 </item>
5314 <item name="Watermill" icon="styles/standard/misc/landmark/watermill.png" type="node,closedway">
5315 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=watermill"
5316 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:man_made=watermill"
5317 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=watermill"/>
5318 <label text="Edit Watermill"/>
5319 <space/>
5320 <key key="man_made" value="watermill"/>
5321 <text key="name" text="Name"/>
5322 </item>
5323 <item name="Fountain" icon="presets/spring.png" type="node,closedway">
5324 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=fountain"
5325 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=fountain"
5326 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=fountain"
5327 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=fountain"
5328 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=fountain"
5329 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=fountain"
5330 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=fountain"/>
5331 <label text="Edit Fountain"/>
5332 <key key="amenity" value="fountain"/>
5333 <text key="name" text="Name"/>
5334 </item>
5335 <item name="Water Well" icon="presets/water_well.png" type="node">
5336 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=water_well"
5337 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=water_well"
5338 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:man_made=water_well"
5339 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=water_well"/>
5340 <label text="Edit Water Well"/>
5341 <key key="man_made" value="water_well"/>
5342 <text key="name" text="Name"/>
5343 </item>
5344 <separator/>
5345 <item name="Lighthouse" icon="styles/standard/misc/landmark/lighthouse.png" type="node,closedway">
5346 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=lighthouse"
5347 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:man_made=lighthouse"
5348 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=lighthouse"
5349 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=lighthouse"/>
5350 <label text="Edit Lighthouse"/>
5351 <key key="man_made" value="lighthouse"/>
5352 <text key="name" text="Name"/>
5353 <text key="height" text="Height (meters)" length="7"/>
5354 </item>
5355 <item name="Beacon" icon="styles/standard/misc/landmark/beacon.png" type="node">
5356 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=beacon"
5357 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=beacon"
5358 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=beacon"/>
5359 <label text="Edit Beacon"/>
5360 <key key="man_made" value="beacon"/>
5361 <text key="name" text="Name"/>
5362 </item>
5363 <item name="Street Lamp" icon="styles/standard/misc/streetlamp.png" type="node">
5364 <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=street_lamp"
5365 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=street_lamp"
5366 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=street_lamp"/>
5367 <label text="Edit Street Lamp"/>
5368 <space/>
5369 <key key="highway" value="street_lamp"/>
5370 <combo key="opening_hours" text="Operation times" values="Mo-Fr 22:00-05:00"/>
5371 <optional>
5372 <text key="height" text="Height (meters)" length="7"/>
5373 </optional>
5374 </item>
5375 <item name="Measurement Station" icon="presets/measurement_station.png" type="node,closedway">
5376 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/measurement_station"/>
5377 <label text="Edit Measurement Station"/>
5378 <space/>
5379 <key key="man_made" value="measurement_station"/>
5380 <text key="name" text="Name"/>
5381 <text key="operator" text="Operator"/>
5382 <combo key="measurement" text="Measurement" values="particulate_matter,seismic,water_level,weather"/>
5383 <combo key="recording" text="Recording" values="manually,automated,remote,no"/>
5384 <combo key="display" text="Display" values="analog,digital,no" values_context="display"/>
5385 </item>
5386 <item name="Survey Point" icon="presets/survey_point.png" type="node">
5387 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=survey_point"
5388 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=survey_point"
5389 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=survey_point"/>
5390 <label text="Edit Survey Point"/>
5391 <key key="man_made" value="survey_point"/>
5392 <text key="name" text="Name"/>
5393 <text key="ele" text="Elevation"/>
5394 </item>
5395 <item name="Surveillance" icon="presets/surveillance.png" type="node,closedway">
5396 <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=surveillance"
5397 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:man_made=surveillance"
5398 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=surveillance"/>
5399 <label text="Edit Surveillance Camera"/>
5400 <key key="man_made" value="surveillance"/>
5401 <text key="name" text="Name"/>
5402 <combo key="surveillance" text="Type" values="indoor,outdoor,public"/>
5403 </item>
5404 </group>
5405 <!-- Man Made -->
5406 <group name="Power" icon="presets/power.png">
5407 <item name="Power Generator" icon="presets/power.png" type="node,closedway">
5408 <link href="http://wiki.openstreetmap.org/wiki/Tag:power=generator"
5409 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=generator"
5410 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:power=generator"
5411 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:power=generator"
5412 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:power=generator"
5413 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:power=generator"/>
5414 <label text="Edit Power Generator"/>
5415 <key key="power" value="generator"/>
5416 <text key="name" text="Name"/>
5417 <combo key="generator:source" text="Source" values="biofuel,biogas,biomass,coal,diesel,gas,gasoline,geothermal,hydro,nuclear,oil,osmotic,solar,tidal,waste,wave,wind"/>
5418 <combo key="generator:method" text="Method" values="anaerobic_digestion,combustion,dam,fission,fusion,gasification,photovoltaic,pumped-storage,pumping,pyrolysis,run-of-the-river,thermal"/>
5419 <space/>
5420 <label text="Output forms of energy"/>
5421 <combo key="generator:output:electricity" text="electricity" values="yes,2 W,3 kW,5 MW,7 GW"/>
5422 <combo key="generator:output:hot_water" text="hot water" values="yes,2 W,3 kW,5 MW,7 GW"/>
5423 <combo key="generator:output:hot_air" text="hot air" values="yes,2 W,3 kW,5 MW,7 GW"/>
5424 <combo key="generator:output:cold_water" text="cold water" values="yes,2 W,3 kW,5 MW,7 GW"/>
5425 <combo key="generator:output:cold_air" text="cold air" values="yes,2 W,3 kW,5 MW,7 GW"/>
5426 <combo key="generator:output:compressed_air" text="compressed air" values="yes,2 W,3 kW,5 MW,7 GW"/>
5427 <combo key="generator:output:steam" text="steam" values="yes,2 W,3 kW,5 MW,7 GW"/>
5428 <combo key="generator:output:vacuum" text="vacuum" values="yes,2 W,3 kW,5 MW,7 GW"/>
5429 <combo key="generator:output:battery_charging" text="battery charging" values="yes,2 W,3 kW,5 MW,7 GW"/>
5430 </item>
5431 <item name="Power Station" icon="presets/power.png" type="node,closedway">
5432 <link href="http://wiki.openstreetmap.org/wiki/Tag:power=line"
5433 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=line"
5434 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:power=line"
5435 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:power=line"
5436 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:power=line"
5437 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:power=line"
5438 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:power=line"/>
5439 <label text="Edit Power Station. (DEPRECATED to use as Sub Station)"/>
5440 <key key="power" value="station"/>
5441 <text key="name" text="Name"/>
5442 <text key="operator" text="Operator"/>
5443 <text key="ref" text="Reference"/>
5444 <space/>
5445 <optional>
5446 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall" use_last_as_default="true"/>
5447 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
5448 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no" default="private"/>
5449 </optional>
5450 </item>
5451 <item name="Power Sub Station" icon="presets/power.png" type="node,closedway">
5452 <link href="http://wiki.openstreetmap.org/wiki/Tag:power=sub_station"
5453 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=sub_station"
5454 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:power=sub_station"
5455 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:power=sub_station"
5456 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:power=sub_station"/>
5457 <label text="Edit Power Sub Station"/>
5458 <key key="power" value="sub_station"/>
5459 <text key="operator" text="Operator"/>
5460 <text key="ref" text="Line reference"/>
5461 <space/>
5462 <optional>
5463 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall" use_last_as_default="true"/>
5464 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood" use_last_as_default="true"/>
5465 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no" default="private"/>
5466 </optional>
5467 </item>
5468 <item name="Cable Distribution Cabinet" icon="presets/power.png" type="node">
5469 <link href="http://wiki.openstreetmap.org/wiki/Tag:power=cable_distribution_cabinet"
5470 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=cable_distribution_cabinet"
5471 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:power=cable_distribution_cabinet"/>
5472 <label text="Edit Cable Distribution Cabinet"/>
5473 <key key="power" value="cable_distribution_cabinet"/>
5474 <text key="operator" text="Operator"/>
5475 <text key="ref" text="Reference"/>
5476 </item>
5477 <separator/>
5478 <item name="Power Tower" icon="presets/power_tower.png" type="node">
5479 <link href="http://wiki.openstreetmap.org/wiki/Tag:power=tower"
5480 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=tower"
5481 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:power=tower"
5482 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:power=tower"
5483 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:power=tower"
5484 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:power=tower"
5485 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:power=tower"
5486 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:power=tower"/>
5487 <label text="Edit Power Tower"/>
5488 <key key="power" value="tower"/>
5489 <text key="ref" text="Tower reference"/>
5490 <space/>
5491 <combo key="structure" text="Structure" values="lattice,tubular,solid" use_last_as_default="true"/>
5492 <combo key="tower:type" text="Tower type" values="suspension,anchor,termination,branch,transposing,crossing"/>
5493 <check key="tower" text="Air to ground" value_on="air_to_ground"/>
5494 <combo key="material" text="Material" values="steel,wood,concrete,plastic" use_last_as_default="true"/>
5495 <combo key="design" text="Design">
5496 <list_entry value="asymmetric" short_description="" icon="presets/tower_design/asymmetric"/>
5497 <list_entry value="barrel" short_description="middle level cross-arms being longer than the upper and lower" icon="presets/tower_design/barrel"/>
5498 <list_entry value="bipole" short_description="A pair of closely spaced but non-touching pylons" icon="presets/tower_design/bipole"/>
5499 <list_entry value="monopolar" short_description="" icon="presets/tower_design/monopolar"/>
5500 <list_entry value="one-level" short_description="" icon="presets/tower_design/one-level"/>
5501 <list_entry value="two-level" short_description="" icon="presets/tower_design/two-level"/>
5502 <list_entry value="three-level" short_description="" icon="presets/tower_design/three-level"/>
5503 <list_entry value="four-level" short_description="" icon="presets/tower_design/four-level"/>
5504 <list_entry value="six-level" short_description="" icon="presets/tower_design/six-level"/>
5505 <list_entry value="nine-level" short_description="" icon="presets/tower_design/nine-level"/>
5506 <list_entry value="donau" short_description="A sub-type of the two-level tower. It is characterized by having one conductor on each side at the upper level and two conductors at each side on the lower level" icon="presets/tower_design/donau"/>
5507 <list_entry value="delta" short_description="y-shaped tower having a horisontal cross-beam between the two top structures. All conductors are attached to the cross-beam" icon="presets/tower_design/delta"/>
5508 <list_entry value="delta_two-level" short_description="" icon="presets/tower_design/delta_two-level"/>
5509 <list_entry value="y-frame" short_description="Similar to delta tower but there is no horisontal cross-beam between the two top structures" icon="presets/tower_design/y-frame"/>
5510 <list_entry value="h-frame" short_description="Separate pylons or poles connected by a beam to which the conductors are attached. Not all conductors are located between the vertical structures" icon="presets/tower_design/h-frame_one-level"/>
5511 <list_entry value="h-frame_one-level" short_description="" icon="presets/tower_design/h-frame_one-level"/>
5512 <list_entry value="h-frame_two-level" short_description="" icon="presets/tower_design/h-frame_two-level"/>
5513 <list_entry value="portal" short_description="Vertical structures connected by a horisontal cross-beam. All conductors are supported between the vertical structures" icon="presets/tower_design/portal_one-level"/>
5514 <list_entry value="portal_one-level" short_description="" icon="presets/tower_design/portal_one-level"/>
5515 <list_entry value="portal_two-level" short_description="" icon="presets/tower_design/portal_two-level"/>
5516 <list_entry value="portal_three-level" short_description="" icon="presets/tower_design/portal_three-level"/>
5517 <list_entry value="guyed_v-frame" short_description="" icon="presets/tower_design/guyed_v-frame"/>
5518 </combo>
5519 <text key="design:name" text="Specific design name"/>
5520 <check key="design:incomplete" text="design:incomplete" default="off"/>
5521 <space/>
5522 <combo key="colour" text="Colour" values="red,red/white"/>
5523 <text key="height" text="Height (meters)" length="7"/>
5524 </item>
5525 <item name="Pole" icon="styles/standard/misc/landmark/power/pole.png" type="node">
5526 <link href="http://wiki.openstreetmap.org/wiki/Tag:power=pole"
5527 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=pole"
5528 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:power=pole"
5529 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:power=pole"
5530 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:power=pole"
5531 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:power=pole"
5532 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:power=pole"/>
5533 <label text="Edit Power Pole"/>
5534 <key key="power" value="pole"/>
5535 <text key="ref" text="Pole reference"/>
5536 <space/>
5537 <combo key="material" text="Material" values="steel,wood,concrete,plastic" use_last_as_default="true"/>
5538 <text key="colour" text="Colour"/>
5539 <text key="height" text="Height (meters)" length="7"/>
5540 <text key="diameter" text="Diameter (meters)" length="7"/>
5541 </item>
5542 <item name="Power Line" icon="presets/power.png" type="way">
5543 <link href="http://wiki.openstreetmap.org/wiki/Tag:power=line"
5544 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=line"/>
5545 <label text="Edit Power Line"/>
5546 <combo key="power" text="Line type" values_context="Power Line" values="line,minor_line" default="line" match="keyvalue"/>
5547 <text key="operator" text="Operator" use_last_as_default="true"/>
5548 <!-- TODO use_last_as_default to all GUI controls -->
5549 <text key="ref" text="Line reference"/>
5550 <!-- TODO: voltage values used are a mixture of power lines and railways - needs cleanup -->
5551 <combo key="voltage" text="Voltage" values="3000,10000,15000,20000,25000,110000,220000,330000,380000,400000,750000"/>
5552 <combo key="frequency" text="Frequency" values="0,16.67,16.7,50,60" use_last_as_default="true"/>
5553 <text key="cables" text="Amount of Cables"/>
5554 <combo key="wires" text="Number of wires (better: conductors) per power cable" values="single,double,triple,quad,fivefold,sixfold,eightfold"/>
5555 <space/>
5556 <combo key="location" text="Location" values="underground,underwater,overground" values_context="power line"/>
5557 <check key="disused" text="Disused" default="off"/>
5558 </item>
5559 <item name="Transformer" icon="styles/standard/misc/landmark/power/transformer.png" type="node">
5560 <link href="http://wiki.openstreetmap.org/wiki/Tag:power=transformer"/>
5561 <label text="Edit Power Transformer"/>
5562 <key key="power" value="transformer"/>
5563 <text key="ref" text="Transformer reference"/>
5564 <text key="voltage" text="Transformer voltage"/>
5565 <combo key="frequency" text="Frequency" values="0,16.67,16.7,50,60" use_last_as_default="true"/>
5566 <space/>
5567 <combo key="location" text="Location" values="indoor,outdoor,underground" default="outdoor" use_last_as_default="true"/>
5568 </item>
5569
5570 </group>
5571 <!-- Power -->
5572 <group name="Historic Places" icon="presets/State_Tourist.png">
5573 <item name="Castle" icon="presets/State_Tourist.png" type="node,closedway">
5574 <link href="http://wiki.openstreetmap.org/wiki/Tag:historic=castle"
5575 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:historic=castle"
5576 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:historic=castle"/>
5577 <label text="Edit Castle"/>
5578 <key key="historic" value="castle"/>
5579 <text key="name" text="Name"/>
5580 <text key="wikipedia" text="Wikipedia"/>
5581 </item>
5582 <item name="Ruins" icon="presets/ruins.png" type="node,closedway">
5583 <label text="Edit Ruins"/>
5584 <key key="historic" value="ruins"/>
5585 <text key="name" text="Name"/>
5586 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5587 </item>
5588 <item name="Archaeological Site" icon="styles/standard/sightseeing/archaeological.png" type="node,closedway">
5589 <link href="http://wiki.openstreetmap.org/wiki/Tag:historic=archaeological_site"
5590 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:historic=archaeological_site"
5591 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:historic=archaeological_site"
5592 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:historic=archaeological_site"
5593 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:historic=archaeological_site"/>
5594 <label text="Edit Archaeological Site"/>
5595 <key key="historic" value="archaeological_site"/>
5596 <text key="name" text="Name"/>
5597 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5598 <text key="wikipedia" text="Wikipedia"/>
5599 </item>
5600 <item name="Battlefield" icon="presets/battlefield.png" type="node,closedway">
5601 <link href="http://wiki.openstreetmap.org/wiki/Tag:historic=battlefield"
5602 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:historic=battlefield"
5603 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:historic=battlefield"
5604 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:historic=battlefield"
5605 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:historic=battlefield"/>
5606 <label text="Edit Battlefield"/>
5607 <key key="historic" value="battlefield"/>
5608 <text key="name" text="Name"/>
5609 <text key="wikipedia" text="Wikipedia"/>
5610 </item>
5611 <item name="Palaeontological Site" icon="presets/palaeontological_site.png" type="node,closedway">
5612 <link href="http://wiki.openstreetmap.org/wiki/Tag:geological"/>
5613 <label text="Edit Palaeontological Site"/>
5614 <key key="geological" value="palaeontological_site"/>
5615 <text key="name" text="Name"/>
5616 <text key="wikipedia" text="Wikipedia"/>
5617 </item>
5618 <separator/>
5619 <item name="Monument" icon="presets/monument.png" type="node,closedway">
5620 <label text="Edit Monument"/>
5621 <key key="historic" value="monument"/>
5622 <text key="name" text="Name"/>
5623 <text key="inscription" text="Inscription"/>
5624 </item>
5625 <item name="Memorial" icon="presets/memorial.png" type="node,closedway">
5626 <link href="http://wiki.openstreetmap.org/wiki/Tag:historic=memorial"
5627 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:historic=memorial"
5628 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:historic=memorial"
5629 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:historic=memorial"
5630 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:historic=memorial"/>
5631 <label text="Edit Memorial"/>
5632 <key key="historic" value="memorial"/>
5633 <text key="name" text="Name"/>
5634 </item>
5635 <item name="Wayside Cross" icon="presets/wayside_cross.png" type="node,closedway">
5636 <link href="http://wiki.openstreetmap.org/wiki/Tag:historic=wayside_cross"/>
5637 <label text="Edit Wayside Cross"/>
5638 <key key="historic" value="wayside_cross"/>
5639 <text key="name" text="Name"/>
5640 <text key="inscription" text="Inscription"/>
5641 <combo key="religion" text="Religion" values="animism,bahai,buddhist,christian,hindu,jain,jewish,muslim,paganism,sikh,spiritualist,taoist,unitarian,zoroastrian"/>
5642 <combo key="denomination" text="Denomination" values="anglican,baptist,catholic,evangelical,jehovahs_witness,lutheran,methodist,mormon,orthodox,pentecostal,presbyterian,protestant,quaker,shia,sunni"/>
5643 </item>
5644 <item name="Wayside Shrine" icon="presets/wayside_shrine.png" type="node,closedway">
5645 <link href="http://wiki.openstreetmap.org/wiki/Tag:historic=wayside_shrine"/>
5646 <label text="Edit Wayside Shrine"/>
5647 <key key="historic" value="wayside_shrine"/>
5648 <text key="name" text="Name"/>
5649 <text key="inscription" text="Inscription"/>
5650 <combo key="religion" text="Religion" values="animism,bahai,buddhist,christian,hindu,jain,jewish,muslim,paganism,sikh,spiritualist,taoist,unitarian,zoroastrian"/>
5651 <combo key="denomination" text="Denomination" values="anglican,baptist,catholic,evangelical,jehovahs_witness,lutheran,methodist,mormon,orthodox,pentecostal,presbyterian,protestant,quaker,shia,sunni"/>
5652 </item>
5653 <item name="Boundary Stone" icon="styles/standard/historic/boundary_stone.png" type="node,closedway">
5654 <label text="Edit Boundary Stone"/>
5655 <key key="historic" value="boundary_stone"/>
5656 <text key="name" text="Name"/>
5657 </item>
5658 </group>
5659 <!-- Historic Places -->
5660 </group>
5661 <!-- Structures -->
5662 <group name="Shops" icon="styles/standard/shop/mall.png">
5663 <group name="Food" icon="styles/standard/shop/supermarket.png">
5664 <item name="Supermarket" icon="styles/standard/shop/supermarket.png" type="node,closedway">
5665 <label text="Edit Supermarket"/>
5666 <key key="shop" value="supermarket"/>
5667 <text key="name" text="Name"/>
5668 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5669 </item>
5670 <item name="Convenience Store" icon="presets/convenience.png" type="node,closedway">
5671 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=convenience"
5672 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=convenience"
5673 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=convenience"
5674 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=convenience"/>
5675 <label text="Edit Convenience Store"/>
5676 <key key="shop" value="convenience"/>
5677 <text key="name" text="Name"/>
5678 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5679 </item>
5680 <item name="Kiosk" icon="presets/kiosk.png" type="node,closedway">
5681 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=kiosk"
5682 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=kiosk"
5683 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=kiosk"
5684 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=kiosk"
5685 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=kiosk"/>
5686 <label text="Edit Kiosk"/>
5687 <key key="shop" value="kiosk"/>
5688 <text key="name" text="Name"/>
5689 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5690 </item>
5691 <separator/>
5692 <item name="Baker" icon="presets/baker.png" type="node,closedway">
5693 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=bakery"
5694 ar.href="http://wiki.openstreetmap.org/wiki/Ar:Tag:shop=bakery"
5695 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:shop=bakery"
5696 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:shop=bakery"
5697 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=bakery"
5698 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=bakery"
5699 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=bakery"
5700 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=bakery"/>
5701 <label text="Edit Baker"/>
5702 <key key="shop" value="bakery"/>
5703 <text key="name" text="Name"/>
5704 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5705 </item>
5706 <item name="Butcher" icon="presets/cow.png" type="node,closedway">
5707 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=butcher"
5708 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:shop=butcher"
5709 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:shop=butcher"
5710 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=butcher"
5711 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=butcher"
5712 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=butcher"
5713 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=butcher"/>
5714 <label text="Edit Butcher"/>
5715 <key key="shop" value="butcher"/>
5716 <text key="name" text="Name"/>
5717 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5718 </item>
5719 <item name="Seafood" icon="presets/seafood.png" type="node,closedway">
5720 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=seafood"
5721 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=seafood"/>
5722 <label text="Edit Seafood"/>
5723 <space/>
5724 <key key="shop" value="seafood"/>
5725 <text key="name" text="Name"/>
5726 <text key="operator" text="Operator"/>
5727 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
5728 </item>
5729 <item name="Deli (Fine Food)" icon="presets/deli.png" type="node,closedway">
5730 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=deli"
5731 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=deli"/>
5732 <label text="Edit Deli (Fine Food)"/>
5733 <space/>
5734 <key key="shop" value="deli"/>
5735 <text key="name" text="Name"/>
5736 <text key="operator" text="Operator"/>
5737 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
5738 </item>
5739 <item name="Confectionery" icon="presets/confectionery.png" type="node,closedway">
5740 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=confectionery"
5741 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=confectionery"
5742 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=confectionery"
5743 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=confectionery"
5744 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=confectionery"/>
5745 <label text="Edit Confectionery"/>
5746 <key key="shop" value="confectionery"/>
5747 <text key="name" text="Name"/>
5748 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5749 </item>
5750 <separator/>
5751 <item name="Marketplace" icon="styles/standard/place/marketplace.png" type="node,way,closedway">
5752 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=marketplace"
5753 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=marketplace"
5754 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=marketplace"
5755 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=marketplace"
5756 no.href="http://wiki.openstreetmap.org/wiki/No:Tag:amenity=marketplace"
5757 pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:amenity=marketplace"
5758 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=marketplace"
5759 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=marketplace"/>
5760 <label text="Edit Marketplace"/>
5761 <space/>
5762 <key key="amenity" value="marketplace"/>
5763 <text key="name" text="Name"/>
5764 <text key="operator" text="Operator"/>
5765 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
5766 </item>
5767 <item name="Greengrocer" icon="presets/greengrocer.png" type="node,closedway">
5768 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=greengrocer"
5769 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=greengrocer"
5770 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:shop=greengrocer"
5771 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=greengrocer"/>
5772 <label text="Edit Greengrocer"/>
5773 <space/>
5774 <key key="shop" value="greengrocer"/>
5775 <text key="name" text="Name"/>
5776 <text key="operator" text="Operator"/>
5777 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
5778 </item>
5779 <separator/>
5780 <item name="Organic" type="node,closedway">
5781 <link href="http://wiki.openstreetmap.org/wiki/Key:organic"/>
5782 <label text="Edit Organic/Bio"/>
5783 <combo text="Organic/Bio" key="organic" values="no,yes,only" match="key"/>
5784 </item>
5785 <item name="Fair Trade" type="node,closedway">
5786 <link href="http://wiki.openstreetmap.org/wiki/Key:fair_trade"/>
5787 <label text="Edit Fair Trade"/>
5788 <combo text="Fair Trade" key="fair_trade" values="no,yes,only" match="key"/>
5789 </item>
5790 <separator/>
5791 <item name="Alcohol" icon="styles/standard/shop/beverages.png" type="node,closedway">
5792 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=alcohol"
5793 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=alcohol"
5794 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=alcohol"/>
5795 <label text="Edit Alcohol Shop"/>
5796 <key key="shop" value="alcohol"/>
5797 <text key="name" text="Name"/>
5798 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5799 </item>
5800 <item name="Beverages" icon="styles/standard/shop/beverages.png" type="node,closedway">
5801 <label text="Edit Beverages Shop"/>
5802 <key key="shop" value="beverages"/>
5803 <text key="name" text="Name"/>
5804 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5805 </item>
5806 </group>
5807 <!-- Food -->
5808 <group name="Clothes" icon="styles/standard/shop/clothes.png">
5809 <item name="Clothes" icon="styles/standard/shop/clothes.png" type="node,closedway">
5810 <label text="Edit Clothes Shop"/>
5811 <key key="shop" value="clothes"/>
5812 <text key="name" text="Name"/>
5813 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5814 </item>
5815 <item name="Boutique" icon="presets/boutique.png" type="node,closedway">
5816 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=boutique"
5817 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=boutique"
5818 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=boutique"
5819 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=boutique"/>
5820 <label text="Edit Boutique"/>
5821 <space/>
5822 <key key="shop" value="boutique"/>
5823 <text key="name" text="Name"/>
5824 <text key="operator" text="Operator"/>
5825 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
5826 </item>
5827 <item name="Shoes" icon="styles/standard/shop/shoes.png" type="node,closedway">
5828 <label text="Edit Shoe Shop"/>
5829 <key key="shop" value="shoes"/>
5830 <text key="name" text="Name"/>
5831 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5832 </item>
5833 <item name="Outdoor" icon="presets/tent.png" type="node,closedway">
5834 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=outdoor"
5835 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=outdoor"
5836 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=outdoor"/>
5837 <label text="Edit Outdoor Shop"/>
5838 <key key="shop" value="outdoor"/>
5839 <text key="name" text="Name"/>
5840 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5841 </item>
5842 <item name="Sports" icon="presets/rowing.png" type="node,closedway">
5843 <label text="Edit Sports Shop"/>
5844 <key key="shop" value="sports"/>
5845 <text key="name" text="Name"/>
5846 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5847 </item>
5848 <separator/>
5849 <item name="Dry Cleaning" icon="presets/laundry.png" type="node,closedway">
5850 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=dry_cleaning"
5851 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:shop=dry_cleaning"
5852 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:shop=dry_cleaning"
5853 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=dry_cleaning"/>
5854 <label text="Edit Dry Cleaning"/>
5855 <key key="shop" value="dry_cleaning"/>
5856 <text key="name" text="Name"/>
5857 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5858 </item>
5859 <item name="Laundry" icon="presets/laundry.png" type="node,closedway">
5860 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Laundry"/>
5861 <label text="Edit Laundry"/>
5862 <key key="shop" value="laundry"/>
5863 <text key="name" text="Name"/>
5864 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5865 </item>
5866 <item name="Tailor" icon="styles/standard/shop/tailor.png" type="node,closedway">
5867 <label text="Edit Tailor"/>
5868 <key key="shop" value="tailor"/>
5869 <text key="name" text="Name"/>
5870 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5871 </item>
5872 <item name="Fabric" icon="presets/fabric.png" type="node,closedway">
5873 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=fabric"
5874 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=fabric"/>
5875 <label text="Edit Fabric"/>
5876 <space/>
5877 <key key="shop" value="fabric"/>
5878 <text key="name" text="Name"/>
5879 <text key="operator" text="Operator"/>
5880 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
5881 </item>
5882 </group>
5883 <!-- Clothes -->
5884 <group name="Electronic" icon="styles/standard/shop/electronics.png">
5885 <item name="Computer" icon="styles/standard/shop/computer.png" type="node,closedway">
5886 <label text="Edit Computer Shop"/>
5887 <key key="shop" value="computer"/>
5888 <text key="name" text="Name"/>
5889 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5890 </item>
5891 <item name="Electronics" icon="styles/standard/shop/electronics.png" type="node,closedway">
5892 <label text="Edit Electronics Shop"/>
5893 <key key="shop" value="electronics"/>
5894 <text key="name" text="Name"/>
5895 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5896 </item>
5897 <item name="Mobile Phone" icon="presets/mobile_phone.png" type="node,closedway">
5898 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=mobile_phone"
5899 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=mobile_phone"
5900 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=mobile_phone"/>
5901 <label text="Edit Mobile Phone"/>
5902 <space/>
5903 <key key="shop" value="mobile_phone"/>
5904 <text key="name" text="Name"/>
5905 <text key="operator" text="Operator"/>
5906 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
5907 </item>
5908 <item name="Vacuum Cleaner" icon="presets/vacuum_cleaner.png" type="node,closedway">
5909 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=vacuum_cleaner"
5910 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=vacuum_cleaner"/>
5911 <label text="Edit Vacuum Cleaner"/>
5912 <space/>
5913 <key key="shop" value="vacuum_cleaner"/>
5914 <text key="name" text="Name"/>
5915 <text key="operator" text="Operator"/>
5916 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
5917 </item>
5918 <item name="Hifi" icon="styles/standard/shop/hifi.png" type="node,closedway">
5919 <label text="Edit Hifi Shop"/>
5920 <key key="shop" value="hifi"/>
5921 <text key="name" text="Name"/>
5922 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5923 </item>
5924 <item name="Video" name_context="shop" icon="styles/standard/shop/video.png" type="node,closedway">
5925 <label text="Edit Video Shop"/>
5926 <key key="shop" value="video"/>
5927 <text key="name" text="Name"/>
5928 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5929 </item>
5930 </group>
5931 <!-- Electronic -->
5932 <group name="Cash" icon="presets/dollar.png">
5933 <item name="Bank" icon="styles/standard/money/bank.png" type="node,closedway">
5934 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bank"
5935 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bank"
5936 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=bank"
5937 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bank"
5938 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=bank"
5939 no.href="http://wiki.openstreetmap.org/wiki/No:Tag:amenity=bank"
5940 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bank"
5941 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bank"/>
5942 <label text="Edit Bank"/>
5943 <key key="amenity" value="bank"/>
5944 <text key="name" text="Name"/>
5945 <text key="operator" text="Operator"/>
5946 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5947 <check key="atm" text="Automated Teller Machine" default="on"/>
5948 </item>
5949 <item name="Money Exchange" icon="styles/standard/money/exchange.png" type="node,closedway">
5950 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bureau_de_change"
5951 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bureau_de_change"
5952 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=bureau_de_change"
5953 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bureau_de_change"
5954 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bureau_de_change"
5955 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bureau_de_change"/>
5956 <label text="Edit Money Exchange"/>
5957 <key key="amenity" value="bureau_de_change"/>
5958 <text key="name" text="Name"/>
5959 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
5960 </item>
5961 <item name="Automated Teller Machine" icon="styles/standard/money/atm.png" type="node">
5962 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=atm"
5963 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=atm"
5964 es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=atm"
5965 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=atm"
5966 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=atm"
5967 hr.href="http://wiki.openstreetmap.org/wiki/Hr:Tag:amenity=atm"
5968 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=atm"
5969 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=atm"
5970 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=atm"
5971 uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:amenity=atm"/>
5972 <label text="Edit Automated Teller Machine"/>
5973 <key key="amenity" value="atm"/>
5974 <text key="operator" text="Operator"/>
5975 </item>
5976 </group>
5977 <!-- Cash -->
5978 <group name="Other" icon="styles/standard/shop/mall.png">
5979 <item name="Department Store" icon="styles/standard/shop/mall.png" type="node,closedway">
5980 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=department_store"
5981 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=department_store"
5982 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:shop=department_store"
5983 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=department_store"
5984 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=department_store"/>
5985 <label text="Edit Department Store"/>
5986 <space/>
5987 <key key="shop" value="department_store"/>
5988 <text key="name" text="Name"/>
5989 <text key="operator" text="Operator"/>
5990 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
5991 </item>
5992 <item name="Mall" icon="styles/standard/shop/mall.png" type="node,closedway">
5993 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=mall"
5994 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=mall"
5995 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=mall"
5996 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=mall"/>
5997 <label text="Edit Mall"/>
5998 <space/>
5999 <key key="shop" value="mall"/>
6000 <text key="name" text="Name"/>
6001 <text key="operator" text="Operator"/>
6002 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
6003 </item>
6004 <separator/>
6005 <item name="Chemist" icon="styles/standard/shop/chemist.png" type="node,closedway">
6006 <label text="Edit Chemist"/>
6007 <key key="shop" value="chemist"/>
6008 <text key="name" text="Name"/>
6009 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6010 </item>
6011 <item name="Hairdresser" icon="styles/standard/shop/hairdresser.png" type="node,closedway">
6012 <label text="Edit Hairdresser"/>
6013 <key key="shop" value="hairdresser"/>
6014 <text key="name" text="Name"/>
6015 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6016 </item>
6017 <item name="Optician" icon="styles/standard/shop/optician.png" type="node,closedway">
6018 <label text="Edit Optician"/>
6019 <key key="shop" value="optician"/>
6020 <text key="name" text="Name"/>
6021 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6022 </item>
6023 <item name="Jewelry" icon="styles/standard/shop/jewelry.png" type="node,closedway">
6024 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=jewelry"
6025 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=jewelry"/>
6026 <label text="Edit Jewelry"/>
6027 <space/>
6028 <key key="shop" value="jewelry"/>
6029 <text key="name" text="Name"/>
6030 <text key="operator" text="Operator"/>
6031 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
6032 </item>
6033 <item name="Erotic" icon="presets/erotic.png" type="node,closedway">
6034 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=erotic"
6035 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=erotic"/>
6036 <label text="Edit Erotic"/>
6037 <space/>
6038 <key key="shop" value="erotic"/>
6039 <text key="name" text="Name"/>
6040 <text key="operator" text="Operator"/>
6041 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
6042 </item>
6043 <separator/>
6044 <item name="Florist" icon="styles/standard/shop/florist.png" type="node,closedway">
6045 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=florist"
6046 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:shop=florist"
6047 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=florist"
6048 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=florist"
6049 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=florist"
6050 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=florist"/>
6051 <label text="Edit Florist"/>
6052 <key key="shop" value="florist"/>
6053 <text key="name" text="Name"/>
6054 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6055 </item>
6056 <item name="Garden Centre" icon="styles/standard/shop/garden_centre.png" type="node,closedway">
6057 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=garden_centre"
6058 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=garden_centre"
6059 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=garden_centre"
6060 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=garden_centre"/>
6061 <label text="Edit Garden Centre"/>
6062 <key key="shop" value="garden_centre"/>
6063 <text key="name" text="Name"/>
6064 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6065 </item>
6066 <separator/>
6067 <item name="Do-it-yourself-store" icon="presets/diy_store.png" type="node,closedway">
6068 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=doityourself"
6069 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=doityourself"
6070 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=doityourself"
6071 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=doityourself"/>
6072 <label text="Edit Do-it-yourself-store"/>
6073 <key key="shop" value="doityourself"/>
6074 <text key="name" text="Name"/>
6075 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6076 </item>
6077 <item name="Hardware" icon="presets/hardware.png" type="node,closedway">
6078 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=hardware"
6079 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=hardware"/>
6080 <label text="Edit Hardware Store"/>
6081 <key key="shop" value="hardware"/>
6082 <text key="name" text="Name"/>
6083 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6084 </item>
6085 <item name="Paint" icon="presets/paint.png" type="node,closedway">
6086 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=paint"
6087 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=paint"/>
6088 <label text="Edit Paint"/>
6089 <space/>
6090 <key key="shop" value="paint"/>
6091 <text key="name" text="Name"/>
6092 <text key="operator" text="Operator"/>
6093 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
6094 </item>
6095 <separator/>
6096 <item name="Furniture" icon="styles/standard/shop/furniture.png" type="node,closedway">
6097 <label text="Edit Furniture Shop"/>
6098 <key key="shop" value="furniture"/>
6099 <text key="name" text="Name"/>
6100 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6101 </item>
6102 <item name="Kitchen" icon="presets/kitchen.png" type="node,closedway">
6103 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=kitchen"
6104 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=kitchen"
6105 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=kitchen"/>
6106 <label text="Edit Kitchen"/>
6107 <space/>
6108 <key key="shop" value="kitchen"/>
6109 <text key="name" text="Name"/>
6110 <text key="operator" text="Operator"/>
6111 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
6112 </item>
6113 <item name="Curtain" icon="presets/curtain.png" type="node,closedway">
6114 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=curtain"
6115 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=curtain"/>
6116 <label text="Edit Curtain"/>
6117 <space/>
6118 <key key="shop" value="curtain"/>
6119 <text key="name" text="Name"/>
6120 <text key="operator" text="Operator"/>
6121 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
6122 </item>
6123 <item name="Frame" icon="presets/frame.png" type="node,closedway">
6124 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=frame"
6125 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=frame"/>
6126 <label text="Edit Frames"/>
6127 <space/>
6128 <key key="shop" value="frame"/>
6129 <text key="name" text="Name"/>
6130 <text key="operator" text="Operator"/>
6131 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
6132 </item>
6133 <separator/>
6134 <item name="Stationery" icon="presets/stationery.png" type="node,closedway">
6135 <label text="Edit Stationery Shop"/>
6136 <key key="shop" value="stationery"/>
6137 <text key="name" text="Name"/>
6138 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6139 </item>
6140 <item name="Copyshop" icon="presets/copyshop.png" type="node,closedway">
6141 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=copyshop"
6142 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=copyshop"/>
6143 <label text="Edit Copyshop"/>
6144 <space/>
6145 <key key="shop" value="copyshop"/>
6146 <text key="name" text="Name"/>
6147 <text key="operator" text="Operator"/>
6148 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
6149 </item>
6150 <item name="Book Store" icon="presets/book.png" type="node,closedway">
6151 <label text="Edit Book Store"/>
6152 <key key="shop" value="books"/>
6153 <text key="name" text="Name"/>
6154 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6155 </item>
6156 <item name="Newsagent's shop" icon="presets/kiosk.png" type="node,closedway">
6157 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=newsagent"
6158 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=newsagent"
6159 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=newsagent"
6160 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=newsagent"
6161 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=newsagent"/>
6162 <label text="Edit Newsagent's shop"/>
6163 <key key="shop" value="newsagent"/>
6164 <text key="name" text="Name"/>
6165 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6166 </item>
6167 <separator/>
6168 <item name="Travel Agency" icon="presets/travel.png" type="node,closedway">
6169 <label text="Edit Travel Agency"/>
6170 <key key="shop" value="travel_agency"/>
6171 <text key="name" text="Name"/>
6172 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6173 </item>
6174 <item name="Musical Instrument" icon="presets/musical_instrument.png" type="node,closedway">
6175 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=musical_instrument"
6176 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=musical_instrument"/>
6177 <label text="Edit Musical Instruments"/>
6178 <space/>
6179 <key key="shop" value="musical_instrument"/>
6180 <text key="name" text="Name"/>
6181 <text key="operator" text="Operator"/>
6182 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
6183 </item>
6184 <item name="Toys" icon="styles/standard/shop/toys.png" type="node,closedway">
6185 <label text="Edit Toy Shop"/>
6186 <key key="shop" value="toys"/>
6187 <text key="name" text="Name"/>
6188 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
6189 </item>
6190 <item name="Variety Store" icon="presets/variety_store.png" type="node,closedway">
6191 <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=variety_store"
6192 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=variety_store"/>
6193 <label text="Edit Variety Store"/>
6194 <space/>
6195 <key key="shop" value="variety_store"/>
6196 <text key="name" text="Name"/>
6197 <text key="operator" text="Operator"/>
6198 <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
6199 </item>
6200 </group>
6201 <!-- Other -->
6202 <item name="Vending machine" icon="presets/vending_machine.png" type="node">
6203 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=vending_machine"
6204 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=vending_machine"
6205 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=vending_machine"
6206 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=vending_machine"/>
6207 <label text="Edit Vending machine"/>
6208 <key key="amenity" value="vending_machine"/>
6209 <multiselect key="vending" text="Vending products" values="animal_food;bicycle_tube;cigarettes;condoms;drinks;excrement_bags;food;news_papers;parking_tickets;photos;public_transport_plans;public_transport_tickets;SIM-cards;stamps;sweets;tampons;telephone_vouchers;toys;vouchers"/>
6210 <text key="operator" text="Operator"/>
6211 <text key="ref" text="Reference number"/>
6212 <text key="note" text="Note"/>
6213 <check key="payment:coins" text="Coins" default="off"/>
6214 <check key="payment:notes" text="Notes" default="off"/>
6215 <check key="payment:electronic_purses" text="Electronic purses and Charge cards" default="off"/>
6216 <check key="payment:debit_cards" text="Debit cards" default="off"/>
6217 <check key="payment:credit_cards" text="Credit cards" default="off"/>
6218 <check key="payment:account_cards" text="Account or loyalty cards" default="off"/>
6219 </item>
6220 </group>
6221 <!-- Shops -->
6222 <group name="Geography" icon="presets/peak.png">
6223 <group name="Boundaries" icon="presets/boundaries.png">
6224 <item name="National" icon="presets/boundaries.png" type="closedway,relation">
6225 <label text="Edit National Boundary"/>
6226 <space/>
6227 <key key="boundary" value="national"/>
6228 <text key="name" text="Name"/>
6229 </item>
6230 <item name="Administrative" icon="presets/boundaries.png" type="closedway,relation">
6231 <label text="Edit Administrative Boundary"/>
6232 <space/>
6233 <key key="boundary" value="administrative"/>
6234 <text key="name" text="Name"/>
6235 </item>
6236 <item name="Civil" icon="presets/boundaries.png" type="closedway,relation">
6237 <label text="Edit Civil Boundary"/>
6238 <space/>
6239 <key key="boundary" value="civil"/>
6240 <text key="name" text="Name"/>
6241 </item>
6242 <item name="Political" icon="presets/boundaries.png" type="closedway,relation">
6243 <label text="Edit Political Boundary"/>
6244 <space/>
6245 <key key="boundary" value="political"/>
6246 <text key="name" text="Name"/>
6247 </item>
6248 <item name="National park" icon="presets/boundaries.png" type="closedway,relation">
6249 <label text="Edit National Park Boundary"/>
6250 <space/>
6251 <key key="boundary" value="national_park"/>
6252 <text key="name" text="Name"/>
6253 <space/>
6254 <optional>
6255 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6256 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6257 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6258 </optional>
6259 </item>
6260 </group>
6261 <!-- Boundaries -->
6262 <group name="Places" icon="presets/places.png">
6263 <item name="Continent" icon="presets/places.png" type="node,closedway">
6264 <label text="Edit Continent"/>
6265 <space/>
6266 <key key="place" value="continent"/>
6267 <text key="name" text="Name"/>
6268 <text key="wikipedia" text="Wikipedia"/>
6269 </item>
6270 <item name="Country" icon="presets/places.png" type="node,closedway">
6271 <label text="Edit Country"/>
6272 <space/>
6273 <key key="place" value="country"/>
6274 <text key="name" text="Name"/>
6275 <text key="wikipedia" text="Wikipedia"/>
6276 </item>
6277 <item name="State" icon="presets/places.png" type="node,closedway">
6278 <label text="Edit State"/>
6279 <space/>
6280 <key key="place" value="state"/>
6281 <text key="name" text="Name"/>
6282 <text key="wikipedia" text="Wikipedia"/>
6283 </item>
6284 <item name="Region" icon="presets/places.png" type="node,closedway">
6285 <label text="Edit Region"/>
6286 <space/>
6287 <key key="place" value="region"/>
6288 <text key="name" text="Name"/>
6289 <text key="wikipedia" text="Wikipedia"/>
6290 </item>
6291 <item name="County" icon="presets/places.png" type="node,closedway">
6292 <label text="Edit County"/>
6293 <space/>
6294 <key key="place" value="county"/>
6295 <text key="name" text="Name"/>
6296 <text key="wikipedia" text="Wikipedia"/>
6297 <text key="population" text="Population"/>
6298 <text key="addr:postcode" text="Post code"/>
6299 <text key="website" text="Website"/>
6300 </item>
6301 <separator/>
6302 <item name="City" icon="presets/places.png" type="node,closedway">
6303 <label text="Edit City"/>
6304 <space/>
6305 <key key="place" value="city"/>
6306 <text key="name" text="Name"/>
6307 <text key="wikipedia" text="Wikipedia"/>
6308 <text key="population" text="Population"/>
6309 <text key="addr:postcode" text="Post code"/>
6310 <text key="website" text="Website"/>
6311 </item>
6312 <item name="Town" icon="presets/places.png" type="node,closedway">
6313 <link href="http://wiki.openstreetmap.org/wiki/Tag:place=town"
6314 da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:place=town"
6315 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:place=town"
6316 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:place=town"
6317 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:place=town"
6318 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:place=town"/>
6319 <label text="Edit Town"/>
6320 <space/>
6321 <key key="place" value="town"/>
6322 <text key="name" text="Name"/>
6323 <text key="wikipedia" text="Wikipedia"/>
6324 <text key="population" text="Population"/>
6325 <text key="addr:postcode" text="Post code"/>
6326 <text key="website" text="Website"/>
6327 </item>
6328 <item name="Suburb" icon="presets/places.png" type="node,closedway">
6329 <link href="http://wiki.openstreetmap.org/wiki/Tag:place=suburb"
6330 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:place=suburb"
6331 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:place=suburb"
6332 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:place=suburb"
6333 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:place=suburb"/>
6334 <label text="Edit Suburb"/>
6335 <space/>
6336 <key key="place" value="suburb"/>
6337 <text key="name" text="Name"/>
6338 <text key="wikipedia" text="Wikipedia"/>
6339 <text key="population" text="Population"/>
6340 <text key="addr:postcode" text="Post code"/>
6341 <text key="website" text="Website"/>
6342 </item>
6343 <item name="Village" icon="presets/places.png" type="node,closedway">
6344 <label text="Edit Village"/>
6345 <space/>
6346 <key key="place" value="village"/>
6347 <text key="name" text="Name"/>
6348 <text key="wikipedia" text="Wikipedia"/>
6349 <text key="population" text="Population"/>
6350 <text key="addr:postcode" text="Post code"/>
6351 <text key="website" text="Website"/>
6352 </item>
6353 <item name="Hamlet" icon="presets/places.png" type="node,closedway">
6354 <label text="Edit Hamlet"/>
6355 <space/>
6356 <key key="place" value="hamlet"/>
6357 <text key="name" text="Name"/>
6358 <text key="wikipedia" text="Wikipedia"/>
6359 <text key="population" text="Population"/>
6360 <text key="addr:postcode" text="Post code"/>
6361 <text key="website" text="Website"/>
6362 </item>
6363 <item name="Isolated Dwelling" icon="presets/places.png" type="node,closedway">
6364 <label text="Edit Isolated Dwelling"/>
6365 <space/>
6366 <key key="place" value="isolated_dwelling"/>
6367 <text key="name" text="Name"/>
6368 <text key="wikipedia" text="Wikipedia"/>
6369 <text key="population" text="Population"/>
6370 <text key="addr:postcode" text="Post code"/>
6371 <text key="website" text="Website"/>
6372 </item>
6373 <item name="Neighbourhood" icon="presets/places.png" type="node,closedway">
6374 <link href="http://wiki.openstreetmap.org/wiki/Tag:place=neighbourhood"
6375 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:place=neighbourhood"
6376 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:place=neighbourhood"
6377 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:place=neighbourhood"
6378 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:place=neighbourhood"/>
6379 <label text="Edit Neighbourhood"/>
6380 <space/>
6381 <key key="place" value="neighbourhood"/>
6382 <text key="name" text="Name"/>
6383 <text key="wikipedia" text="Wikipedia"/>
6384 <text key="population" text="Population"/>
6385 <text key="website" text="Website"/>
6386 </item>
6387 <separator/>
6388 <item name="Locality" icon="presets/locality.png" type="node,closedway">
6389 <link href="http://wiki.openstreetmap.org/wiki/Tag:place=locality"
6390 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:place=locality"
6391 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:place=locality"
6392 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:place=locality"
6393 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:place=locality"/>
6394 <label text="Edit Locality"/>
6395 <space/>
6396 <key key="place" value="locality"/>
6397 <text key="name" text="Name"/>
6398 <text key="wikipedia" text="Wikipedia"/>
6399 </item>
6400 </group>
6401 <!-- Places -->
6402 <group name="Geography" icon="presets/peak.png">
6403 <item name="Peak" icon="presets/peak.png" type="node">
6404 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=peak"
6405 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=peak"
6406 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=peak"
6407 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=peak"/>
6408 <label text="Edit Peak"/>
6409 <key key="natural" value="peak"/>
6410 <text key="name" text="Name"/>
6411 <text key="ele" text="Elevation"/>
6412 <text key="wikipedia" text="Wikipedia"/>
6413 <check key="man_made" text="Survey point" default="off" value_on="survey_point"/>
6414 </item>
6415 <item name="Glacier" icon="presets/glacier.png" type="node,closedway">
6416 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=glacier"
6417 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=glacier"/>
6418 <label text="Edit Glacier"/>
6419 <key key="natural" value="glacier"/>
6420 <text key="name" text="Name"/>
6421 <text key="ele" text="Elevation"/>
6422 <text key="wikipedia" text="Wikipedia"/>
6423 </item>
6424 <item name="Volcano" icon="presets/volcano.png" type="node,closedway">
6425 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=volcano"
6426 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=volcano"
6427 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=volcano"/>
6428 <label text="Edit Volcano"/>
6429 <key key="natural" value="volcano"/>
6430 <text key="name" text="Name"/>
6431 <text key="ele" text="Elevation"/>
6432 <text key="wikipedia" text="Wikipedia"/>
6433 <combo key="status" values="active,dormant,extinct"/>
6434 <combo key="type" values="stratovolcano,shield,scoria"/>
6435 <check key="man_made" text="Survey point" default="off" value_on="survey_point"/>
6436 </item>
6437 <item name="Cave Entrance" icon="presets/cave_entrance.png" type="node,closedway">
6438 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=cave_entrance"
6439 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=cave_entrance"/>
6440 <label text="Edit Cave Entrance"/>
6441 <key key="natural" value="cave_entrance"/>
6442 <text key="name" text="Name"/>
6443 <text key="wikipedia" text="Wikipedia"/>
6444 <space/>
6445 <check key="foot" text="Foot" default="off"/>
6446 <check key="bicycle" text="Bicycle" default="on"/>
6447 <check key="horse" text="Horse" default="off"/>
6448 <check key="motorcycle" text="Motorcycle" default="off"/>
6449 <check key="motorcar" text="Motorcar" default="off"/>
6450 <check key="boat" text="Boat" default="off"/>
6451 <combo key="barrier" text="Barrier (entrance)" values="yes,fence,railing,chain,chicane,cycle_barrier,debris,entrance,gate,rope"/>
6452 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6453 </item>
6454 <separator/>
6455 <item name="Island" icon="presets/island.png" type="node,closedway">
6456 <link href="http://wiki.openstreetmap.org/wiki/Tag:place=island"
6457 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:place=island"
6458 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:place=island"
6459 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:place=island"
6460 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:place=island"/>
6461 <label text="Edit Island"/>
6462 <space/>
6463 <key key="place" value="island"/>
6464 <text key="name" text="Name"/>
6465 <text key="wikipedia" text="Wikipedia"/>
6466 <space/>
6467 <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
6468 </item>
6469 <item name="Islet" icon="presets/islet.png" type="node,closedway">
6470 <link href="http://wiki.openstreetmap.org/wiki/Tag:place=islet"
6471 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:place=islet"
6472 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:place=islet"
6473 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:place=islet"/>
6474 <label text="Edit Islet"/>
6475 <space/>
6476 <key key="place" value="islet"/>
6477 <text key="name" text="Name"/>
6478 <text key="wikipedia" text="Wikipedia"/>
6479 <space/>
6480 <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
6481 </item>
6482 </group>
6483 <!-- Geography -->
6484 <group name="Nature" icon="presets/tree.png">
6485 <item name="Tree" icon="presets/tree.png" type="node">
6486 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=tree"
6487 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=tree"
6488 fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:natural=tree"
6489 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:natural=tree"
6490 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=tree"
6491 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=tree"
6492 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=tree"/>
6493 <label text="Edit Tree"/>
6494 <key key="natural" value="tree"/>
6495 <text key="name" text="Name"/>
6496 <text key="type" text="Type"/>
6497 <text key="height" text="Height"/>
6498 <text key="name:botanical" text="Botanical Name"/>
6499 <combo key="wood" text="Type" values="coniferous,deciduous,mixed" values_context="wood"/>
6500 <combo key="denotation" text="Denotation" values="landmark,natural_monument,avenue,urban,cluster"/>
6501 <text key="height" text="Height (meters)" length="7"/>
6502 <text key="circumference" text="Circumference (meters, in a height of 1m)"/>
6503 </item>
6504 <item name="Tree rows" fr.name="Ligne d'arbres" type="way">
6505 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Tree_rows"/>
6506 <label text="Tree rows"/>
6507 <space/>
6508 <key key="natural" value="tree_row"/>
6509 </item>
6510 <item name="Wood" icon="presets/landuse.png" type="node,closedway,relation">
6511 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=wood"
6512 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=wood"
6513 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=wood"
6514 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=wood"
6515 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=wood"/>
6516 <label text="Edit Wood"/>
6517 <key key="natural" value="wood"/>
6518 <text key="name" text="Name"/>
6519 <combo key="wood" text="Type" values="coniferous,deciduous,mixed" values_context="wood"/>
6520 </item>
6521 <item name="Forest" icon="presets/landuse.png" type="node,closedway,relation">
6522 <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=forest"
6523 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=forest"
6524 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:landuse=forest"
6525 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=forest"
6526 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=forest"
6527 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=forest"/>
6528 <label text="Edit Forest Landuse"/>
6529 <space/>
6530 <key key="landuse" value="forest"/>
6531 <text key="name" text="Name"/>
6532 <combo key="wood" text="Type" values="coniferous,deciduous,mixed"/>
6533 </item>
6534 <item name="Grassland" icon="presets/landuse.png" type="node,closedway,relation">
6535 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=grassland"
6536 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=grassland"
6537 it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:natural=grassland"
6538 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:natural=grassland"
6539 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=grassland"
6540 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=grassland"/>
6541 <label text="Edit Grassland"/>
6542 <space/>
6543 <key key="natural" value="grassland"/>
6544 <text key="name" text="Name"/>
6545 <combo key="grassland" text="Type" values="pampas,prairie,puszta,savanna,steppe,veld"/>
6546 </item>
6547 <item name="Nature Reserve" icon="styles/standard/leisure/nature_reserve.png" type="node,closedway,relation">
6548 <label text="Edit Nature Reserve"/>
6549 <key key="leisure" value="nature_reserve"/>
6550 <text key="name" text="Name"/>
6551 <space/>
6552 <optional>
6553 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6554 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6555 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6556 </optional>
6557 </item>
6558 <separator/>
6559 <item name="Scree" icon="presets/empty.png" type="node,closedway,relation">
6560 <label text="Edit Scree"/>
6561 <key key="natural" value="scree"/>
6562 <text key="name" text="Name"/>
6563 </item>
6564 <item name="Fell" icon="presets/empty.png" type="node,closedway,relation">
6565 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=fell"
6566 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=fell"
6567 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=fell"
6568 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=fell"/>
6569 <label text="Edit Fell"/>
6570 <key key="natural" value="fell"/>
6571 <text key="name" text="Name"/>
6572 </item>
6573 <item name="Scrub" icon="presets/empty.png" type="node,closedway,relation">
6574 <label text="Edit Scrub"/>
6575 <key key="natural" value="scrub"/>
6576 <text key="name" text="Name"/>
6577 </item>
6578 <item name="Heath" icon="presets/empty.png" type="node,closedway,relation">
6579 <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=heath"
6580 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=heath"
6581 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=heath"
6582 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=heath"
6583 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=heath"/>
6584 <label text="Edit Heath"/>
6585 <key key="natural" value="heath"/>
6586 <text key="name" text="Name"/>
6587 </item>
6588 </group>
6589 <!-- Nature -->
6590 <group name="Land use" icon="presets/landuse.png">
6591 <item name="Landuse" icon="presets/landuse.png" type="node,closedway,relation">
6592 <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse"
6593 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse"
6594 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:landuse"
6595 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse"
6596 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse"/>
6597 <label text="Edit Landuse"/>
6598 <text key="name" text="Name"/>
6599 <text key="operator" text="Operator"/>
6600 <space/>
6601 <combo key="landuse" text="Landuse" values="allotments,basin,brownfield,cemetery,commercial,conservation,construction,farm,farmland,farmyard,forest,garages,grass,greenfield,greenhouse_horticulture,industrial,landfill,meadow,military,orchard,plant_nursery,quarry,railway,recreation_ground,reservoir,residential,retail,salt_pond,village_green,vineyard"/>
6602 <text key="name" text="Name"/>
6603 <optional>
6604 <combo key="wood" text="Type" values="coniferous,deciduous,mixed" values_context="wood"/>
6605 <space/>
6606 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6607 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6608 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6609 </optional>
6610 </item>
6611 <separator/>
6612 <item name="Farmyard" icon="presets/landuse.png" type="closedway,relation">
6613 <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=farmyard"
6614 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=farmyard"
6615 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:landuse=farmyard"
6616 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=farmyard"
6617 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=farmyard"/>
6618 <label text="Edit Farmyard Landuse"/>
6619 <space/>
6620 <key key="landuse" value="farmyard"/>
6621 <text key="name" text="Name"/>
6622 <space/>
6623 <optional>
6624 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6625 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6626 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6627 </optional>
6628 </item>
6629 <item name="Farmland" icon="presets/landuse.png" type="closedway,relation">
6630 <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=farmland"/>
6631 <label text="Edit Farmland Landuse"/>
6632 <space/>
6633 <key key="landuse" value="farmland"/>
6634 <text key="name" text="Name"/>
6635 <space/>
6636 <optional>
6637 <combo key="highway" text="Highway" values="track,service"/>
6638 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6639 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6640 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6641 </optional>
6642 </item>
6643 <item name="Meadow" icon="presets/landuse.png" type="node,closedway,relation">
6644 <label text="Edit Meadow Landuse"/>
6645 <space/>
6646 <key key="landuse" value="meadow"/>
6647 <text key="name" text="Name"/>
6648 <space/>
6649 <optional>
6650 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6651 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6652 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6653 </optional>
6654 </item>
6655 <item name="Vineyard" icon="presets/fruits.png" type="node,closedway,relation">
6656 <label text="Edit Vineyard Landuse"/>
6657 <space/>
6658 <key key="landuse" value="vineyard"/>
6659 <text key="name" text="Name"/>
6660 <space/>
6661 <optional>
6662 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6663 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6664 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6665 </optional>
6666 </item>
6667 <item name="Greenhouse Horticulture" icon="presets/greenhouse_horticulture.png" type="closedway">
6668 <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=greenhouse_horticulture"
6669 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=greenhouse_horticulture"
6670 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=greenhouse_horticulture"
6671 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=greenhouse_horticulture"/>
6672 <label text="Edit Greenhouse Horticulture"/>
6673 <space/>
6674 <key key="landuse" value="greenhouse_horticulture"/>
6675 <text key="name" text="Name"/>
6676 <text key="operator" text="Operator"/>
6677 <space/>
6678 <optional>
6679 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6680 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6681 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6682 </optional>
6683 </item>
6684 <item name="Allotments" icon="presets/landuse.png" type="node,closedway,relation">
6685 <label text="Edit Allotments Landuse"/>
6686 <space/>
6687 <key key="landuse" value="allotments"/>
6688 <text key="name" text="Name"/>
6689 <space/>
6690 <optional>
6691 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6692 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6693 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6694 </optional>
6695 </item>
6696 <separator/>
6697 <item name="Garden" icon="presets/empty.png" type="node,closedway,relation">
6698 <label text="Edit Garden"/>
6699 <key key="leisure" value="garden"/>
6700 <text key="name" text="Name"/>
6701 <space/>
6702 <optional>
6703 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6704 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6705 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6706 </optional>
6707 </item>
6708 <item name="Grass" icon="presets/landuse.png" type="node,closedway,relation">
6709 <label text="Edit Grass Landuse"/>
6710 <space/>
6711 <key key="landuse" value="grass"/>
6712 <text key="name" text="Name"/>
6713 <space/>
6714 <optional>
6715 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6716 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6717 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6718 </optional>
6719 </item>
6720 <item name="Village Green" icon="presets/landuse.png" type="node,closedway,relation">
6721 <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=village_green"
6722 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=village_green"
6723 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=village_green"
6724 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=village_green"/>
6725 <label text="Edit Village Green Landuse"/>
6726 <space/>
6727 <key key="landuse" value="village_green"/>
6728 <text key="name" text="Name"/>
6729 </item>
6730 <item name="Common" icon="presets/empty.png" type="node,closedway,relation">
6731 <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=common"
6732 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:leisure=common"/>
6733 <label text="Edit Common"/>
6734 <key key="leisure" value="common"/>
6735 <text key="name" text="Name"/>
6736 <space/>
6737 <optional>
6738 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6739 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6740 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6741 </optional>
6742 </item>
6743 <item name="Park" icon="presets/empty.png" type="node,closedway,relation">
6744 <label text="Edit Park"/>
6745 <key key="leisure" value="park"/>
6746 <text key="name" text="Name"/>
6747 <space/>
6748 <optional>
6749 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6750 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6751 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6752 </optional>
6753 </item>
6754 <item name="Recreation Ground" icon="presets/landuse.png" type="node,closedway,relation">
6755 <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=recreation_ground"
6756 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=recreation_ground"
6757 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=recreation_ground"
6758 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=recreation_ground"
6759 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=recreation_ground"/>
6760 <label text="Edit Recreation Ground Landuse"/>
6761 <space/>
6762 <key key="landuse" value="recreation_ground"/>
6763 <text key="name" text="Name"/>
6764 <space/>
6765 <optional>
6766 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6767 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6768 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6769 </optional>
6770 </item>
6771 <separator/>
6772 <item name="Residential area" icon="styles/standard/misc/landmark/building.png" type="closedway,relation">
6773 <label text="Edit Residential Landuse"/>
6774 <space/>
6775 <key key="landuse" value="residential"/>
6776 <text key="name" text="Name"/>
6777 <space/>
6778 <optional>
6779 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6780 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6781 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6782 </optional>
6783 </item>
6784 <item name="Graveyard" icon="presets/graveyard.png" type="node,closedway,relation">
6785 <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=grave_yard"
6786 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=grave_yard"
6787 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=grave_yard"
6788 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=grave_yard"
6789 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=grave_yard"
6790 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=grave_yard"
6791 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=grave_yard"/>
6792 <label text="Edit Graveyard"/>
6793 <key key="amenity" value="grave_yard"/>
6794 <text key="name" text="Name"/>
6795 <combo key="religion" text="Religion" values="any,animism,bahai,buddhist,christian,hindu,jain,jewish,muslim,paganism,sikh,spiritualist,taoist,unitarian,zoroastrian"/>
6796 <combo key="denomination" text="Denomination" values="anglican,baptist,catholic,evangelical,jehovahs_witness,lutheran,methodist,mormon,orthodox,pentecostal,presbyterian,protestant,quaker,shia,sunni"/>
6797 <check key="disused" text="Disused" default="off"/>
6798 <space/>
6799 <optional>
6800 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6801 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6802 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6803 </optional>
6804 </item>
6805 <item name="Cemetery" icon="presets/cemetery.png" type="node,closedway,relation">
6806 <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=cemetery"
6807 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=cemetery"
6808 fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:landuse=cemetery"
6809 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=cemetery"
6810 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:landuse=cemetery"
6811 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:landuse=cemetery"
6812 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=cemetery"
6813 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=cemetery"/>
6814 <label text="Edit Cemetery Landuse"/>
6815 <space/>
6816 <key key="landuse" value="cemetery"/>
6817 <text key="name" text="Name"/>
6818 <combo key="religion" text="Religion" values="any,animism,bahai,buddhist,christian,hindu,jain,jewish,muslim,paganism,sikh,spiritualist,taoist,unitarian,zoroastrian"/>
6819 <combo key="denomination" text="Denomination" values="anglican,baptist,catholic,evangelical,jehovahs_witness,lutheran,methodist,mormon,orthodox,pentecostal,presbyterian,protestant,quaker,shia,sunni"/>
6820 <check key="disused" text="Disused" default="off"/>
6821 <space/>
6822 <optional>
6823 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6824 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6825 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6826 </optional>
6827 </item>
6828 <item name="Retail" icon="styles/standard/shop/supermarket.png" type="node,closedway,relation">
6829 <label text="Edit Retail Landuse"/>
6830 <space/>
6831 <key key="landuse" value="retail"/>
6832 <text key="name" text="Name"/>
6833 </item>
6834 <item name="Commercial" icon="presets/empty.png" type="node,closedway,relation">
6835 <label text="Edit Commercial Landuse"/>
6836 <space/>
6837 <key key="landuse" value="commercial"/>
6838 <text key="name" text="Name"/>
6839 </item>
6840 <item name="Industrial" icon="presets/works.png" type="node,closedway,relation">
6841 <label text="Edit Industrial Landuse"/>
6842 <space/>
6843 <key key="landuse" value="industrial"/>
6844 <text key="name" text="Name"/>
6845 <text key="operator" text="Operator"/>
6846 <space/>
6847 <optional>
6848 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall" use_last_as_default="true"/>
6849 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood" use_last_as_default="true"/>
6850 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no" use_last_as_default="true"/>
6851 </optional>
6852 </item>
6853 <item name="Garages" icon="presets/garages.png" type="closedway">
6854 <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=garages"
6855 de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=garages"
6856 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=garages"
6857 nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:landuse=garages"
6858 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=garages"
6859 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=garages"/>
6860 <label text="Edit Garages"/>
6861 <space/>
6862 <key key="landuse" value="garages"/>
6863 <text key="name" text="Name"/>
6864 <text key="operator" text="Operator"/>
6865 <space/>
6866 <optional>
6867 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6868 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6869 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6870 </optional>
6871 </item>
6872 <item name="Railway land" icon="presets/rail_light.png" type="closedway,relation">
6873 <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=railway"
6874 ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=railway"
6875 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=railway"
6876 ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=railway"/>
6877 <label text="Edit Railway Landuse"/>
6878 <space/>
6879 <key key="landuse" value="railway"/>
6880 <text key="name" text="Name"/>
6881 <text key="operator" text="Operator"/>
6882 <space/>
6883 <optional>
6884 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6885 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6886 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6887 </optional>
6888 </item>
6889 <item name="Military" icon="presets/military.png" type="node,closedway,relation">
6890 <label text="Edit Military Landuse"/>
6891 <space/>
6892 <key key="landuse" value="military"/>
6893 <text key="name" text="Name"/>
6894 <text key="operator" text="Operator"/>
6895 <space/>
6896 <optional>
6897 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6898 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6899 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no" use_last_as_default="true"/>
6900 </optional>
6901 </item>
6902 <separator/>
6903 <item name="Construction area" icon="presets/construction.png" type="node,closedway,relation">
6904 <label text="Edit Construction Landuse"/>
6905 <space/>
6906 <key key="landuse" value="construction"/>
6907 <text key="name" text="Name"/>
6908 <text key="operator" text="Operator"/>
6909 <space/>
6910 <optional>
6911 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6912 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6913 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6914 </optional>
6915 </item>
6916 <item name="Brownfield" icon="presets/landuse.png" type="node,closedway,relation">
6917 <label text="Edit Brownfield Landuse"/>
6918 <space/>
6919 <key key="landuse" value="brownfield"/>
6920 <text key="name" text="Name"/>
6921 <text key="operator" text="Operator"/>
6922 <space/>
6923 <optional>
6924 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6925 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6926 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6927 </optional>
6928 </item>
6929 <item name="Greenfield" icon="presets/landuse.png" type="node,closedway,relation">
6930 <label text="Edit Greenfield Landuse"/>
6931 <space/>
6932 <key key="landuse" value="greenfield"/>
6933 <text key="name" text="Name"/>
6934 <text key="operator" text="Operator"/>
6935 <space/>
6936 <optional>
6937 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6938 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6939 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6940 </optional>
6941 </item>
6942 <item name="Landfill" icon="presets/landuse.png" type="node,closedway,relation">
6943 <label text="Edit Landfill Landuse"/>
6944 <space/>
6945 <key key="landuse" value="landfill"/>
6946 <text key="name" text="Name"/>
6947 <combo key="waste" text="Waste" values="trash,excrement,grey water,organic,oil,plastic,rubble,scrap_metal,soil"/>
6948 <check key="disused" text="Disused" default="off"/>
6949 <!--TODO proposal
6950 <check key="legal" text="Legal" default="on"/>
6951 -->
6952 <space/>
6953 <optional>
6954 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6955 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6956 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6957 </optional>
6958 </item>
6959 <item name="Quarry" icon="presets/mine.png" type="node,closedway,relation">
6960 <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=quarry"/>
6961 <label text="Edit Quarry Landuse"/>
6962 <space/>
6963 <key key="landuse" value="quarry"/>
6964 <text key="name" text="Name"/>
6965 <text key="operator" text="Operator"/>
6966 <combo key="resource" text="Resource" values="aggregate,bauxite,coal,copper,dimension_stone,gold,ilmenite,iron_ore,lead,limestone,nickel,rutile,salt,silver,tin,zinc,zircon,antimony,arsenic,asbestos,barite,bastnasite,bentonite,beryl,bismuth,bitumen,borax,boron,bromide,caesium,chromite,cobalt,diamond,diatomite,dolomite,feldspar,fluorite,garnet,graphite,gypsum,iodine,jade,kaolinite,lanthanum,lithium,magnesite,magnesium,manganese,marble,mercury,mica,molybdenite,monazite,niobium,oil_sand,oil_shale,opal,palladium,peat,perlite,phospate,potash,platinum,radium,ruby,rubidium,sapphire,scandium,silica,sodium_carbonate,spongolite,strontium,sulphur,talc,terbium,tantalum,topaz,tungsten,uranium,vanadium,vermiculite,wollastonite,yttrium,zeolite"/>
6967 <check key="disused" text="Disused" default="off"/>
6968 <space/>
6969 <optional>
6970 <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
6971 <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
6972 <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
6973 <space/>
6974 <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
6975 </optional>
6976 </item>
6977 </group>
6978 <!-- Landuse -->
6979 </group>
6980 <group name="Annotation" icon="presets/addresses.png">
6981 <item name="Addresses" icon="presets/addresses.png" type="node,way,closedway">
6982 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/House_numbers/Karlsruhe_Schema"
6983 de.href="http://wiki.openstreetmap.org/wiki/Proposed_features/De:Hausnummern"/>
6984 <label text="Edit Address Information"/>
6985 <space/>
6986 <text key="addr:housenumber" text="House number" match="key" auto_increment="-2,-1,+1,+2"/>
6987 <optional>
6988 <text key="addr:housename" text="House name" match="key"/>
6989 <text key="addr:street" text="Street name" use_last_as_default="force" match="key"/>
6990 <text key="addr:city" text="City name" use_last_as_default="force" match="key"/>
6991 <text key="addr:postcode" text="Post code" use_last_as_default="force" match="key"/>
6992 <combo key="addr:country" text="Country code" values_from="java.util.Locale#getISOCountries" use_last_as_default="force" match="key"/>
6993 </optional>
6994 </item>
6995 <item name="Address Interpolation" icon="presets/interpolation.png" type="way">
6996 <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/House_numbers/Karlsruhe_Schema"
6997 de.href="http://wiki.openstreetmap.org/wiki/Proposed_features/De:Hausnummern"/>
6998 <label text="Edit Address Interpolation"/>
6999 <space/>
7000 <combo key="addr:interpolation" text="Numbering scheme" values="odd,even,all,alphabetic" default="odd" match="key"/>
7001 </item>
7002 <item name="Contact (common schema)" icon="presets/contact.png" type="node,way,closedway,relation">
7003 <label text="Edit Contact information"/>
7004 <space/>
7005 <text key="phone" text="Phone Number" match="key"/>
7006 <text key="fax" text="Fax Number" match="key"/>
7007 <space/>
7008 <text key="website" text="Website" match="key"/>
7009 <text key="email" text="Email Address" match="key"/>
7010 <space/>
7011 <text key="wikipedia" text="Wikipedia"/>
7012 <text key="image" text="Image"/>
7013 </item>
7014 <item name="Contact (schema with 'contact:*' prefix)" icon="presets/contact.png" type="node,way,closedway,relation">
7015 <label text="Edit Contact information (new schema)"/>
7016 <space/>
7017 <text key="contact:phone" text="Phone Number" match="key"/>
7018 <text key="contact:fax" text="Fax Number" match="key"/>
7019 <space/>
7020 <text key="contact:website" text="Website" match="key"/>
7021 <text key="contact:email" text="Email Address" match="key"/>
7022 <space/>
7023 <text key="wikipedia" text="Wikipedia"/>
7024 <text key="image" text="Image"/>
7025 </item>
7026 </group>
7027 <!-- Annotation -->
7028 <group name="Relations" icon="presets/relations.png">
7029 <item name="Multipolygon" icon="presets/multipolygon.png" type="relation">
7030 <link href="http://wiki.openstreetmap.org/wiki/Relation:multipolygon"
7031 de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:multipolygon"
7032 es.href="http://wiki.openstreetmap.org/wiki/ES:Relation:multipolygon"
7033 fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:multipolygon"
7034 it.href="http://wiki.openstreetmap.org/wiki/IT:Relation:multipolygon"
7035 ja.href="http://wiki.openstreetmap.org/wiki/JA:Relation:multipolygon"
7036 ru.href="http://wiki.openstreetmap.org/wiki/RU:Relation:multipolygon"/>
7037 <label text="Edit Multipolygon"/>
7038 <key key="type" value="multipolygon"/>
7039 <optional>
7040 <text key="name" text="Name"/>
7041 </optional>
7042 <roles>
7043 <role key="outer" text="outer segment" requisite="required" type="way"/>
7044 <role key="inner" text="inner segment" requisite="optional" type="way"/>
7045 </roles>
7046 </item>
7047 <item name="Boundary" icon="presets/boundaries.png" type="relation">
7048 <link href="http://wiki.openstreetmap.org/wiki/Relation:boundary"
7049 de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:boundary"
7050 es.href="http://wiki.openstreetmap.org/wiki/ES:Relation:boundary"
7051 fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:boundary"
7052 ja.href="http://wiki.openstreetmap.org/wiki/JA:Relation:boundary"
7053 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Relation:boundary"
7054 ru.href="http://wiki.openstreetmap.org/wiki/RU:Relation:boundary"/>
7055 <label text="Edit Boundary"/>
7056 <key key="type" value="boundary"/>
7057 <text key="name" text="Name"/>
7058 <optional>
7059 <combo key="boundary" text="Boundary type" values="administrative,national,civil,political"/>
7060 <combo key="admin_level" text="Administrative level" values="1,2,3,4,5,6,7,8,9,10"/>
7061 </optional>
7062 <roles>
7063 <role key="outer" text="outer segment" requisite="required" type="way"/>
7064 <role key="inner" text="inner segment" requisite="optional" type="way"/>
7065 <role key="subarea" text="Sub area" requisite="optional" type="relation"/>
7066 <role key="admin_centre" text="Administration centre" requisite="optional" type="node" count="1"/>
7067 <role key="label" text="Label point" requisite="optional" type="node" count="1"/>
7068 </roles>
7069 </item>
7070 <item name="Site" type="relation">
7071 <link href="http://wiki.openstreetmap.org/wiki/Relations/Proposed/Site"/>
7072 <label text="Edit Site"/>
7073 <key key="type" value="site"/>
7074 <text key="name" text="Site name"/>
7075 <roles>
7076 <role key="label" text="where to place the label" requisite="optional" type="node"/>
7077 <role key="perimeter" text="perimeter of the site" requisite="optional" type="closedway,relation"/>
7078 <role key="entrance" text="entrances to the site, on the perimeter" requisite="optional" type="node"/>
7079 <role key="" text="members of site" requisite="optional" type="node,way,closedway,relation"/>
7080 </roles>
7081 </item>
7082 <separator/>
7083 <item name="Turn restriction" icon="styles/standard/vehicle/restriction/turn_restrictions/no_u_turn.png" type="relation">
7084 <link href="http://wiki.openstreetmap.org/wiki/Relation:restriction"
7085 de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:restriction"
7086 es.href="http://wiki.openstreetmap.org/wiki/ES:Relation:restriction"
7087 fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:restriction"
7088 it.href="http://wiki.openstreetmap.org/wiki/IT:Relation:restriction"
7089 ja.href="http://wiki.openstreetmap.org/wiki/JA:Relation:restriction"
7090 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Relation:restriction"
7091 pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Relation:restriction"
7092 ru.href="http://wiki.openstreetmap.org/wiki/RU:Relation:restriction"/>
7093 <label text="Edit Turn Restriction"/>
7094 <key key="type" value="restriction"/>
7095 <combo key="restriction" text="Restriction" values="no_left_turn,no_right_turn,no_straight_on,no_u_turn,only_right_turn,only_left_turn,only_straight_on"/>
7096 <optional>
7097 <text key="name" text="Name"/>
7098 </optional>
7099 <roles>
7100 <role key="from" text="from way" requisite="required" count="1" type="way"/>
7101 <role key="via" text="via node or ways" requisite="required" type="way,node"/>
7102 <role key="to" text="to way" requisite="required" count="1" type="way"/>
7103 </roles>
7104 </item>
7105 <item name="Enforcement" icon="presets/speed_camera.png" type="relation">
7106 <link href="http://wiki.openstreetmap.org/wiki/Relation:enforcement"
7107 de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:enforcement"
7108 es.href="http://wiki.openstreetmap.org/wiki/ES:Relation:enforcement"
7109 fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:enforcement"
7110 ru.href="http://wiki.openstreetmap.org/wiki/RU:Relation:enforcement"/>
7111 <label text="Edit Enforcement"/>
7112 <key key="type" value="enforcement"/>
7113 <combo key="enforcement" text="Type of enforcement" values="maxheight,maxweight,maxspeed,mindistance,traffic_signals,check "/>
7114 <text key="maxheight" text="Max. height (meters, only if enforcement=maxheight)"/>
7115 <text key="maxweight" text="Max. weight (tonnes, only if enforcement=maxweight)"/>
7116 <text key="maxspeed" text="Max. speed (km/h, only if enforcement=maxspeed)"/>
7117 <roles>
7118 <role key="device" text="location of enforcement device" requisite="required" type="node,way,closedway"/>
7119 <role key="from" text="node on way where enforcement starts" requisite="required" type="node"/>
7120 <role key="to" text="where enforcement ends" requisite="optional" type="node"/>
7121 <role key="force" text="traffic light or barrier that stops you" requisite="optional" type="node"/>
7122 </roles>
7123 </item>
7124 <separator/>
7125 <item name="General route" icon="presets/path.png" type="relation">
7126 <link href="http://wiki.openstreetmap.org/wiki/Relation:route"
7127 de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:route"
7128 es.href="http://wiki.openstreetmap.org/wiki/ES:Relation:route"
7129 fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:route"
7130 it.href="http://wiki.openstreetmap.org/wiki/IT:Relation:route"
7131 ja.href="http://wiki.openstreetmap.org/wiki/JA:Relation:route"
7132 ru.href="http://wiki.openstreetmap.org/wiki/RU:Relation:route"/>
7133 <label text="Edit general route"/>
7134 <key key="type" value="route"/>
7135 <combo key="route" text="Route type" values="bicycle,bus,road,ferry,ski,foot,hiking,tram,detour,railway,subway"/>
7136 <text key="name" text="Name"/>
7137 <text key="ref" text="Reference"/>
7138 <text key="symbol" text="Symbol description"/>
7139 <text key="description" text="Description"/>
7140 <optional>
7141 <text key="network" text="Network"/>
7142 <text key="operator" text="Operator"/>
7143 <combo key="state" text="Route state" values="proposed,alternate,temporary,connection"/>
7144 <combo key="colour" text="Color (HTML name or hexadecimal code)" values_context="color" values="black,brown,green,red,blue,gray,white,#CD853F"/>
7145 </optional>
7146 <roles>
7147 <role key="" text="route segment" requisite="optional" type="way"/>
7148 <role key="forward" text="forward segment" requisite="optional" type="way"/>
7149 <role key="backward" text="backward segment" requisite="optional" type="way"/>
7150 <role key="east" text="east segment (North America)" requisite="optional" type="way"/>
7151 <role key="north" text="north segment (North America)" requisite="optional" type="way"/>
7152 <role key="west" text="west segment (North America)" requisite="optional" type="way"/>
7153 <role key="south" text="south segment (North America)" requisite="optional" type="way"/>
7154 <role key="stop" text="halt point" requisite="optional" type="node"/>
7155 <role key="forward_stop" text="forward halt point" requisite="optional" type="node"/>
7156 <role key="backward_stop" text="backward halt point" requisite="optional" type="node"/>
7157 </roles>
7158 </item>
7159 <item name="Route network" icon="presets/path.png" type="relation">
7160 <link href="http://wiki.openstreetmap.org/wiki/Relations/Proposed/Network"/>
7161 <label text="Edit route network"/>
7162 <key key="type" value="network"/>
7163 <text key="name" text="Name"/>
7164 <optional>
7165 <text key="network" text="Network"/>
7166 <text key="operator" text="Operator"/>
7167 </optional>
7168 <roles>
7169 <role key="" text="member" requisite="required" type="relation"/>
7170 </roles>
7171 </item>
7172 <separator/>
7173 <item name="Associated street" icon="presets/addresses.png" type="relation">
7174 <link href="http://wiki.openstreetmap.org/wiki/Relation:associatedStreet"
7175 de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:associatedStreet"
7176 fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:associatedStreet"
7177 pl.href="http://wiki.openstreetmap.org/wiki/Pl:Relation:associatedStreet"/>
7178 <label text="Edit associated street"/>
7179 <key key="type" value="associatedStreet"/>
7180 <text key="name" text="Street name"/>
7181 <roles>
7182 <role key="street" text="street" requisite="required" type="way,closedway" member_expression="highway"/>
7183 <role key="house" text="house" requisite="required" type="node,way,closedway,relation" member_expression="&quot;addr:housenumber&quot; | &quot;addr:interpolation&quot;"/>
7184 </roles>
7185 </item>
7186 <item name="Street" type="relation">
7187 <link href="http://wiki.openstreetmap.org/wiki/Relation:street"
7188 fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:street"/>
7189 <label text="Edit Street"/>
7190 <key key="type" value="street"/>
7191 <text key="name" text="Name"/>
7192 <roles>
7193 <role key="street" text="ways being part of street" requisite="required" type="way"/>
7194 <role key="address" text="addresses belonging to the street" requisite="optional" type="node,way,closedway"/>
7195 <role key="house" text="houses belonging to the street" requisite="optional" type="node,way,closedway"/>
7196 <role key="associated" text="anything related to the street" requisite="optional" type="node,way,closedway"/>
7197 </roles>
7198 </item>
7199 <item name="Destination sign" icon="presets/guidepost.png" type="relation">
7200 <link href="http://wiki.openstreetmap.org/wiki/Relation:destination_sign"
7201 de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:destination_sign"
7202 es.href="http://wiki.openstreetmap.org/wiki/ES:Relation:destination_sign"
7203 fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:destination_sign"
7204 ja.href="http://wiki.openstreetmap.org/wiki/JA:Relation:destination_sign"
7205 ru.href="http://wiki.openstreetmap.org/wiki/RU:Relation:destination_sign"/>
7206 <label text="Edit Destination sign"/>
7207 <key key="type" value="destination_sign"/>
7208 <text key="destination" text="Destination written on sign (w/o distance)"/>
7209 <text key="distance" text="Distance (km)"/>
7210 <text key="time" text="Time (hh:mm, for trekking)"/>
7211 <text key="colour:back" text="Colour of background"/>
7212 <text key="colour:text" text="Colour of text"/>
7213 <text key="colour:arrow" text="Colour of border/arrow"/>
7214 <roles>
7215 <role key="from" text="last way before junction" requisite="optional" type="node,way"/>
7216 <role key="intersection" text="node of the intersection" requisite="optional" count="1" type="node"/>
7217 <role key="to" text="first way after junction" requisite="required" count="1" type="node,way"/>
7218 <role key="sign" text="position of sign" requisite="optional" type="node"/>
7219 </roles>
7220 </item>
7221 <separator/>
7222 <item name="Waterway" icon="presets/river.png" type="relation">
7223 <link href="http://wiki.openstreetmap.org/wiki/Relations/Proposed/Waterway"/>
7224 <label text="Edit Waterway"/>
7225 <key key="type" value="waterway"/>
7226 <combo key="waterway" text="Subtype of waterway (largest one of members)" values="river,stream,canal,drain,ditch"/>
7227 <text key="name" text="Name"/>
7228 <optional>
7229 <text key="destination" text="Name of river/sea/ocean"/>
7230 <text key="ref" text="Reference"/>
7231 <text key="ref:sandre" text="Reference Sandre (FR)"/>
7232 <text key="ref:fgkz" text="Reference FGKZ (DE)"/>
7233 <text key="ref:regine" text="Reference REGINE (NO)"/>
7234 <text key="ref:gnis" text="Reference GNIS (USA)"/>
7235 <text key="ref:gnbc" text="Reference GNBC (CA)"/>
7236 <text key="wikipedia" text="Wikipedia"/>
7237 </optional>
7238 <roles>
7239 <role key="" text="waterways (no riverbank)" requisite="optional" type="way" member_expression="waterway -waterway:riverbank"/>
7240 <role key="main_stream" text="waterways (no riverbank)" requisite="optional" type="way" member_expression="waterway -waterway:riverbank"/>
7241 <role key="side_stream" text="branch waterways (no riverbank)" requisite="optional" type="way" member_expression="waterway -waterway:riverbank"/>
7242 <role key="spring" text="spring of waterway" requisite="optional" type="node"/>
7243 </roles>
7244 </item>
7245 <item name="Bridge" icon="presets/bridge.png" type="relation">
7246 <link href="http://wiki.openstreetmap.org/wiki/Relations/Proposed/Bridges_and_Tunnels"
7247 ru.href="http://wiki.openstreetmap.org/wiki/RU:Relations/Proposed/Bridges_and_Tunnels"/>
7248 <label text="Edit Bridge"/>
7249 <key key="type" value="bridge"/>
7250 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
7251 <text key="name" text="Name"/>
7252 <text key="ref" text="Reference"/>
7253 <text key="height" text="Height (meters)" length="7"/>
7254 <text key="length" text="Length (meters)"/>
7255 <text key="operator" text="Operator"/>
7256 <roles>
7257 <role key="across" text="ways supported by (on top of) the bridge" requisite="optional" type="way"/>
7258 <role key="under" text="ways passing under the bridge" requisite="optional" type="way"/>
7259 <role key="outline" text="way forming the outline footprint" requisite="optional" count="1" type="closedway"/>
7260 <role key="edge" text="nodes forming the outline" requisite="optional" type="node"/>
7261 </roles>
7262 </item>
7263 <item name="Tunnel" icon="presets/tunnel.png" type="relation">
7264 <link href="http://wiki.openstreetmap.org/wiki/Relations/Proposed/Bridges_and_Tunnels"/>
7265 <label text="Edit Tunnel"/>
7266 <key key="type" value="tunnel"/>
7267 <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
7268 <text key="name" text="Name"/>
7269 <text key="ref" text="Reference"/>
7270 <text key="length" text="Length (meters)"/>
7271 <text key="operator" text="Operator"/>
7272 <roles>
7273 <role key="through" text="ways passing through the tunnel" requisite="required" type="way"/>
7274 <role key="outline" text="way forming the outline footprint" requisite="optional" count="1" type="closedway"/>
7275 <role key="edge" text="nodes forming the outline" requisite="optional" type="node"/>
7276 </roles>
7277 </item>
7278 </group>
7279 <!-- Relations -->
7280</presets>