]> git.openstreetmap.org Git - rails.git/blob - public/potlatch2/map_features.xml
Update Potlatch 2 to 2.2-18-g514f0d2 build
[rails.git] / public / potlatch2 / map_features.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Quick documentation:
4
5 <category> the categories that features belong to. This includes both nodes (icons on left) and ways/areas (drop-down list that appears when a way/area is selected)
6   name: Shown in GUI
7   id: internal reference (a feature refers to this with category=xxx)
8
9 <feature> a pre-defined group of tags that make up a feature
10   category: [ctext] corresponding to category id
11   icon
12     @image: path to .png file
13     @dnd: path to optional dnd-specific-override .png file
14     @background: colour spec
15     @foreground: colour spec
16     (general html goes here?) Variables substituted with ${ref}
17   help: [ctext] URL, shown as a linked ? icon. Should (?) usually be an OSM wiki page.
18   description: Not currently used?
19   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.
20   tag - one or more of these required, defines the tags that make up the feature.
21     @k - key
22     @v - value
23   input
24     @ref=xxx
25   inputSet
26     @ref=xxx
27 </feature>
28
29 <inputSet>: a reusable group of properties for a feature.
30   @id="internal id"
31   input...
32 </inputSet>
33
34 <input>
35   @type: choice/freetext/turn/checkbox/slider/route/speed/number - the different types of supported input dialogs.
36   @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.
37   @category: which tab it appears on
38   @description: mouse-over text
39   @name: The text shown as the label of the property
40   @key: The actual OSM key (tag) that will be saved
41   @priority: highest/high/normal/low/lowest (default=>normal) - controls the order that different features show up in a panel.
42   match: for turn|route inputs, the tags to be considered on the relation as indicating a match.
43     @k: key
44     @v: value
45   icon: see above
46 </input>
47
48 <include
49   @file="map_features/roads.xml": external file to drop into place here. Include files behave exactly as if written out in full.
50 />
51 -->
52
53 <mapFeatures>
54
55   <!-- Categories -->
56   <category name="Roads" id="roads"/>
57   <category name="Paths" id="paths"/>
58   <category name="Shopping" id="shopping"/>
59   <category name="Food and Drink" id="foodanddrink"/>
60   <category name="Amenity" id="amenity"/>
61   <category name="Tourism" id="tourism"/>
62   <category name="Accommodation" id="accommodation"/>
63   <category name="Transport" id="transport"/>
64   <category name="Water" id="water"/>
65   <category name="Natural" id="natural"/>
66   <category name="Barrier" id="barrier"/>
67   <category name="Power" id="power"/>
68   <category name="Admin" id="admin"/>
69   <category name="Buildings" id="buildings"/>
70   <category name="Landuse" id="landuse"/>
71   <category name="Agriculture" id="agriculture"/>
72   <category name="Advanced" id="advanced"/>
73   <category name="Places" id="places"/>
74   <category name="Sport and Leisure" id="sport"/>
75   <category name="Man-made" id="manmade"/>
76
77   <!-- Common input sets -->
78
79   <inputSet id="simpleName">
80     <input type="freetext" presence="always" name="Name" key="name" description="The name" priority="highest"/>
81   </inputSet>
82
83   <inputSet id="nameAndRef">
84     <inputSet ref="simpleName" />
85     <input type="freetext" presence="always" name="Reference number" key="ref" description="A reference number or code used to identify this thing." />
86   </inputSet>
87
88    <inputSet id="simpleBrand"> 
89      <input type="freetext" category="Naming" presence="always" name="Brand" key="brand" description="Brand, i.e. Acme"/> 
90    </inputSet> 
91   
92    <inputSet id="simpleOperator"> 
93      <input type="freetext" category="Naming" presence="always" name="Operator" key="operator" description="Operator, i.e. Acme Springfield Ltd"/> 
94    </inputSet> 
95
96   <inputSet id="source">
97     <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"/>
98   </inputSet>
99
100   <inputSet id="designation">
101     <input type="freetext" category="Misc" presence="onTagMatch" description="Official designation or classification" name="Designation" key="designation"/>
102   </inputSet>
103
104   <inputSet id="common">
105     <inputSet ref="source"/>
106     <inputSet ref="designation"/>
107   </inputSet>
108
109   <inputSet id="names">
110     <input type="freetext" presence="always"
111         name="Name" category="Naming" priority="highest"
112         key="name" description="The most common name"/>
113     <input type="freetext" presence="onTagMatch"
114         name="International Name" category="Naming"
115         key="int_name" description="The internationally recognised name"/>
116     <input type="freetext" presence="onTagMatch"
117         name="Historical Name" category="Naming" priority="low"
118         key="old_name" description="The historic or previous name"/>
119     <input type="freetext" presence="onTagMatch"
120         name="Alternative Name" category="Naming" priority="low"
121         key="alt_name" description="An alternative, currently used, name"/>
122   </inputSet>
123
124   <inputSet id="wifi">
125     <input type="choice" presence="onTagMatch" category="Eating" name="Wifi" key="wifi">
126       <choice value="free" text="Free"/>
127       <choice value="yes" text="Yes"/>
128       <choice value="no" text="No"/>
129     </input>
130   </inputSet>
131
132   <inputSet id="buildingAddress">
133     <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"/>
134     <input type="freetext" presence="onTagMatch" category="Address" description="The name of the house, e.g. Riverbank Cottage" name="Building Name" key="addr:housename"/>
135     <input type="freetext" presence="onTagMatch" category="Address" description="The Street Name (optional)" name="Street Name" key="addr:street"/>
136     <input type="freetext" presence="onTagMatch" category="Address" description="The postcode" name="Postcode" key="addr:postcode"/>
137   </inputSet>
138
139   <inputSet id="web">
140     <input type="freetext" presence="onTagMatch" category="Web" description="The URL of the website" name="Website" key="website"/>
141   </inputSet>
142
143   <inputSet id="cuisine">
144     <input type="choice" presence="always" name="Cuisine" category="Eating" description="The type of food that they serve" key="cuisine">
145       <!-- The 30 most popular values according to taginfo 23/12/2010 -->
146       <choice value="burger" text="Burger"/>
147       <choice value="chicken" text="Chicken"/>
148       <choice value="chinese" text="Chinese"/>
149       <choice value="coffee_shop" text="Coffee Shop"/>
150       <choice value="greek" text="Greek"/>
151       <choice value="pizza" text="Pizza"/>
152       <choice value="sandwich" text="Sandwich"/>
153       <choice value="seafood" text="Sea Food"/>
154       <choice value="regional" text="Regional"/>
155       <choice value="italian" text="Italian"/>
156       <choice value="german" text="German"/>
157       <choice value="kebab" text="Kebab/souvlaki/gyro"/>
158       <choice value="indian" text="Indian"/>
159       <choice value="asian" text="Asian"/>
160       <choice value="mexican" text="Mexican"/>
161       <choice value="thai" text="Thai"/>
162       <choice value="japanese" text="Japanese"/>
163       <choice value="ice_cream" text="Ice-cream"/>
164       <choice value="fish_and_chips" text="Fish &amp; Chips"/>
165       <choice value="turkish" text="Turkish"/>
166       <choice value="french" text="French"/>
167       <choice value="sushi" text="Sushi"/>
168       <choice value="american" text="American"/>
169       <choice value="steak_house" text="Steak House"/>
170       <choice value="international" text="International"/>
171       <choice value="spanish" text="Spanish"/>
172       <choice value="vietnamese" text="Vietnamese"/>
173       <choice value="fish" text="Fish"/>
174       <choice value="bavarian" text="Bavarian"/>
175       <choice value="vegetarian" text="Vegetarian"/>
176
177       <help>http://wiki.openstreetmap.org/wiki/Key:cuisine</help>
178     </input>
179   </inputSet>
180
181   <!-- Roads -->
182
183   <inputSet id="majorRoad">
184     <inputSet ref="names"/>
185     <inputSet ref="roadRefs"/>
186     <inputSet ref="roadRestrictions"/>
187     <inputSet ref="roadPhysical"/>
188     <inputSet ref="cycle"/>
189     <inputSet ref="bicycle-lane"/>
190     <inputSet ref="bus-route"/>
191     <inputSet ref="pedestrians"/>
192     <inputSet ref="roadLanes"/>
193     <inputSet ref="roadRoundabout"/>
194     <inputSet ref="permissions"/>
195   </inputSet>
196   
197
198   <inputSet id="minorRoad">
199     <inputSet ref="names"/>
200     <inputSet ref="roadRestrictions"/>
201     <inputSet ref="roadPhysical"/>
202     <inputSet ref="cycle"/>
203     <inputSet ref="bicycle-lane"/>
204     <inputSet ref="bus-route"/>
205     <inputSet ref="pedestrians"/>
206     <inputSet ref="roadLanes"/>
207     <inputSet ref="roadRoundabout"/>
208     <inputSet ref="permissions"/>
209   </inputSet>
210
211   <inputSet id="path">
212     <inputSet ref="simpleName"/>
213     <inputSet ref="roadPhysical"/>
214     <inputSet ref="cycle"/>
215     <inputSet ref="ldp"/>
216     <inputSet ref="pedestrians"/>
217     <inputSet ref="permissions"/>
218   </inputSet>
219
220   <inputSet id="junctionNode">
221     <inputSet ref="turnRestrictions"/>
222   </inputSet>
223
224   <inputSet id="roadRefs">
225     <input type="freetext" presence="always"
226         name="Reference" category="Naming" priority="high"
227         key="ref" description="The official reference number"/>
228     <input type="freetext" presence="onTagMatch"
229         name="International Reference" category="Naming"
230         key="int_ref" description="The official international reference number"/>
231     <input type="freetext" presence="onTagMatch"
232         name="Old Reference" category="Naming" priority="low"
233         key="old_ref" description="The historic or previous reference number"/>
234   </inputSet>
235
236   <inputSet id="roadPhysical">
237     <input type="freetext" presence="onTagMatch"
238         name="Width" category="Physical"
239         key="width" description="Width of the road" layout="horizontal"/>
240     <input type="choice" presence="onTagMatch"
241         name="Surface" category="Physical" description="Type of road surface"
242         key="surface" layout="horizontal">
243       <choice value="unpaved" text="Unpaved" description="Road surface is unsealed"/>
244       <choice value="paved" text="Paved" description="Road surface is sealed"/>
245       <choice value="asphalt" text="Asphalt"/>
246       <choice value="concrete" text="Concrete"/>
247       <choice value="paving_stones" text="Paving stones"/>
248       <choice value="cobblestone" text="Cobblestone"/>
249       <choice value="sand" text="Sand"/>
250       <choice value="gravel" text="Gravel"/>
251       <choice value="dirt" text="Dirt"/>
252       <choice value="grass" text="Grass"/>
253     </input>
254     <inputSet ref="bridge"/>
255     <inputSet ref="tunnel"/>
256     <inputSet ref="embankment-cutting"/>
257     <!-- not sure which category best suits put area=yes -->
258     <input type="checkbox" presence="onTagMatch" category="Restrictions" key="area" name="Open area" description="The way is a large open space, like at a dock, where vehicles can move anywhere within the space, rather than just along the edge." />
259   </inputSet>
260
261   <inputSet id="roadLanes">
262     <input presence="onTagMatch" type="number" name="Lanes" category="Physical" description="Total number of lanes, counting both directions"
263            key="lanes" minimum="1" maximum="10" layout="horizontal"/>
264   </inputSet>
265
266   <inputSet id="bridge">
267     <input type="choice" presence="onTagMatch"
268         name="Bridge" category="Physical" description="Road goes over a bridge"
269         key="bridge" layout="horizontal">
270       <choice value="yes" text="Generic Bridge" description="Generic bridge -- type unknown"/>
271       <choice value="viaduct" text="Viaduct" description="Viaduct"/>
272       <choice value="suspension" text="Suspension bridge"/>
273     </input>
274     <input type="slider" presence="onTagMatch"
275         name="Layer" category="Physical" description="Relative vertical positions (-5 lowest, +5 highest)"
276         key="layer" minimum="-5" maximum="5" default="0" snapInterval="1" labels="Lowest,Ground,Highest"
277         defaultName="Ground"/>
278   </inputSet>
279   <inputSet id="tunnel">
280     <!-- Not ideal, used for non-roads too. -->  
281     <input type="choice" presence="onTagMatch"
282         name="Tunnel" category="Physical" description="Road goes into a tunnel"
283         key="tunnel" layout="horizontal">
284       <choice value="yes" text="Tunnel" description="Generic tunnel"/>
285     </input>
286   </inputSet>
287
288   <inputSet id="embankment-cutting">
289     <input type="choice"
290            name="Embankment" category="Physical" description="Road supported on a raised bed of earth and rock."
291            key="embankment" layout="horizontal">
292       <choice value="yes" text="Embankment"/>
293     </input>
294     <input type="choice"
295            name="Cutting" category="Physical" description="Road carved out of hill on one or both sides."
296            key="cutting" layout="horizontal">
297       <choice value="yes" text="Cutting"/>
298     </input>
299
300   </inputSet>
301
302   <inputSet id="rail-electrification">
303     <input type="choice" name="Electrified" category="Electrification" description="Is the track electrified (whether by 3rd rail, overhead wires, etc)?"
304            key="electrified">
305       <choice value="yes" text="Yes"/>
306       <choice value="no" text="No"/>
307     </input>
308     <input type="choice" name="Voltage" category="Electrification" description="Nominal voltage of electric wires"
309            key="voltage" presence="withCategory">
310       <choice value="600" text="600V"/>
311       <choice value="750" text="750V"/>
312       <choice value="1500" text="1500V"/>
313       <choice value="3000" text="3000V"/>
314       <choice value="15000" text="15kV"/>
315       <choice value="25000" text="25kV"/>
316     </input>
317     <input type="choice" name="Frequency" category="Electrification" description="Frequency in Hertz of alternating current power supply"
318            key="frequency" presence="withCategory">
319       <choice value="0" text="DC"/>
320       <choice value="16.67" text="16.67 Hz"/>
321       <choice value="16.7" text="16.7 Hz"/>
322       <choice value="25" text="25 Hz"/>
323       <choice value="50" text="50 Hz"/>
324       <choice value="60" text="60 Hz"/>
325     </input>
326   </inputSet>
327
328   <inputSet id="rail-usage">
329     <input type="choice" name="Usage" category="Usage" description="Main use of the line" key="usage">
330       <choice value="main" text="Main line" description="The principal artery of a rail system."/>
331       <choice value="branch" text="Branch line" description="A secondary line, branching off a main line."/>
332       <choice value="industrial" text="Industrial"/>
333       <choice value="tourism" text="Tourism" />
334       <choice value="military" text="Military"/>
335     </input>
336   </inputSet>
337
338   <inputSet id="fee">
339     <input type="freetext" presence="onTagMatch" category="Restrictions" description="The charge/cost of using this amenity" name="Fee" key="fee"/>
340   </inputSet>
341
342   <inputSet id="roadRestrictions">
343     <input type="choice" presence="always"
344         name="Oneway" category="Restrictions" description="Oneway roads"
345         key="oneway">
346       <choice value="yes" match="yes|true|1" text="One way"
347         description="Road can only be travelled in direction of way" icon="features/oneway__yes.png"/>
348       <choice value="no" match="no|false|0" text="Two way"
349         description="Road can be travelled in both directions" icon="features/oneway__no.png"/>
350       <choice value="-1" match="-1|reverse" text="One way reverse"
351         description="Road can be travelled in opposite direction to way" icon="features/oneway__-1.png"/>
352     </input>
353     <input type="speed" presence="onTagMatch"
354         name="Speed Limit" category="Restrictions" description="Maximum permitted speed on this road"
355         key="maxspeed"/>
356   </inputSet>
357
358   <inputSet id="roadRoundabout">
359     <!-- review the choice of category -->
360     <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."
361            key="junction">
362       <choice value="roundabout" text="Yes"/>
363     </input>
364   </inputSet>
365
366   <inputSet id="turnRestrictions">
367     <input type="turn" name="Turn restriction" description="Turn restriction" category="Restrictions" priority="normal" presence="onTagMatch">
368       <match k="type" v="restriction"/>
369       <role role="via"/>
370     </input>
371   </inputSet>
372
373   <inputSet id="pedestrians">
374     <input type="choice" name="Pedestrians" description="Can pedestrians use this road, including footpaths if any?" category="Walking" key="foot">
375       <choice value="yes" text="Allowed"/>
376       <choice value="no" text="Prohibited"/>
377       <choice value="designated" text="Designated"/>
378     </input>
379   </inputSet>
380
381   <inputSet id="naptan">
382     <input type="freetext" presence="onTagMatch" category="Naptan" description="12 character internal Naptan ID" name="Atco Code" key="naptan:AtcoCode"/>
383     <input type="choice" presence="onTagMatch" category="Naptan" description="The eight-point compass bearning" name="Naptan Bearing" key="naptan:Bearing" >
384       <choice value="N"  match="N"  text="N"  description=""/>
385       <choice value="NE" match="NE" text="NE" description=""/>
386       <choice value="E"  match="E"  text="E"  description=""/>
387       <choice value="SE" match="SE" text="SE" description=""/>
388       <choice value="S"  match="S"  text="S"  description=""/>
389       <choice value="SW" match="SW" text="SW" description=""/>
390       <choice value="W"  match="W"  text="W"  description=""/>
391       <choice value="NW" match="NW" text="NW" description=""/>
392     </input>
393     <input type="freetext" presence="onTagMatch" category="Naptan" description="The naptan common name" name="Naptan Common Name (read-only)" key="naptan:CommonName"/>
394     <input type="freetext" presence="onTagMatch" category="Naptan" description="" name="Naptan Indicator (read-only)" key="naptan:Indicator"/>
395     <input type="freetext" presence="onTagMatch" category="Naptan" description="" name="Naptan Street (read-only)" key="naptan:Street"/>
396     <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"/>
397   </inputSet>
398
399   <inputSet id="buses">
400     <input type="freetext" presence="always" category="Bus Stop" name="Stop Name" key="name" description="The name of the bus stop"/>
401     <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"/>
402     <inputSet ref="naptan"/>
403   </inputSet>
404
405   <inputSet id="bus-route">
406     <input type="route" name="Bus Route" description="Bus route" category="Transport" priority="low" presence="onTagMatch">
407       <match k="type" v="route"/>
408       <match k="route" v="bus"/>
409       <icon image="features/route__bus.png">
410         <font size="12pt">${operator} <b>${ref}</b></font>
411       </icon>
412     </input>
413   </inputSet>
414
415   <inputSet id="tram-route">
416     <input type="route" name="Tram Route" description="Tram route" category="Transport" priority="low" presence="onTagMatch">
417       <match k="type" v="route"/>
418       <match k="route" v="tram"/>
419       <icon image="features/transport__tram.png">
420         <font size="12pt">${operator} <b>${ref}</b></font>
421       </icon>
422     </input>
423   </inputSet>
424
425   <inputSet id="cycle">
426     <inputSet ref="bicycle-permission"/>
427     <input type="route" name="National Cycle Routes" description="A signposted route in a National Cycle Network, or nearest equivalent." category="Cycle" priority="low">
428       <match k="type" v="route"/>
429       <match k="route" v="bicycle"/>
430       <match k="network" v="ncn"/>
431       <icon image="features/route__ncn.png" background="#ff6f7a" foreground="white">
432         <font size="14pt"><b>${ref}</b></font><br/>
433         <font size="12pt">${name}</font>
434       </icon>
435     </input>
436     <input type="route" name="Regional Cycle Routes" description="A signposted route in a Regional Cycle Network, or nearest equivalent." category="Cycle" priority="low">
437       <match k="type" v="route"/>
438       <match k="route" v="bicycle"/>
439       <match k="network" v="rcn"/>
440       <icon image="features/route__rcn.png" background="#6ff7ff" foreground="white">
441         <font size="14pt"><b>${ref}</b></font><br/>
442         <font size="12pt">${name}</font>
443       </icon>
444     </input>
445     <input type="route" name="Local Cycle Routes" description="A signposted route in a Local Cycle Network, or nearest equivalent." category="Cycle" priority="lowest">
446       <match k="type" v="route"/>
447       <match k="route" v="bicycle"/>
448       <match k="network" v="lcn"/>
449       <icon image="features/route__lcn.png" background="#7d6fff" foreground="white">
450         <font size="14pt"><b>${ref}</b></font><br/>
451         <font size="12pt">${name}</font>
452       </icon>
453     </input>
454   </inputSet>
455
456   <inputSet id="bicycle-permission">
457     <input type="choice"
458            name="Bicycles permitted" category="Cycle" description="Are bicyles allowed to use this road (regardless of physical suitability)?"
459            key="bicycle">
460       <choice value="yes" text="Allowed"/>
461       <choice value="no" text="Prohibited" desciption="Cycling is not allowed. Pushing your bicycle is not allowed either."/>
462       <choice value="private" text="Private"/>
463       <choice value="dismount" text="Cyclists dismount" description="Signage states that cyclists should dismount and push their bike for the selected path or road."/>
464       <choice value="designated" text="Designated"/>
465       <help>http://wiki.openstreetmap.org/wiki/Key:access</help>
466     </input>
467   </inputSet>
468
469   <inputSet id="bicycle-lane">
470     <input type="choice"
471         name="Bike lanes" category="Cycle" description="Road has bike lanes within the road surface"
472         key="cycleway" layout="horizontal">
473       <choice value="no" text="No bike lanes"/>
474       <choice value="lane" text="On-road bike lane" description="Separated by painted line on the road from cars"/>
475       <choice value="track" text="Parallel track" description="Separated by kerb or parked cars"/>
476       <choice value="opposite_lane" text="Contraflow lane" description="Separated by painted line, and allowing bicycles in both directions in an otherwise one-way street."/>
477       <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."/>
478       <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."/>
479       <help>http://wiki.openstreetmap.org/wiki/Key:cycleway</help>
480     </input>
481   </inputSet>
482
483   <inputSet id="ldp">
484     <input type="route" name="National Walking Route" description="National walking route" category="Walking" priority="normal">
485       <match k="type" v="route"/>
486       <match k="route" v="hiking|foot"/>
487       <match k="network" v="nwn"/>
488       <icon image="features/route__nwn.png" background="red" foreground="white">
489         <font size="14pt"><b>${ref}</b></font><br/>
490         <font size="12pt">${name}</font>
491       </icon>
492     </input>
493     <input type="route" name="Regional Walking Route" description="Regional walking route" category="Walking" priority="low">
494       <match k="type" v="route"/>
495       <match k="route" v="hiking|foot"/>
496       <match k="network" v="rwn"/>
497       <icon image="features/route__rwn.png" background="cyan" foreground="white">
498         <font size="14pt"><b>${ref}</b></font><br/>
499         <font size="12pt">${name}</font>
500       </icon>
501     </input>
502     <input type="route" name="Local Walking Route" description="Local walking route" category="Walking" priority="lowest">
503       <match k="type" v="route"/>
504       <match k="route" v="hiking|foot"/>
505       <match k="network" v="lwn"/>
506       <icon image="features/route__lwn.png" background="blue" foreground="white">
507         <font size="14pt"><b>${ref}</b></font><br/>
508         <font size="12pt">${name}</font>
509       </icon>
510     </input>
511   </inputSet>
512
513   <inputSet id="route">
514     <inputSet ref="names"/>
515     <inputSet ref="roadRefs"/>
516   </inputSet>
517
518   <inputSet id="waterways">
519     <inputSet ref="simpleName"/>
520     <input type="freetext" presence="always" name="Width" category="Properties" key="width" description="The width in metres"/>
521     <inputSet ref="boatPermissions"/>
522   </inputSet>
523 <!-- Would be good to have a dedicated 'access' type of input -->
524   <!-- all the description fields are identical at the moment for ease of maintenance, should be tailored in future. -->
525   <inputSet id="boatPermissions">
526     <input type="choice" name="Boat permission" category="Permission" key="boat" description="Are boats allowed to use this waterway?">
527       <choice value="yes" text="Allowed" description="General right of way."/>
528       <choice value="no" text="Prohibited" description="No access to the public."/>
529       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
530       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
531       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
532     </input>
533   </inputSet>
534
535   <inputSet id="permissions">
536     <input type="choice" name="General access" category="Permission" key="access" description="Is there a general right of access, regardless of mode of transport?">
537       <choice value="yes" text="Allowed" description="General right of way."/>
538       <choice value="no" text="Prohibited" description="No access to the public."/>
539       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
540       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
541       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
542     </input>
543
544     <input type="choice" name="Motor vehicles" category="Permission" key="motor_vehicle" description="Are cars and other private vehicles allowed?">
545       <choice value="yes" text="Allowed" description="General right of way."/>
546       <choice value="no" text="Prohibited" description="No access to the public."/>
547       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
548       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
549       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
550     </input>
551
552     <input type="choice" name="Horses" category="Permission" key="horse" description="Are cars and other private vehicles allowed?">
553       <choice value="yes" text="Allowed" description="General right of way."/>
554       <choice value="no" text="Prohibited" description="No access to the public."/>
555       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
556       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
557       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
558     </input>
559
560   </inputSet>
561
562   <inputSet id="places">
563     <input type="choice" name="Type of Place" presence="always" key="place">
564       <choice value="locality" text="Locality"/>
565       <choice value="hamlet" text="Hamlet"/>
566       <choice value="village" text="Village"/>
567       <choice value="suburb" text="Suburb"/>
568       <choice value="town" text="Town"/>
569       <choice value="city" text="City"/>
570       <choice value="county" text="County"/>
571       <choice value="region" text="Region"/>
572       <choice value="state" text="State"/>
573       <choice value="country" text="Country"/>
574       <choice value="continent" text="Continent"/>
575       <choice value="island" text="Island"/>
576       <choice value="islet" text="Islet"/>
577     </input>
578   </inputSet>
579
580   <inputSet id="isBuilding">
581     <input type="checkbox" presence="onTagMatch" category="Misc" description="Does this thing also represent one, solid building?" name="Building" key="building"/>
582   </inputSet>
583
584   <inputSet id="powerCables">
585     <input type="choice" name="Cables" key="cables" presence="always" category="Power">
586       <choice value="2" text="2"/>
587       <choice value="3" text="3"/>
588       <choice value="4" text="4"/>
589       <choice value="6" text="6"/>
590       <choice value="8" text="8"/>
591       <choice value="10" text="10"/>
592       <choice value="12" text="12"/>
593     </input>
594     <input type="choice" name="Voltage" key="voltage" presence="always" category="Power">
595       <!-- choices based on http://osmdoc.com/en/tag/voltage/#values-->
596       <choice value="400" text="400 V"/>
597       <choice value="600" text="600 V"/>
598       <choice value="750" text="750 V"/>
599       <choice value="1500" text="1500 V"/>
600       <choice value="3000" text="3000 V"/>
601       <choice value="15000" text="15 kV"/>
602       <choice value="20000" text="20 kV"/>
603       <choice value="35000" text="35 kV"/>
604       <choice value="110000" text="110 kV"/>
605       <choice value="132000" text="132 kV"/>
606       <choice value="138000" text="238 kV"/>
607       <choice value="220000" text="220 kV"/>
608       <choice value="380000" text="380 kV"/>
609     </input>
610   </inputSet>
611
612
613 <!-- Features -->
614
615   <include file="map_features/roads.xml" />     <!-- includes traffic calming, roundabouts, race track -->
616   <include file="map_features/paths.xml" />     <!-- includes steps, highway=pedestrian, bike/hike routes -->
617   <include file="map_features/water.xml" />     <!-- includes coastline -->
618   <include file="map_features/transport.xml" /> <!-- includes rail, trams, bus, airports, car rental, bike parking... -->
619   <include file="map_features/power.xml" />     <!-- includes power lines, pylons, stations -->
620   <include file="map_features/places.xml" />    <!-- includes boundaries (inc. NP) -->
621   <include file="map_features/tourism.xml" />   <!-- includes accommodation -->
622   <include file="map_features/barriers.xml" /> 
623   <include file="map_features/shopping.xml" />  <!-- no clear distinction between this, amenities and buildings -->
624   <include file="map_features/amenities.xml" /> <!-- includes cafe, bar... --> 
625   <include file="map_features/landuse.xml" />   <!-- includes outdoor leisure/sporting stuff, agriculture, natural. --> 
626   <include file="map_features/buildings.xml" /> <!-- a bit of a dumping ground, includes sports centre, shopping centre, hospital... --> 
627   <include file="map_features/man_made.xml" />  
628
629
630   
631   <!-- Relations -->
632   <feature name="Multipolygon">
633     <category>advanced</category>
634     <relation/>
635     <tag k="type" v="multipolygon"/>
636     <inputSet ref="common"/>
637   </feature>
638  
639 </mapFeatures>