]> git.openstreetmap.org Git - rails.git/blob - public/potlatch2/map_features.xml
Update Potlatch 2 to r24969 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   <!-- ************************************************************************
593        Roads
594        ************************************************************************ -->
595
596   <feature name="Motorway">
597     <category>roads</category>
598     <icon image="features/highway__motorway.png">
599       <font size="16pt"><b>${ref}</b></font><br/>
600     </icon>
601     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dmotorway</help>
602
603     <line/>
604     <tag k="highway" v="motorway"/>
605
606     <inputSet ref="majorRoad"/>
607     <inputSet ref="common"/>
608   </feature>
609
610   <feature name="Motorway link">
611     <category>roads</category>
612     <icon image="features/highway__motorway_link.png"/>
613     <line/>
614     <tag k="highway" v="motorway_link"/>
615
616     <inputSet ref="majorRoad"/>
617     <inputSet ref="common"/>
618   </feature>
619
620   <feature name="Trunk road">
621     <category>roads</category>
622     <icon image="features/highway__trunk.png">
623       <font size="16pt"><b>${ref}</b></font><br/>
624       <font size="10pt">${name}</font>
625     </icon>
626     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrunk</help>
627
628     <line/>
629     <tag k="highway" v="trunk"/>
630
631     <inputSet ref="majorRoad"/>
632     <inputSet ref="common"/>
633   </feature>
634
635   <feature name="Trunk link">
636     <category>roads</category>
637     <icon image="features/highway__trunk_link.png"/>
638     <line/>
639     <tag k="highway" v="trunk_link"/>
640
641     <inputSet ref="majorRoad"/>
642     <inputSet ref="common"/>
643   </feature>
644
645   <feature name="Primary road">
646     <category>roads</category>
647     <icon image="features/highway__primary.png">
648       <font size="16pt"><b>${ref}</b></font><br/>
649       <font size="10pt">${name}</font>
650     </icon>
651     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary</help>
652
653     <line/>
654     <tag k="highway" v="primary"/>
655
656     <inputSet ref="majorRoad"/>
657     <inputSet ref="common"/>
658   </feature>
659
660   <feature name="Primary link">
661     <category>roads</category>
662     <icon image="features/highway__primary_link.png">
663       <font size="16pt"><b>${ref}</b></font><br/>
664       <font size="10pt">${name}</font>
665     </icon>
666     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary_link</help>
667
668     <line/>
669     <tag k="highway" v="primary_link"/>
670
671     <inputSet ref="majorRoad"/>
672     <inputSet ref="common"/>
673   </feature>
674
675
676   <feature name="Secondary road">
677     <category>roads</category>
678     <icon image="features/highway__secondary.png">
679       <font size="16pt"><b>${ref}</b></font><br/>
680       <font size="10pt">${name}</font>
681     </icon>
682     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary</help>
683
684     <line/>
685     <tag k="highway" v="secondary"/>
686
687     <inputSet ref="majorRoad"/>
688     <inputSet ref="common"/>
689   </feature>
690
691   <feature name="Secondary link">
692     <category>roads</category>
693     <icon image="features/highway__secondary_link.png">
694       <font size="16pt">
695         <b>${ref}</b>
696       </font>
697       <br/>
698       <font size="10pt">${name}</font>
699     </icon>
700     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary_link</help>
701
702     <line/>
703     <tag k="highway" v="secondary_link"/>
704
705     <inputSet ref="majorRoad"/>
706     <inputSet ref="common"/>
707   </feature>
708
709
710
711   <feature name="Tertiary road">
712     <category>roads</category>
713     <icon image="features/highway__tertiary.png">
714       <font size="14pt"><b>${name}</b></font><br/>
715       <font size="10pt">${ref}</font>
716     </icon>
717     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary</help>
718
719     <line/>
720     <tag k="highway" v="tertiary"/>
721
722     <inputSet ref="majorRoad"/>
723     <inputSet ref="common"/>
724   </feature>
725
726   <feature name="Tertiary link">
727     <category>roads</category>
728     <icon image="features/highway__tertiary_link.png">
729       <font size="14pt"><b>${name}</b></font><br/>
730       <font size="10pt">${ref}</font>
731     </icon>
732     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary_link</help>
733
734     <line/>
735     <tag k="highway" v="tertiary_link"/>
736
737     <inputSet ref="majorRoad"/>
738     <inputSet ref="common"/>
739   </feature>
740
741
742   <feature name="Minor road">
743     <category>roads</category>
744     <icon image="features/highway__unclassified.png">
745       <font size="14pt"><b>${name}</b></font>
746     </icon>
747     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dunclassified</help>
748
749     <line/>
750     <tag k="highway" v="unclassified"/>
751
752     <inputSet ref="minorRoad"/>
753     <inputSet ref="common"/>
754   </feature>
755
756   <feature name="Residential road">
757     <category>roads</category>
758     <icon image="features/highway__residential.png">
759       <font size="14pt">
760         <b>${name}</b>
761       </font>
762       <br/>
763       <font size="8pt">${postal_code}</font>
764       <br/>
765     </icon>
766     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dresidential</help>
767
768     <line/>
769     <tag k="highway" v="residential"/>
770
771     <inputSet ref="minorRoad"/>
772     <inputSet ref="common"/>
773   </feature>
774
775   <feature name="Service road">
776     <category>roads</category>
777     <icon image="features/highway__service.png">
778       <font size="14pt"><b>${name}</b></font>
779     </icon>
780     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dservice</help>
781     <description>
782       Access roads
783     </description>
784
785     <line/>
786     <tag k="highway" v="service"/>
787
788     <inputSet ref="minorRoad"/>
789     <input type="choice" presence="always" name="Type of service road" key="service" category="">
790       <choice value="alley" text="Alleyway/laneway"/>
791       <choice value="parking_aisle" text="Parking aisle" description="The path that cars drive on through a parking lot."/>
792       <choice value="driveway" text="Driveway"/>
793       <choice value="drive-through" text="Drive-through" description="For drive-through restaurants, bottle shops etc."/>
794       <choice value="emergency_access" text="Emergency access" description="For firefighters and other emergency services."/>
795     </input>
796     <inputSet ref="common"/>
797   </feature>
798
799   <feature name="Unknown road">
800     <category>roads</category>
801     <icon image="features/highway__unknown.png">
802       <font size="10pt">This road has not been given a specific type. It's a road, and that's all that's known.</font>
803     </icon>
804
805     <line/>
806     <tag k="highway" v="road"/>
807
808     <inputSet ref="minorRoad"/>
809     <inputSet ref="common"/>
810   </feature>
811
812   <feature name="Living Street">
813     <category>roads</category>
814     <icon image="features/highway__living_street.png">
815       <font size="14pt"><b>${name}</b></font>
816     </icon>
817     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street</help>
818
819     <line/>
820     <tag k="highway" v="living_street"/>
821
822     <inputSet ref="minorRoad"/>
823     <inputSet ref="common"/>
824   </feature>
825
826   <feature name="Track">
827     <category>roads</category>
828     <icon image="features/highway__track.png">
829       <font size="14pt"><b>${name}</b></font>
830     </icon>
831
832     <line/>
833     <tag k="highway" v="track"/>
834
835     <inputSet ref="path"/>
836     <inputSet ref="common"/>
837   </feature>
838
839   <feature name="Raceway/racing track">
840     <category>roads</category>
841     <category>sport</category>
842     <icon>
843       <font size="10pt">A purpose built track for racing motor vehicles.</font>
844     </icon>
845
846     <line/>
847     <area/>
848     <tag k="highway" v="raceway"/>
849
850     <inputSet ref="simpleName"/>
851     <inputSet ref="roadPhysical"/>
852     <inputSet ref="common"/>
853   </feature>
854
855   <feature name="Sports track">
856     <category>roads</category>
857     <category>sport</category>
858     <icon>
859       <font size="10pt">A purpose built track for running, cycling, greyhound racing, horse racing.</font>
860     </icon>
861
862     <line/>
863     <area/>
864     <tag k="leisure" v="track"/>
865
866     <inputSet ref="simpleName"/>
867     <inputSet ref="roadPhysical"/>
868     <inputSet ref="common"/>
869   </feature>
870
871
872
873
874   <!-- ************************************************************************
875        Paths
876        ************************************************************************ -->
877
878   <feature name="Footpath">
879     <category>paths</category>
880     <icon image="features/paths__footway.png">
881       ${name} <i>${ref}</i>
882     </icon>
883     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway</help>
884     <line/>
885     <tag k="highway" v="footway"/>
886     <inputSet ref="path"/>
887     <inputSet ref="common"/>
888     <inputset ref="naming"/>
889   </feature>
890
891   <feature name="Cycle path">
892     <category>paths</category>
893     <icon image="features/paths__bike.png">
894       ${name} <i>${ncn_ref} ${rcn_ref} ${lcn_ref} ${ref}</i>
895     </icon>
896     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dcycleway</help>
897     <line/>
898     <tag k="highway" v="cycleway"/>
899     <inputSet ref="path"/>
900     <inputSet ref="common"/>
901     <inputset ref="naming"/>
902   </feature>
903
904   <feature name="Generic path">
905     <category>paths</category>
906     <icon >
907       ${name} <i>${ncn_ref} ${rcn_ref} ${lcn_ref} ${ref}</i>
908     </icon>
909     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath</help>
910
911     <line/>
912     <tag k="highway" v="path"/>
913     <inputSet ref="path"/>
914     <inputSet ref="common"/>
915     <inputset ref="naming"/>
916   </feature>
917
918
919   <feature name="Pedestrian street">
920     <category>paths</category>
921     <icon image="features/paths__pedestrian.png">
922       <font size="14pt">
923         <b>${name}</b>
924       </font>
925     </icon>
926
927     <tag k="highway" v="pedestrian"/>
928     <!-- pedestrian roads can be lines or areas, with different tags -->
929     <!-- TODO - implement this! -->
930     <line>
931       <tag k="highway" v="pedestrian"/>
932     </line>
933     <area>
934       <tag k="highway" v="pedestrian"/>
935       <tag k="area" v="yes"/>
936     </area>
937     <inputSet ref="minorRoad"/>
938     <inputSet ref="common"/>
939     <inputset ref="naming"/>
940   </feature>
941
942   <feature name="Bridleway">
943     <category>paths</category>
944     <icon image="features/paths__bridleway.png">
945     </icon>
946
947     <line/>
948     <tag k="highway" v="bridleway"/>
949     <inputSet ref="path"/>
950     <inputSet ref="common"/>
951     <inputset ref="naming"/>
952   </feature>
953
954   <feature name="Steps">
955     <category>paths</category>
956     <icon image="features/paths__steps.png">
957     </icon>
958     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dsteps</help>
959
960     <line/>
961     <tag k="highway" v="steps"/>
962     <inputSet ref="path"/>
963     <input type="freetext" presence="always" category="Naming" name="Number of steps" key="step_count" description="The number of steps in the way" priority="low"/>
964     <inputSet ref="common"/>
965   </feature>
966
967   <!-- ************************************************************************
968        Natural
969        ************************************************************************ -->
970
971   <feature name="Park">
972     <category>natural</category>
973     <category>sport</category>
974     <icon image="icons/natural_blank.png">
975       <b>${name}</b>
976       <br/>
977     </icon>
978
979     <area/>
980     <tag k="leisure" v="park"/>
981     <inputSet ref="common"/>
982   </feature>
983
984   <feature name="Forest">
985     <category>natural</category>
986     <icon image="/features/pois/landuse_coniferous.n.24.png"/>
987
988     <area/>
989     <tag k="landuse" v="forest"/>
990     <inputSet ref="common"/>
991   </feature>
992
993   <feature name="Meadow">
994     <category>natural</category>
995     <icon image="icons/natural_blank.png"/>
996
997     <area/>
998     <tag k="landuse" v="meadow"/>
999     <inputSet ref="common"/>
1000   </feature>
1001
1002
1003   
1004
1005
1006   <!-- ************************************************************************
1007        Waterways
1008        ************************************************************************ -->
1009
1010   <feature name="Stream">
1011     <category>water</category>
1012     <description>A very narrow river.</description>
1013     <icon image="features/waterway__stream.png">
1014       <font size="14pt">
1015         <b>${name}</b>
1016       </font>
1017     </icon>
1018
1019     <line/>
1020     <tag k="waterway" v="stream"/>
1021     <inputSet ref="waterways"/>
1022     <inputSet ref="common"/>
1023   </feature>
1024
1025
1026   <feature name="River">
1027     <category>water</category>
1028     <icon image="features/waterway__river.png">
1029       <font size="14pt"><b>${name}</b></font>
1030     </icon>
1031
1032     <line/>
1033     <tag k="waterway" v="river"/>
1034     <inputSet ref="waterways"/>
1035     <inputSet ref="common"/>
1036   </feature>
1037
1038
1039   <feature name="Canal">
1040     <category>water</category>
1041     <icon image="features/waterway__canal.png">
1042       <font size="14pt">
1043         <b>${name}</b>
1044       </font>
1045     </icon>
1046
1047     <line/>
1048     <tag k="waterway" v="canal"/>
1049     <inputSet ref="waterways"/>
1050     <inputSet ref="tunnel"/>
1051     <inputSet ref="common"/>
1052   </feature>
1053
1054
1055   <feature name="Drain">
1056     <category>water</category>
1057     <icon image="features/waterway__drain.png">
1058       <font size="14pt"><b>${name}</b></font>
1059     </icon>
1060
1061     <line/>
1062     <tag k="waterway" v="drain"/>
1063     <inputSet ref="tunnel"/>
1064     <inputSet ref="common"/>
1065   </feature>
1066
1067
1068   <feature name="Dam">
1069     <!-- Moved to "barrier" because this describes the dam wall, not the water. -->
1070     <category>barrier</category>
1071     <icon image="features/waterway__dam.png">
1072       <font size="14pt">
1073         <b>${name}</b>
1074       </font>
1075     </icon>
1076
1077     <line/>
1078     <area/>
1079     <tag k="waterway" v="dam"/>
1080     <inputSet ref="common"/>
1081   </feature>
1082
1083
1084   <feature name="Riverbank">
1085     <category>water</category>
1086     <icon image="features/pois/water_generic.24.png">
1087       <font size="14pt"><b>${name}</b></font>
1088     </icon>
1089
1090     <area/>
1091     <tag k="waterway" v="riverbank"/>
1092     <inputSet ref="common"/>
1093   </feature>
1094
1095
1096   <feature name="Reservoir">
1097     <category>water</category>
1098     <icon image="features/pois/water_generic.24.png">
1099       <font size="14pt">
1100         <b>${name}</b>
1101       </font>
1102     </icon>
1103
1104     <area/>
1105     <tag k="landuse" v="reservoir"/>
1106     <inputSet ref="boatPermissions"/>
1107     <inputSet ref="common"/>
1108   </feature>
1109
1110
1111   <feature name="Lake">
1112     <category>water</category>
1113     <icon image="features/pois/water_generic.24.png">
1114       <font size="14pt">
1115         <b>${name}</b>
1116       </font>
1117     </icon>
1118     <area/>
1119     <tag k="natural" v="water"/>
1120     <inputSet ref="names"/>
1121     <inputSet ref="boatPermissions"/>
1122     <inputSet ref="common"/>
1123   </feature>
1124
1125
1126   <feature name="Basin">
1127     <category>water</category>
1128     <icon image="features/pois/water_generic.24.png">
1129       <font size="14pt">
1130         <b>${name}</b>
1131       </font>
1132     </icon>
1133
1134     <area/>
1135     <tag k="landuse" v="basin"/>
1136     <inputSet ref="boatPermissions"/>
1137     <inputSet ref="common"/>
1138   </feature>
1139
1140
1141   <feature name="Weir">
1142     <category>water</category>
1143     <icon image="features/waterway__weir.png">
1144       <font size="14pt">
1145         <b>${name}</b>
1146       </font>
1147     </icon>
1148
1149     <line/>
1150     <point/>
1151     <tag k="waterway" v="weir"/>
1152     <inputSet ref="common"/>
1153   </feature>
1154
1155
1156
1157
1158   <feature name="Dock">
1159     <category>water</category>
1160     <icon image="features/pois/water_generic.24.png">
1161       <font size="14pt">
1162         <b>${name}</b>
1163       </font>
1164     </icon>
1165
1166     <area/>
1167     <tag k="waterway" v="dock"/>
1168     <inputSet ref="names"/>
1169     <inputSet ref="common"/>
1170   </feature>
1171
1172
1173   <feature name="Marina">
1174     <category>water</category>
1175     <icon image="features/pois/transport_marina.n.24.png">
1176       <font size="14pt">
1177         <b>${name}</b>
1178       </font>
1179     </icon>
1180
1181     <area/>
1182     <point/>
1183     <tag k="leisure" v="marina"/>
1184     <inputSet ref="names"/>
1185     <inputSet ref="common"/>
1186   </feature>
1187
1188
1189   <feature name="Slipway">
1190     <category>water</category>
1191     <icon image="features/waterway__slipway.png" />
1192     <line/>
1193     <tag k="leisure" v="slipway"/>
1194     <inputSet ref="names"/>
1195     <inputSet ref="common"/>
1196   </feature>
1197
1198   <feature name="Slipway">
1199     <category>water</category>
1200     <!-- icon from http://www.clker.com/clipart-map-symbols-boat-launch-white.html, feel free to (re)move this notice -->
1201     <icon image="features/pois/boat-launch-24.png"/>
1202     <point />
1203     <tag k="leisure" v="slipway"/>
1204     <inputSet ref="names"/>
1205     <inputSet ref="common"/>
1206   </feature>
1207
1208   <feature name="Coastline">
1209     <category>water</category>
1210     <line/>
1211     <tag k="natural" v="coastline"/>
1212     <inputSet ref="common"/>
1213   </feature>
1214
1215   <!-- ************************************************************************
1216        Transport
1217        ************************************************************************ -->
1218
1219   <feature name="Railway line">
1220     <category>transport</category>
1221     <icon image="features/transport__railway.png">
1222       <font size="14pt">
1223         <b>${name}</b>
1224       </font>
1225     </icon>
1226
1227     <line/>
1228     <tag k="railway" v="rail"/>
1229     <inputSet ref="bridge"/>
1230     <inputSet ref="tunnel"/>
1231     <inputSet ref="embankment-cutting"/>
1232     <inputSet ref="rail-electrification"/>
1233     <inputSet ref="rail-usage"/>
1234     <inputSet ref="common"/>
1235   </feature>
1236
1237
1238   <feature name="Railway spur">
1239     <category>transport</category>
1240     <icon image="features/transport__railway.png">
1241       <font size="14pt">
1242         <b>${name}</b>
1243       </font>
1244     </icon>
1245
1246     <line/>
1247     <tag k="railway" v="rail"/>
1248     <tag k="service" v="spur"/>
1249     <inputSet ref="common"/>
1250   </feature>
1251
1252
1253   <feature name="Railway siding">
1254     <category>transport</category>
1255     <icon image="features/transport__railway.png">
1256       <font size="14pt">
1257         <b>${name}</b>
1258       </font>
1259     </icon>
1260
1261     <line/>
1262     <tag k="railway" v="rail"/>
1263     <tag k="service" v="siding"/>
1264     <inputSet ref="common"/>
1265   </feature>
1266
1267
1268   <feature name="Preserved line">
1269     <category>transport</category>
1270     <icon image="features/transport__railway.png">
1271       <font size="14pt"><b>${name}</b></font>
1272     </icon>
1273
1274     <line/>
1275     <tag k="railway" v="preserved"/>
1276     <inputSet ref="common"/>
1277   </feature>
1278
1279
1280   <feature name="Disused tracks">
1281     <category>transport</category>
1282     <icon image="features/transport__railway_disused.png">
1283       <font size="14pt">
1284         <b>${name}</b>
1285       </font>
1286     </icon>
1287
1288     <line/>
1289     <tag k="railway" v="disused"/>
1290     <inputSet ref="common"/>
1291   </feature>
1292
1293
1294   <feature name="Old trackbed">
1295     <category>transport</category>
1296     <icon image="features/transport__railway_abandoned.png">
1297       <font size="14pt"><b>${name}</b></font>
1298     </icon>
1299
1300     <line/>
1301     <tag k="railway" v="abandoned"/>
1302     <inputSet ref="common"/>
1303   </feature>
1304
1305
1306   <feature name="Light rail line">
1307     <category>transport</category>
1308     <icon image="features/transport__tram.png">
1309       <font size="14pt">
1310         <b>${name}</b>
1311       </font>
1312     </icon>
1313
1314     <line/>
1315     <tag k="railway" v="light_rail"/>
1316     <inputSet ref="bridge"/>
1317     <inputSet ref="tunnel"/>
1318     <inputset ref="embankment-cutting"/>
1319     <inputSet ref="rail-electrification"/>
1320     <inputSet ref="common"/>
1321   </feature>
1322
1323
1324   <feature name="Tram line">
1325     <category>transport</category>
1326     <icon image="features/transport__tram.png">
1327       <font size="14pt"><b>${name}</b></font>
1328     </icon>
1329
1330     <line/>
1331     <tag k="railway" v="tram"/>
1332     <input ref="tram-route"/>
1333     <inputSet ref="bridge"/>
1334     <inputSet ref="tunnel"/>
1335     <inputset ref="embankment-cutting"/>
1336     <inputSet ref="rail-electrification"/>
1337     <inputSet ref="common"/>
1338   </feature>
1339
1340
1341   <feature name="Subway line">
1342     <category>transport</category>
1343     <icon image="features/transport__subway.png">
1344       <font size="14pt">
1345         <b>${name}</b>
1346       </font>
1347     </icon>
1348
1349     <line/>
1350     <tag k="railway" v="subway"/>
1351     <inputSet ref="bridge"/>
1352     <inputSet ref="tunnel"/>
1353     <inputset ref="embankment-cutting"/>
1354     <inputSet ref="rail-electrification"/>
1355     <inputSet ref="common"/>
1356   </feature>
1357
1358
1359   <feature name="Railway platform">
1360     <category>transport</category>
1361     <icon image="features/transport__railway_platform.png"/>
1362     <line/>
1363     <area/>
1364     <tag k="railway" v="platform"/>
1365     <input type="freetext" presence="onTagMatch" category="Naming" name="Reference" key="ref" description="The number of the platform" priority="low"/>
1366     <inputSet ref="common"/>
1367   </feature>
1368
1369
1370   <feature name="Bus station">
1371     <category>transport</category>
1372     <icon image="/features/pois/transport_bus_station.n.24.png">
1373       <b>${name} ${addr:housename}</b><br/>
1374       ${addr:housenumber} ${addr:street} ${addr:postcode}
1375     </icon>
1376
1377     <area/>
1378     <tag k="amenity" v="bus_station"/>
1379     <tag k="building" v="yes"/>
1380     <inputSet ref="names"/>
1381     <inputSet ref="buildingAddress"/>
1382     <inputSet ref="common"/>
1383   </feature>
1384
1385
1386   <feature name="Airport">
1387     <category>transport</category>
1388     <icon image="icons/transport_airport_48.png"/>
1389     <tag k="aeroway" v="aerodrome"/>
1390     <area/>
1391     <point/>
1392     <inputSet ref="names"/>
1393     <input type="freetext" presence="always" category="Naming" name="International Air Transport Association (IATA) airport code" key="ref"/>
1394     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1395     <inputSet ref="common"/>
1396   </feature>
1397
1398
1399   <feature name="Airport terminal">
1400     <category>transport</category>
1401     <icon image="features/pois/transport_airport_terminal.n.24.png"/>
1402     <tag k="aeroway" v="terminal"/>
1403     <area/>
1404     <point/>
1405     <inputSet ref="names"/>
1406     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1407     <inputSet ref="common"/>
1408   </feature>
1409
1410
1411   <feature name="Helipad">
1412     <category>transport</category>
1413     <icon image="icons/transport_helipad_48.png"/>
1414     <tag k="aeroway" v="helipad"/>
1415     <area/>
1416     <point/>
1417     <inputSet ref="names"/>
1418     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1419     <inputSet ref="common"/>
1420   </feature>
1421
1422
1423   <feature name="Airport runway">
1424     <category>transport</category>
1425     <icon image="icons/transport_blank.png"/>
1426     <tag k="aeroway" v="runway"/>
1427     <line/>
1428     <inputSet ref="names"/>
1429     <input type="freetext" presence="always" category="Naming" name="Runway number (01-36)" key="ref"/>
1430     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1431     <inputSet ref="common"/>
1432   </feature>
1433
1434
1435   <feature name="Airport taxiway">
1436     <category>transport</category>
1437     <icon image="icons/transport_blank.png"/>
1438     <tag k="aeroway" v="taxiway"/>
1439     <line/>
1440     <inputSet ref="names"/>
1441     <input type="freetext" presence="always" category="Naming" name="Taxiway number" key="ref" />
1442     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1443     <inputSet ref="common"/>
1444   </feature>
1445
1446
1447   <feature name="Airport apron">
1448     <category>transport</category>
1449     <icon image="icons/transport_blank.png"/>
1450     <tag k="aeroway" v="apron"/>
1451     <area/>
1452     <inputSet ref="names"/>
1453     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1454     <inputSet ref="common"/>
1455   </feature>
1456
1457
1458   <feature name="Airport gate">
1459     <category>transport</category>
1460     <icon image="features/pois/transport_airport_gate.n.24.png"/>
1461     <tag k="aeroway" v="gate"/>
1462     <point/>
1463     <input type="freetext" presence="always" category="Naming" name="Gate number" key="ref"/>
1464     <help>http://wiki.openstreetmap.org/wiki/Key:aeroway</help>
1465     <inputSet ref="common"/>
1466   </feature>
1467
1468
1469   <!-- ************************************************************************
1470        Buildings
1471        ************************************************************************ -->
1472
1473   <feature name="School">
1474     <category>buildings</category>
1475     <icon image="features/pois/education_school.n.24.png">
1476       <b>${name} ${addr:housename}</b><br/>
1477       ${addr:housenumber} ${addr:street} ${addr:postcode}
1478     </icon>
1479
1480     <area/>
1481     <tag k="amenity" v="school"/>
1482     <tag k="building" v="yes"/>
1483     <inputSet ref="names"/>
1484     <inputSet ref="buildingAddress"/>
1485     <inputSet ref="common"/>
1486   </feature>
1487
1488
1489   <feature name="College">
1490     <category>buildings</category>
1491     <icon image="features/pois/education_university.n.24.png">
1492       <b>${name} ${addr:housename}</b><br/>
1493       ${addr:housenumber} ${addr:street} ${addr:postcode}
1494     </icon>
1495
1496     <area/>
1497     <tag k="amenity" v="college"/>
1498     <inputSet ref="names"/>
1499     <inputSet ref="buildingAddress"/>
1500     <inputSet ref="common"/>
1501   </feature>
1502
1503   <feature name="University">
1504     <category>buildings</category>
1505     <icon image="features/pois/education_university.n.24.png">
1506       <b>${name} ${addr:housename}</b><br/>
1507       ${addr:housenumber} ${addr:street} ${addr:postcode}
1508     </icon>
1509
1510     <area/>
1511     <tag k="amenity" v="university"/>
1512     <inputSet ref="names"/>
1513     <inputSet ref="buildingAddress"/>
1514     <inputSet ref="common"/>
1515   </feature>
1516
1517
1518   <feature name="Supermarket">
1519     <category>buildings</category>
1520     <icon image="features/pois/shopping_supermarket.n.24.png">
1521       <b>${name} ${addr:housename}</b><br/>
1522       ${addr:housenumber} ${addr:street} ${addr:postcode}
1523     </icon>
1524
1525     <area/>
1526     <tag k="shop" v="supermarket"/>
1527     <tag k="building" v="yes"/>
1528     <inputSet ref="names"/>
1529     <inputSet ref="buildingAddress"/>
1530     <inputSet ref="common"/>
1531   </feature>
1532
1533
1534   <feature name="Place of worship">
1535     <category>buildings</category>
1536     <icon image="icons/place_of_worship.png">
1537       <b>${name} ${addr:housename}</b><br/>
1538       ${addr:housenumber} ${addr:street} ${addr:postcode}
1539     </icon>
1540
1541     <area/>
1542     <tag k="amenity" v="place_of_worship"/>
1543     <tag k="building" v="yes"/>
1544     <inputSet ref="names"/>
1545     <inputSet ref="buildingAddress"/>
1546     <input type="choice" category="Religion" name="Religion" key="religion" description="The religion to which this place of worship belongs.">
1547       <choice value="christian" text="Christianity (church)"/>
1548       <choice value="jewish" text="Judaism (synagogue)"/>
1549     </input>
1550     <inputSet ref="common"/>
1551   </feature>
1552
1553
1554   <feature name="Public building">
1555     <category>buildings</category>
1556     <icon image="features/pois/building_generic.png">
1557       <b>${name} ${addr:housename}</b><br/>
1558       ${addr:housenumber} ${addr:street} ${addr:postcode}
1559     </icon>
1560
1561     <area/>
1562     <tag k="amenity" v="public_building"/>
1563     <tag k="building" v="yes"/>
1564     <inputSet ref="names"/>
1565     <inputSet ref="buildingAddress"/>
1566     <inputSet ref="common"/>
1567   </feature>
1568
1569
1570   <feature name="Hospital">
1571     <category>buildings</category>
1572     <icon image="features/pois/health_hospital.n.24.png">
1573       <b>${name} ${addr:housename}</b><br/>
1574       ${addr:housenumber} ${addr:street} ${addr:postcode}
1575     </icon>
1576
1577     <area/>
1578     <tag k="amenity" v="hospital"/>
1579     <tag k="building" v="yes"/>
1580     <inputSet ref="names"/>
1581     <inputSet ref="buildingAddress"/>
1582     <inputSet ref="common"/>
1583   </feature>
1584
1585
1586
1587   <feature name="Museum">
1588     <category>buildings</category>
1589     <icon image="features/pois/tourist_museum.n.24.png">
1590       <b>${name} ${addr:housename}</b><br/>
1591       ${addr:housenumber} ${addr:street} ${addr:postcode}
1592     </icon>
1593
1594     <area/>
1595     <tag k="tourism" v="museum"/>
1596     <inputSet ref="names"/>
1597     <inputSet ref="buildingAddress"/>
1598     <inputSet ref="common"/>
1599   </feature>
1600
1601
1602   <feature name="Zoo">
1603     <category>buildings</category>
1604     <icon image="features/pois/tourist_zoo.n.24.png">
1605       <b>${name} ${addr:housename}</b><br/>
1606       ${addr:housenumber} ${addr:street} ${addr:postcode}
1607     </icon>
1608
1609     <area/>
1610     <tag k="tourism" v="zoo"/>
1611     <inputSet ref="names"/>
1612     <inputSet ref="buildingAddress"/>
1613     <inputSet ref="common"/>
1614   </feature>
1615
1616
1617   <feature name="Stadium">
1618     <category>buildings</category>
1619     <icon image="icons/tourist_blank.png">
1620       <b>${name} ${addr:housename}</b><br/>
1621       ${addr:housenumber} ${addr:street} ${addr:postcode}
1622     </icon>
1623
1624     <area/>
1625     <tag k="leisure" v="stadium"/>
1626     <inputSet ref="names"/>
1627     <inputSet ref="buildingAddress"/>
1628     <inputSet ref="common"/>
1629   </feature>
1630
1631
1632   <feature name="Building">
1633     <category>buildings</category>
1634     <icon image="features/pois/building_generic.png">
1635       <b>${name} ${addr:housename}</b><br/>
1636       ${addr:housenumber} ${addr:street} ${addr:postcode}
1637     </icon>
1638
1639     <area/>
1640     <!-- <tag k="building" v="*"/> -->
1641     <tag k="building" v="yes"/>
1642     <inputSet ref="names"/>
1643     <inputSet ref="buildingAddress"/>
1644     <inputSet ref="common"/>
1645   </feature>
1646
1647
1648   <feature name="Sports centre">
1649     <category>buildings</category>
1650     <icon image="features/pois/sport_leisure_centre.n.24.png">
1651       <b>${name} ${addr:housename}</b><br/>
1652       ${addr:housenumber} ${addr:street} ${addr:postcode}
1653     </icon>
1654
1655     <area/>
1656     <point/>
1657     <tag k="leisure" v="sports_centre"/>
1658     <inputSet ref="names"/>
1659     <inputSet ref="buildingAddress"/>
1660     <inputSet ref="pitchSport"/>
1661     <inputSet ref="common"/>
1662   </feature>
1663
1664
1665
1666   <!-- ************************************************************************
1667        Landuse
1668        ************************************************************************ -->
1669
1670   <feature name="Industrial Area">
1671     <category>landuse</category>
1672     <area/>
1673     <icon image="features/pois/building_generic.png">
1674       <b>${name}</b>
1675     </icon>
1676     <tag k="landuse" v="industrial"/>
1677     <inputSet ref="simpleName"/>
1678     <inputSet ref="common"/>
1679   </feature>
1680
1681
1682   <feature name="Offices">
1683     <category>landuse</category>
1684     <area/>
1685     <icon image="features/pois/building_generic.png">
1686       <b>${name}</b>
1687     </icon>
1688     <tag k="landuse" v="commercial"/>
1689     <inputSet ref="simpleName"/>
1690     <inputSet ref="common"/>
1691   </feature>
1692
1693   <feature name="Residential Area">
1694     <category>landuse</category>
1695     <area/>
1696     <icon image="features/pois/building_generic.png">
1697       <b>${name}</b>
1698     </icon>
1699     <tag k="landuse" v="residential"/>
1700     <inputSet ref="simpleName"/>
1701     <inputSet ref="common"/>
1702   </feature>
1703
1704   <feature name="Retail Area">
1705     <category>landuse</category>
1706     <area/>
1707     <icon image="features/pois/building_generic.png">
1708       <b>${name}</b>
1709     </icon>
1710     <tag k="landuse" v="retail"/>
1711     <inputSet ref="simpleName"/>
1712     <inputSet ref="common"/>
1713   </feature>
1714
1715   <feature name="Construction Site">
1716     <category>landuse</category>
1717     <area/>
1718     <icon image="features/pois/building_generic.png">
1719       <b>${name}</b>
1720     </icon>
1721     <tag k="landuse" v="construction"/>
1722     <inputSet ref="simpleName"/>
1723     <inputSet ref="common"/>
1724   </feature>
1725
1726
1727   <feature name="Marketplace">
1728     <category>landuse</category>
1729     <point />
1730     <area/>
1731     <icon image="features/pois/shopping_greengrocer.n.24.png">
1732       <b>${name}</b>
1733     </icon>
1734     <tag k="amenity" v="marketplace"/>
1735     <inputSet ref="simpleName"/>
1736     <inputSet ref="common"/>
1737   </feature>
1738
1739
1740   <feature name="Cemetery">
1741     <category>landuse</category>
1742     <point />
1743     <area/>
1744     <icon image="features/pois/place_of_worship_unknown3.n.24.png">
1745       <b>${name}</b>
1746     </icon>
1747     <tag k="landuse" v="cemetery"/>
1748     <inputSet ref="simpleName"/>
1749     <inputSet ref="common"/>
1750   </feature>
1751
1752   <feature name="Graveyard">
1753     <category>landuse</category>
1754     <point />
1755     <area/>
1756     <icon image="features/pois/place_of_worship_unknown3.n.24.png">
1757       <b>${name}</b>
1758     </icon>
1759     <tag k="amenity" v="grave_yard"/>
1760     <inputSet ref="simpleName"/>
1761     <inputSet ref="common"/>
1762   </feature>
1763
1764   <feature name="Quarry">
1765     <category>landuse</category>
1766     <icon image="features/pois/poi_mine.n.24.png"/>
1767     <area/>
1768     <tag k="landuse" v="quarry"/>
1769     <inputSet ref="simpleName"/>
1770     <inputSet ref="common"/>
1771   </feature>
1772
1773
1774   <feature name="Military">
1775     <category>landuse</category>
1776     <icon image="features/pois/poi_military_bunker.n.24.png"/>
1777     <area/>
1778     <tag k="landuse" v="military"/>
1779     <inputSet ref="simpleName"/>
1780     <inputSet ref="common"/>
1781   </feature>
1782
1783
1784   <feature name="Conservation">
1785     <category>natural</category>
1786     <icon image="icons/natural_blank.png"/>
1787     <area/>
1788     <tag k="landuse" v="conservation"/>
1789     <inputSet ref="simpleName"/>
1790     <inputSet ref="common"/>
1791   </feature>
1792
1793
1794
1795
1796
1797   <feature name="Playground">
1798     <category>sport</category>
1799     <area/>
1800     <point/>
1801     <icon image="features/pois/amenity_playground.n.24.png">
1802       <b>${name}</b>
1803     </icon>
1804     <tag k="leisure" v="playground"/>
1805     <inputSet ref="simpleName"/>
1806     <inputSet ref="common"/>
1807   </feature>
1808
1809
1810   <feature name="Golf course">
1811     <category>sport</category>
1812     <area/>
1813     <icon  image="features/pois/sport_golf.n.24.png">
1814       <b>${name}</b>
1815     </icon>
1816     <tag k="leisure" v="golf_course"/>
1817     <inputSet ref="simpleName"/>
1818     <inputSet ref="common"/>
1819   </feature>
1820
1821
1822   <feature name="Recreation ground">
1823     <category>landuse</category>
1824     <category>sport</category>    
1825     <area/>
1826     <icon image="features/pois/sport_leisure_centre.n.24.png">
1827       <b>${name}</b>
1828     </icon>
1829     <tag k="leisure" v="recreation_ground"/>
1830     <inputSet ref="simpleName"/>
1831     <inputSet ref="common"/>
1832   </feature>
1833
1834
1835   <feature name="Sports pitch">
1836     <category>landuse</category>
1837     <area/>
1838     <icon image="features/pois/sport_leisure_centre.n.24.png">
1839       <b>${name}</b>
1840     </icon>
1841     <tag k="leisure" v="pitch"/>
1842     <inputSet ref="simpleName"/>
1843     <inputSet ref="pitchSport"/>
1844     <inputSet ref="common"/>
1845   </feature>
1846
1847
1848   <inputSet id="pitchSport">
1849     <input name="Sport" presence="always" category="Sport" key="sport" type="choice" description="The sport that is predominantly played here.">
1850       <choice value="9pin" text="9 pin bowling"/>
1851       <choice value="10pin" text="10 pin bowling"/>
1852       <choice value="american_football" text="American football"/>
1853       <choice value="archery" text="Archery"/>
1854       <choice value="athletics" text="Athletics"/>
1855       <choice value="australian_football" text="Australian Rules Football"/>
1856       <choice value="baseball" text="Baseball"/>
1857       <choice value="basketball" text="Basketball"/>
1858       <choice value="beachvolleyball" text="Beach volleyball"/>
1859       <choice value="boules" text="Boules/petanque/bocci"/>
1860       <choice value="bowls" text="Lawn bowls"/>
1861       <choice value="canadian_football" text="Canadian football"/>
1862       <choice value="chess" text="Chess"/>
1863       <choice value="cricket" text="Cricket"/>
1864       <choice value="cricket_nets" text="Cricket nets"/>
1865       <choice value="croquet" text="Croquet"/>
1866       <choice value="equestrian" text="Equestrian"/>
1867       <choice value="gaelic_football" text="Gaelic football"/>
1868       <choice value="gymnastics" text="Gymnastics"/>
1869       <choice value="team_handball" text="(Team) handball"/>
1870       <choice value="hockey" text="(Field) hockey"/>
1871       <choice value="korfball" text="Korball"/>
1872       <choice value="pelota" text="Pelota"/>
1873       <choice value="rugby_league" text="Rugby league"/>
1874       <choice value="rugby_union" text="Rugby union"/>
1875       <choice value="shooting" text="Shooting"/>
1876       <choice value="skating" text="Ice skating"/>
1877       <choice value="skateboard" text="Skateboarding"/>
1878       <choice value="soccer" text="Soccer/football"/>
1879       <choice value="swimming" text="Swimming"/>
1880       <choice value="table_tennis" text="Table tennis"/>
1881       <choice value="tennis" text="Tennis"/>
1882       <choice value="volleyball" text="Volleyball"/>
1883     </input>
1884   </inputSet>
1885
1886   <feature name="Sports track">
1887     <category>landuse</category>
1888     <category>sport</category>
1889     <area/>
1890     <icon image="features/pois/sport_leisure_centre.n.24.png">
1891       <b>${name}</b>
1892     </icon>
1893     <tag k="leisure" v="track"/>
1894     <inputSet ref="simpleName"/>
1895     <inputSet ref="common"/>
1896   </feature>
1897
1898
1899   <!-- ************************************************************************
1900        Power
1901        ************************************************************************ -->
1902
1903   <feature name="High-voltage line">
1904     <category>power</category>
1905     <icon image="features/power_high.png"/>
1906     <line/>
1907     <tag k="power" v="line"/>
1908     <inputSet ref="powerCables"/>
1909     <inputSet ref="common"/>
1910   </feature>
1911
1912
1913   <feature name="Low-voltage line">
1914     <category>power</category>
1915     <icon image="features/power_low.png"/>
1916     <line/>
1917     <tag k="power" v="minor_line"/>
1918     <inputSet ref="powerCables"/>
1919     <inputSet ref="common"/>
1920   </feature>
1921
1922
1923   <feature name="High-voltage pylon">
1924     <category>power</category>
1925     <icon image="icons/power_tower_24.png"/>
1926     <point/>
1927     <tag k="power" v="tower"/>
1928     <inputSet ref="common"/>
1929   </feature>
1930
1931
1932   <feature name="Power pole">
1933     <category>power</category>
1934     <icon image="icons/power_pole_24.png"/>
1935     <point/>
1936     <tag k="power" v="pole"/>
1937     <inputSet ref="common"/>
1938   </feature>
1939
1940
1941   <feature name="Plant (station)">
1942     <category>power</category>
1943     <icon image="icons/power_blank.png"/>
1944     <area/>
1945     <point/>
1946     <tag k="power" v="generator"/>
1947     <inputSet ref="names"/>
1948     <input type="choice" presence="always"  name="Energy source" key="power_source" category="Power">
1949       <choice value="coal" text="Coal"/>
1950       <choice value="gas" text="Gas"/>
1951       <choice value="oil" text="Oil"/>
1952       <choice value="fossil" text="Unspecified fossil fuel"/>
1953       <choice value="hydro" text="Hydroelectric"/>
1954       <choice value="geothermal" text="Geothermal"/>
1955       <choice value="nuclear" text="Nuclear"/>
1956       <choice value="wind" text="Wind"/>
1957       <choice value="photovoltaic" text="Solar PV"/>
1958       <choice value="solar_thermal" text="Solar thermal"/>
1959       <choice value="biofuel" text="Biofuel"/>
1960     </input>
1961     <inputSet ref="common"/>
1962   </feature>
1963
1964
1965   <feature name="Substation">
1966     <category>power</category>
1967     <icon image="icons/power_blank.png"/>"
1968     <area/>
1969     <point/>
1970     <tag k="power" v="station"/>
1971     <inputSet ref="common"/>
1972   </feature>
1973
1974
1975   <feature name="Transformer">
1976     <category>power</category>
1977     <icon image="icons/power_blank.png"/>
1978     <area/>
1979     <point/>
1980     <tag k="power" v="sub_station"/>
1981     <inputSet ref="common"/>
1982   </feature>
1983
1984
1985   <inputSet id="powerCables">
1986     <input type="choice" name="Cables" key="cables" presence="always" category="Power">
1987       <choice value="2" text="2"/>
1988       <choice value="3" text="3"/>
1989       <choice value="4" text="4"/>
1990       <choice value="6" text="6"/>
1991       <choice value="8" text="8"/>
1992       <choice value="10" text="10"/>
1993       <choice value="12" text="12"/>
1994     </input>
1995     <input type="choice" name="Voltage" key="voltage" presence="always" category="Power">
1996       <!-- choices based on http://osmdoc.com/en/tag/voltage/#values-->
1997       <choice value="400" text="400 V"/>
1998       <choice value="600" text="600 V"/>
1999       <choice value="750" text="750 V"/>
2000       <choice value="1500" text="1500 V"/>
2001       <choice value="3000" text="3000 V"/>
2002       <choice value="15000" text="15 kV"/>
2003       <choice value="20000" text="20 kV"/>
2004       <choice value="35000" text="35 kV"/>
2005       <choice value="110000" text="110 kV"/>
2006       <choice value="132000" text="132 kV"/>
2007       <choice value="138000" text="238 kV"/>
2008       <choice value="220000" text="220 kV"/>
2009       <choice value="380000" text="380 kV"/>
2010     </input>
2011   </inputSet>
2012
2013   <!-- Places -->
2014
2015
2016   <feature name="Hamlet">
2017     <category>places</category>
2018     <icon image="icons/place.png"/>
2019     <point/>
2020     <area/>
2021     <tag k="place" v="hamlet" />
2022     <inputSet ref="names"/>
2023     <inputSet ref="places"/>
2024     <inputSet ref="common"/>
2025   </feature>
2026
2027   <feature name="Village">
2028     <category>places</category>
2029     <icon image="icons/place.png"/>
2030     <point/>
2031     <area/>
2032     <tag k="place" v="village" />
2033     <inputSet ref="names"/>
2034     <inputSet ref="places"/>
2035     <inputSet ref="common"/>
2036   </feature>
2037
2038   <feature name="Suburb">
2039     <category>places</category>
2040     <icon image="icons/place.png"/>
2041     <point/>
2042     <area/>
2043     <tag k="place" v="suburb" />
2044     <inputSet ref="names"/>
2045     <inputSet ref="places"/>
2046     <inputSet ref="common"/>
2047   </feature>
2048
2049   <feature name="Town">
2050     <category>places</category>
2051     <icon image="icons/place.png"/>
2052     <point/>
2053     <area/>
2054     <tag k="place" v="town" />
2055     <inputSet ref="names"/>
2056     <inputSet ref="places"/>
2057     <inputSet ref="common"/>
2058   </feature>
2059
2060   <feature name="City">
2061     <category>places</category>
2062     <icon image="icons/place.png"/>
2063     <point/>
2064     <area/>
2065     <tag k="place" v="city" />
2066     <inputSet ref="names"/>
2067     <inputSet ref="places"/>
2068     <inputSet ref="common"/>
2069   </feature>
2070
2071   <!-- ************************************************************************
2072        POIs
2073        ************************************************************************ -->
2074
2075   <!-- =========== Amenity ============ -->
2076
2077   <feature name="Fire station">
2078     <category>amenity</category>
2079     <icon image="features/pois/amenity_firestation2.n.24.png"/>
2080     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfire_station</help>
2081     <point/>
2082     <tag k="amenity" v="fire_station"/>
2083     <input type="freetext" presence="always" category="" name="name" key="name" description="The Name of it." priority="low"/>
2084     <inputSet ref="common"/>
2085   </feature>
2086
2087
2088   <feature name="Police Station">
2089     <category>amenity</category>
2090     <icon image="features/pois/amenity_police2.n.24.png"/>
2091     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpolice</help>
2092     <point/>
2093     <area/>
2094     <tag k="amenity" v="police"/>
2095     <inputSet ref="simpleName"/>
2096     <inputSet ref="common"/>
2097   </feature>
2098
2099   <feature name="Library">
2100     <category>amenity</category>
2101     <icon image="features/pois/amenity_library.n.24.png">
2102       ${name}
2103     </icon>
2104     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dlibrary</help>
2105     <point/>
2106     <area/>
2107     <tag k="amenity" v="library"/>
2108     <inputSet ref="simpleName"/>
2109     <inputSet ref="common"/>
2110   </feature>
2111
2112
2113   <feature name="Hospital">
2114     <category>amenity</category>
2115     <icon image="features/pois/health_hospital.n.24.png"/>
2116     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dhospital</help>
2117     <point/>
2118     <area/>
2119     <tag k="amenity" v="hospital"/>
2120     <input type="freetext" presence="always" category="" name="name" key="name" description="The Name of it." priority="low"/>
2121     <input type="choice" presence="always" category="Hospital" name="Emergency treatment available" key="emergency" description="Are there accident and emergency facilities at this hospital?">
2122       <choice value="yes" text="Yes"/>
2123       <choice value="no" text="No"/>
2124     </input>
2125     <inputSet ref="common"/>
2126   </feature>
2127
2128
2129   <feature name="Place of Worship">
2130     <category>amenity</category>
2131     <icon image="icons/place_of_worship.png"/>
2132     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dplace_of_worship</help>
2133     <point/>
2134     <tag k="amenity" v="place_of_worship"/>
2135     <input type="freetext" presence="always" category="" name="name" key="name" description="The name of it." priority="low"/>
2136     <input type="choice" presence="always" category="" name="Religion" key="religion" description="The religion worshipped here.">
2137       <choice value="christian" text="Christianity (church)"/>
2138       <choice value="jewish" text="Judaism (synagogue)"/>
2139       <choice value="muslim" text="Islam (mosque)"/>
2140       <choice value="hindu" text="Hinduism (temple)"/>
2141       <choice value="buddhist" text="Buddhism (temple)"/>
2142       <choice value="sikh" text="Sikhism (gurdwara)"/>
2143       <choice value="shinto" text="Shinto (shrine)"/>
2144     </input>
2145
2146     <input type="freetext" presence="always" category="" name="denomination" key="denomination" description="The denomination of the religion worshiped here." priority="low"/>
2147     <inputSet ref="common"/>
2148   </feature>
2149
2150
2151   <feature name="ATM">
2152     <category>amenity</category>
2153     <icon image="features/pois/money_atm.n.24.png"/>
2154     <help>http://wiki.openstreetmap.org/wiki/Atm</help>
2155     <point/>
2156     <tag k="amenity" v="atm"/>
2157     <input type="freetext" presence="always" category="Banking" name="Operator" key="operator" description="The organisation that provides this ATM" priority="low"/>
2158     <input type="freetext" presence="always" category="Banking" name="Fee" key="fee" description="Is there a charge for using this ATM? If so how much?"/>
2159     <inputSet ref="common"/>
2160   </feature>
2161
2162
2163   <feature name="Bank">
2164     <category>amenity</category>
2165     <icon image="features/pois/money_bank2.n.24.png">
2166       ${name}
2167     </icon>
2168     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbank</help>
2169     <point/>
2170     <tag k="amenity" v="bank"/>
2171     <inputSet ref="names"/>
2172     <inputSet ref="buildingAddress"/>
2173     <input type="choice" presence="always" category="Bank" name="Public ATM available" key="atm" description="Is there a public ATM available?">
2174       <choice value="yes" text="Yes"/>
2175       <choice value="no" text="No"/>
2176     </input>
2177     <inputSet ref="common"/>
2178   </feature>
2179
2180
2181   <feature name="Recycling">
2182     <category>amenity</category>
2183     <icon image="features/pois/amenity_recycling.n.24.png"/>
2184     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Drecycling</help>
2185     <point/>
2186     <tag k="amenity" v="recycling"/>
2187     <inputSet ref="common"/>
2188   </feature>
2189
2190
2191   <feature name="School">
2192     <category>amenity</category>
2193     <icon image="features/pois/education_school.n.24.png">
2194       ${name}
2195     </icon>
2196     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dschool</help>
2197     <point/>
2198     <tag k="amenity" v="school"/>
2199     <inputSet ref="names"/>
2200     <inputSet ref="buildingAddress"/>
2201     <inputSet ref="common"/>
2202   </feature>
2203
2204   <feature name="Kindergarten">
2205     <category>amenity</category>
2206     <category>buildings</category>
2207     <icon image="features/pois/education_nursery3.n.24.png">
2208       ${name}
2209     </icon>
2210     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dkindergarten</help>
2211     <point/>
2212     <tag k="amenity" v="kindergarten"/>
2213     <inputSet ref="names"/>
2214     <inputSet ref="buildingAddress"/>
2215     <inputSet ref="common"/>
2216   </feature>
2217
2218   <feature name="Town hall">
2219     <category>amenity</category>
2220     <icon >
2221       ${name}
2222     </icon>
2223     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dtownhall</help>
2224     <point/>
2225     <tag k="amenity" v="townhall"/>
2226     <inputSet ref="names"/>
2227     <inputSet ref="buildingAddress"/>
2228     <inputSet ref="common"/>
2229   </feature>
2230
2231
2232   <feature name="Post Box">
2233     <category>amenity</category>
2234     <icon image="features/pois/amenity_post_box.n.24.png">
2235       ${ref}
2236     </icon>
2237     <help>http://wiki.openstreetmap.org/wiki/Post_box</help>
2238     <point/>
2239     <tag k="amenity" v="post_box"/>
2240     <input type="freetext" presence="always" category="Naming" name="Ref" key="ref" description="Reference number of the post box"/>
2241     <input type="freetext" presence="always" category="Naming" name="Operator" key="operator" description="The provider of the postal service" priority="low"/>
2242     <inputSet ref="common"/>
2243   </feature>
2244
2245   <feature name="Post Office">
2246     <category>amenity</category>
2247     <category>buildings</category>
2248     <icon image="features/pois/amenity_post_office.n.24.png">
2249       ${name}
2250     </icon>
2251     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity=post_office</help>
2252     <point/>
2253     <area/>
2254     <tag k="amenity" v="post_office"/>
2255     <input type="freetext" presence="always" category="Naming" name="Ref" key="ref" description="Reference number of the post office"/>
2256     <input type="freetext" presence="always" category="Naming" name="Operator" key="operator" description="The provider of the postal service" priority="low"/>
2257     <inputSet ref="common"/>
2258     <inputset ref="simpleName"/>
2259   </feature>
2260
2261   <feature name="Trash/rubbish bin">
2262     <category>amenity</category>
2263     <icon image="features/pois/amenity_waste_bin.n.24.png">
2264       ${ref}
2265     </icon>
2266     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity=waste_basket</help>
2267     <point/>
2268     <tag k="amenity" v="waste_basket"/>
2269     <inputSet ref="common"/>
2270   </feature>
2271
2272
2273   <feature name="Toilets">
2274     <category>amenity</category>
2275     <icon image="features/pois/amenity_toilets.n.24.png">
2276       ${ref}
2277     </icon>
2278     <point/>
2279     <tag k="amenity" v="toilets"/>
2280     <inputSet ref="common"/>
2281   </feature>
2282
2283   <feature name="Water fountain">
2284     <category>amenity</category>
2285     <category>water</category>
2286     <category>foodanddrink</category>
2287     <icon image="features/pois/food_drinkingtap.n.24.png">
2288       ${ref}
2289     </icon>
2290     <point/>
2291     <tag k="amenity" v="drinking_water"/>
2292     <inputSet ref="common"/>
2293   </feature>
2294
2295   <feature name="Shelter">
2296     <category>amenity</category>
2297     <icon image="features/pois/accommodation_shelter2.n.24.png">
2298       ${name}
2299     </icon>    
2300     <point/>
2301     <area/>
2302     <tag k="amenity" v="shelter"/>
2303     <inputset ref="names"/>
2304     <inputSet ref="common"/>
2305   </feature>
2306
2307
2308   <feature name="Barbecue">
2309     <category>amenity</category>
2310     <icon image="features/pois/tourist_picnic.n.24.png"/>
2311     <!-- specific icon needed -->
2312     <point/>
2313     <tag k="amenity" v="bbq"/>
2314     <inputSet ref="common"/>
2315   </feature>
2316
2317   <feature name="Hunting stand">
2318     <category>amenity</category>
2319     <category>sport</category>
2320     <!-- icon needed -->
2321     <point/>
2322     <tag k="amenity" v="hunting_stand"/>
2323     <inputSet ref="common"/>
2324     <inputSet ref="names"/>
2325   </feature>
2326
2327
2328   <feature name="Park bench">
2329     <category>amenity</category>
2330     <icon image="features/pois/amenity_bench.n.24.png" />
2331     <point/>
2332     <tag k="amenity" v="bench"/>
2333     <inputSet ref="common"/>
2334   </feature>
2335
2336   <feature name="Public telephone">
2337     <category>amenity</category>
2338     <icon image="features/pois/amenity_telephone.n.24.png" />
2339     <point/>
2340     <tag k="amenity" v="telephone"/>
2341     <inputSet ref="common"/>
2342   </feature>
2343
2344   <feature name="Emergency phone">
2345     <category>amenity</category>
2346     <icon image="features/pois/emergency-telephone-24.png" />
2347     <!-- icon from http://www.clker.com/clipart-emergency-telephone-blue.html, feel free to (re)move this notice -->
2348     <point/>
2349     <tag k="amenity" v="emergency_phone"/>
2350     <inputSet ref="common"/>
2351     <input type="freetext" presence="always" category="Naming" name="Ref" key="ref" description="Reference number of emergency phone."/>    
2352   </feature>
2353
2354
2355   <feature name="Swimming pool">
2356     <category>amenity</category>
2357     <category>sport</category>
2358     <icon image="features/pois/sport_swimming_outdoor.n.24.png">
2359       ${name}
2360     </icon>
2361     <point/>
2362     <area/>
2363     <tag k="amenity" v="swimming_pool"/>
2364     <inputSet ref="simpleName"/>    
2365     <inputSet ref="common"/>
2366
2367   </feature>
2368
2369   <feature name="Fountain">
2370     <category>amenity</category>
2371     <icon image="features/pois/amenity_fountain2.n.24.png">
2372     ${name}
2373     </icon>
2374     <point/>
2375     <tag k="amenity" v="fountain"/>
2376     <inputSet ref="common"/>
2377     <inputSet ref="simpleName"/>
2378   </feature>
2379
2380   <feature name="Vending machine">
2381     <category>amenity</category>
2382     <category>foodanddrink</category>
2383     <icon>A vending machine.</icon>
2384     <!-- icon needed -->
2385     <point/>
2386     <tag k="amenity" v="vending_machine"/>
2387     <inputSet ref="common"/>
2388     <inputSet ref="simpleName"/>
2389     <input type="freetext" presence="always" name="Product" key="vending" description="What is being sold: tickets, food, maps..."/>
2390     <input type="operator" presence="always" name="Operator" key="operator" description="Which company provides the service" />
2391   </feature>
2392
2393
2394   <!-- ========= Accommodation ========= -->
2395   <!-- Split off from tourism by Steve Bennett, can be remerged if it doesn't work out. -->
2396   <feature name="Hotel">
2397     <category>accommodation</category>
2398     <icon image="features/pois/accommodation_hotel.n.24.png"/>
2399     <help>http://wiki.openstreetmap.org/wiki/Tag:tourism%3Dhotel</help>
2400     <point/>
2401     <area/>
2402     <tag k="tourism" v="hotel"/>
2403     <inputSet ref="simpleName"/>
2404     <inputSet ref="common"/>
2405   </feature>
2406
2407
2408   <feature name="Motel">
2409     <category>accommodation</category>
2410     <help>http://wiki.openstreetmap.org/wiki/Tag:tourism%3Dmotel</help>
2411     <point/>
2412     <area/>
2413     <icon image="features/pois/accommodation_motel.n.24.png"/>
2414     <tag k="tourism" v="motel"/>
2415     <inputSet ref="simpleName"/>
2416     <inputSet ref="common"/>
2417   </feature>
2418
2419
2420
2421   <feature name="Hostel">
2422     <category>accommodation</category>
2423     <point/>
2424     <area/>
2425     <inputSet ref="simpleName"/>
2426     <icon image="features/pois/accommodation_youth_hostel.n.24.png"/>
2427     <tag k="tourism" v="hostel"/>
2428     <inputSet ref="common"/>
2429   </feature>
2430
2431
2432   <!-- Note that tourism=bed_and_breakfast also gets some use. -->
2433   <feature name="Guesthouse (B&amp;B)">
2434     <category>accommodation</category>
2435     <point/>
2436     <area/>
2437     <inputSet ref="simpleName"/>
2438     <icon image="features/pois/accommodation_bed_and_breakfast.n.24.png"/>
2439     <tag k="tourism" v="guest_house"/>
2440     <inputSet ref="common"/>
2441   </feature>
2442
2443
2444   <feature name="Campsite">
2445     <category>accommodation</category>
2446     <point/>
2447     <area/>
2448     <inputSet ref="simpleName"/>
2449     <icon image="features/pois/accommodation_camping.n.24.png"/>
2450     <tag k="tourism" v="camp_site"/>
2451     <inputSet ref="common"/>
2452   </feature>
2453
2454
2455   <feature name="Caravan park">
2456     <category>accommodation</category>
2457     <point/>
2458     <area/>
2459     <inputSet ref="simpleName"/>
2460     <icon image="features/pois/accommodation_caravan_park.n.24.png"/>
2461     <tag k="tourism" v="caravan_site"/>
2462     <inputSet ref="common"/>
2463   </feature>
2464
2465
2466   <feature name="Alpine hut">
2467     <category>accommodation</category>
2468     <point/>
2469     <area/>
2470     <inputSet ref="simpleName"/>
2471     <icon image="features/pois/accommodation_alpinehut.n.24.png"/>
2472     <tag k="tourism" v="alpine_hut"/>
2473     <inputSet ref="common"/>
2474   </feature>
2475
2476
2477   <feature name="Chalet">
2478     <category>accommodation</category>
2479     <icon image="features/pois/accommodation_chalet.n.24.png"/>
2480     <point/>
2481     <area/>
2482     <inputSet ref="simpleName"/>
2483     <tag k="tourism" v="chalet"/>
2484     <inputSet ref="common"/>
2485   </feature>
2486
2487
2488
2489   <!-- ========= Tourism ========= -->
2490   <feature name="Attraction">
2491     <category>tourism</category>
2492     <icon image="features/pois/tourist_attraction.n.24.png">
2493       <b>${name} ${addr:housename}</b><br/>
2494       ${addr:housenumber} ${addr:street} ${addr:postcode}
2495     </icon>
2496
2497     <area/>
2498     <tag k="tourism" v="attraction"/>
2499     <inputSet ref="names"/>
2500     <inputSet ref="buildingAddress"/>
2501     <inputSet ref="common"/>
2502   </feature>
2503
2504   <feature name="Museum">
2505     <category>tourism</category>
2506     <icon image="features/pois/tourist_museum.n.24.png"/>
2507     <help>http://wiki.openstreetmap.org/wiki/Tag:tourism%3Dmuseum</help>
2508     <point/>
2509     <area/>
2510     <tag k="tourism" v="museum"/>
2511     <inputSet ref="simpleName"/>
2512     <inputSet ref="common"/>
2513   </feature>
2514
2515
2516   <feature name="Archaeological">
2517     <category>tourism</category>
2518     <point/>
2519     <area/>
2520     <inputSet ref="simpleName"/>
2521     <icon image="features/pois/tourist_archaeological.n.24.png"/>
2522     <tag k="historic" v="archaeological_site"/>
2523     <inputSet ref="common"/>
2524   </feature>
2525
2526
2527   <feature name="Battlefield">
2528     <category>tourism</category>
2529     <point/>
2530     <area/>
2531     <inputSet ref="simpleName"/>
2532     <icon image="features/pois/tourist_battlefield.n.24.png"/>
2533     <tag k="historic" v="battlefield"/>
2534     <inputSet ref="common"/>
2535   </feature>
2536
2537
2538   <feature name="Castle">
2539     <category>tourism</category>
2540     <point/>
2541     <area/>
2542     <inputSet ref="simpleName"/>
2543     <icon image="features/pois/tourist_castle.n.24.png"/>
2544     <tag k="historic" v="castle"/>
2545     <inputSet ref="common"/>
2546   </feature>
2547
2548
2549   <feature name="Memorial">
2550     <category>tourism</category>
2551     <point/>
2552     <inputSet ref="simpleName"/>
2553     <icon image="features/pois/tourist_memorial.n.24.png"/>
2554     <tag k="historic" v="memorial"/>
2555     <inputSet ref="common"/>
2556   </feature>
2557
2558
2559   <feature name="Monument">
2560     <category>tourism</category>
2561     <point/>
2562     <inputSet ref="simpleName"/>
2563     <icon image="features/pois/tourist_monument.n.24.png"/>
2564     <tag k="historic" v="monument"/>
2565     <inputSet ref="common"/>
2566   </feature>
2567
2568
2569   <feature name="Picnic site">
2570     <category>tourism</category>
2571     <point/>
2572     <inputSet ref="simpleName"/>
2573     <icon image="features/pois/tourist_picnic.n.24.png"/>
2574     <tag k="tourism" v="picnic_site"/>
2575     <inputSet ref="common"/>
2576   </feature>
2577
2578
2579   <feature name="Ruin">
2580     <category>tourism</category>
2581     <point/>
2582     <area/>
2583     <inputSet ref="simpleName"/>
2584     <icon image="features/pois/tourist_ruin.n.24.png"/>
2585     <tag k="historic" v="ruin"/>
2586     <inputSet ref="common"/>
2587   </feature>
2588
2589
2590   <feature name="Cinema">
2591     <category>tourism</category>
2592     <icon image="features/pois/tourist_cinema.n.24.png"/>
2593     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcinema</help>
2594     <point/>
2595     <area/>
2596     <tag k="amenity" v="cinema"/>
2597     <input type="freetext" presence="always" category="" name="name" key="name" description="The name of the cinema" priority="low"/>
2598     <inputSet ref="common"/>
2599   </feature>
2600
2601
2602   <feature name="Theatre">
2603     <category>tourism</category>
2604     <point/>
2605     <area/>
2606     <inputSet ref="simpleName"/>
2607     <icon image="features/pois/tourist_theatre.n.24.png"/>
2608     <tag k="amenity" v="theatre"/>
2609     <inputSet ref="common"/>
2610   </feature>
2611
2612
2613   <feature name="Viewpoint">
2614     <category>tourism</category>
2615     <point/>
2616     <inputSet ref="simpleName"/>
2617     <icon image="features/pois/tourist_view_point.n.24.png"/>
2618     <tag k="tourism" v="viewpoint"/>
2619     <inputSet ref="common"/>
2620   </feature>
2621
2622
2623   <feature name="Zoo">
2624     <category>tourism</category>
2625     <point/>
2626     <area/>
2627     <icon image="features/pois/tourist_zoo.n.24.png"/>
2628     <tag k="tourism" v="zoo"/>
2629     <inputSet ref="simpleName"/>
2630     <inputSet ref="common"/>
2631   </feature>
2632
2633
2634   <feature name="Information">
2635     <category>tourism</category>
2636     <icon image="features/pois/amenity_information.n.24.png"/>
2637     <point/>
2638     <tag k="tourism" v="information"/>
2639     <inputSet ref="simpleName"/>
2640     <inputSet ref="common"/>
2641   </feature>
2642
2643
2644   <feature name="Artwork">
2645     <category>tourism</category>
2646     <icon image="features/pois/tourist_art_gallery2.n.24.png"/>
2647     <point/>
2648     <inputSet ref="simpleName"/>
2649     <tag k="tourism" v="artwork"/>
2650     <inputSet ref="common"/>
2651   </feature>
2652
2653
2654
2655   <feature name="Theme park">
2656     <category>tourism</category>
2657     <icon image="features/pois/tourist_theme_park.n.24.png"/>
2658     <point/>
2659     <area/>
2660     <inputSet ref="simpleName"/>
2661     <tag k="tourism" v="theme_park"/>
2662     <inputSet ref="common"/>
2663   </feature>
2664
2665   <!-- ========= Transport ========= -->
2666
2667   <feature name="Aerodrome">
2668     <category>aeroway</category>
2669     <icon image="features/pois/transport_aerodrome.n.24.png"/>
2670     <help>http://wiki.openstreetmap.org/wiki/Tag:aeroway%3Daerodrome</help>
2671     <point/>
2672     <tag k="aeroway" v="aerodrome"/>
2673     <input type="freetext" presence="always" category="" name="name" key="name" description="The name of the aerodrome/airport" priority="low"/>
2674     <inputSet ref="common"/>
2675   </feature>
2676
2677
2678   <feature name="Bus Stop">
2679     <category>transport</category>
2680     <icon image="features/pois/transport_bus_stop2.n.24.png">
2681       ${name} ${local_ref}
2682     </icon>
2683     <point/>
2684     <tag k="highway" v="bus_stop"/>
2685     <inputSet ref="buses"/>
2686     <inputSet ref="common"/>
2687   </feature>
2688
2689
2690   <feature name="Car Parking">
2691     <category>transport</category>
2692     <icon image="features/pois/transport_parking_car.n.24.png">
2693       ${name}
2694     </icon>
2695     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dparking</help>
2696     <point/>
2697     <area/>
2698     <tag k="amenity" v="parking"/>
2699     <inputSet ref="names"/>
2700     <input type="freetext" presence="onTagMatch" category="Naming" name="Operator" key="operator" description="The provider of the postal service" priority="low"/>
2701     <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"/>
2702     <inputSet ref="fee"/>
2703     <inputSet ref="common"/>
2704   </feature>
2705
2706
2707   <feature name="Bicycle Parking">
2708     <category>transport</category>
2709     <icon image="features/pois/transport_parking_bicycle.n.24.png">
2710       ${name} ${capacity}
2711     </icon>
2712     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_parking</help>
2713     <point/>
2714     <tag k="amenity" v="bicycle_parking"/>
2715     <inputSet ref="names"/>
2716     <input type="freetext" presence="onTagMatch" category="Naming" name="Operator" key="operator" description="The provider of the postal service" priority="low"/>
2717     <input type="number" minimum="0" maximum="99999" stepSize="1"
2718         presence="always" category="Cycle" name="Capacity" key="capacity"
2719         description="The number of bicycles that can be parked in the group of bicycle parking racks"/>
2720     <inputSet ref="fee"/>
2721     <input type="choice" presence="always" category="Cycle" name="Covered" key="covered" description="Is the cycle parking covered, so that the bikes are kept dry?">
2722       <choice value="yes" text="Yes"/>
2723       <choice value="no" text="No"/>
2724     </input>
2725     <inputSet ref="common"/>
2726   </feature>
2727
2728
2729   <feature name="Railway station">
2730     <category>transport</category>
2731     <icon image="features/pois/transport_train_station.n.24.png">
2732       <font size="14pt">
2733         <b>${name}</b>
2734       </font>
2735     </icon>
2736
2737     <point/>
2738     <tag k="railway" v="station"/>
2739     <inputSet ref="names"/>
2740     <input type="freetext" presence="onTagMatch" category="Naming" name="Reference" key="ref" description="The shortcode/reference for the station" priority="low"/>
2741     <input type="freetext" presence="onTagMatch" category="Naming" name="Operator" key="operator" description="The provider of the service" priority="low"/>
2742     <inputSet ref="common"/>
2743   </feature>
2744
2745
2746   <feature name="Fuel">
2747     <category>transport</category>
2748     <point/>
2749     <inputSet ref="simpleName"/>
2750     <icon image="features/pois/transport_fuel.n.24.png"/>
2751     <tag k="amenity" v="fuel"/>
2752     <input type="freetext" category="Naming" name="Operator" key="operator" description="The provider of the service"/>
2753     <input type="choice" category="Fuels" name="Diesel" key="diesel" description="Is diesel fuel sold here?">
2754       <choice value="yes" text="Yes"/>
2755       <choice value="no" text="No"/>
2756     </input>
2757     <input type="choice" category="Fuels" name="Octane 91" key="diesel" description="Is octane 91 unleaded fuel sold here?">
2758       <choice value="yes" text="Yes"/>
2759       <choice value="no" text="No"/>
2760     </input>
2761     <input type="choice" category="Fuels" name="Octane 95" key="octane_95" description="Is octane 95 unleaded fuel sold here?">
2762       <choice value="yes" text="Yes"/>
2763       <choice value="no" text="No"/>
2764     </input>
2765     <input type="choice" category="Fuels" name="Octane 98" key="octane_98" description="Is octane 98 unleaded fuel sold here?">
2766       <choice value="yes" text="Yes"/>
2767       <choice value="no" text="No"/>
2768     </input>
2769     <input type="choice" category="Fuels" name="Octane 100" key="octane_100" description="Is octane 100 unleaded fuel sold here?">
2770       <choice value="yes" text="Yes"/>
2771       <choice value="no" text="No"/>
2772     </input>
2773     <input type="choice" category="Fuels" name="Ethanol" key="ethanol" description="Is ethanol sold here?">
2774       <choice value="yes" text="Yes"/>
2775       <choice value="no" text="No"/>
2776     </input>
2777     <input type="choice" category="Fuels" name="LPG" key="lpg" description="Is LPG (liquid petroleum gas) sold here?">
2778       <choice value="yes" text="Yes"/>
2779       <choice value="no" text="No"/>
2780     </input>
2781     <input type="choice" category="Fuels" name="Octane 91" key="diesel" description="Is octane 91 unleaded fuel sold here?">
2782       <choice value="yes" text="Yes"/>
2783       <choice value="no" text="No"/>
2784     </input>
2785     <input type="choice" category="Fuels" name="Bio-diesel" key="biodiesel" description="Is biodiesel unleaded fuel sold here?">
2786       <choice value="yes" text="Yes"/>
2787       <choice value="no" text="No"/>
2788     </input>
2789
2790
2791     <inputSet ref="common"/>
2792   </feature>
2793
2794
2795   <feature name="Bus station">
2796     <category>transport</category>
2797     <point/>
2798     <inputSet ref="simpleName"/>
2799     <icon image="features/pois/transport_bus_station.n.24.png"/>
2800     <tag k="amenity" v="bus_station"/>
2801     <inputSet ref="common"/>
2802   </feature>
2803
2804
2805   <feature name="Taxi rank">
2806     <category>transport</category>
2807     <point/>
2808     <inputSet ref="simpleName"/>
2809     <icon image="features/pois/transport_taxi_rank.n.24.png"/>
2810     <tag k="amenity" v="taxi"/>
2811     <inputSet ref="common"/>
2812   </feature>
2813
2814
2815   <feature name="Tram stop">
2816     <category>transport</category><point/><inputSet ref="simpleName" />
2817     <icon image="features/pois/transport_tram_stop.n.24.png"/>
2818     <tag k="railway" v="tram_stop"/>
2819     <inputSet ref="common"/>
2820   </feature>
2821
2822
2823   <feature name="Bicycle rental">
2824     <category>transport</category>
2825     <point/>
2826     <inputSet ref="simpleName"/>
2827     <icon image="features/pois/transport_rental_bicycle.n.24.png"/>
2828     <tag k="amenity" v="bicycle_rental"/>
2829     <inputSet ref="common"/>
2830   </feature>
2831
2832
2833   <feature name="Car rental">
2834     <category>transport</category>
2835     <point/>
2836     <inputSet ref="simpleName"/>
2837     <icon image="features/pois/transport_rental_car.n.24.png"/>
2838     <tag k="amenity" v="car_rental"/>
2839     <inputSet ref="common"/>
2840   </feature>
2841
2842
2843   <feature name="Ferry Terminal">
2844     <category>transport</category>
2845     <icon image="features/pois/transport_port.n.24.png"/>
2846     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dferry_terminal</help>
2847     <point/>
2848     <tag k="amenity" v="ferry_terminal"/>
2849     <input type="freetext" presence="always" category="" name="name" key="name" description="The name of the ferry terminal."/>
2850     <input type="freetext" presence="always" category="" name="Operator" key="operator" description="The operator of the ferry terminal." priority="low"/>
2851     <input type="freetext" presence="onTagMatch" category="Cargo" name="Cargo" key="cargo" description="The cargo shipped from here." priority="low"/>
2852     <inputSet ref="common"/>
2853   </feature>
2854
2855
2856   <!-- ========= Barriers ========= -->
2857
2858   <feature name="Wall">
2859     <category>barrier</category>
2860     <icon image="features/barrier_generic.png"/>
2861     <icon>
2862     </icon>
2863     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dwall</help>
2864
2865     <line/>
2866     <tag k="barrier" v="wall"/>
2867     <inputSet ref="common"/>
2868   </feature>
2869
2870   <feature name="Ditch">
2871     <category>barrier</category>
2872     <icon image="features/barrier_generic.png"/>
2873     <icon>
2874     </icon>
2875     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dditch</help>
2876
2877     <line/>
2878     <tag k="barrier" v="ditch"/>
2879     <inputSet ref="common"/>
2880   </feature>
2881
2882   <feature name="Retaining wall">
2883     <category>barrier</category>
2884     <icon image="features/barrier_generic.png"/>
2885     <icon>
2886     </icon>
2887     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dretaining_wall</help>
2888
2889     <line/>
2890     <tag k="barrier" v="retaining_wall"/>
2891     <inputSet ref="common"/>
2892   </feature>
2893
2894   <feature name="City wall">
2895     <category>barrier</category>
2896     <icon image="features/barrier_generic.png"/>
2897     <icon>
2898     </icon>
2899     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcity_wall</help>
2900
2901     <line/>
2902     <tag k="barrier" v="city_wall"/>
2903     <inputSet ref="common"/>
2904   </feature>
2905
2906
2907   <feature name="Fence">
2908     <category>barrier</category>
2909     <icon image="features/barrier_generic.png"/>
2910     <icon>
2911     </icon>
2912     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dfence</help>
2913
2914     <line/>
2915     <tag k="barrier" v="fence"/>
2916     <inputSet ref="common"/>
2917   </feature>
2918
2919
2920   <feature name="Hedge">
2921     <category>barrier</category>
2922     <icon image="features/barrier_generic.png"/>
2923     <icon>
2924     </icon>
2925     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dhedge</help>
2926
2927     <line/>
2928     <tag k="barrier" v="hedge"/>
2929     <inputSet ref="common"/>
2930   </feature>
2931
2932   <feature name="Bollard">
2933     <category>barrier</category>
2934     <icon image="features/pois/barrier_bollard.n.24.png">
2935     </icon>
2936     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard</help>
2937
2938     <point/>
2939     <tag k="barrier" v="bollard"/>
2940     <inputSet ref="common"/>
2941   </feature>
2942
2943
2944   <feature name="Gate">
2945     <category>barrier</category>
2946     <icon image="features/pois/barrier_gate.n.24.png">
2947     </icon>
2948     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dgate</help>
2949
2950     <point/>
2951     <tag k="barrier" v="gate"/>
2952     <inputSet ref="common"/>
2953   </feature>
2954
2955
2956   <feature name="Lift Gate">
2957     <category>barrier</category>
2958     <icon image="features/pois/barrier_lift_gate.n.24.png"/>
2959     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dlift_gate</help>
2960     <point/>
2961     <tag k="barrier" v="lift_gate"/>
2962     <inputSet ref="common"/>
2963   </feature>
2964
2965
2966   <feature name="Kissing Gate">
2967     <category>barrier</category>
2968     <icon image="features/pois/barrier_kissing_gate.24.png"/>
2969     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dkissing_gate</help>
2970     <point/>
2971     <tag k="barrier" v="kissing_gate"/>
2972     <inputSet ref="common"/>
2973   </feature>
2974
2975
2976
2977   <feature name="Cycle Barrier">
2978     <category>barrier</category>
2979     <icon image="features/pois/barrier_cycle_barrier.24.png">
2980     </icon>
2981     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier</help>
2982
2983     <point/>
2984     <tag k="barrier" v="cycle_barrier"/>
2985     <inputSet ref="common"/>
2986   </feature>
2987
2988
2989   <feature name="Big Concrete Blocks">
2990     <category>barrier</category>
2991     <icon image="features/pois/barrier_blocks.24.png">
2992     </icon>
2993     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dblock</help>
2994
2995     <point/>
2996     <tag k="barrier" v="block"/>
2997     <inputSet ref="common"/>
2998   </feature>
2999
3000
3001   <feature name="Cattle Grid">
3002     <category>barrier</category>
3003     <icon image="features/pois/barrier_cattle_grid.24.png">
3004     </icon>
3005     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcattle_grid</help>
3006
3007     <point/>
3008     <tag k="barrier" v="cattle_grid"/>
3009     <inputSet ref="common"/>
3010   </feature>
3011
3012
3013   <feature name="Toll Booth">
3014     <category>barrier</category>
3015     <icon image="features/pois/barrier_toll_booth.n.24.png">
3016     </icon>
3017     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dtoll_booth</help>
3018
3019     <point/>
3020     <tag k="barrier" v="toll_booth"/>
3021     <tagSet ref="fee"/>
3022     <input type="freetext" presence="onTagMatch" category="Naming" name="Operator" key="operator" description="The provider of the toll" priority="low"/>
3023     <inputSet ref="common"/>
3024   </feature>
3025
3026
3027   <feature name="Stile">
3028     <category>barrier</category>
3029     <icon image="features/pois/barrier_stile.n.24.png"/>
3030     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dstile</help>
3031     <point/>
3032     <tag k="barrier" v="stile"/>
3033     <inputSet ref="common"/>
3034   </feature>
3035
3036   <feature name="Wire fence">
3037     <!-- no idea, but taginfo says 2700 uses -->
3038     <category>barrier</category>
3039     <icon image="features/barrier_generic.png"/>
3040    
3041     <help>http://wiki.openstreetmap.org/wiki/Tag:barrier%3Dwire_fence</help>
3042
3043     <line/>
3044     <tag k="barrier" v="wire_fence"/>
3045     <inputSet ref="common"/>
3046   </feature>
3047
3048   <!-- **************************************************************** -->
3049
3050   <feature name="Turning circle">
3051     <category>transport</category>
3052     <icon image="features/pois/transport_turning_circle.n.24.png"/>
3053     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dturning_circle</help>
3054     <point/>
3055     <tag k="highway" v="turning_circle"/>
3056     <inputSet ref="common"/>
3057   </feature>
3058
3059   <feature name="Mini Roundabout">
3060     <category>transport</category>
3061     <help>http://wiki.openstreetmap.org/wiki/Tag:highway%3Dmini_roundabout</help>
3062     <point/>
3063     <tag k="highway" v="mini_roundabout"/>
3064     <inputSet ref="common"/>
3065   </feature>
3066
3067
3068   <feature name="Traffic calming">
3069
3070     <category>transport</category>
3071     <icon image="icons/speed_hump_16.png"/>
3072     <help>http://wiki.openstreetmap.org/wiki/Key:traffic%3Dcalming</help>
3073     <point/>
3074     <!-- Warning: creates "traffic_calming=*" by default, but it's the best we can do. Steve Bennett-->
3075     <!--<tag k="traffic_calming" v="*"/>-->
3076     <tag k="traffic_calming" v="yes"/>
3077     <input type="choice" key="traffic_calming" name="Obstacle type" category="Traffic calming" presence="onTagMatch">
3078       <choice value="yes" text="Unspecified"/>
3079       <choice value="bump" text="Short bump" description="A sharp speed bump, typically slowing cars to 15 kph or less."/>
3080       <choice value="hump" text="Speed hump" description="A gentler, longer bump, typically slowing cars to 30 kph or less."/>
3081       <choice value="cushion" text="Speed cushion" description="A narrow speed bump allowing emergency vehicles and buses to pass without slowing."/>
3082       <choice value="table" text="Speed table" description="A very long speed hump allowing the whole wheelbase to rest on top."/>
3083       <choice value="chicane" text="Chicane" description="A set of obstacles causing vehicles to weave through."/>
3084       <choice value="rumble_strip" text="Rumble strip" description="A series of very small bumps causing vibration or noise."/>
3085       <choice value="choker" text="Choker" description="An artificial narrowing of the road."/>
3086     </input>
3087
3088     <inputSet ref="common"/>
3089   </feature>
3090
3091
3092
3093   <!-- ========= Entertainment ========= -->
3094
3095   <feature name="Pub">
3096     <category>foodanddrink</category>
3097     <icon image="features/pois/food_pub.n.24.png">
3098       ${name}
3099     </icon>
3100     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub</help>
3101     <point/>
3102     <tag k="amenity" v="pub"/>
3103     <inputSet ref="names"/>
3104     <inputSet ref="web"/>
3105     <inputSet ref="buildingAddress"/>
3106     <inputSet ref="wifi"/>
3107     <inputSet ref="common"/>
3108   </feature>
3109
3110
3111   <feature name="Bar">
3112     <category>foodanddrink</category>
3113     <icon image="features/pois/food_bar.n.24.png">
3114       ${name}
3115     </icon>
3116     <point/>
3117     <tag k="amenity" v="bar"/>
3118     <inputSet ref="names"/>
3119     <inputSet ref="web"/>
3120     <inputSet ref="buildingAddress"/>
3121     <inputSet ref="wifi"/>
3122     <inputSet ref="common"/>
3123   </feature>
3124
3125
3126   <feature name="Restaurant">
3127     <category>foodanddrink</category>
3128     <icon image="features/pois/food_restaurant.n.24.png">
3129       ${name}
3130     </icon>
3131     <point/>
3132     <tag k="amenity" v="restaurant"/>
3133     <inputSet ref="names"/>
3134     <inputSet ref="web"/>
3135     <inputSet ref="buildingAddress"/>
3136     <inputSet ref="cuisine"/>
3137     <inputSet ref="common"/>
3138   </feature>
3139
3140
3141   <feature name="Cafe">
3142     <category>foodanddrink</category>
3143     <icon image="features/pois/food_cafe.n.24.png">
3144       ${name}
3145     </icon>
3146     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe</help>
3147     <point/>
3148     <tag k="amenity" v="cafe"/>
3149     <inputSet ref="names"/>
3150     <inputSet ref="web"/>
3151     <inputSet ref="buildingAddress"/>
3152     <inputSet ref="cuisine"/>
3153     <inputSet ref="wifi"/>
3154     <inputSet ref="common"/>
3155   </feature>
3156
3157
3158   <feature name="Fast Food">
3159     <category>foodanddrink</category>
3160     <icon image="features/pois/food_fastfood.n.24.png">
3161       ${name}
3162     </icon>
3163     <help>http://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food</help>
3164     <point/>
3165     <tag k="amenity" v="fast_food"/>
3166     <inputSet ref="names"/>
3167     <inputSet ref="web"/>
3168     <inputSet ref="buildingAddress"/>
3169     <inputSet ref="cuisine"/>
3170     <inputSet ref="common"/>
3171   </feature>
3172
3173
3174   <!-- ========= Shops ========= -->
3175
3176   <feature name="Small Convenience Store">
3177     <category>shopping</category>
3178     <icon image="features/pois/shopping_convenience.n.24.png">
3179       ${name}
3180     </icon>
3181     <help>http://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience</help>
3182     <point/>
3183     <tag k="shop" v="convenience"/>
3184     <inputSet ref="names"/>
3185     <inputSet ref="web"/>
3186     <inputSet ref="buildingAddress"/>
3187     <inputSet ref="common"/>
3188   </feature>
3189
3190
3191   <feature name="Supermarket">
3192     <category>shopping</category>
3193     <icon image="features/pois/shopping_supermarket.n.24.png">
3194       ${name}
3195     </icon>
3196     <help>http://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket</help>
3197     <point/>
3198     <tag k="shop" v="supermarket"/>
3199     <inputSet ref="names"/>
3200     <inputSet ref="web"/>
3201     <inputSet ref="buildingAddress"/>
3202     <inputSet ref="common"/>
3203   </feature>
3204
3205
3206   <feature name="Alcohol shop">
3207     <category>shopping</category>
3208     <point/>
3209     <inputSet ref="simpleName"/>
3210     <inputSet ref="web"/>
3211     <inputSet ref="buildingAddress"/>
3212     <icon image="features/pois/shopping_alcohol.n.24.png"/>
3213     <tag k="shop" v="alcohol"/>
3214     <inputSet ref="common"/>
3215   </feature>
3216
3217
3218   <feature name="Bakery">
3219     <category>shopping</category>
3220     <point/>
3221     <inputSet ref="simpleName"/>
3222     <inputSet ref="web"/>
3223     <inputSet ref="buildingAddress"/>
3224     <icon image="features/pois/shopping_bakery.n.24.png"/>
3225     <tag k="shop" v="bakery"/>
3226     <inputSet ref="common"/>
3227   </feature>
3228
3229
3230   <feature name="Bike shop">
3231     <category>shopping</category>
3232     <point/>
3233     <inputSet ref="simpleName"/>
3234     <inputSet ref="web"/>
3235     <inputSet ref="buildingAddress"/>
3236     <icon image="features/pois/shopping_bicycle.n.24.png"/>
3237     <tag k="shop" v="bicycle"/>
3238     <inputSet ref="common"/>
3239   </feature>
3240
3241
3242   <feature name="Bookshop">
3243     <category>shopping</category>
3244     <point/>
3245     <inputSet ref="simpleName"/>
3246     <inputSet ref="web"/>
3247     <inputSet ref="buildingAddress"/>
3248     <icon image="features/pois/shopping_book.n.24.png"/>
3249     <tag k="shop" v="books"/>
3250     <inputSet ref="common"/>
3251   </feature>
3252
3253
3254   <feature name="Butcher">
3255     <category>shopping</category>
3256     <point/>
3257     <inputSet ref="simpleName"/>
3258     <inputSet ref="web"/>
3259     <inputSet ref="buildingAddress"/>
3260     <icon image="features/pois/shopping_butcher.n.24.png"/>
3261     <tag k="shop" v="butcher"/>
3262     <inputSet ref="common"/>
3263   </feature>
3264
3265
3266   <feature name="Car repair">
3267     <category>shopping</category>
3268     <point/>
3269     <inputSet ref="simpleName"/>
3270     <inputSet ref="web"/>
3271     <inputSet ref="buildingAddress"/>
3272     <icon image="features/pois/shopping_car_repair.n.24.png"/>
3273     <tag k="shop" v="car_repair"/>
3274     <inputSet ref="common"/>
3275   </feature>
3276
3277
3278   <feature name="Clothes shop">
3279     <category>shopping</category>
3280     <point/>
3281     <inputSet ref="simpleName"/>
3282     <inputSet ref="web"/>
3283     <inputSet ref="buildingAddress"/>
3284     <icon image="features/pois/shopping_clothes.n.24.png"/>
3285     <tag k="shop" v="clothes"/>
3286     <inputSet ref="common"/>
3287   </feature>
3288
3289
3290   <feature name="Confectionery">
3291     <category>shopping</category>
3292     <point/>
3293     <inputSet ref="simpleName"/>
3294     <inputSet ref="web"/>
3295     <inputSet ref="buildingAddress"/>
3296     <icon image="features/pois/shopping_confectionery.n.24.png"/>
3297     <tag k="shop" v="confectionery"/>
3298     <inputSet ref="common"/>
3299   </feature>
3300
3301
3302   <feature name="DIY">
3303     <category>shopping</category>
3304     <point/>
3305     <inputSet ref="simpleName"/>
3306     <inputSet ref="web"/>
3307     <inputSet ref="buildingAddress"/>
3308     <icon image="features/pois/shopping_diy.n.24.png"/>
3309     <tag k="shop" v="doityourself"/>
3310     <inputSet ref="common"/>
3311   </feature>
3312
3313
3314   <feature name="Fishmonger">
3315     <category>shopping</category>
3316     <point/>
3317     <inputSet ref="simpleName"/>
3318     <inputSet ref="web"/>
3319     <inputSet ref="buildingAddress"/>
3320     <icon image="features/pois/shopping_fish.n.24.png"/>
3321     <tag k="shop" v="fishmonger"/>
3322     <inputSet ref="common"/>
3323   </feature>
3324
3325
3326   <feature name="Garden centre">
3327     <category>shopping</category>
3328     <point/>
3329     <inputSet ref="simpleName"/>
3330     <inputSet ref="web"/>
3331     <inputSet ref="buildingAddress"/>
3332     <icon image="features/pois/shopping_garden_centre.n.24.png"/>
3333     <tag k="shop" v="garden_centre"/>
3334     <inputSet ref="common"/>
3335   </feature>
3336
3337
3338   <feature name="Gift shop">
3339     <category>shopping</category>
3340     <point/>
3341     <inputSet ref="simpleName"/>
3342     <inputSet ref="web"/>
3343     <inputSet ref="buildingAddress"/>
3344     <icon image="features/pois/shopping_gift.n.24.png"/>
3345     <tag k="shop" v="gift"/>
3346     <inputSet ref="common"/>
3347   </feature>
3348
3349
3350   <feature name="Greengrocer">
3351     <category>shopping</category>
3352     <point/>
3353     <inputSet ref="simpleName"/>
3354     <inputSet ref="web"/>
3355     <inputSet ref="buildingAddress"/>
3356     <icon image="features/pois/shopping_greengrocer.n.24.png"/>
3357     <tag k="shop" v="greengrocer"/>
3358     <inputSet ref="common"/>
3359   </feature>
3360
3361
3362   <feature name="Hairdresser">
3363     <category>shopping</category>
3364     <point/>
3365     <inputSet ref="simpleName"/>
3366     <inputSet ref="web"/>
3367     <inputSet ref="buildingAddress"/>
3368     <icon image="features/pois/shopping_hairdresser.n.24.png"/>
3369     <tag k="shop" v="hairdresser"/>
3370     <inputSet ref="common"/>
3371   </feature>
3372
3373
3374   <feature name="Hifi shop">
3375     <category>shopping</category>
3376     <point/>
3377     <inputSet ref="simpleName"/>
3378     <inputSet ref="web"/>
3379     <inputSet ref="buildingAddress"/>
3380     <icon image="features/pois/shopping_hifi.n.24.png"/>
3381     <tag k="shop" v="hifi"/>
3382     <inputSet ref="common"/>
3383   </feature>
3384
3385
3386   <feature name="Jewellery">
3387     <category>shopping</category>
3388     <point/>
3389     <inputSet ref="simpleName"/>
3390     <inputSet ref="web"/>
3391     <inputSet ref="buildingAddress"/>
3392     <icon image="features/pois/shopping_jewelry.n.24.png"/>
3393     <tag k="shop" v="jewelry"/>
3394     <inputSet ref="common"/>
3395   </feature>
3396
3397
3398   <feature name="Laundrette">
3399     <category>shopping</category>
3400     <point/>
3401     <inputSet ref="simpleName"/>
3402     <inputSet ref="web"/>
3403     <inputSet ref="buildingAddress"/>
3404     <icon image="features/pois/shopping_laundrette.n.24.png"/>
3405     <tag k="shop" v="laundry"/>
3406     <inputSet ref="common"/>
3407   </feature>
3408
3409
3410   <feature name="Motorbike shop">
3411     <category>shopping</category>
3412     <point/>
3413     <inputSet ref="simpleName"/>
3414     <inputSet ref="web"/>
3415     <inputSet ref="buildingAddress"/>
3416     <icon image="features/pois/shopping_motorcycle.n.24.png"/>
3417     <tag k="shop" v="motorcycle"/>
3418     <inputSet ref="common"/>
3419   </feature>
3420
3421
3422   <feature name="Music shop">
3423     <category>shopping</category>
3424     <point/>
3425     <inputSet ref="simpleName"/>
3426     <inputSet ref="web"/>
3427     <inputSet ref="buildingAddress"/>
3428     <icon image="features/pois/shopping_music.n.24.png"/>
3429     <tag k="shop" v="music"/>
3430     <inputSet ref="common"/>
3431   </feature>
3432
3433
3434   <feature name="Pharmacy">
3435     <category>shopping</category>
3436     <icon image="features/pois/health_pharmacy.n.24.png">
3437       ${name}
3438     </icon>
3439     <help>http://wiki.openstreetmap.org/wiki/Pharmacy</help>
3440     <point/>
3441     <tag k="amenity" v="pharmacy"/>
3442     <inputSet ref="names"/>
3443     <inputSet ref="web"/>
3444     <inputSet ref="buildingAddress"/>
3445     <input type="checkbox" category="Amenity" presence="always" description="Does this pharmacy sell prescription drugs?" name="Dispensing" key="dispensing" layout="horizontal"/>
3446     <inputSet ref="common"/>
3447   </feature>
3448
3449
3450   <!-- **************** Agriculture *************** -->
3451   <feature name="Farm">
3452     <category>agriculture</category>
3453     <icon image="features/pois/landuse_grass.n.24.png"/>
3454     <area/>
3455     <tag k="landuse" v="farm"/>
3456     <inputSet ref="simpleName"/>
3457     <inputSet ref="common"/>
3458   </feature>
3459
3460
3461   <feature name="Farmyard">
3462     <category>agriculture</category>
3463     <icon image="features/pois/landuse_grass.n.24.png"/>
3464     <area/>
3465     <tag k="landuse" v="farmyard"/>
3466     <inputSet ref="simpleName"/>
3467     <inputSet ref="common"/>
3468   </feature>
3469
3470
3471   <feature name="Farmland">
3472     <category>agriculture</category>
3473     <icon image="features/pois/landuse_grass.n.24.png"/>
3474     <area/>
3475     <tag k="landuse" v="farmland"/>
3476     <inputSet ref="simpleName"/>
3477     <inputSet ref="common"/>
3478   </feature>
3479
3480
3481   <feature name="Field">
3482     <category>agriculture</category>
3483     <icon image="features/pois/landuse_grass.n.24.png"/>
3484     <area/>
3485     <tag k="landuse" v="meadow"/>
3486     <inputSet ref="simpleName"/>
3487     <inputSet ref="common"/>
3488   </feature>
3489
3490
3491   <feature name="Orchard">
3492     <category>agriculture</category>
3493     <icon image="features/pois/landuse_grass.n.24.png"/>
3494     <area/>
3495     <tag k="landuse" v="orchard"/>
3496     <inputSet ref="simpleName"/>
3497     <inputSet ref="common"/>
3498   </feature>
3499
3500
3501   <feature name="Vineyard">
3502     <category>agriculture</category>
3503     <icon image="features/pois/landuse_grass.n.24.png"/>
3504     <area/>
3505     <tag k="landuse" v="vineyard"/>
3506     <inputSet ref="simpleName"/>
3507     <inputSet ref="common"/>
3508   </feature>
3509
3510   <!-- boundaries -->
3511
3512   <feature name="Administrative Boundary">
3513     <category>places</category>
3514     <line/>
3515     <icon image="features/pois/poi_boundary_administrative.n.24.png"/>
3516     <help>http://wiki.openstreetmap.org/wiki/Tag:boundary=administrative</help>
3517     <tag k="boundary" v="administrative"/>
3518     <input type="number" minimum="2" maximum="10" presence="always" name="Admin Level" key="admin_level" description="The Administrative level" />
3519   </feature>
3520
3521   <!-- ************************************************************************
3522        Relations
3523        ************************************************************************ -->
3524
3525   <feature name="Turn restriction">
3526     <category>advanced</category>
3527     <help>http://wiki.openstreetmap.org/wiki/Turn_restrictions</help>
3528     <relation/>
3529     <tag k="type" v="restriction"/>
3530     <input type="choice" category="Restrictions" presence="always" name="Type" key="restriction" description="What's the restriction?" layout="horizontal" priority="high">
3531       <choice value="no_left_turn"      text="No left turn"/>
3532       <choice value="no_right_turn"     text="No right turn"/>
3533       <choice value="no_u_turn"         text="No U turns"/>
3534       <choice value="no_straight_on"    text="No straight on"/>
3535       <choice value="only_left_turn"    text="Left turn only"/>
3536       <choice value="only_right_turn"   text="Right turn only"/>
3537       <choice value="only_straight_on"  text="Straight on only"/>
3538     </input>
3539     <input type="choice" category="Restrictions" presence="always" name="Except" key="except" description="Are any vehicles exempt?" layout="horizontal">
3540       <choice value="psv"      text="Bus"/>
3541       <choice value="bicycle"  text="Bicycle"/>
3542       <choice value="motorcar" text="Car"/>
3543       <choice value="hgv"      text="HGV"/>
3544     </input>
3545     <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"/>
3546     <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"/>
3547     <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"/>
3548     <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"/>
3549     <inputSet ref="common"/>
3550   </feature>
3551
3552
3553   <feature name="Multipolygon">
3554     <category>advanced</category>
3555     <relation/>
3556     <tag k="type" v="multipolygon"/>
3557     <inputSet ref="common"/>
3558   </feature>
3559
3560
3561   <!-- cycle stuff -->
3562   <feature name="National Cycle Network">
3563     <category>paths</category>
3564     <icon image="features/cycle__ncn.png" background="red" foreground="white">
3565       <font size="14pt">
3566         <b>${ref}</b>
3567       </font>
3568       <br/>
3569       <font size="12pt">${name}</font>
3570     </icon>
3571
3572     <relation/>
3573     <tag k="type" v="route"/>
3574     <tag k="network" v="ncn"/>
3575
3576     <inputSet ref="route"/>
3577     <inputSet ref="common"/>
3578   </feature>
3579
3580
3581   <feature name="Regional Cycle Network">
3582     <category>paths</category>
3583     <icon image="features/cycle__rcn.png" background="cyan" foreground="white">
3584       <font size="14pt"><b>${ref}</b></font><br/>
3585       <font size="12pt">${name}</font>
3586     </icon>
3587
3588     <relation/>
3589     <tag k="type" v="route"/>
3590     <tag k="network" v="rcn"/>
3591
3592     <inputSet ref="route"/>
3593     <inputSet ref="common"/>
3594   </feature>
3595
3596
3597   <feature name="Local Cycle Network">
3598     <category>paths</category>
3599     <icon image="features/cycle__lcn.png" background="blue" foreground="white">
3600       <font size="14pt">
3601         <b>${ref}</b>
3602       </font>
3603       <br/>
3604       <font size="12pt">${name}</font>
3605     </icon>
3606
3607     <relation/>
3608     <tag k="type" v="route"/>
3609     <tag k="network" v="lcn"/>
3610
3611     <inputSet ref="route"/>
3612     <inputSet ref="common"/>
3613   </feature>
3614
3615
3616
3617   <!-- paths -->
3618   <feature name="Long Distance Path">
3619     <category>paths</category>
3620     <icon image="features/paths__footway.png" background="green" foreground="white">
3621       <font size="14pt">
3622         <b>${ref}</b>
3623       </font>
3624       <br/>
3625       <font size="12pt">${name}</font>
3626     </icon>
3627
3628     <relation/>
3629     <tag k="type" v="route"/>
3630     <tag k="route" v="foot"/>
3631
3632     <inputSet ref="route"/>
3633     <inputSet ref="common"/>
3634   </feature>
3635
3636
3637
3638   <!-- public transit routes -->
3639   <feature name="Bus Route">
3640     <category>transport</category>
3641     <icon image="features/transport__bus.png">
3642       <font size="12pt">
3643         ${operator} <b>${ref}</b>
3644       </font>
3645     </icon>
3646
3647     <relation/>
3648     <tag k="type" v="route"/>
3649     <tag k="route" v="bus"/>
3650
3651     <inputSet ref="route"/>
3652     <input type="freetext" presence="always" category="Naming" name="Operator" key="operator" description="The provider of the bus service" priority="low"/>
3653     <input type="freetext" presence="always" category="Naming" name="Network" key="network" description="The network of the bus service" priority="low"/>
3654     <inputSet ref="common"/>
3655   </feature>
3656
3657
3658   <feature name="Tram Route">
3659     <category>transport</category>
3660     <icon image="features/transport__tram.png">
3661       <font size="12pt">
3662         ${operator} <b>${reg}</b>
3663       </font>
3664     </icon>
3665
3666     <relation/>
3667     <tag k="type" v="route"/>
3668     <tag k="route" v="tram"/>
3669
3670     <inputSet ref="route"/>
3671     <input type="freetext" presence="always" category="Naming" name="Operator" key="operator" description="The provider of the tram service" priority="low"/>
3672     <input type="freetext" presence="always" category="Naming" name="Network" key="network" description="The network of the tram service" priority="low"/>
3673     <inputSet ref="common"/>
3674   </feature>
3675
3676
3677
3678   <!-- Junction nodes (for turn restrictions) -->
3679
3680   <feature>
3681     <point/>
3682     <within entity="way" k="highway" minimum="2"/>
3683     <inputSet ref="junctionNode"/>
3684     <inputSet ref="common"/>
3685   </feature>
3686
3687
3688 </mapFeatures>