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