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