]> git.openstreetmap.org Git - rails.git/blob - public/potlatch2/map_features.xml
c262122fb00054f23dceb0b010f16dc07dd6e797
[rails.git] / public / potlatch2 / map_features.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Quick documentation:
4
5 <category> the categories that features belong to. This includes both nodes (icons on left) and ways/areas (drop-down list that appears when a way/area is selected)
6   name: Shown in GUI
7   id: internal reference (a feature refers to this with category=xxx)
8
9 <feature> a pre-defined group of tags that make up a feature
10   category: [ctext] corresponding to category id
11   icon
12     @image: path to .png file
13     @background: colour spec
14     @foreground: colour spec
15     (general html goes here?) Variables substituted with ${ref}
16   help: [ctext] URL, shown as a linked ? icon. Should (?) usually be an OSM wiki page.
17   description: Not currently used?
18   line/point/area: any or all of these are allowed. Determines whether this feature is shown in the corresponding situations. None is equivalent to all three.
19   tag - one or more of these required, defines the tags that make up the feature.
20     @k - key
21     @v - value
22   input
23     @ref=xxx
24   inputSet
25     @ref=xxx
26 </feature>
27
28 <inputSet>: a reusable group of properties for a feature.
29   @id="internal id"
30   input...
31 </inputSet>
32
33 <input>
34   @type: choice/freetext/turn/checkbox/slider/route/speed/number - the different types of supported input dialogs.
35   @presence: always/onTagMatch/withCategory - Whether it always appears on the basic page, appears only when the tag is already set, or only ever show on the category page.
36   @category: which tab it appears on
37   @description: mouse-over text
38   @name: The text shown as the label of the property
39   @key: The actual OSM key (tag) that will be saved
40   @priority: highest/high/normal/low/lowest (default=>normal) - controls the order that different features show up in a panel.
41   match: for turn|route inputs, the tags to be considered on the relation as indicating a match.
42     @k: key
43     @v: value
44   icon: see above
45 -->
46
47 <mapFeatures>
48
49   <!-- Categories -->
50
51   <category name="Roads" id="roads">
52   </category>
53
54   <category name="Paths" id="paths">
55   </category>
56
57   <category name="Shopping" id="shopping">
58   </category>
59
60   <category name="Food and Drink" id="foodanddrink">
61   </category>
62
63   <category name="Amenity" id="amenity">
64   </category>
65
66   <category name="Tourism" id="tourism">
67   </category>
68
69   <category name="Accommodation" id="accommodation">
70   </category>
71
72   <category name="Transport" id="transport">
73   </category>
74
75   <category name="Water" id="water">
76   </category>
77
78   <category name="Natural" id="natural">
79   </category>
80
81   <category name="Barrier" id="barrier">
82   </category>
83
84   <category name="Power" id="power">
85   </category>
86
87   <category name="Admin" id="admin">
88   </category>
89
90   <category name="Buildings" id="buildings">
91   </category>
92
93   <category name="Landuse" id="landuse">
94   </category>
95
96   <category name="Agriculture" id="agriculture">
97   </category>
98
99   <category name="Advanced" id="advanced">
100   </category>
101
102   <category name="Misc" id="misc">
103   </category>
104
105   <!-- Common input sets -->
106
107   <inputSet id="simpleName">
108     <input type="freetext" presence="always" name="Name" key="name" description="The name" priority="highest"/>
109   </inputSet>
110
111   <inputSet id="source">
112     <!-- Can you do a combined freetext/dropdown? -->
113     <!-- Also need to make sure every object gets this -->
114     <input type="freetext" category="Misc" presence="always" name="Source" key="source" description="The primary source of information for this object (GPS, survey, Yahoo, nearmap...)" priority="high"/>
115   </inputSet>
116
117   <inputSet id="common">
118     <inputSet ref="source"/>
119   </inputSet>
120
121   <inputSet id="names">
122     <input type="freetext" presence="always"
123         name="Name" category="Naming" priority="highest"
124         key="name" description="The most common name"/>
125     <input type="freetext" presence="onTagMatch"
126         name="International Name" category="Naming"
127         key="int_name" description="The internationally recognised name"/>
128     <input type="freetext" presence="onTagMatch"
129         name="Historical Name" category="Naming" priority="low"
130         key="old_name" description="The historic or previous name"/>
131   </inputSet>
132
133   <inputSet id="wifi">
134     <input type="choice" presence="onTagMatch" category="Eating" name="Wifi" key="wifi">
135       <choice value="free" text="Free"/>
136       <choice value="yes" text="Yes"/>
137       <choice value="no" text="No"/>
138     </input>
139   </inputSet>
140
141   <inputSet id="buildingAddress">
142     <input type="freetext" presence="onTagMatch" category="Address" description="The number of the house, e.g. 156 or 10-12" name="House Number" key="addr:housenumber"/>
143     <input type="freetext" presence="onTagMatch" category="Address" description="The name of the house, e.g. Riverbank Cottage" name="Building Name" key="addr:housename"/>
144     <input type="freetext" presence="onTagMatch" category="Address" description="The Street Name (optional)" name="Street Name" key="addr:street"/>
145     <input type="freetext" presence="onTagMatch" category="Address" description="The postcode" name="Postcode" key="addr:postcode"/>
146   </inputSet>
147
148   <inputSet id="web">
149     <input type="freetext" presence="onTagMatch" category="Web" description="The URL of the website" name="Website" key="website"/>
150   </inputSet>
151
152   <inputSet id="cuisine">
153     <input type="choice" presence="always" name="Cuisine" category="Eating" description="The type of food that they serve" key="cuisine">
154       <choice value="burger" text="Burger"/>
155       <choice value="chicken" text="Chicken"/>
156       <choice value="chinese" text="Chinese"/>
157       <choice value="coffee_shop" text="Coffee Shop"/>
158       <choice value="greek" text="Greek"/>
159       <choice value="pizza" text="Pizza"/>
160       <choice value="sandwich" text="Sandwich"/>
161       <choice value="sea_food" text="Sea Food"/>
162       <help>http://wiki.openstreetmap.org/wiki/Key:cuisine</help>
163     </input>
164   </inputSet>
165
166   <!-- Roads -->
167
168   <inputSet id="majorRoad">
169     <inputSet ref="names"/>
170     <inputSet ref="roadRefs"/>
171     <inputSet ref="roadRestrictions"/>
172     <inputSet ref="roadPhysical"/>
173     <inputSet ref="cycle"/>
174     <inputSet ref="bicycle-lane"/>
175     <inputSet ref="bus-route"/>
176     <inputSet ref="pedestrians"/>
177     <inputSet ref="roadLanes"/>
178     <inputSet ref="roadRoundabout"/>
179     <inputSet ref="permissions"/>
180   </inputSet>
181
182   <inputSet id="minorRoad">
183     <inputSet ref="names"/>
184     <inputSet ref="roadRestrictions"/>
185     <inputSet ref="roadPhysical"/>
186     <inputSet ref="cycle"/>
187     <inputSet ref="bicycle-lane"/>
188     <inputSet ref="bus-route"/>
189     <inputSet ref="pedestrians"/>
190     <inputSet ref="roadLanes"/>
191     <inputSet ref="roadRoundabout"/>
192     <inputSet ref="permissions"/>
193   </inputSet>
194
195   <inputSet id="path">
196     <inputSet ref="simpleName"/>
197     <inputSet ref="roadPhysical"/>
198     <inputSet ref="cycle"/>
199     <inputSet ref="ldp"/>
200     <inputSet ref="pedestrians"/>
201     <inputSet ref="permissions"/>
202   </inputSet>
203
204   <inputSet id="junctionNode">
205     <inputSet ref="turnRestrictions"/>
206   </inputSet>
207
208   <inputSet id="roadRefs">
209     <input type="freetext" presence="always"
210         name="Reference" category="Naming" priority="high"
211         key="ref" description="The official reference number"/>
212     <input type="freetext" presence="onTagMatch"
213         name="International Reference" category="Naming"
214         key="int_ref" description="The official international reference number"/>
215     <input type="freetext" presence="onTagMatch"
216         name="Old Reference" category="Naming" priority="low"
217         key="old_ref" description="The historic or previous reference number"/>
218   </inputSet>
219
220   <inputSet id="roadPhysical">
221     <input type="freetext" presence="onTagMatch"
222         name="Width" category="Physical"
223         key="width" description="Width of the road" layout="horizontal"/>
224     <input type="choice" presence="onTagMatch"
225         name="Surface" category="Physical" description="Type of road surface"
226         key="surface" layout="horizontal">
227       <choice value="unpaved" text="Unpaved" description="Road surface is unsealed"/>
228       <choice value="paved" text="Paved" description="Road surface is sealed"/>
229       <choice value="asphalt" text="Asphalt"/>
230       <choice value="concrete" text="Concrete"/>
231       <choice value="paving_stones" text="Paving stones"/>
232       <choice value="cobblestone" text="Cobblestone"/>
233       <choice value="sand" text="Sand"/>
234       <choice value="gravel" text="Gravel"/>
235       <choice value="dirt" text="Dirt"/>
236       <choice value="grass" text="Grass"/>
237     </input>
238     <inputSet ref="bridge"/>
239     <inputSet ref="tunnel"/>
240     <inputSet ref="embankment-cutting"/>
241   </inputSet>
242
243   <inputSet id="roadLanes">
244     <input presence="onTagMatch" type="number" name="Lanes" category="Physical" description="Total number of lanes, counting both directions"
245            key="lanes" minimum="1" maximum="10" layout="horizontal"/>
246   </inputSet>
247
248   <inputSet id="bridge">
249     <input type="choice" presence="onTagMatch"
250         name="Bridge" category="Physical" description="Road goes over a bridge"
251         key="bridge" layout="horizontal">
252       <choice value="yes" text="Generic Bridge" description="Generic bridge -- type unknown"/>
253       <choice value="viaduct" text="Viaduct" description="Viaduct"/>
254       <choice value="suspension" text="Suspension bridge"/>
255     </input>
256     <input type="slider" presence="onTagMatch"
257         name="Layer" category="Physical" description="Relative vertical positions (-5 lowest, +5 highest)"
258         key="layer" minimum="-5" maximum="5" default="0" snapInterval="1" labels="Lowest,Ground,Highest"
259         defaultName="Ground"/>
260   </inputSet>
261   <inputSet id="tunnel">
262     <!-- Not ideal, used for non-roads too. -->  
263     <input type="choice" presence="onTagMatch"
264         name="Tunnel" category="Physical" description="Road goes into a tunnel"
265         key="tunnel" layout="horizontal">
266       <choice value="yes" text="Tunnel" description="Generic tunnel"/>
267     </input>
268   </inputSet>
269
270   <inputSet id="embankment-cutting">
271     <input type="choice"
272            name="Embankment" category="Physical" description="Road supported on a raised bed of earth and rock."
273            key="embankment" layout="horizontal">
274       <choice value="yes" text="Embankment"/>
275     </input>
276     <input type="choice"
277            name="Cutting" category="Physical" description="Road carved out of hill on one or both sides."
278            key="cutting" layout="horizontal">
279       <choice value="yes" text="Cutting"/>
280     </input>
281
282   </inputSet>
283
284   <inputSet id="rail-electrification">
285     <input type="choice" name="Electrified" category="Electrification" description="Is the track electrified (whether by 3rd rail, overhead wires, etc)?"
286            key="electrified">
287       <choice value="yes" text="Yes"/>
288       <choice value="no" text="No"/>
289     </input>
290     <input type="choice" name="Voltage" category="Electrification" description="Nominal voltage of electric wires"
291            key="voltage" presence="withCategory">
292       <choice value="600" text="600V"/>
293       <choice value="750" text="750V"/>
294       <choice value="1500" text="1500V"/>
295       <choice value="3000" text="3000V"/>
296       <choice value="15000" text="15kV"/>
297       <choice value="25000" text="25kV"/>
298     </input>
299     <input type="choice" name="Frequency" category="Electrification" description="Frequency in Hertz of alternating current power supply"
300            key="frequency" presence="withCategory">
301       <choice value="0" text="DC"/>
302       <choice value="16.67" text="16.67 Hz"/>
303       <choice value="16.7" text="16.7 Hz"/>
304       <choice value="25" text="25 Hz"/>
305       <choice value="50" text="50 Hz"/>
306       <choice value="60" text="60 Hz"/>
307     </input>
308   </inputSet>
309
310   <inputSet id="rail-usage">
311     <input type="choice" name="Usage" category="Usage" description="Main use of the line" key="usage">
312       <choice value="main" text="Main line" description="The principal artery of a rail system."/>
313       <choice value="branch" text="Branch line" description="A secondary line, branching off a main line."/>
314       <choice value="industrial" text="Industrial"/>
315       <choice value="tourism" text="Tourism" />
316       <choice value="military" text="Military"/>
317     </input>
318   </inputSet>
319
320   <inputSet id="fee">
321     <input type="freetext" presence="onTagMatch" category="Restrictions" description="The charge/cost of using this amenity" name="Fee" key="fee"/>
322   </inputSet>
323
324   <inputSet id="roadRestrictions">
325     <input type="choice" presence="always"
326         name="Oneway" category="Restrictions" description="Oneway roads"
327         key="oneway">
328       <choice value="yes" match="yes|true|1" text="One way"
329         description="Road can only be travelled in direction of way" icon="features/oneway__yes.png"/>
330       <choice value="no" match="no|false|0" text="Two way"
331         description="Road can be travelled in both directions" icon="features/oneway__no.png"/>
332       <choice value="-1" match="-1|reverse" text="One way reverse"
333         description="Road can be travelled in opposite direction to way" icon="features/oneway__-1.png"/>
334     </input>
335     <input type="speed" presence="onTagMatch"
336         name="Speed Limit" category="Restrictions" description="Maximum permitted speed on this road"
337         key="maxspeed"/>
338   </inputSet>
339
340   <inputSet id="roadRoundabout">
341     <!-- review the choice of category -->
342     <input type="choice" presence="onTagMatch" name="Roundabout" category="Restrictions" description="Whether this road is a roundabout. Make the way face the direction appropriate for the country."
343            key="junction">
344       <choice value="roundabout" text="Yes"/>
345     </input>
346   </inputSet>
347
348   <inputSet id="turnRestrictions">
349     <input type="turn" name="Turn restriction" description="Turn restriction" category="Restrictions" priority="normal" presence="onTagMatch">
350       <match k="type" v="restriction"/>
351       <role role="via"/>
352     </input>
353   </inputSet>
354
355   <inputSet id="pedestrians">
356     <input type="choice" name="Pedestrians" description="Can pedestrians use this road, including footpaths if any?" category="Walking" key="foot">
357       <choice value="yes" text="Allowed"/>
358       <choice value="no" text="Prohibited"/>
359       <choice value="designated" text="Designated"/>
360     </input>
361   </inputSet>
362
363   <inputSet id="naptan">
364     <input type="freetext" presence="onTagMatch" category="Naptan" description="12 character internal Naptan ID" name="Atco Code" key="naptan:AtcoCode"/>
365     <input type="choice" presence="onTagMatch" category="Naptan" description="The eight-point compass bearning" name="Naptan Bearing" key="naptan:Bearing" >
366       <choice value="N"  match="N"  text="N"  description=""/>
367       <choice value="NE" match="NE" text="NE" description=""/>
368       <choice value="E"  match="E"  text="E"  description=""/>
369       <choice value="SE" match="SE" text="SE" description=""/>
370       <choice value="S"  match="S"  text="S"  description=""/>
371       <choice value="SW" match="SW" text="SW" description=""/>
372       <choice value="W"  match="W"  text="W"  description=""/>
373       <choice value="NW" match="NW" text="NW" description=""/>
374     </input>
375     <input type="freetext" presence="onTagMatch" category="Naptan" description="The naptan common name" name="Naptan Common Name (read-only)" key="naptan:CommonName"/>
376     <input type="freetext" presence="onTagMatch" category="Naptan" description="" name="Naptan Indicator (read-only)" key="naptan:Indicator"/>
377     <input type="freetext" presence="onTagMatch" category="Naptan" description="" name="Naptan Street (read-only)" key="naptan:Street"/>
378     <input type="freetext" presence="onTagMatch" category="Naptan" description="Delete this when the details have been verified on-the-ground" name="Naptan Verified?" key="naptan:verified"/>
379   </inputSet>
380
381   <inputSet id="buses">
382     <input type="freetext" presence="always" category="Bus Stop" name="Stop Name" key="name" description="The name of the bus stop"/>
383     <input type="freetext" presence="always" category="Bus Stop" name="Local Ref" key="local_ref" description="The local reference of the stop, usually one or two letters above the main flag, used at bus interchanges, e.g. L, BX"/>
384     <inputSet ref="naptan"/>
385   </inputSet>
386
387   <inputSet id="bus-route">
388     <input type="route" name="Bus Route" description="Bus route" category="Transport" priority="low" presence="onTagMatch">
389       <match k="type" v="route"/>
390       <match k="route" v="bus"/>
391       <icon image="features/transport__bus.png">
392         <font size="12pt">${operator} <b>${ref}</b></font>
393       </icon>
394     </input>
395   </inputSet>
396
397   <inputSet id="tram-route">
398     <input type="route" name="Tram Route" description="Tram route" category="Transport" priority="low" presence="onTagMatch">
399       <match k="type" v="route"/>
400       <match k="route" v="tram"/>
401       <icon image="features/transport__tram.png">
402         <font size="12pt">${operator} <b>${ref}</b></font>
403       </icon>
404     </input>
405   </inputSet>
406
407   <inputSet id="cycle">
408     <inputSet ref="bicycle-permission"/>
409     <input type="route" name="National Cycle Routes" description="A signposted route in a National Cycle Network, or nearest equivalent." category="Cycle" priority="low">
410       <match k="type" v="route"/>
411       <match k="route" v="bicycle"/>
412       <match k="network" v="ncn"/>
413       <icon image="features/cycle__ncn.png" background="#ff6f7a" foreground="white">
414         <font size="14pt"><b>${ref}</b></font><br/>
415         <font size="12pt">${name}</font>
416       </icon>
417     </input>
418     <input type="route" name="Regional Cycle Routes" description="A signposted route in a Regional Cycle Network, or nearest equivalent." category="Cycle" priority="low">
419       <match k="type" v="route"/>
420       <match k="route" v="bicycle"/>
421       <match k="network" v="rcn"/>
422       <icon image="features/cycle__rcn.png" background="#6ff7ff" foreground="white">
423         <font size="14pt"><b>${ref}</b></font><br/>
424         <font size="12pt">${name}</font>
425       </icon>
426     </input>
427     <input type="route" name="Local Cycle Routes" description="A signposted route in a Local Cycle Network, or nearest equivalent." category="Cycle" priority="lowest">
428       <match k="type" v="route"/>
429       <match k="route" v="bicycle"/>
430       <match k="network" v="lcn"/>
431       <icon image="features/cycle__lcn.png" background="#7d6fff" foreground="white">
432         <font size="14pt"><b>${ref}</b></font><br/>
433         <font size="12pt">${name}</font>
434       </icon>
435     </input>
436   </inputSet>
437
438   <inputSet id="bicycle-permission">
439     <input type="choice"
440            name="Bicycles permitted" category="Cycle" description="Are bicyles allowed to use this road (regardless of physical suitability)?"
441            key="bicycle">
442       <choice value="no" text="Prohibited"/>
443       <choice value="yes" text="Allowed"/>
444       <choice value="designated" text="Designated"/>
445       <choice value="private" text="Private"/>
446       <help>http://wiki.openstreetmap.org/wiki/Key:access</help>
447     </input>
448   </inputSet>
449
450   <inputSet id="bicycle-lane">
451     <input type="choice"
452         name="Bike lanes" category="Cycle" description="Road has bike lanes within the road surface"
453         key="cycleway" layout="horizontal">
454       <choice value="no" text="No bike lanes"/>
455       <choice value="opposite" text="No, but two-way bicycle traffic permitted" description="The route may be cycled in the direction opposite of other traffic, but does not have a dedicated lane. Common in Belgium, Netherlands, Denmark."/>
456       <choice value="lane" text="Standard bike lane" description="Separated by painted line"/>
457       <choice value="track" text="Copenhagen-style bike lane" description="Separated by kerb or parked cars"/>
458       <choice value="opposite_lane" text="Two-way bike lane" description="Separated by painted line, and allowing bicycles in both directions in an otherwise one-way street."/>
459       <choice value="opposite_track" text="Two-way Copenhagen-style bike lane" description="Separated by kerb or parked cars, and allowing bicycles in both directions in an otherwise one-way street."/>
460       <help>http://wiki.openstreetmap.org/wiki/Key:cycleway</help>
461     </input>
462   </inputSet>
463
464   <inputSet id="ldp">
465     <input type="route" name="National Walking Route" description="National walking route" category="Walking" priority="normal">
466       <match k="type" v="route"/>
467       <match k="network" v="nwn"/>
468       <icon background="red" foreground="white">
469         <font size="14pt"><b>${ref}</b></font><br/>
470         <font size="12pt">${name}</font>
471       </icon>
472     </input>
473     <input type="route" name="Regional Walking Route" description="Regional walking route" category="Walking" priority="low">
474       <match k="type" v="route"/>
475       <match k="network" v="rwn"/>
476       <icon background="cyan" foreground="white">
477         <font size="14pt"><b>${ref}</b></font><br/>
478         <font size="12pt">${name}</font>
479       </icon>
480     </input>
481     <input type="route" name="Local Walking Route" description="Local walking route" category="Walking" priority="lowest">
482       <match k="type" v="route"/>
483       <match k="network" v="lwn"/>
484       <icon background="blue" foreground="white">
485         <font size="14pt"><b>${ref}</b></font><br/>
486         <font size="12pt">${name}</font>
487       </icon>
488     </input>
489   </inputSet>
490
491   <inputSet id="route">
492     <inputSet ref="names"/>
493     <inputSet ref="roadRefs"/>
494   </inputSet>
495
496   <inputSet id="waterways">
497     <input type="freetext" presence="always" name="Name" category="Naming" key="name" description="The name"/>
498     <input type="freetext" presence="always" name="Width" category="Properties" key="width" description="The width in metres"/>
499     <inputSet ref="boatPermissions"/>
500   </inputSet>
501 <!-- Would be good to have a dedicated 'access' type of input -->
502   <!-- all the description fields are identical at the moment for ease of maintenance, should be tailored in future. -->
503   <inputSet id="boatPermissions">
504     <input type="choice" name="Boat permission" category="Permission" key="boat" description="Are boats allowed to use this waterway?">
505       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
506       <choice value="yes" text="Allowed" description="General right of way."/>
507       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
508       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
509       <choice value="no" text="Prohibited" description="No access to the public."/>
510     </input>
511   </inputSet>
512
513   <inputSet id="permissions">
514     <input type="choice" name="General access" category="Permission" key="access" description="Is there a general right of access, regardless of mode of transport?">
515       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
516       <choice value="yes" text="Allowed" description="General right of way."/>
517       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
518       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
519       <choice value="no" text="Prohibited" description="No access to the public."/>
520     </input>
521
522     <input type="choice" name="Motor vehicles" category="Permission" key="motor_vehicle" description="Are cars and other private vehicles allowed?">
523       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
524       <choice value="yes" text="Allowed" description="General right of way."/>
525       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
526       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
527       <choice value="no" text="Prohibited" description="No access to the public."/>
528     </input>
529
530     <input type="choice" name="Horses" category="Permission" key="horse" description="Are cars and other private vehicles allowed?">
531       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
532       <choice value="yes" text="Allowed" description="General right of way."/>
533       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
534       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
535       <choice value="no" text="Prohibited" description="No access to the public."/>
536     </input>
537
538   </inputSet>
539
540   <!-- ************************************************************************
541        Roads
542        ************************************************************************ -->
543
544   <feature name="Motorway">
545     <category>roads</category>
546     <icon image="features/highway__motorway.png">
547       <font size="16pt"><b>${ref}</b></font><br/>
548     </icon>
549     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dmotorway</help>
550
551     <line/>
552     <tag k="highway" v="motorway"/>
553
554     <inputSet ref="majorRoad"/>
555     <inputSet ref="common"/>
556   </feature>
557
558   <feature name="Motorway link" icon="features/motorway_link.png">
559     <category>roads</category>
560     <icon image="features/highway__motorway.png"/>
561     <line/>
562     <tag k="highway" v="motorway_link"/>
563
564     <inputSet ref="majorRoad"/>
565     <inputSet ref="common"/>
566   </feature>
567
568   <feature name="Trunk road">
569     <category>roads</category>
570     <icon image="features/highway__trunk.png">
571       <font size="16pt"><b>${ref}</b></font><br/>
572       <font size="10pt">${name}</font>
573     </icon>
574     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrunk</help>
575
576     <line/>
577     <tag k="highway" v="trunk"/>
578
579     <inputSet ref="majorRoad"/>
580     <inputSet ref="common"/>
581   </feature>
582
583   <feature name="Trunk link" icon="features/motorway_link.png">
584     <category>roads</category>
585     <icon image="features/highway__trunk.png"/>
586     <line/>
587     <tag k="highway" v="trunk_link"/>
588
589     <inputSet ref="majorRoad"/>
590     <inputSet ref="common"/>
591   </feature>
592
593   <feature name="Primary road">
594     <category>roads</category>
595     <icon image="features/highway__unclassified.png">
596       <font size="16pt"><b>${ref}</b></font><br/>
597       <font size="10pt">${name}</font>
598     </icon>
599     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary</help>
600
601     <line/>
602     <tag k="highway" v="primary"/>
603
604     <inputSet ref="majorRoad"/>
605     <inputSet ref="common"/>
606   </feature>
607
608   <feature name="Primary road link">
609     <category>roads</category>
610     <icon image="features/highway__unclassified.png">
611       <font size="16pt"><b>${ref}</b></font><br/>
612       <font size="10pt">${name}</font>
613     </icon>
614     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary_link</help>
615
616     <line/>
617     <tag k="highway" v="primary_link"/>
618
619     <inputSet ref="majorRoad"/>
620     <inputSet ref="common"/>
621   </feature>
622
623
624   <feature name="Secondary road">
625     <category>roads</category>
626     <icon image="features/highway__unclassified.png">
627       <font size="16pt"><b>${ref}</b></font><br/>
628       <font size="10pt">${name}</font>
629     </icon>
630     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary</help>
631
632     <line/>
633     <tag k="highway" v="secondary"/>
634
635     <inputSet ref="majorRoad"/>
636     <inputSet ref="common"/>
637   </feature>
638
639   <feature name="Secondary road link">
640     <category>roads</category>
641     <icon image="features/highway__unclassified.png">
642       <font size="16pt">
643         <b>${ref}</b>
644       </font>
645       <br/>
646       <font size="10pt">${name}</font>
647     </icon>
648     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary_link</help>
649
650     <line/>
651     <tag k="highway" v="secondary_link"/>
652
653     <inputSet ref="majorRoad"/>
654     <inputSet ref="common"/>
655   </feature>
656
657
658
659   <feature name="Tertiary road">
660     <category>roads</category>
661     <icon image="features/highway__unclassified.png">
662       <font size="14pt"><b>${name}</b></font><br/>
663       <font size="10pt">${ref}</font>
664     </icon>
665     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary</help>
666
667     <line/>
668     <tag k="highway" v="tertiary"/>
669
670     <inputSet ref="majorRoad"/>
671     <inputSet ref="common"/>
672   </feature>
673
674   <feature name="Tertiary road link">
675     <category>roads</category>
676     <icon image="features/highway__unclassified.png">
677       <font size="14pt"><b>${name}</b></font><br/>
678       <font size="10pt">${ref}</font>
679     </icon>
680     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary_link</help>
681
682     <line/>
683     <tag k="highway" v="tertiary_link"/>
684
685     <inputSet ref="majorRoad"/>
686     <inputSet ref="common"/>
687   </feature>
688
689
690   <feature name="Minor road">
691     <category>roads</category>
692     <icon image="features/highway__unclassified.png">
693       <font size="14pt"><b>${name}</b></font>
694     </icon>
695     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dunclassified</help>
696
697     <line/>
698     <tag k="highway" v="unclassified"/>
699
700     <inputSet ref="minorRoad"/>
701     <inputSet ref="common"/>
702   </feature>
703
704   <feature name="Residential road">
705     <category>roads</category>
706     <icon image="features/highway__residential.png">
707       <font size="14pt">
708         <b>${name}</b>
709       </font>
710       <br/>
711       <font size="8pt">${postal_code}</font>
712       <br/>
713     </icon>
714     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dresidential</help>
715
716     <line/>
717     <tag k="highway" v="residential"/>
718
719     <inputSet ref="minorRoad"/>
720     <inputSet ref="common"/>
721   </feature>
722
723   <feature name="Service road">
724     <category>roads</category>
725     <icon image="features/highway__service.png">
726       <font size="14pt"><b>${name}</b></font>
727     </icon>
728     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dservice</help>
729     <description>
730       Access roads
731     </description>
732
733     <line/>
734     <tag k="highway" v="service"/>
735
736     <inputSet ref="minorRoad"/>
737     <input type="choice" presence="always" name="Type of service road" key="service" category="">
738       <choice value="alley" text="Alleyway/laneway"/>
739       <choice value="parking_aisle" text="Parking aisle" description="The path that cars drive on through a parking lot."/>
740       <choice value="driveway" text="Driveway"/>
741       <choice value="drive-through" text="Drive-through" description="For drive-through restaurants, bottle shops etc."/>
742       <choice value="emergency_access" text="Emergency access" description="For firefighters and other emergency services."/>
743     </input>
744     <inputSet ref="common"/>
745   </feature>
746
747   <feature name="Unknown road">
748     <category>roads</category>
749     <icon image="features/highway__service.png">
750       <font size="10pt">This road has not been given a specific type. It's a road, and that's all that's known.</font>
751     </icon>
752
753     <line/>
754     <tag k="highway" v="road"/>
755
756     <inputSet ref="minorRoad"/>
757     <inputSet ref="common"/>
758   </feature>
759
760   <feature name="Living Street">
761     <category>roads</category>
762     <icon image="features/highway__residential.png">
763       <font size="14pt"><b>${name}</b></font>
764     </icon>
765     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street</help>
766
767     <line/>
768     <tag k="highway" v="living_street"/>
769
770     <inputSet ref="minorRoad"/>
771     <inputSet ref="common"/>
772   </feature>
773
774   <feature name="Track">
775     <category>roads</category>
776     <icon image="features/highway__unclassified.png">
777       <font size="14pt"><b>${name}</b></font>
778     </icon>
779
780     <line/>
781     <tag k="highway" v="track"/>
782
783     <inputSet ref="path"/>
784     <inputSet ref="common"/>
785   </feature>
786
787
788   <!-- ************************************************************************
789        Paths
790        ************************************************************************ -->
791
792   <feature name="Footpath">
793     <category>paths</category>
794     <icon image="features/paths__footway.png">
795       ${name} <i>${ref}</i>
796     </icon>
797
798     <line/>
799     <tag k="highway" v="footway"/>
800     <inputSet ref="path"/>
801     <inputSet ref="common"/>
802   </feature>
803
804   <feature name="Cycle path">
805     <category>paths</category>
806     <icon image="features/paths__bike.png">
807       ${name} <i>${ncn_ref} ${rcn_ref} ${lcn_ref} ${ref}</i>
808     </icon>
809
810     <line/>
811     <tag k="highway" v="cycleway"/>
812     <inputSet ref="path"/>
813     <inputSet ref="common"/>
814   </feature>
815
816   <feature name="Pedestrian Street">
817     <category>paths</category>
818     <icon image="features/paths__pedestrian.png">
819       <font size="14pt">
820         <b>${name}</b>
821       </font>
822     </icon>
823
824     <tag k="highway" v="pedestrian"/>
825     <!-- pedestrian roads can be lines or areas, with different tags -->
826     <!-- TODO - implement this! -->
827     <line>
828       <tag k="highway" v="pedestrian"/>
829     </line>
830     <area>
831       <tag k="highway" v="pedestrian"/>
832       <tag k="area" v="yes"/>
833     </area>
834     <inputSet ref="minorRoad"/>
835     <inputSet ref="common"/>
836   </feature>
837
838   <feature name="Bridleway">
839     <category>paths</category>
840     <icon image="features/paths__bridleway.png">
841     </icon>
842
843     <line/>
844     <tag k="highway" v="bridleway"/>
845     <inputSet ref="path"/>
846     <inputSet ref="common"/>
847   </feature>
848
849   <feature name="Steps">
850     <category>paths</category>
851     <icon image="features/paths__steps.png">
852     </icon>
853     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dsteps</help>
854
855     <line/>
856     <tag k="highway" v="steps"/>
857     <inputSet ref="path"/>
858     <input type="freetext" presence="always" category="Naming" name="Number of steps" key="step_count" description="The number of steps in the way" priority="low"/>
859     <inputSet ref="common"/>
860   </feature>
861
862   <!-- ************************************************************************
863        Natural
864        ************************************************************************ -->
865
866   <feature name="Park">
867     <category>natural</category>
868     <icon image="icons/natural_blank.png">
869       <b>${name}</b>
870       <br/>
871     </icon>
872
873     <area/>
874     <tag k="leisure" v="park"/>
875     <inputSet ref="common"/>
876   </feature>
877
878   <feature name="Forest">
879     <category>natural</category>
880     <icon image="icons/natural_blank.png"/>
881
882     <area/>
883     <tag k="landuse" v="forest"/>
884     <inputSet ref="common"/>
885   </feature>
886
887   <feature name="Meadow">
888     <category>natural</category>
889     <icon image="icons/natural_blank.png"/>
890
891     <area/>
892     <tag k="landuse" v="meadow"/>
893     <inputSet ref="common"/>
894   </feature>
895
896
897   <!-- ************************************************************************
898        Barrier
899        ************************************************************************ -->
900
901   <feature name="Wall">
902     <category>barrier</category>
903     <icon image="features/barrier_generic.png"/>
904     <icon>
905     </icon>
906     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dwall</help>
907
908     <line/>
909     <tag k="barrier" v="wall"/>
910     <inputSet ref="common"/>
911   </feature>
912
913   <feature name="Ditch">
914     <category>barrier</category>
915     <icon image="features/barrier_generic.png"/>
916     <icon>
917     </icon>
918     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dditch</help>
919
920     <line/>
921     <tag k="barrier" v="ditch"/>
922     <inputSet ref="common"/>
923   </feature>
924
925   <feature name="Retaining wall">
926     <category>barrier</category>
927     <icon image="features/barrier_generic.png"/>
928     <icon>
929     </icon>
930     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dretaining_wall</help>
931
932     <line/>
933     <tag k="barrier" v="retaining_wall"/>
934     <inputSet ref="common"/>
935   </feature>
936
937   <feature name="City wall">
938     <category>barrier</category>
939     <icon image="features/barrier_generic.png"/>
940     <icon>
941     </icon>
942     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcity_wall</help>
943
944     <line/>
945     <tag k="barrier" v="city_wall"/>
946     <inputSet ref="common"/>
947   </feature>
948
949
950   <feature name="Fence">
951     <category>barrier</category>
952     <icon image="features/barrier_generic.png"/>
953     <icon>
954     </icon>
955     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dfence</help>
956
957     <line/>
958     <tag k="barrier" v="fence"/>
959     <inputSet ref="common"/>
960   </feature>
961
962
963   <feature name="Hedge">
964     <category>barrier</category>
965     <icon image="features/barrier_generic.png"/>
966     <icon>
967     </icon>
968     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dhedge</help>
969
970     <line/>
971     <tag k="barrier" v="hedge"/>
972     <inputSet ref="common"/>
973   </feature>
974
975
976
977   <!-- ************************************************************************
978        Waterways
979        ************************************************************************ -->
980
981   <feature name="Stream">
982     <category>water</category>
983     <description>A very narrow river.</description>
984     <icon image="features/waterway__stream.png">
985       <font size="14pt">
986         <b>${name}</b>
987       </font>
988     </icon>
989
990     <line/>
991     <tag k="waterway" v="stream"/>
992     <inputSet ref="waterways"/>
993     <inputSet ref="common"/>
994   </feature>
995
996
997   <feature name="River">
998     <category>water</category>
999     <icon image="features/waterway__river.png">
1000       <font size="14pt"><b>${name}</b></font>
1001     </icon>
1002
1003     <line/>
1004     <tag k="waterway" v="river"/>
1005     <inputSet ref="waterways"/>
1006     <inputSet ref="common"/>
1007   </feature>
1008
1009
1010   <feature name="Canal">
1011     <category>water</category>
1012     <icon image="features/waterway__canal.png">
1013       <font size="14pt">
1014         <b>${name}</b>
1015       </font>
1016     </icon>
1017
1018     <line/>
1019     <tag k="waterway" v="canal"/>
1020     <inputSet ref="waterways"/>
1021     <inputSet ref="tunnel"/>
1022     <inputSet ref="common"/>
1023   </feature>
1024
1025
1026   <feature name="Drain">
1027     <category>water</category>
1028     <icon image="features/pois/water_generic.24.png">
1029       <font size="14pt"><b>${name}</b></font>
1030     </icon>
1031
1032     <line/>
1033     <tag k="waterway" v="drain"/>
1034     <inputSet ref="tunnel"/>
1035     <inputSet ref="common"/>
1036   </feature>
1037
1038
1039   <feature name="Dam">
1040     <!-- Moved to "barrier" because this describes the dam wall, not the water. -->
1041     <category>barrier</category>
1042     <icon image="features/waterway__dam.png">
1043       <font size="14pt">
1044         <b>${name}</b>
1045       </font>
1046     </icon>
1047
1048     <line/>
1049     <area/>
1050     <tag k="waterway" v="dam"/>
1051     <inputSet ref="common"/>
1052   </feature>
1053
1054
1055   <feature name="Riverbank">
1056     <category>water</category>
1057     <icon image="features/pois/water_generic.24.png">
1058       <font size="14pt"><b>${name}</b></font>
1059     </icon>
1060
1061     <area/>
1062     <tag k="waterway" v="riverbank"/>
1063     <inputSet ref="common"/>
1064   </feature>
1065
1066
1067   <feature name="Reservoir">
1068     <category>water</category>
1069     <icon image="features/pois/water_generic.24.png">
1070       <font size="14pt">
1071         <b>${name}</b>
1072       </font>
1073     </icon>
1074
1075     <area/>
1076     <tag k="landuse" v="reservoir"/>
1077     <inputSet ref="boatPermissions"/>
1078     <inputSet ref="common"/>
1079   </feature>
1080
1081
1082   <feature name="Lake">
1083     <category>water</category>
1084     <icon image="features/pois/water_generic.24.png">
1085       <font size="14pt">
1086         <b>${name}</b>
1087       </font>
1088     </icon>
1089     <area/>
1090     <tag k="natural" v="water"/>
1091     <inputSet ref="names"/>
1092     <inputSet ref="boatPermissions"/>
1093     <inputSet ref="common"/>
1094   </feature>
1095
1096
1097   <feature name="Basin">
1098     <category>water</category>
1099     <icon image="features/pois/water_generic.24.png">
1100       <font size="14pt">
1101         <b>${name}</b>
1102       </font>
1103     </icon>
1104
1105     <area/>
1106     <tag k="landuse" v="basin"/>
1107     <inputSet ref="boatPermissions"/>
1108     <inputSet ref="common"/>
1109   </feature>
1110
1111
1112   <feature name="Weir">
1113     <category>water</category>
1114     <icon image="features/pois/water_generic.24.png">
1115       <font size="14pt">
1116         <b>${name}</b>
1117       </font>
1118     </icon>
1119
1120     <line/>
1121     <point/>
1122     <tag k="waterway" v="weir"/>
1123     <inputSet ref="common"/>
1124   </feature>
1125
1126
1127
1128
1129   <feature name="Dock">
1130     <category>water</category>
1131     <icon image="features/pois/water_generic.24.png">
1132       <font size="14pt">
1133         <b>${name}</b>
1134       </font>
1135     </icon>
1136
1137     <area/>
1138     <tag k="waterway" v="dock"/>
1139     <inputSet ref="names"/>
1140     <inputSet ref="common"/>
1141   </feature>
1142
1143
1144   <feature name="Marina">
1145     <category>water</category>
1146     <icon image="features/pois/transport_marina.n.24.png">
1147       <font size="14pt">
1148         <b>${name}</b>
1149       </font>
1150     </icon>
1151
1152     <area/>
1153     <point/>
1154     <tag k="leisure" v="marina"/>
1155     <inputSet ref="names"/>
1156     <inputSet ref="common"/>
1157   </feature>
1158
1159
1160   <feature name="Slipway">
1161     <category>water</category>
1162     <icon image="features/pois/water_generic.24.png"/>
1163     <line/>
1164     <tag k="leisure" v="slipway"/>
1165     <inputSet ref="names"/>
1166     <inputSet ref="common"/>
1167   </feature>
1168
1169
1170   <area/>
1171
1172   <!-- ************************************************************************
1173        Transport
1174        ************************************************************************ -->
1175
1176   <feature name="Railway line">
1177     <category>transport</category>
1178     <icon image="features/transport__railway.png">
1179       <font size="14pt">
1180         <b>${name}</b>
1181       </font>
1182     </icon>
1183
1184     <line/>
1185     <tag k="railway" v="rail"/>
1186     <inputSet ref="bridge"/>
1187     <inputSet ref="tunnel"/>
1188     <inputSet ref="embankment-cutting"/>
1189     <inputSet ref="rail-electrification"/>
1190     <inputSet ref="rail-usage"/>
1191     <inputSet ref="common"/>
1192   </feature>
1193
1194
1195   <feature name="Railway spur">
1196     <category>transport</category>
1197     <icon image="features/transport__railway.png">
1198       <font size="14pt">
1199         <b>${name}</b>
1200       </font>
1201     </icon>
1202
1203     <line/>
1204     <tag k="railway" v="rail"/>
1205     <tag k="service" v="spur"/>
1206     <inputSet ref="common"/>
1207   </feature>
1208
1209
1210   <feature name="Railway siding">
1211     <category>transport</category>
1212     <icon image="features/transport__railway.png">
1213       <font size="14pt">
1214         <b>${name}</b>
1215       </font>
1216     </icon>
1217
1218     <line/>
1219     <tag k="railway" v="rail"/>
1220     <tag k="service" v="siding"/>
1221     <inputSet ref="common"/>
1222   </feature>
1223
1224
1225   <feature name="Preserved line">
1226     <category>transport</category>
1227     <icon image="features/transport__railway.png">
1228       <font size="14pt"><b>${name}</b></font>
1229     </icon>
1230
1231     <line/>
1232     <tag k="railway" v="preserved"/>
1233     <inputSet ref="common"/>
1234   </feature>
1235
1236
1237   <feature name="Disused tracks">
1238     <category>transport</category>
1239     <icon image="features/transport__railway_disused.png">
1240       <font size="14pt">
1241         <b>${name}</b>
1242       </font>
1243     </icon>
1244
1245     <line/>
1246     <tag k="railway" v="disused"/>
1247     <inputSet ref="common"/>
1248   </feature>
1249
1250
1251   <feature name="Old trackbed">
1252     <category>transport</category>
1253     <icon image="features/transport__railway_abandoned.png">
1254       <font size="14pt"><b>${name}</b></font>
1255     </icon>
1256
1257     <line/>
1258     <tag k="railway" v="abandoned"/>
1259     <inputSet ref="common"/>
1260   </feature>
1261
1262
1263   <feature name="Light rail line">
1264     <category>transport</category>
1265     <icon image="features/transport__tram.png">
1266       <font size="14pt">
1267         <b>${name}</b>
1268       </font>
1269     </icon>
1270
1271     <line/>
1272     <tag k="railway" v="light_rail"/>
1273     <inputSet ref="bridge"/>
1274     <inputSet ref="tunnel"/>
1275     <inputset ref="embankment-cutting"/>
1276     <inputSet ref="rail-electrification"/>
1277     <inputSet ref="common"/>
1278   </feature>
1279
1280
1281   <feature name="Tram line">
1282     <category>transport</category>
1283     <icon image="features/transport__tram.png">
1284       <font size="14pt"><b>${name}</b></font>
1285     </icon>
1286
1287     <line/>
1288     <tag k="railway" v="tram"/>
1289     <input ref="tram-route"/>
1290     <inputSet ref="bridge"/>
1291     <inputSet ref="tunnel"/>
1292     <inputset ref="embankment-cutting"/>
1293     <inputSet ref="rail-electrification"/>
1294     <inputSet ref="common"/>
1295   </feature>
1296
1297
1298   <feature name="Subway line">
1299     <category>transport</category>
1300     <icon image="features/transport__subway.png">
1301       <font size="14pt">
1302         <b>${name}</b>
1303       </font>
1304     </icon>
1305
1306     <line/>
1307     <tag k="railway" v="subway"/>
1308     <inputSet ref="bridge"/>
1309     <inputSet ref="tunnel"/>
1310     <inputset ref="embankment-cutting"/>
1311     <inputSet ref="rail-electrification"/>
1312     <inputSet ref="common"/>
1313   </feature>
1314
1315
1316   <feature name="Railway platform">
1317     <category>transport</category>
1318     <icon image="features/transport__railway_platform.png"/>
1319     <line/>
1320     <area/>
1321     <tag k="railway" v="platform"/>
1322     <input type="freetext" presence="onTagMatch" category="Naming" name="Reference" key="ref" description="The number of the platform" priority="low"/>
1323     <inputSet ref="common"/>
1324   </feature>
1325
1326
1327   <feature name="Bus station">
1328     <category>transport</category>
1329     <icon image="icons/transport_blank.png">
1330       <b>${name} ${addr:housename}</b><br/>
1331       ${addr:housenumber} ${addr:street} ${addr:postcode}
1332     </icon>
1333
1334     <area/>
1335     <tag k="amenity" v="bus_station"/>
1336     <tag k="building" v="yes"/>
1337     <inputSet ref="names"/>
1338     <inputSet ref="buildingAddress"/>
1339     <inputSet ref="common"/>
1340   </feature>
1341
1342
1343   <feature name="Airport">
1344     <category>transport</category>
1345     <icon image="icons/transport_airport_48.png"/>
1346     <tag k="aeroway" v="aerodrome"/>
1347     <area/>
1348     <point/>
1349     <inputSet ref="names"/>
1350     <input type="freetext" presence="always" category="Naming" name="International Air Transport Association (IATA) airport code" key="ref"/>
1351     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1352     <inputSet ref="common"/>
1353   </feature>
1354
1355
1356   <feature name="Airport terminal">
1357     <category>transport</category>
1358     <icon image="features/pois/transport_airport_terminal.n.24.png"/>
1359     <tag k="aeroway" v="terminal"/>
1360     <area/>
1361     <point/>
1362     <inputSet ref="names"/>
1363     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1364     <inputSet ref="common"/>
1365   </feature>
1366
1367
1368   <feature name="Helipad">
1369     <category>transport</category>
1370     <icon image="icons/transport_helipad_48.png"/>
1371     <tag k="aeroway" v="helipad"/>
1372     <area/>
1373     <point/>
1374     <inputSet ref="names"/>
1375     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1376     <inputSet ref="common"/>
1377   </feature>
1378
1379
1380   <feature name="Airport runway">
1381     <category>transport</category>
1382     <icon image="icons/transport_blank.png"/>
1383     <tag k="aeroway" v="runway"/>
1384     <line/>
1385     <inputSet ref="names"/>
1386     <input type="freetext" presence="always" category="Naming" name="Runway number (01-36)" key="ref"/>
1387     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1388     <inputSet ref="common"/>
1389   </feature>
1390
1391
1392   <feature name="Airport taxiway">
1393     <category>transport</category>
1394     <icon image="icons/transport_blank.png"/>
1395     <tag k="aeroway" v="taxiway"/>
1396     <line/>
1397     <inputSet ref="names"/>
1398     <input type="freetext" presence="always" category="Naming" name="Taxiway number" key="ref" />
1399     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1400     <inputSet ref="common"/>
1401   </feature>
1402
1403
1404   <feature name="Airport apron">
1405     <category>transport</category>
1406     <icon image="icons/transport_blank.png"/>
1407     <tag k="aeroway" v="apron"/>
1408     <area/>
1409     <inputSet ref="names"/>
1410     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1411     <inputSet ref="common"/>
1412   </feature>
1413
1414
1415   <feature name="Airport gate">
1416     <category>transport</category>
1417     <icon image="features/pois/transport_airport_gate.n.24.png"/>
1418     <tag k="aeroway" v="gate"/>
1419     <point/>
1420     <input type="freetext" presence="always" category="Naming" name="Gate number" key="ref"/>
1421     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1422     <inputSet ref="common"/>
1423   </feature>
1424
1425
1426   <!-- ************************************************************************
1427        Buildings
1428        ************************************************************************ -->
1429
1430   <feature name="School">
1431     <category>buildings</category>
1432     <icon image="features/pois/education_school.n.24.png">
1433       <b>${name} ${addr:housename}</b><br/>
1434       ${addr:housenumber} ${addr:street} ${addr:postcode}
1435     </icon>
1436
1437     <area/>
1438     <tag k="amenity" v="school"/>
1439     <tag k="building" v="yes"/>
1440     <inputSet ref="names"/>
1441     <inputSet ref="buildingAddress"/>
1442     <inputSet ref="common"/>
1443   </feature>
1444
1445
1446   <feature name="College">
1447     <category>buildings</category>
1448     <icon image="features/pois/education_university.n.24.png">
1449       <b>${name} ${addr:housename}</b><br/>
1450       ${addr:housenumber} ${addr:street} ${addr:postcode}
1451     </icon>
1452
1453     <area/>
1454     <tag k="amenity" v="college"/>
1455     <tag k="building" v="yes"/>
1456     <inputSet ref="names"/>
1457     <inputSet ref="buildingAddress"/>
1458     <inputSet ref="common"/>
1459   </feature>
1460
1461
1462   <feature name="Supermarket">
1463     <category>buildings</category>
1464     <icon image="features/pois/shopping_supermarket.n.24.png">
1465       <b>${name} ${addr:housename}</b><br/>
1466       ${addr:housenumber} ${addr:street} ${addr:postcode}
1467     </icon>
1468
1469     <area/>
1470     <tag k="shop" v="supermarket"/>
1471     <tag k="building" v="yes"/>
1472     <inputSet ref="names"/>
1473     <inputSet ref="buildingAddress"/>
1474     <inputSet ref="common"/>
1475   </feature>
1476
1477
1478   <feature name="Place of worship">
1479     <category>buildings</category>
1480     <icon image="icons/place_of_worship.png">
1481       <b>${name} ${addr:housename}</b><br/>
1482       ${addr:housenumber} ${addr:street} ${addr:postcode}
1483     </icon>
1484
1485     <area/>
1486     <tag k="amenity" v="place_of_worship"/>
1487     <tag k="building" v="yes"/>
1488     <inputSet ref="names"/>
1489     <inputSet ref="buildingAddress"/>
1490     <input type="choice" category="Religion" name="Religion" key="religion" description="The religion to which this place of worship belongs.">
1491       <choice value="christian" text="Christianity (church)"/>
1492       <choice value="jewish" text="Judaism (synagogue)"/>
1493     </input>
1494     <inputSet ref="common"/>
1495   </feature>
1496
1497
1498   <feature name="Public building">
1499     <category>buildings</category>
1500     <icon image="features/pois/building_generic.png">
1501       <b>${name} ${addr:housename}</b><br/>
1502       ${addr:housenumber} ${addr:street} ${addr:postcode}
1503     </icon>
1504
1505     <area/>
1506     <tag k="amenity" v="public_building"/>
1507     <tag k="building" v="yes"/>
1508     <inputSet ref="names"/>
1509     <inputSet ref="buildingAddress"/>
1510     <inputSet ref="common"/>
1511   </feature>
1512
1513
1514   <feature name="Hospital">
1515     <category>buildings</category>
1516     <icon image="features/pois/health_hospital.n.24.png">
1517       <b>${name} ${addr:housename}</b><br/>
1518       ${addr:housenumber} ${addr:street} ${addr:postcode}
1519     </icon>
1520
1521     <area/>
1522     <tag k="amenity" v="hospital"/>
1523     <tag k="building" v="yes"/>
1524     <inputSet ref="names"/>
1525     <inputSet ref="buildingAddress"/>
1526     <inputSet ref="common"/>
1527   </feature>
1528
1529
1530   <feature name="University">
1531     <category>buildings</category>
1532     <icon image="features/pois/education_university.n.24.png">
1533       <b>${name} ${addr:housename}</b><br/>
1534       ${addr:housenumber} ${addr:street} ${addr:postcode}
1535     </icon>
1536
1537     <area/>
1538     <tag k="amenity" v="university"/>
1539     <tag k="building" v="yes"/>
1540     <inputSet ref="names"/>
1541     <inputSet ref="buildingAddress"/>
1542     <inputSet ref="common"/>
1543   </feature>
1544
1545
1546   <feature name="Attraction">
1547     <category>buildings</category>
1548     <icon image="features/pois/tourist_attraction.n.24.png">
1549       <b>${name} ${addr:housename}</b><br/>
1550       ${addr:housenumber} ${addr:street} ${addr:postcode}
1551     </icon>
1552
1553     <area/>
1554     <tag k="tourism" v="attraction"/>
1555     <tag k="building" v="yes"/>
1556     <inputSet ref="names"/>
1557     <inputSet ref="buildingAddress"/>
1558     <inputSet ref="common"/>
1559   </feature>
1560
1561
1562   <feature name="Museum">
1563     <category>buildings</category>
1564     <icon image="features/pois/tourist_museum.n.24.png">
1565       <b>${name} ${addr:housename}</b><br/>
1566       ${addr:housenumber} ${addr:street} ${addr:postcode}
1567     </icon>
1568
1569     <area/>
1570     <tag k="tourism" v="museum"/>
1571     <tag k="building" v="yes"/>
1572     <inputSet ref="names"/>
1573     <inputSet ref="buildingAddress"/>
1574     <inputSet ref="common"/>
1575   </feature>
1576
1577
1578   <feature name="Zoo">
1579     <category>buildings</category>
1580     <icon image="features/pois/tourist_zoo.n.24.png">
1581       <b>${name} ${addr:housename}</b><br/>
1582       ${addr:housenumber} ${addr:street} ${addr:postcode}
1583     </icon>
1584
1585     <area/>
1586     <tag k="tourism" v="zoo"/>
1587     <tag k="building" v="yes"/>
1588     <inputSet ref="names"/>
1589     <inputSet ref="buildingAddress"/>
1590     <inputSet ref="common"/>
1591   </feature>
1592
1593
1594   <feature name="Stadium">
1595     <category>buildings</category>
1596     <icon image="icons/tourist_blank.png">
1597       <b>${name} ${addr:housename}</b><br/>
1598       ${addr:housenumber} ${addr:street} ${addr:postcode}
1599     </icon>
1600
1601     <area/>
1602     <tag k="leisure" v="stadium"/>
1603     <inputSet ref="names"/>
1604     <inputSet ref="buildingAddress"/>
1605     <inputSet ref="common"/>
1606   </feature>
1607
1608
1609   <feature name="Building">
1610     <category>buildings</category>
1611     <icon image="features/pois/building_generic.png">
1612       <b>${name} ${addr:housename}</b><br/>
1613       ${addr:housenumber} ${addr:street} ${addr:postcode}
1614     </icon>
1615
1616     <area/>
1617     <tag k="building" v="*"/>
1618     <inputSet ref="names"/>
1619     <inputSet ref="buildingAddress"/>
1620     <inputSet ref="common"/>
1621   </feature>
1622
1623
1624   <feature name="Sports centre">
1625     <category>buildings</category>
1626     <icon >
1627       <b>${name} ${addr:housename}</b><br/>
1628       ${addr:housenumber} ${addr:street} ${addr:postcode}
1629     </icon>
1630
1631     <area/>
1632     <point/>
1633     <tag k="leisure" v="sports_centre"/>
1634     <inputSet ref="names"/>
1635     <inputSet ref="buildingAddress"/>
1636     <inputSet ref="pitchSport"/>
1637     <inputSet ref="common"/>
1638   </feature>
1639
1640
1641
1642   <!-- ************************************************************************
1643        Landuse
1644        ************************************************************************ -->
1645
1646   <feature name="Industry">
1647     <category>landuse</category>
1648     <area/>
1649     <icon image="features/pois/building_generic.png">
1650       <b>${name}</b>
1651     </icon>
1652     <tag k="landuse" v="industrial"/>
1653     <inputSet ref="simpleName"/>
1654     <inputSet ref="common"/>
1655   </feature>
1656
1657
1658   <feature name="Offices">
1659     <category>landuse</category>
1660     <area/>
1661     <icon image="features/pois/building_generic.png">
1662       <b>${name}</b>
1663     </icon>
1664     <tag k="landuse" v="commercial"/>
1665     <inputSet ref="simpleName"/>
1666     <inputSet ref="common"/>
1667   </feature>
1668
1669   <feature name="Residential">
1670     <category>landuse</category>
1671     <area/>
1672     <icon image="features/pois/building_generic.png">
1673       <b>${name}</b>
1674     </icon>
1675     <tag k="landuse" v="residential"/>
1676     <inputSet ref="simpleName"/>
1677     <inputSet ref="common"/>
1678   </feature>
1679
1680   <feature name="Retail">
1681     <category>landuse</category>
1682     <area/>
1683     <icon image="features/pois/building_generic.png">
1684       <b>${name}</b>
1685     </icon>
1686     <tag k="landuse" v="retail"/>
1687     <inputSet ref="simpleName"/>
1688     <inputSet ref="common"/>
1689   </feature>
1690
1691
1692   <feature name="Marketplace">
1693     <category>landuse</category>
1694     <area/>
1695     <icon image="features/pois/shopping_greengrocer.n.24.png">
1696       <b>${name}</b>
1697     </icon>
1698     <tag k="amenity" v="marketplace"/>
1699     <inputSet ref="simpleName"/>
1700     <inputSet ref="common"/>
1701   </feature>
1702
1703
1704   <feature name="Cemetery">
1705     <category>landuse</category>
1706     <area/>
1707     <icon image="features/pois/place_of_worship_unknown3.n.24.png">
1708       <b>${name}</b>
1709     </icon>
1710     <tag k="landuse" v="cemetery"/>
1711     <inputSet ref="simpleName"/>
1712     <inputSet ref="common"/>
1713   </feature>
1714
1715
1716   <feature name="Quarry">
1717     <category>landuse</category>
1718     <icon image="features/pois/poi_mine.n.24.png"/>
1719     <area/>
1720     <tag k="landuse" v="quarry"/>
1721     <inputSet ref="simpleName"/>
1722     <inputSet ref="common"/>
1723   </feature>
1724
1725
1726   <feature name="Military">
1727     <category>landuse</category>
1728     <icon image="features/pois/poi_military_bunker.n.24.png"/>
1729     <area/>
1730     <tag k="landuse" v="military"/>
1731     <inputSet ref="simpleName"/>
1732     <inputSet ref="common"/>
1733   </feature>
1734
1735
1736   <feature name="Conservation">
1737     <category>natural</category>
1738     <icon image="icons/natural_blank.png"/>
1739     <area/>
1740     <tag k="landuse" v="conservation"/>
1741     <inputSet ref="simpleName"/>
1742     <inputSet ref="common"/>
1743   </feature>
1744
1745
1746
1747
1748
1749   <feature name="Playground">
1750     <category>landuse</category>
1751     <area/>
1752     <icon image="features/pois/sport_leisure_centre.n.24.png">
1753       <b>${name}</b>
1754     </icon>
1755     <tag k="leisure" v="playground"/>
1756     <inputSet ref="simpleName"/>
1757     <inputSet ref="common"/>
1758   </feature>
1759
1760
1761   <feature name="Golf course">
1762     <category>landuse</category>
1763     <area/>
1764     <icon  image="features/pois/sport_golf.n.24.png">
1765       <b>${name}</b>
1766     </icon>
1767     <tag k="leisure" v="golf_course"/>
1768     <inputSet ref="simpleName"/>
1769     <inputSet ref="common"/>
1770   </feature>
1771
1772
1773   <feature name="Recreation ground">
1774     <category>landuse</category>
1775     <area/>
1776     <icon image="features/pois/sport_leisure_centre.n.24.png">
1777       <b>${name}</b>
1778     </icon>
1779     <tag k="leisure" v="recreation_ground"/>
1780     <inputSet ref="simpleName"/>
1781     <inputSet ref="common"/>
1782   </feature>
1783
1784
1785   <feature name="Sports pitch">
1786     <category>landuse</category>
1787     <area/>
1788     <icon image="features/pois/sport_leisure_centre.n.24.png">
1789       <b>${name}</b>
1790     </icon>
1791     <tag k="leisure" v="pitch"/>
1792     <inputSet ref="simpleName"/>
1793     <inputSet ref="pitchSport"/>
1794     <inputSet ref="common"/>
1795   </feature>
1796
1797
1798   <inputSet id="pitchSport">
1799     <input name="Sport" presence="always" category="Sport" key="sport" type="choice" description="The sport that is predominantly played here.">
1800       <choice value="9pin" text="9 pin bowling"/>
1801       <choice value="10pin" text="10 pin bowling"/>
1802       <choice value="american_football" text="American football"/>
1803       <choice value="archery" text="Archery"/>
1804       <choice value="athletics" text="Athletics"/>
1805       <choice value="australian_football" text="Australian Rules Football"/>
1806       <choice value="baseball" text="Baseball"/>
1807       <choice value="basketball" text="Basketball"/>
1808       <choice value="beachvolleyball" text="Beach volleyball"/>
1809       <choice value="boules" text="Boules/petanque/bocci"/>
1810       <choice value="bowls" text="Lawn bowls"/>
1811       <choice value="canadian_football" text="Canadian football"/>
1812       <choice value="chess" text="Chess"/>
1813       <choice value="cricket" text="Cricket"/>
1814       <choice value="cricket_nets" text="Cricket nets"/>
1815       <choice value="croquet" text="Croquet"/>
1816       <choice value="equestrian" text="Equestrian"/>
1817       <choice value="gaelic_football" text="Gaelic football"/>
1818       <choice value="gymnastics" text="Gymnastics"/>
1819       <choice value="team_handball" text="(Team) handball"/>
1820       <choice value="hockey" text="(Field) hockey"/>
1821       <choice value="korfball" text="Korball"/>
1822       <choice value="pelota" text="Pelota"/>
1823       <choice value="rugby_league" text="Rugby league"/>
1824       <choice value="rugby_union" text="Rugby union"/>
1825       <choice value="shooting" text="Shooting"/>
1826       <choice value="skating" text="Ice skating"/>
1827       <choice value="skateboard" text="Skateboarding"/>
1828       <choice value="soccer" text="Soccer/football"/>
1829       <choice value="swimming" text="Swimming"/>
1830       <choice value="table_tennis" text="Table tennis"/>
1831       <choice value="tennis" text="Tennis"/>
1832       <choice value="volleyball" text="Volleyball"/>
1833     </input>
1834   </inputSet>
1835
1836   <feature name="Sports track">
1837     <category>landuse</category>
1838     <area/>
1839     <icon image="features/pois/sport_leisure_centre.n.24.png">
1840       <b>${name}</b>
1841     </icon>
1842     <tag k="leisure" v="track"/>
1843     <inputSet ref="simpleName"/>
1844     <inputSet ref="common"/>
1845   </feature>
1846
1847
1848   <!-- ************************************************************************
1849        Power
1850        ************************************************************************ -->
1851
1852   <feature name="High-voltage line">
1853     <category>power</category>
1854     <icon image="features/power_high.png"/>
1855     <line/>
1856     <tag k="power" v="line"/>
1857     <inputSet ref="powerCables"/>
1858     <inputSet ref="common"/>
1859   </feature>
1860
1861
1862   <feature name="Low-voltage line">
1863     <category>power</category>
1864     <icon image="features/power_low.png"/>
1865     <line/>
1866     <tag k="power" v="minor_line"/>
1867     <inputSet ref="powerCables"/>
1868     <inputSet ref="common"/>
1869   </feature>
1870
1871
1872   <feature name="High-voltage pylon">
1873     <category>power</category>
1874     <icon image="icons/power_tower_24.png"/>
1875     <point/>
1876     <tag k="power" v="tower"/>
1877     <inputSet ref="common"/>
1878   </feature>
1879
1880
1881   <feature name="Power pole">
1882     <category>power</category>
1883     <icon image="icons/power_pole_24.png"/>
1884     <point/>
1885     <tag k="power" v="pole"/>
1886     <inputSet ref="common"/>
1887   </feature>
1888
1889
1890   <feature name="Plant (station)">
1891     <category>power</category>
1892     <icon image="icons/power_blank.png"/>
1893     <area/>
1894     <point/>
1895     <tag k="power" v="generator"/>
1896     <inputSet ref="names"/>
1897     <input type="choice" presence="always"  name="Energy source" key="power_source" category="Power">
1898       <choice value="coal" text="Coal"/>
1899       <choice value="gas" text="Gas"/>
1900       <choice value="oil" text="Oil"/>
1901       <choice value="fossil" text="Unspecified fossil fuel"/>
1902       <choice value="hydro" text="Hydroelectric"/>
1903       <choice value="geothermal" text="Geothermal"/>
1904       <choice value="nuclear" text="Nuclear"/>
1905       <choice value="wind" text="Wind"/>
1906       <choice value="photovoltaic" text="Solar PV"/>
1907       <choice value="solar_thermal" text="Solar thermal"/>
1908       <choice value="biofuel" text="Biofuel"/>
1909     </input>
1910     <inputSet ref="common"/>
1911   </feature>
1912
1913
1914   <feature name="Substation">
1915     <category>power</category>
1916     <icon image="icons/power_blank.png"/>"
1917     <area/>
1918     <point/>
1919     <tag k="power" v="station"/>
1920     <inputSet ref="common"/>
1921   </feature>
1922
1923
1924   <feature name="Transformer">
1925     <category>power</category>
1926     <icon image="icons/power_blank.png"/>
1927     <area/>
1928     <point/>
1929     <tag k="power" v="sub_station"/>
1930     <inputSet ref="common"/>
1931   </feature>
1932
1933
1934   <inputSet id="powerCables">
1935     <input type="choice" name="Cables" key="cables" presence="always" category="Power">
1936       <choice value="2" text="2"/>
1937       <choice value="3" text="3"/>
1938       <choice value="4" text="4"/>
1939       <choice value="6" text="6"/>
1940       <choice value="8" text="8"/>
1941       <choice value="10" text="10"/>
1942       <choice value="12" text="12"/>
1943     </input>
1944     <input type="choice" name="Voltage" key="voltage" presence="always" category="Power">
1945       <!-- choices based on http://osmdoc.com/en/tag/voltage/#values-->
1946       <choice value="400" text="400 V"/>
1947       <choice value="600" text="600 V"/>
1948       <choice value="750" text="750 V"/>
1949       <choice value="1500" text="1500 V"/>
1950       <choice value="3000" text="3000 V"/>
1951       <choice value="15000" text="15 kV"/>
1952       <choice value="20000" text="20 kV"/>
1953       <choice value="35000" text="35 kV"/>
1954       <choice value="110000" text="110 kV"/>
1955       <choice value="132000" text="132 kV"/>
1956       <choice value="138000" text="238 kV"/>
1957       <choice value="220000" text="220 kV"/>
1958       <choice value="380000" text="380 kV"/>
1959     </input>
1960   </inputSet>
1961
1962   <!-- Places -->
1963   <feature name="Place">
1964     <category>misc</category>
1965     <icon image="icons/place.png"/>
1966     <point/>
1967     <area/>
1968     <!-- TODO: make this work -->
1969     <tag k="place" v="*"/>
1970     <inputSet ref="names"/>
1971     <input type="choice" name="Type of place name" presence="always" key="place">
1972       <choice value="locality" text="Locality"/>
1973       <choice value="hamlet" text="Hamlet"/>
1974       <choice value="village" text="Village"/>
1975       <choice value="suburb" text="Suburb"/>
1976       <choice value="county" text="County"/>
1977       <choice value="city" text="City"/>
1978       <choice value="region" text="Region"/>
1979       <choice value="state" text="State"/>
1980       <choice value="country" text="Country"/>
1981       <choice value="continent" text="Continent"/>
1982       <choice value="island" text="Island"/>
1983       <choice value="islet" text="Islet"/>
1984     </input>
1985     <inputSet ref="common"/>
1986   </feature>
1987
1988
1989
1990
1991   <!-- ************************************************************************
1992        POIs
1993        ************************************************************************ -->
1994
1995   <!-- =========== Amenity ============ -->
1996
1997   <feature name="Fire station">
1998     <category>amenity</category>
1999     <icon image="features/pois/amenity_firestation2.n.24.png"/>
2000     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfire_station</help>
2001     <point/>
2002     <tag k="amenity" v="fire_station"/>
2003     <input type="freetext" presence="always" category="" name="name" key="name" description="The Name of it." priority="low"/>
2004     <inputSet ref="common"/>
2005   </feature>
2006
2007
2008   <feature name="Police Station">
2009     <category>amenity</category>
2010     <icon image="features/pois/amenity_police2.n.24.png"/>
2011     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpolice</help>
2012     <point/>
2013     <tag k="amenity" v="police"/>
2014     <input type="freetext" presence="always" category="" name="name" key="name" description="The Name of it." priority="low"/>
2015     <inputSet ref="common"/>
2016   </feature>
2017
2018
2019   <feature name="Hospital">
2020     <category>amenity</category>
2021     <icon image="features/pois/health_hospital.n.24.png"/>
2022     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dhospital</help>
2023     <point/>
2024     <tag k="amenity" v="hospital"/>
2025     <input type="freetext" presence="always" category="" name="name" key="name" description="The Name of it." priority="low"/>
2026     <inputSet ref="common"/>
2027   </feature>
2028
2029
2030   <feature name="Place of Worship">
2031     <category>amenity</category>
2032     <icon image="icons/place_of_worship.png"/>
2033     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dplace_of_worship</help>
2034     <point/>
2035     <tag k="amenity" v="place_of_worship"/>
2036     <input type="freetext" presence="always" category="" name="name" key="name" description="The name of it." priority="low"/>
2037     <input type="choice" presence="always" category="" name="Religion" key="religion" description="The religion worshipped here.">
2038       <choice value="christian" text="Christianity (church)"/>
2039       <choice value="jewish" text="Judaism (synagogue)"/>
2040       <choice value="muslim" text="Islam (mosque)"/>
2041       <choice value="hindu" text="Hinduism (temple)"/>
2042       <choice value="buddhist" text="Buddhism (temple)"/>
2043       <choice value="sikh" text="Sikhism (gurdwara)"/>
2044       <choice value="shinto" text="Shinto (shrine)"/>
2045     </input>
2046
2047     <input type="freetext" presence="always" category="" name="denomination" key="denomination" description="The denomination of the religion worshiped here." priority="low"/>
2048     <inputSet ref="common"/>
2049   </feature>
2050
2051
2052   <feature name="ATM">
2053     <category>amenity</category>
2054     <icon image="features/pois/money_atm.n.24.png"/>
2055     <help>http://wiki.openstreetmap.org/wiki/Atm</help>
2056     <point/>
2057     <tag k="amenity" v="atm"/>
2058     <input type="freetext" presence="always" category="Banking" name="Operator" key="operator" description="The organisation that provides this ATM" priority="low"/>
2059     <input type="freetext" presence="always" category="Banking" name="Fee" key="fee" description="Is there a charge for using this ATM? If so how much?"/>
2060     <inputSet ref="common"/>
2061   </feature>
2062
2063
2064   <feature name="Bank">
2065     <category>amenity</category>
2066     <icon image="features/pois/money_bank2.n.24.png">
2067       ${name}
2068     </icon>
2069     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbank</help>
2070     <point/>
2071     <tag k="amenity" v="bank"/>
2072     <inputSet ref="names"/>
2073     <inputSet ref="buildingAddress"/>
2074     <input type="choice" presence="always" category="Bank" name="Public ATM available" key="atm" description="Is there a public ATM available?">
2075       <choice value="yes" text="Yes"/>
2076       <choice value="no" text="No"/>
2077     </input>
2078     <inputSet ref="common"/>
2079   </feature>
2080
2081
2082   <feature name="Recycling">
2083     <category>amenity</category>
2084     <icon image="features/pois/amenity_recycling.n.24.png"/>
2085     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Drecycling</help>
2086     <point/>
2087     <tag k="amenity" v="recycling"/>
2088     <inputSet ref="common"/>
2089   </feature>
2090
2091
2092   <feature name="School">
2093     <category>amenity</category>
2094     <icon image="features/pois/education_school.n.24.png">
2095       ${name}
2096     </icon>
2097     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dschool</help>
2098     <point/>
2099     <tag k="amenity" v="school"/>
2100     <inputSet ref="names"/>
2101     <inputSet ref="buildingAddress"/>
2102     <inputSet ref="common"/>
2103   </feature>
2104
2105
2106   <feature name="Post Box">
2107     <category>amenity</category>
2108     <icon image="features/pois/amenity_post_box.n.24.png">
2109       ${ref}
2110     </icon>
2111     <help>http://wiki.openstreetmap.org/wiki/Post_box</help>
2112     <point/>
2113     <tag k="amenity" v="post_box"/>
2114     <input type="freetext" presence="always" category="Naming" name="Ref" key="ref" description="Reference number of the post box"/>
2115     <input type="freetext" presence="always" category="Naming" name="Operator" key="operator" description="The provider of the postal service" priority="low"/>
2116     <inputSet ref="common"/>
2117   </feature>
2118
2119
2120   <!-- ========= Accommodation ========= -->
2121   <!-- Split off from tourism by Steve Bennett, can be remerged if it doesn't work out. -->
2122   <feature name="Hotel">
2123     <category>accommodation</category>
2124     <icon image="features/pois/accommodation_hotel.n.24.png"/>
2125     <help>http://wiki.openstreetmap.org/wiki/Tag:tourism%3Dhotel</help>
2126     <point/>
2127     <area/>
2128     <tag k="tourism" v="hotel"/>
2129     <inputSet ref="simpleName"/>
2130     <inputSet ref="common"/>
2131   </feature>
2132
2133
2134   <feature name="Motel">
2135     <category>accommodation</category>
2136     <help>http://wiki.openstreetmap.org/wiki/Tag:tourism%3Dmotel</help>
2137     <point/>
2138     <area/>
2139     <icon image="features/pois/accommodation_motel.n.24.png"/>
2140     <tag k="tourism" v="motel"/>
2141     <inputSet ref="simpleName"/>
2142     <inputSet ref="common"/>
2143   </feature>
2144
2145
2146
2147   <feature name="Hostel">
2148     <category>accommodation</category>
2149     <point/>
2150     <area/>
2151     <inputSet ref="simpleName"/>
2152     <icon image="features/pois/accommodation_youth_hostel.n.24.png"/>
2153     <tag k="tourism" v="hostel"/>
2154     <inputSet ref="common"/>
2155   </feature>
2156
2157
2158   <!-- Note that tourism=bed_and_breakfast also gets some use. -->
2159   <feature name="Guesthouse (B&amp;B)">
2160     <category>accommodation</category>
2161     <point/>
2162     <area/>
2163     <inputSet ref="simpleName"/>
2164     <icon image="features/pois/accommodation_bed_and_breakfast.n.24.png"/>
2165     <tag k="tourism" v="guest_house"/>
2166     <inputSet ref="common"/>
2167   </feature>
2168
2169
2170   <feature name="Campsite">
2171     <category>accommodation</category>
2172     <point/>
2173     <area/>
2174     <inputSet ref="simpleName"/>
2175     <icon image="features/pois/accommodation_camping.n.24.png"/>
2176     <tag k="tourism" v="camp_site"/>
2177     <inputSet ref="common"/>
2178   </feature>
2179
2180
2181   <feature name="Caravan park">
2182     <category>accommodation</category>
2183     <point/>
2184     <area/>
2185     <inputSet ref="simpleName"/>
2186     <icon image="features/pois/accommodation_caravan_park.n.24.png"/>
2187     <tag k="tourism" v="caravan_site"/>
2188     <inputSet ref="common"/>
2189   </feature>
2190
2191
2192   <feature name="Alpine hut">
2193     <category>accommodation</category>
2194     <point/>
2195     <area/>
2196     <inputSet ref="simpleName"/>
2197     <icon image="features/pois/accommodation_alpinehut.n.24.png"/>
2198     <tag k="tourism" v="alpine_hut"/>
2199     <inputSet ref="common"/>
2200   </feature>
2201
2202
2203   <feature name="Chalet">
2204     <category>accommodation</category>
2205     <icon image="features/pois/accommodation_chalet.n.24.png"/>
2206     <point/>
2207     <area/>
2208     <inputSet ref="simpleName"/>
2209     <tag k="tourism" v="chalet"/>
2210     <inputSet ref="common"/>
2211   </feature>
2212
2213
2214
2215   <!-- ========= Tourism ========= -->
2216
2217   <!-- This is a very popular tag, can't be left out -->
2218   <feature name="Attraction">
2219     <category>tourism</category>
2220     <icon image="icons/tourist_blank.png"/>
2221     <point/>
2222     <area/>
2223     <inputSet ref="simpleName"/>
2224     <tag k="tourism" v="attraction"/>
2225     <inputSet ref="common"/>
2226   </feature>
2227
2228
2229
2230
2231   <feature name="Museum">
2232     <category>tourism</category>
2233     <icon image="features/pois/tourist_museum.n.24.png"/>
2234     <help>http://wiki.openstreetmap.org/wiki/Tag:tourism%3Dmuseum</help>
2235     <point/>
2236     <area/>
2237     <tag k="tourism" v="museum"/>
2238     <inputSet ref="simpleName"/>
2239     <inputSet ref="common"/>
2240   </feature>
2241
2242
2243   <feature name="Archaeological">
2244     <category>tourism</category>
2245     <point/>
2246     <area/>
2247     <inputSet ref="simpleName"/>
2248     <icon image="features/pois/tourist_archaeological.n.24.png"/>
2249     <tag k="historic" v="archaeological_site"/>
2250     <inputSet ref="common"/>
2251   </feature>
2252
2253
2254   <feature name="Battlefield">
2255     <category>tourism</category>
2256     <point/>
2257     <area/>
2258     <inputSet ref="simpleName"/>
2259     <icon image="features/pois/tourist_battlefield.n.24.png"/>
2260     <tag k="historic" v="battlefield"/>
2261     <inputSet ref="common"/>
2262   </feature>
2263
2264
2265   <feature name="Castle">
2266     <category>tourism</category>
2267     <point/>
2268     <area/>
2269     <inputSet ref="simpleName"/>
2270     <icon image="features/pois/tourist_castle.n.24.png"/>
2271     <tag k="historic" v="castle"/>
2272     <inputSet ref="common"/>
2273   </feature>
2274
2275
2276   <feature name="Memorial">
2277     <category>tourism</category>
2278     <point/>
2279     <inputSet ref="simpleName"/>
2280     <icon image="features/pois/tourist_memorial.n.24.png"/>
2281     <tag k="historic" v="memorial"/>
2282     <inputSet ref="common"/>
2283   </feature>
2284
2285
2286   <feature name="Monument">
2287     <category>tourism</category>
2288     <point/>
2289     <inputSet ref="simpleName"/>
2290     <icon image="features/pois/tourist_monument.n.24.png"/>
2291     <tag k="historic" v="monument"/>
2292     <inputSet ref="common"/>
2293   </feature>
2294
2295
2296   <feature name="Picnic site">
2297     <category>tourism</category>
2298     <point/>
2299     <inputSet ref="simpleName"/>
2300     <icon image="features/pois/tourist_picnic.n.24.png"/>
2301     <tag k="tourism" v="picnic_site"/>
2302     <inputSet ref="common"/>
2303   </feature>
2304
2305
2306   <feature name="Ruin">
2307     <category>tourism</category>
2308     <point/>
2309     <area/>
2310     <inputSet ref="simpleName"/>
2311     <icon image="features/pois/tourist_ruin.n.24.png"/>
2312     <tag k="historic" v="ruin"/>
2313     <inputSet ref="common"/>
2314   </feature>
2315
2316
2317   <feature name="Cinema">
2318     <category>tourism</category>
2319     <icon image="features/pois/tourist_cinema.n.24.png"/>
2320     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcinema</help>
2321     <point/>
2322     <area/>
2323     <tag k="amenity" v="cinema"/>
2324     <input type="freetext" presence="always" category="" name="name" key="name" description="The name of the cinema" priority="low"/>
2325     <inputSet ref="common"/>
2326   </feature>
2327
2328
2329   <feature name="Theatre">
2330     <category>tourism</category>
2331     <point/>
2332     <area/>
2333     <inputSet ref="simpleName"/>
2334     <icon image="features/pois/tourist_theatre.n.24.png"/>
2335     <tag k="amenity" v="theatre"/>
2336     <inputSet ref="common"/>
2337   </feature>
2338
2339
2340   <feature name="Viewpoint">
2341     <category>tourism</category>
2342     <point/>
2343     <inputSet ref="simpleName"/>
2344     <icon image="features/pois/tourist_view_point.n.24.png"/>
2345     <tag k="tourism" v="viewpoint"/>
2346     <inputSet ref="common"/>
2347   </feature>
2348
2349
2350   <feature name="Zoo">
2351     <category>tourism</category>
2352     <point/>
2353     <area/>
2354     <inputSet ref="simpleName"/>
2355     <icon image="features/pois/tourist_zoo.n.24.png"/>
2356     <tag k="tourism" v="zoo"/>
2357     <inputSet ref="common"/>
2358   </feature>
2359
2360
2361   <!-- icons needed-->
2362   <feature name="Information">
2363     <category>tourism</category>
2364     <icon image="features/pois/amenity_information.n.24.png"/>
2365     <point/>
2366     <inputSet ref="simpleName"/>
2367     <tag k="tourism" v="information"/>
2368     <inputSet ref="common"/>
2369   </feature>
2370
2371
2372   <feature name="Artwork">
2373     <category>tourism</category>
2374     <icon image="features/pois/tourist_art_gallery2.n.24.png"/>
2375     <point/>
2376     <inputSet ref="simpleName"/>
2377     <tag k="tourism" v="artwork"/>
2378     <inputSet ref="common"/>
2379   </feature>
2380
2381
2382
2383   <feature name="Theme park">
2384     <category>tourism</category>
2385     <icon image="features/pois/tourist_theme_park.n.24.png"/>
2386     <point/>
2387     <area/>
2388     <inputSet ref="simpleName"/>
2389     <tag k="tourism" v="theme_park"/>
2390     <inputSet ref="common"/>
2391   </feature>
2392
2393
2394
2395   <!-- ========= Transport ========= -->
2396
2397   <feature name="Aerodrome">
2398     <category>aeroway</category>
2399     <icon image="features/pois/transport_aerodrome.n.24.png"/>
2400     <help>http://wiki.openstreetmap.org/wiki/Tag:aeroway%3Daerodrome</help>
2401     <point/>
2402     <tag k="aeroway" v="aerodrome"/>
2403     <input type="freetext" presence="always" category="" name="name" key="name" description="The name of the aerodrome/airport" priority="low"/>
2404     <inputSet ref="common"/>
2405   </feature>
2406
2407
2408   <feature name="Bus Stop">
2409     <category>transport</category>
2410     <icon image="features/pois/transport_bus_stop2.n.24.png">
2411       ${name} ${local_ref}
2412     </icon>
2413     <point/>
2414     <tag k="highway" v="bus_stop"/>
2415     <inputSet ref="buses"/>
2416     <inputSet ref="common"/>
2417   </feature>
2418
2419
2420   <feature name="Car Parking">
2421     <category>transport</category>
2422     <icon image="features/pois/transport_parking_car.n.24.png">
2423       ${name}
2424     </icon>
2425     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dparking</help>
2426     <point/>
2427     <area/>
2428     <tag k="amenity" v="parking"/>
2429     <inputSet ref="names"/>
2430     <input type="freetext" presence="onTagMatch" category="Naming" name="Operator" key="operator" description="The provider of the postal service" priority="low"/>
2431     <input type="number" minimum="0" maximum="99999" stepSize="1" presence="always" category="Parking" name="Capacity" key="capacity" description="The number of cars that can be parked in the car park"/>
2432     <inputSet ref="fee"/>
2433     <inputSet ref="common"/>
2434   </feature>
2435
2436
2437   <feature name="Bicycle Parking">
2438     <category>transport</category>
2439     <icon image="features/pois/transport_parking_bicycle.n.24.png">
2440       ${name} ${capacity}
2441     </icon>
2442     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_parking</help>
2443     <point/>
2444     <tag k="amenity" v="bicycle_parking"/>
2445     <inputSet ref="names"/>
2446     <input type="freetext" presence="onTagMatch" category="Naming" name="Operator" key="operator" description="The provider of the postal service" priority="low"/>
2447     <input type="number" minimum="0" maximum="99999" stepSize="1"
2448         presence="always" category="Cycle" name="Capacity" key="capacity"
2449         description="The number of bicycles that can be parked in the group of bicycle parking racks"/>
2450     <inputSet ref="fee"/>
2451     <input type="choice" presence="always" category="Cycle" name="Covered" key="covered" description="Is the cycle parking covered, so that the bikes are kept dry?">
2452       <choice value="yes" text="Yes"/>
2453       <choice value="no" text="No"/>
2454     </input>
2455     <inputSet ref="common"/>
2456   </feature>
2457
2458
2459   <feature name="Railway station">
2460     <category>transport</category>
2461     <icon image="features/pois/transport_train_station.n.24.png">
2462       <font size="14pt">
2463         <b>${name}</b>
2464       </font>
2465     </icon>
2466
2467     <point/>
2468     <tag k="railway" v="station"/>
2469     <inputSet ref="names"/>
2470     <input type="freetext" presence="onTagMatch" category="Naming" name="Reference" key="ref" description="The shortcode/reference for the station" priority="low"/>
2471     <input type="freetext" presence="onTagMatch" category="Naming" name="Operator" key="operator" description="The provider of the service" priority="low"/>
2472     <inputSet ref="common"/>
2473   </feature>
2474
2475
2476   <feature name="Fuel">
2477     <category>transport</category>
2478     <point/>
2479     <inputSet ref="simpleName"/>
2480     <icon image="features/pois/transport_fuel.n.24.png"/>
2481     <tag k="amenity" v="fuel"/>
2482     <input type="freetext" category="Naming" name="Operator" key="operator" description="The provider of the service"/>
2483     <input type="choice" category="Fuels" name="Diesel" key="diesel" description="Is diesel fuel sold here?">
2484       <choice value="yes" text="Yes"/>
2485       <choice value="no" text="No"/>
2486     </input>
2487     <input type="choice" category="Fuels" name="Octane 91" key="diesel" description="Is octane 91 unleaded fuel sold here?">
2488       <choice value="yes" text="Yes"/>
2489       <choice value="no" text="No"/>
2490     </input>
2491     <input type="choice" category="Fuels" name="Octane 95" key="octane_95" description="Is octane 95 unleaded fuel sold here?">
2492       <choice value="yes" text="Yes"/>
2493       <choice value="no" text="No"/>
2494     </input>
2495     <input type="choice" category="Fuels" name="Octane 98" key="octane_98" description="Is octane 98 unleaded fuel sold here?">
2496       <choice value="yes" text="Yes"/>
2497       <choice value="no" text="No"/>
2498     </input>
2499     <input type="choice" category="Fuels" name="Octane 100" key="octane_100" description="Is octane 100 unleaded fuel sold here?">
2500       <choice value="yes" text="Yes"/>
2501       <choice value="no" text="No"/>
2502     </input>
2503     <input type="choice" category="Fuels" name="Ethanol" key="ethanol" description="Is ethanol sold here?">
2504       <choice value="yes" text="Yes"/>
2505       <choice value="no" text="No"/>
2506     </input>
2507     <input type="choice" category="Fuels" name="LPG" key="lpg" description="Is LPG (liquid petroleum gas) sold here?">
2508       <choice value="yes" text="Yes"/>
2509       <choice value="no" text="No"/>
2510     </input>
2511     <input type="choice" category="Fuels" name="Octane 91" key="diesel" description="Is octane 91 unleaded fuel sold here?">
2512       <choice value="yes" text="Yes"/>
2513       <choice value="no" text="No"/>
2514     </input>
2515     <input type="choice" category="Fuels" name="Bio-diesel" key="biodiesel" description="Is biodiesel unleaded fuel sold here?">
2516       <choice value="yes" text="Yes"/>
2517       <choice value="no" text="No"/>
2518     </input>
2519
2520
2521     <inputSet ref="common"/>
2522   </feature>
2523
2524
2525   <feature name="Bus station">
2526     <category>transport</category>
2527     <point/>
2528     <inputSet ref="simpleName"/>
2529     <icon image="features/pois/transport_bus_station.n.24.png"/>
2530     <tag k="amenity" v="bus_station"/>
2531     <inputSet ref="common"/>
2532   </feature>
2533
2534
2535   <feature name="Taxi rank">
2536     <category>transport</category>
2537     <point/>
2538     <inputSet ref="simpleName"/>
2539     <icon image="features/pois/transport_taxi_rank.n.24.png"/>
2540     <tag k="amenity" v="taxi"/>
2541     <inputSet ref="common"/>
2542   </feature>
2543
2544
2545   <feature name="Tram stop">
2546     <category>transport</category><point/><inputSet ref="simpleName" />
2547     <icon image="features/pois/transport_tram_stop.n.24.png"/>
2548     <tag k="railway" v="tram_stop"/>
2549     <inputSet ref="common"/>
2550   </feature>
2551
2552
2553   <feature name="Bicycle rental">
2554     <category>transport</category>
2555     <point/>
2556     <inputSet ref="simpleName"/>
2557     <icon image="features/pois/transport_rental_bicycle.n.24.png"/>
2558     <tag k="amenity" v="bicycle_rental"/>
2559     <inputSet ref="common"/>
2560   </feature>
2561
2562
2563   <feature name="Car rental">
2564     <category>transport</category>
2565     <point/>
2566     <inputSet ref="simpleName"/>
2567     <icon image="features/pois/transport_rental_car.n.24.png"/>
2568     <tag k="amenity" v="car_rental"/>
2569     <inputSet ref="common"/>
2570   </feature>
2571
2572
2573   <feature name="Ferry Terminal">
2574     <category>transport</category>
2575     <icon image="features/pois/transport_port.n.24.png"/>
2576     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dferry_terminal</help>
2577     <point/>
2578     <tag k="amenity" v="ferry_terminal"/>
2579     <input type="freetext" presence="always" category="" name="name" key="name" description="The name of the ferry terminal."/>
2580     <input type="freetext" presence="always" category="" name="Operator" key="operator" description="The operator of the ferry terminal." priority="low"/>
2581     <input type="freetext" presence="onTagMatch" category="Cargo" name="Cargo" key="cargo" description="The cargo shipped from here." priority="low"/>
2582     <inputSet ref="common"/>
2583   </feature>
2584
2585
2586   <!-- ========= Barriers ========= -->
2587
2588   <feature name="Bollard">
2589     <category>barrier</category>
2590     <icon image="features/pois/barrier_bollard.n.24.png">
2591     </icon>
2592     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard</help>
2593
2594     <point/>
2595     <tag k="barrier" v="bollard"/>
2596     <inputSet ref="common"/>
2597   </feature>
2598
2599
2600   <feature name="Gate">
2601     <category>barrier</category>
2602     <icon image="features/pois/barrier_gate.n.24.png">
2603     </icon>
2604     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dgate</help>
2605
2606     <point/>
2607     <tag k="barrier" v="gate"/>
2608     <inputSet ref="common"/>
2609   </feature>
2610
2611
2612   <feature name="Lift Gate">
2613     <category>barrier</category>
2614     <icon image="features/pois/barrier_lift_gate.n.24.png"/>
2615     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dlift_gate</help>
2616     <point/>
2617     <tag k="barrier" v="lift_gate"/>
2618     <inputSet ref="common"/>
2619   </feature>
2620
2621
2622   <feature name="Kissing Gate">
2623     <category>barrier</category>
2624     <icon image="features/pois/barrier_kissing_gate.24.png"/>
2625     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dkissing_gate</help>
2626     <point/>
2627     <tag k="barrier" v="kissing_gate"/>
2628     <inputSet ref="common"/>
2629   </feature>
2630
2631
2632
2633   <feature name="Cycle Barrier">
2634     <category>barrier</category>
2635     <icon image="features/pois/barrier_cycle_barrier.24.png">
2636     </icon>
2637     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier</help>
2638
2639     <point/>
2640     <tag k="barrier" v="cycle_barrier"/>
2641     <inputSet ref="common"/>
2642   </feature>
2643
2644
2645   <feature name="Big Concrete Blocks">
2646     <category>barrier</category>
2647     <icon image="features/pois/barrier_blocks.24.png">
2648     </icon>
2649     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dblock</help>
2650
2651     <point/>
2652     <tag k="barrier" v="block"/>
2653     <inputSet ref="common"/>
2654   </feature>
2655
2656
2657   <feature name="Cattle Grid">
2658     <category>barrier</category>
2659     <icon image="features/pois/barrier_cattle_grid.24.png">
2660     </icon>
2661     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcattle_grid</help>
2662
2663     <point/>
2664     <tag k="barrier" v="cattle_grid"/>
2665     <inputSet ref="common"/>
2666   </feature>
2667
2668
2669   <feature name="Toll Booth">
2670     <category>barrier</category>
2671     <icon image="features/pois/barrier_toll_booth.n.24.png">
2672     </icon>
2673     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dtoll_booth</help>
2674
2675     <point/>
2676     <tag k="barrier" v="toll_booth"/>
2677     <tagSet ref="fee"/>
2678     <input type="freetext" presence="onTagMatch" category="Naming" name="Operator" key="operator" description="The provider of the toll" priority="low"/>
2679     <inputSet ref="common"/>
2680   </feature>
2681
2682
2683   <feature name="Stile">
2684     <category>barrier</category>
2685     <icon image="features/pois/barrier_stile.n.24.png"/>
2686     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dstile</help>
2687     <point/>
2688     <tag k="barrier" v="stile"/>
2689     <inputSet ref="common"/>
2690   </feature>
2691
2692
2693   <feature name="Turning circle">
2694     <category>transport</category>
2695     <icon image="features/pois/transport_turning_circle.n.24.png"/>
2696     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dturning_circle</help>
2697     <point/>
2698     <tag k="highway" v="turning_circle"/>
2699     <inputSet ref="common"/>
2700   </feature>
2701
2702
2703   <feature name="Traffic calming">
2704
2705     <category>transport</category>
2706     <icon image="icons/speed_hump_16.png"/>
2707     <help>http://wiki.openstreetmap.org/wiki/Key:traffic%3Dcalming</help>
2708     <point/>
2709     <!-- Warning: creates "traffic_calming=*" by default, but it's the best we can do. Steve Bennett-->
2710     <tag k="traffic_calming" v="*"/>
2711     <input type="choice" key="traffic_calming" name="Obstacle type" category="Traffic calming" presence="onTagMatch">
2712       <choice value="yes" text="Unspecified"/>
2713       <choice value="bump" text="Short bump" description="A sharp speed bump, typically slowing cars to 15 kph or less."/>
2714       <choice value="hump" text="Speed hump" description="A gentler, longer bump, typically slowing cars to 30 kph or less."/>
2715       <choice value="cushion" text="Speed cushion" description="A narrow speed bump allowing emergency vehicles and buses to pass without slowing."/>
2716       <choice value="table" text="Speed table" description="A very long speed hump allowing the whole wheelbase to rest on top."/>
2717       <choice value="chicane" text="Chicane" description="A set of obstacles causing vehicles to weave through."/>
2718       <choice value="rumble_strip" text="Rumble strip" description="A series of very small bumps causing vibration or noise."/>
2719       <choice value="choker" text="Choker" description="An artificial narrowing of the road."/>
2720     </input>
2721
2722     <inputSet ref="common"/>
2723   </feature>
2724
2725
2726
2727   <!-- ========= Entertainment ========= -->
2728
2729   <feature name="Pub">
2730     <category>foodanddrink</category>
2731     <icon image="features/pois/food_pub.n.24.png">
2732       ${name}
2733     </icon>
2734     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub</help>
2735     <point/>
2736     <tag k="amenity" v="pub"/>
2737     <inputSet ref="names"/>
2738     <inputSet ref="web"/>
2739     <inputSet ref="buildingAddress"/>
2740     <inputSet ref="wifi"/>
2741     <inputSet ref="common"/>
2742   </feature>
2743
2744
2745   <feature name="Bar">
2746     <category>foodanddrink</category>
2747     <icon image="features/pois/food_bar.n.24.png">
2748       ${name}
2749     </icon>
2750     <point/>
2751     <tag k="amenity" v="bar"/>
2752     <inputSet ref="names"/>
2753     <inputSet ref="web"/>
2754     <inputSet ref="buildingAddress"/>
2755     <inputSet ref="wifi"/>
2756     <inputSet ref="common"/>
2757   </feature>
2758
2759
2760   <feature name="Restaurant">
2761     <category>foodanddrink</category>
2762     <icon image="features/pois/food_restaurant.n.24.png">
2763       ${name}
2764     </icon>
2765     <point/>
2766     <tag k="amenity" v="restaurant"/>
2767     <inputSet ref="names"/>
2768     <inputSet ref="web"/>
2769     <inputSet ref="buildingAddress"/>
2770     <inputSet ref="cuisine"/>
2771     <inputSet ref="common"/>
2772   </feature>
2773
2774
2775   <feature name="Cafe">
2776     <category>foodanddrink</category>
2777     <icon image="features/pois/food_cafe.n.24.png">
2778       ${name}
2779     </icon>
2780     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe</help>
2781     <point/>
2782     <tag k="amenity" v="cafe"/>
2783     <inputSet ref="names"/>
2784     <inputSet ref="web"/>
2785     <inputSet ref="buildingAddress"/>
2786     <inputSet ref="cuisine"/>
2787     <inputSet ref="wifi"/>
2788     <inputSet ref="common"/>
2789   </feature>
2790
2791
2792   <feature name="Fast Food">
2793     <category>foodanddrink</category>
2794     <icon image="features/pois/food_fastfood.n.24.png">
2795       ${name}
2796     </icon>
2797     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food</help>
2798     <point/>
2799     <tag k="amenity" v="fast_food"/>
2800     <inputSet ref="names"/>
2801     <inputSet ref="web"/>
2802     <inputSet ref="buildingAddress"/>
2803     <inputSet ref="cuisine"/>
2804     <inputSet ref="common"/>
2805   </feature>
2806
2807
2808   <!-- ========= Shops ========= -->
2809
2810   <feature name="Small Convenience Store">
2811     <category>shopping</category>
2812     <icon image="features/pois/shopping_convenience.n.24.png">
2813       ${name}
2814     </icon>
2815     <help>http://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience</help>
2816     <point/>
2817     <tag k="shop" v="convenience"/>
2818     <inputSet ref="names"/>
2819     <inputSet ref="web"/>
2820     <inputSet ref="buildingAddress"/>
2821     <inputSet ref="common"/>
2822   </feature>
2823
2824
2825   <feature name="Supermarket">
2826     <category>shopping</category>
2827     <icon image="features/pois/shopping_supermarket.n.24.png">
2828       ${name}
2829     </icon>
2830     <help>http://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket</help>
2831     <point/>
2832     <tag k="shop" v="supermarket"/>
2833     <inputSet ref="names"/>
2834     <inputSet ref="web"/>
2835     <inputSet ref="buildingAddress"/>
2836     <inputSet ref="common"/>
2837   </feature>
2838
2839
2840   <feature name="Alcohol shop">
2841     <category>shopping</category>
2842     <point/>
2843     <inputSet ref="simpleName"/>
2844     <inputSet ref="web"/>
2845     <inputSet ref="buildingAddress"/>
2846     <icon image="features/pois/shopping_alcohol.n.24.png"/>
2847     <tag k="shop" v="alcohol"/>
2848     <inputSet ref="common"/>
2849   </feature>
2850
2851
2852   <feature name="Bakery">
2853     <category>shopping</category>
2854     <point/>
2855     <inputSet ref="simpleName"/>
2856     <inputSet ref="web"/>
2857     <inputSet ref="buildingAddress"/>
2858     <icon image="features/pois/shopping_bakery.n.24.png"/>
2859     <tag k="shop" v="bakery"/>
2860     <inputSet ref="common"/>
2861   </feature>
2862
2863
2864   <feature name="Bike shop">
2865     <category>shopping</category>
2866     <point/>
2867     <inputSet ref="simpleName"/>
2868     <inputSet ref="web"/>
2869     <inputSet ref="buildingAddress"/>
2870     <icon image="features/pois/shopping_bicycle.n.24.png"/>
2871     <tag k="shop" v="bicycle"/>
2872     <inputSet ref="common"/>
2873   </feature>
2874
2875
2876   <feature name="Bookshop">
2877     <category>shopping</category>
2878     <point/>
2879     <inputSet ref="simpleName"/>
2880     <inputSet ref="web"/>
2881     <inputSet ref="buildingAddress"/>
2882     <icon image="features/pois/shopping_book.n.24.png"/>
2883     <tag k="shop" v="book"/>
2884     <inputSet ref="common"/>
2885   </feature>
2886
2887
2888   <feature name="Butcher">
2889     <category>shopping</category>
2890     <point/>
2891     <inputSet ref="simpleName"/>
2892     <inputSet ref="web"/>
2893     <inputSet ref="buildingAddress"/>
2894     <icon image="features/pois/shopping_butcher.n.24.png"/>
2895     <tag k="shop" v="butcher"/>
2896     <inputSet ref="common"/>
2897   </feature>
2898
2899
2900   <feature name="Car repair">
2901     <category>shopping</category>
2902     <point/>
2903     <inputSet ref="simpleName"/>
2904     <inputSet ref="web"/>
2905     <inputSet ref="buildingAddress"/>
2906     <icon image="features/pois/shopping_car_repair.n.24.png"/>
2907     <tag k="shop" v="car_repair"/>
2908     <inputSet ref="common"/>
2909   </feature>
2910
2911
2912   <feature name="Clothes shop">
2913     <category>shopping</category>
2914     <point/>
2915     <inputSet ref="simpleName"/>
2916     <inputSet ref="web"/>
2917     <inputSet ref="buildingAddress"/>
2918     <icon image="features/pois/shopping_clothes.n.24.png"/>
2919     <tag k="shop" v="clothes"/>
2920     <inputSet ref="common"/>
2921   </feature>
2922
2923
2924   <feature name="Confectionery">
2925     <category>shopping</category>
2926     <point/>
2927     <inputSet ref="simpleName"/>
2928     <inputSet ref="web"/>
2929     <inputSet ref="buildingAddress"/>
2930     <icon image="features/pois/shopping_confectionery.n.24.png"/>
2931     <tag k="shop" v="confectionery"/>
2932     <inputSet ref="common"/>
2933   </feature>
2934
2935
2936   <feature name="DIY">
2937     <category>shopping</category>
2938     <point/>
2939     <inputSet ref="simpleName"/>
2940     <inputSet ref="web"/>
2941     <inputSet ref="buildingAddress"/>
2942     <icon image="features/pois/shopping_diy.n.24.png"/>
2943     <tag k="shop" v="doityourself"/>
2944     <inputSet ref="common"/>
2945   </feature>
2946
2947
2948   <feature name="Fishmonger">
2949     <category>shopping</category>
2950     <point/>
2951     <inputSet ref="simpleName"/>
2952     <inputSet ref="web"/>
2953     <inputSet ref="buildingAddress"/>
2954     <icon image="features/pois/shopping_fish.n.24.png"/>
2955     <tag k="shop" v="fishmonger"/>
2956     <inputSet ref="common"/>
2957   </feature>
2958
2959
2960   <feature name="Garden centre">
2961     <category>shopping</category>
2962     <point/>
2963     <inputSet ref="simpleName"/>
2964     <inputSet ref="web"/>
2965     <inputSet ref="buildingAddress"/>
2966     <icon image="features/pois/shopping_garden_centre.n.24.png"/>
2967     <tag k="shop" v="garden_centre"/>
2968     <inputSet ref="common"/>
2969   </feature>
2970
2971
2972   <feature name="Gift shop">
2973     <category>shopping</category>
2974     <point/>
2975     <inputSet ref="simpleName"/>
2976     <inputSet ref="web"/>
2977     <inputSet ref="buildingAddress"/>
2978     <icon image="features/pois/shopping_gift.n.24.png"/>
2979     <tag k="shop" v="gift"/>
2980     <inputSet ref="common"/>
2981   </feature>
2982
2983
2984   <feature name="Greengrocer">
2985     <category>shopping</category>
2986     <point/>
2987     <inputSet ref="simpleName"/>
2988     <inputSet ref="web"/>
2989     <inputSet ref="buildingAddress"/>
2990     <icon image="features/pois/shopping_greengrocer.n.24.png"/>
2991     <tag k="shop" v="greengrocer"/>
2992     <inputSet ref="common"/>
2993   </feature>
2994
2995
2996   <feature name="Hairdresser">
2997     <category>shopping</category>
2998     <point/>
2999     <inputSet ref="simpleName"/>
3000     <inputSet ref="web"/>
3001     <inputSet ref="buildingAddress"/>
3002     <icon image="features/pois/shopping_hairdresser.n.24.png"/>
3003     <tag k="shop" v="hairdresser"/>
3004     <inputSet ref="common"/>
3005   </feature>
3006
3007
3008   <feature name="Hifi shop">
3009     <category>shopping</category>
3010     <point/>
3011     <inputSet ref="simpleName"/>
3012     <inputSet ref="web"/>
3013     <inputSet ref="buildingAddress"/>
3014     <icon image="features/pois/shopping_hifi.n.24.png"/>
3015     <tag k="shop" v="hifi"/>
3016     <inputSet ref="common"/>
3017   </feature>
3018
3019
3020   <feature name="Jewellery">
3021     <category>shopping</category>
3022     <point/>
3023     <inputSet ref="simpleName"/>
3024     <inputSet ref="web"/>
3025     <inputSet ref="buildingAddress"/>
3026     <icon image="features/pois/shopping_jewelry.n.24.png"/>
3027     <tag k="shop" v="jewelry"/>
3028     <inputSet ref="common"/>
3029   </feature>
3030
3031
3032   <feature name="Laundrette">
3033     <category>shopping</category>
3034     <point/>
3035     <inputSet ref="simpleName"/>
3036     <inputSet ref="web"/>
3037     <inputSet ref="buildingAddress"/>
3038     <icon image="features/pois/shopping_laundrette.n.24.png"/>
3039     <tag k="shop" v="laundry"/>
3040     <inputSet ref="common"/>
3041   </feature>
3042
3043
3044   <feature name="Motorbike shop">
3045     <category>shopping</category>
3046     <point/>
3047     <inputSet ref="simpleName"/>
3048     <inputSet ref="web"/>
3049     <inputSet ref="buildingAddress"/>
3050     <icon image="features/pois/shopping_motorcycle.n.24.png"/>
3051     <tag k="shop" v="motorcycle"/>
3052     <inputSet ref="common"/>
3053   </feature>
3054
3055
3056   <feature name="Music shop">
3057     <category>shopping</category>
3058     <point/>
3059     <inputSet ref="simpleName"/>
3060     <inputSet ref="web"/>
3061     <inputSet ref="buildingAddress"/>
3062     <icon image="features/pois/shopping_music.n.24.png"/>
3063     <tag k="shop" v="music"/>
3064     <inputSet ref="common"/>
3065   </feature>
3066
3067
3068   <feature name="Pharmacy">
3069     <category>shopping</category>
3070     <icon image="features/pois/health_pharmacy.n.24.png">
3071       ${name}
3072     </icon>
3073     <help>http://wiki.openstreetmap.org/wiki/Pharmacy</help>
3074     <point/>
3075     <tag k="amenity" v="pharmacy"/>
3076     <inputSet ref="names"/>
3077     <inputSet ref="web"/>
3078     <inputSet ref="buildingAddress"/>
3079     <input type="checkbox" category="Amenity" presence="always" description="Does this pharmacy sell prescription drugs?" name="Dispensing" key="dispensing" layout="horizontal"/>
3080     <inputSet ref="common"/>
3081   </feature>
3082
3083
3084   <!-- **************** Agriculture *************** -->
3085   <feature name="Farm">
3086     <category>agriculture</category>
3087     <icon image="features/pois/landuse_grass.n.24.png"/>
3088     <area/>
3089     <tag k="landuse" v="farm"/>
3090     <inputSet ref="simpleName"/>
3091     <inputSet ref="common"/>
3092   </feature>
3093
3094
3095   <feature name="Farmyard">
3096     <category>agriculture</category>
3097     <icon image="features/pois/landuse_grass.n.24.png"/>
3098     <area/>
3099     <tag k="landuse" v="farmyard"/>
3100     <inputSet ref="simpleName"/>
3101     <inputSet ref="common"/>
3102   </feature>
3103
3104
3105   <feature name="Farmland">
3106     <category>agriculture</category>
3107     <icon image="features/pois/landuse_grass.n.24.png"/>
3108     <area/>
3109     <tag k="landuse" v="farmland"/>
3110     <inputSet ref="simpleName"/>
3111     <inputSet ref="common"/>
3112   </feature>
3113
3114
3115   <feature name="Field">
3116     <category>agriculture</category>
3117     <icon image="features/pois/landuse_grass.n.24.png"/>
3118     <area/>
3119     <tag k="landuse" v="meadow"/>
3120     <inputSet ref="simpleName"/>
3121     <inputSet ref="common"/>
3122   </feature>
3123
3124
3125   <feature name="Orchard">
3126     <category>agriculture</category>
3127     <icon image="features/pois/landuse_grass.n.24.png"/>
3128     <area/>
3129     <tag k="landuse" v="orchard"/>
3130     <inputSet ref="simpleName"/>
3131     <inputSet ref="common"/>
3132   </feature>
3133
3134
3135   <feature name="Vineyard">
3136     <category>agriculture</category>
3137     <icon image="features/pois/landuse_grass.n.24.png"/>
3138     <area/>
3139     <tag k="landuse" v="vineyard"/>
3140     <inputSet ref="simpleName"/>
3141     <inputSet ref="common"/>
3142   </feature>
3143
3144
3145   <!-- ************************************************************************
3146        Relations
3147        ************************************************************************ -->
3148
3149   <feature name="Turn restriction">
3150     <category>advanced</category>
3151     <help>http://wiki.openstreetmap.org/wiki/Turn_restrictions</help>
3152     <relation/>
3153     <tag k="type" v="restriction"/>
3154     <input type="choice" category="Restrictions" presence="always" name="Type" key="restriction" description="What's the restriction?" layout="horizontal" priority="high">
3155       <choice value="no_left_turn"      text="No left turn"/>
3156       <choice value="no_right_turn"     text="No right turn"/>
3157       <choice value="no_u_turn"         text="No U turns"/>
3158       <choice value="no_straight_on"    text="No straight on"/>
3159       <choice value="only_left_turn"    text="Left turn only"/>
3160       <choice value="only_right_turn"   text="Right turn only"/>
3161       <choice value="only_straight_on"  text="Straight on only"/>
3162     </input>
3163     <input type="choice" category="Restrictions" presence="always" name="Except" key="except" description="Are any vehicles exempt?" layout="horizontal">
3164       <choice value="psv"      text="Bus"/>
3165       <choice value="bicycle"  text="Bicycle"/>
3166       <choice value="motorcar" text="Car"/>
3167       <choice value="hgv"      text="HGV"/>
3168     </input>
3169     <input type="freetext" category="Restrictions" presence="always" name="Start day"  key="day_on"   description="What day of the week does it start?" layout="horizontal" priority="low"/>
3170     <input type="freetext" category="Restrictions" presence="always" name="Start time" key="hour_on"  description="What time of day does it start?"     layout="horizontal" priority="low"/>
3171     <input type="freetext" category="Restrictions" presence="always" name="End day"    key="day_off"  description="What day of the week does it end?"   layout="horizontal" priority="lowest"/>
3172     <input type="freetext" category="Restrictions" presence="always" name="End time"   key="hour_off" description="What time of day does it end?"       layout="horizontal" priority="lowest"/>
3173     <inputSet ref="common"/>
3174   </feature>
3175
3176
3177   <feature name="Multipolygon">
3178     <category>advanced</category>
3179     <relation/>
3180     <tag k="type" v="multipolygon"/>
3181     <inputSet ref="common"/>
3182   </feature>
3183
3184
3185   <!-- cycle stuff -->
3186   <feature name="National Cycle Network">
3187     <category>paths</category>
3188     <icon image="features/cycle__ncn.png" background="red" foreground="white">
3189       <font size="14pt">
3190         <b>${ref}</b>
3191       </font>
3192       <br/>
3193       <font size="12pt">${name}</font>
3194     </icon>
3195
3196     <relation/>
3197     <tag k="type" v="route"/>
3198     <tag k="network" v="ncn"/>
3199
3200     <inputSet ref="route"/>
3201     <inputSet ref="common"/>
3202   </feature>
3203
3204
3205   <feature name="Regional Cycle Network">
3206     <category>paths</category>
3207     <icon image="features/cycle__rcn.png" background="cyan" foreground="white">
3208       <font size="14pt"><b>${ref}</b></font><br/>
3209       <font size="12pt">${name}</font>
3210     </icon>
3211
3212     <relation/>
3213     <tag k="type" v="route"/>
3214     <tag k="network" v="rcn"/>
3215
3216     <inputSet ref="route"/>
3217     <inputSet ref="common"/>
3218   </feature>
3219
3220
3221   <feature name="Local Cycle Network">
3222     <category>paths</category>
3223     <icon image="features/cycle__lcn.png" background="blue" foreground="white">
3224       <font size="14pt">
3225         <b>${ref}</b>
3226       </font>
3227       <br/>
3228       <font size="12pt">${name}</font>
3229     </icon>
3230
3231     <relation/>
3232     <tag k="type" v="route"/>
3233     <tag k="network" v="lcn"/>
3234
3235     <inputSet ref="route"/>
3236     <inputSet ref="common"/>
3237   </feature>
3238
3239
3240
3241   <!-- paths -->
3242   <feature name="Long Distance Path">
3243     <category>paths</category>
3244     <icon image="features/paths__footway.png" background="green" foreground="white">
3245       <font size="14pt">
3246         <b>${ref}</b>
3247       </font>
3248       <br/>
3249       <font size="12pt">${name}</font>
3250     </icon>
3251
3252     <relation/>
3253     <tag k="type" v="route"/>
3254     <tag k="route" v="foot"/>
3255
3256     <inputSet ref="route"/>
3257     <inputSet ref="common"/>
3258   </feature>
3259
3260
3261
3262   <!-- public transit routes -->
3263   <feature name="Bus Route">
3264     <category>transport</category>
3265     <icon image="features/transport__bus.png">
3266       <font size="12pt">
3267         ${operator} <b>${ref}</b>
3268       </font>
3269     </icon>
3270
3271     <relation/>
3272     <tag k="type" v="route"/>
3273     <tag k="route" v="bus"/>
3274
3275     <inputSet ref="route"/>
3276     <input type="freetext" presence="always" category="Naming" name="Operator" key="operator" description="The provider of the bus service" priority="low"/>
3277     <input type="freetext" presence="always" category="Naming" name="Network" key="network" description="The network of the bus service" priority="low"/>
3278     <inputSet ref="common"/>
3279   </feature>
3280
3281
3282   <feature name="Tram Route">
3283     <category>transport</category>
3284     <icon image="features/transport__tram.png">
3285       <font size="12pt">
3286         ${operator} <b>${reg}</b>
3287       </font>
3288     </icon>
3289
3290     <relation/>
3291     <tag k="type" v="route"/>
3292     <tag k="route" v="tram"/>
3293
3294     <inputSet ref="route"/>
3295     <input type="freetext" presence="always" category="Naming" name="Operator" key="operator" description="The provider of the tram service" priority="low"/>
3296     <input type="freetext" presence="always" category="Naming" name="Network" key="network" description="The network of the tram service" priority="low"/>
3297     <inputSet ref="common"/>
3298   </feature>
3299
3300
3301
3302   <!-- Junction nodes (for turn restrictions) -->
3303
3304   <feature>
3305     <point/>
3306     <within entity="way" k="highway" minimum="2"/>
3307     <inputSet ref="junctionNode"/>
3308     <inputSet ref="common"/>
3309   </feature>
3310
3311
3312 </mapFeatures>