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