]> git.openstreetmap.org Git - rails.git/blob - public/potlatch2/map_features.xml
Upgrade to OpenLayers 2.11
[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="contact_line" text="Overhead line"/>
307       <choice value="rail" text="Third rail"/>
308       <choice value="no" text="No"/>
309     </input>
310     <input type="choice" name="Voltage" category="Electrification" description="Nominal voltage of electric wires"
311            key="voltage" presence="withCategory">
312       <choice value="600" text="600V"/>
313       <choice value="750" text="750V"/>
314       <choice value="1500" text="1500V"/>
315       <choice value="3000" text="3000V"/>
316       <choice value="15000" text="15kV"/>
317       <choice value="25000" text="25kV"/>
318     </input>
319     <input type="choice" name="Frequency" category="Electrification" description="Frequency in Hertz of alternating current power supply"
320            key="frequency" presence="withCategory">
321       <choice value="0" text="DC"/>
322       <choice value="16.67" text="16.67 Hz"/>
323       <choice value="16.7" text="16.7 Hz"/>
324       <choice value="25" text="25 Hz"/>
325       <choice value="50" text="50 Hz"/>
326       <choice value="60" text="60 Hz"/>
327     </input>
328   </inputSet>
329
330   <inputSet id="rail-usage">
331     <input type="choice" name="Usage" category="Usage" description="Main use of the line" key="usage">
332       <choice value="main" text="Main line" description="The principal artery of a rail system."/>
333       <choice value="branch" text="Branch line" description="A secondary line, branching off a main line."/>
334       <choice value="industrial" text="Industrial"/>
335       <choice value="tourism" text="Tourism" />
336       <choice value="military" text="Military"/>
337     </input>
338   </inputSet>
339
340   <inputSet id="fee">
341     <input type="freetext" presence="onTagMatch" category="Restrictions" description="The charge/cost of using this amenity" name="Fee" key="fee"/>
342   </inputSet>
343
344   <inputSet id="roadRestrictions">
345     <input type="choice" presence="always"
346         name="Oneway" category="Restrictions" description="Oneway roads"
347         key="oneway">
348       <choice value="yes" match="yes|true|1" text="One way"
349         description="Road can only be travelled in direction of way" icon="features/oneway__yes.png"/>
350       <choice value="no" match="no|false|0" text="Two way"
351         description="Road can be travelled in both directions" icon="features/oneway__no.png"/>
352       <choice value="-1" match="-1|reverse" text="One way reverse"
353         description="Road can be travelled in opposite direction to way" icon="features/oneway__-1.png"/>
354     </input>
355     <input type="speed" presence="onTagMatch"
356         name="Speed Limit" category="Restrictions" description="Maximum permitted speed on this road"
357         key="maxspeed"/>
358   </inputSet>
359
360   <inputSet id="roadRoundabout">
361     <!-- review the choice of category -->
362     <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."
363            key="junction">
364       <choice value="roundabout" text="Yes"/>
365     </input>
366   </inputSet>
367
368   <inputSet id="turnRestrictions">
369     <input type="turn" name="Turn restriction" description="Turn restriction" category="Restrictions" priority="normal" presence="onTagMatch">
370       <match k="type" v="restriction"/>
371       <role role="via"/>
372     </input>
373   </inputSet>
374
375   <inputSet id="pedestrians">
376     <input type="choice" name="Pedestrians" description="Can pedestrians use this road, including footpaths if any?" category="Walking" key="foot">
377       <choice value="yes" text="Allowed"/>
378       <choice value="no" text="Prohibited"/>
379       <choice value="designated" text="Designated"/>
380     </input>
381   </inputSet>
382
383   <inputSet id="naptan">
384     <input type="freetext" presence="onTagMatch" category="Naptan" description="12 character internal Naptan ID" name="Atco Code" key="naptan:AtcoCode"/>
385     <input type="choice" presence="onTagMatch" category="Naptan" description="The eight-point compass bearning" name="Naptan Bearing" key="naptan:Bearing" >
386       <choice value="N"  match="N"  text="N"  description=""/>
387       <choice value="NE" match="NE" text="NE" description=""/>
388       <choice value="E"  match="E"  text="E"  description=""/>
389       <choice value="SE" match="SE" text="SE" description=""/>
390       <choice value="S"  match="S"  text="S"  description=""/>
391       <choice value="SW" match="SW" text="SW" description=""/>
392       <choice value="W"  match="W"  text="W"  description=""/>
393       <choice value="NW" match="NW" text="NW" description=""/>
394     </input>
395     <input type="freetext" presence="onTagMatch" category="Naptan" description="The naptan common name" name="Naptan Common Name (read-only)" key="naptan:CommonName"/>
396     <input type="freetext" presence="onTagMatch" category="Naptan" description="" name="Naptan Indicator (read-only)" key="naptan:Indicator"/>
397     <input type="freetext" presence="onTagMatch" category="Naptan" description="" name="Naptan Street (read-only)" key="naptan:Street"/>
398     <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"/>
399   </inputSet>
400
401   <inputSet id="buses">
402     <input type="freetext" presence="always" category="Bus Stop" name="Stop Name" key="name" description="The name of the bus stop"/>
403     <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"/>
404     <inputSet ref="naptan"/>
405   </inputSet>
406
407   <inputSet id="bus-route">
408     <input type="route" name="Bus Route" description="Bus route" category="Transport" priority="low" presence="onTagMatch">
409       <match k="type" v="route"/>
410       <match k="route" v="bus"/>
411       <icon image="features/route__bus.png">
412         <font size="12pt">${operator} <b>${ref}</b></font>
413       </icon>
414     </input>
415   </inputSet>
416
417   <inputSet id="tram-route">
418     <input type="route" name="Tram Route" description="Tram route" category="Transport" priority="low" presence="onTagMatch">
419       <match k="type" v="route"/>
420       <match k="route" v="tram"/>
421       <icon image="features/transport__tram.png">
422         <font size="12pt">${operator} <b>${ref}</b></font>
423       </icon>
424     </input>
425   </inputSet>
426
427   <inputSet id="cycle">
428     <inputSet ref="bicycle-permission"/>
429     <input type="route" name="National Cycle Routes" description="A signposted route in a National Cycle Network, or nearest equivalent." category="Cycle" priority="low">
430       <match k="type" v="route"/>
431       <match k="route" v="bicycle"/>
432       <match k="network" v="ncn"/>
433       <icon image="features/route__ncn.png" background="#ff6f7a" foreground="white">
434         <font size="14pt"><b>${ref}</b></font><br/>
435         <font size="12pt">${name}</font>
436       </icon>
437     </input>
438     <input type="route" name="Regional Cycle Routes" description="A signposted route in a Regional Cycle Network, or nearest equivalent." category="Cycle" priority="low">
439       <match k="type" v="route"/>
440       <match k="route" v="bicycle"/>
441       <match k="network" v="rcn"/>
442       <icon image="features/route__rcn.png" background="#6ff7ff" foreground="white">
443         <font size="14pt"><b>${ref}</b></font><br/>
444         <font size="12pt">${name}</font>
445       </icon>
446     </input>
447     <input type="route" name="Local Cycle Routes" description="A signposted route in a Local Cycle Network, or nearest equivalent." category="Cycle" priority="lowest">
448       <match k="type" v="route"/>
449       <match k="route" v="bicycle"/>
450       <match k="network" v="lcn"/>
451       <icon image="features/route__lcn.png" background="#7d6fff" foreground="white">
452         <font size="14pt"><b>${ref}</b></font><br/>
453         <font size="12pt">${name}</font>
454       </icon>
455     </input>
456   </inputSet>
457
458   <inputSet id="bicycle-permission">
459     <input type="choice"
460            name="Bicycles permitted" category="Cycle" description="Are bicyles allowed to use this road (regardless of physical suitability)?"
461            key="bicycle">
462       <choice value="yes" text="Allowed"/>
463       <choice value="no" text="Prohibited" desciption="Cycling is not allowed. Pushing your bicycle is not allowed either."/>
464       <choice value="private" text="Private"/>
465       <choice value="dismount" text="Cyclists dismount" description="Signage states that cyclists should dismount and push their bike for the selected path or road."/>
466       <choice value="designated" text="Designated"/>
467       <help>http://wiki.openstreetmap.org/wiki/Key:access</help>
468     </input>
469   </inputSet>
470
471   <inputSet id="bicycle-lane">
472     <input type="choice"
473         name="Bike lanes" category="Cycle" description="Road has bike lanes within the road surface"
474         key="cycleway" layout="horizontal">
475       <choice value="no" text="No bike lanes"/>
476       <choice value="lane" text="On-road bike lane" description="Separated by painted line on the road from cars"/>
477       <choice value="track" text="Parallel track" description="Separated by kerb or parked cars"/>
478       <choice value="opposite_lane" text="Contraflow lane" description="Separated by painted line, and allowing bicycles in both directions in an otherwise one-way street."/>
479       <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."/>
480       <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."/>
481       <help>http://wiki.openstreetmap.org/wiki/Key:cycleway</help>
482     </input>
483   </inputSet>
484
485   <inputSet id="ldp">
486     <input type="route" name="National Walking Route" description="National walking route" category="Walking" priority="normal">
487       <match k="type" v="route"/>
488       <match k="route" v="hiking|foot"/>
489       <match k="network" v="nwn"/>
490       <icon image="features/route__nwn.png" background="red" foreground="white">
491         <font size="14pt"><b>${ref}</b></font><br/>
492         <font size="12pt">${name}</font>
493       </icon>
494     </input>
495     <input type="route" name="Regional Walking Route" description="Regional walking route" category="Walking" priority="low">
496       <match k="type" v="route"/>
497       <match k="route" v="hiking|foot"/>
498       <match k="network" v="rwn"/>
499       <icon image="features/route__rwn.png" background="cyan" foreground="white">
500         <font size="14pt"><b>${ref}</b></font><br/>
501         <font size="12pt">${name}</font>
502       </icon>
503     </input>
504     <input type="route" name="Local Walking Route" description="Local walking route" category="Walking" priority="lowest">
505       <match k="type" v="route"/>
506       <match k="route" v="hiking|foot"/>
507       <match k="network" v="lwn"/>
508       <icon image="features/route__lwn.png" background="blue" foreground="white">
509         <font size="14pt"><b>${ref}</b></font><br/>
510         <font size="12pt">${name}</font>
511       </icon>
512     </input>
513   </inputSet>
514
515   <inputSet id="route">
516     <inputSet ref="names"/>
517     <inputSet ref="roadRefs"/>
518   </inputSet>
519
520   <inputSet id="waterways">
521     <inputSet ref="simpleName"/>
522     <input type="freetext" presence="always" name="Width" category="Properties" key="width" description="The width in metres"/>
523     <inputSet ref="boatPermissions"/>
524   </inputSet>
525 <!-- Would be good to have a dedicated 'access' type of input -->
526   <!-- all the description fields are identical at the moment for ease of maintenance, should be tailored in future. -->
527   <inputSet id="boatPermissions">
528     <input type="choice" name="Boat permission" category="Permission" key="boat" description="Are boats allowed to use this waterway?">
529       <choice value="yes" text="Allowed" description="General right of way."/>
530       <choice value="no" text="Prohibited" description="No access to the public."/>
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="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
534     </input>
535   </inputSet>
536
537   <inputSet id="permissions">
538     <input type="choice" name="General access" category="Permission" key="access" description="Is there a general right of access, regardless of mode of transport?">
539       <choice value="yes" text="Allowed" description="General right of way."/>
540       <choice value="no" text="Prohibited" description="No access to the public."/>
541       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
542       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
543       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
544     </input>
545
546     <input type="choice" name="Motor vehicles" category="Permission" key="motor_vehicle" description="Are cars and other private vehicles allowed?">
547       <choice value="yes" text="Allowed" description="General right of way."/>
548       <choice value="no" text="Prohibited" description="No access to the public."/>
549       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
550       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
551       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
552     </input>
553
554     <input type="choice" name="Horses" category="Permission" key="horse" description="Are cars and other private vehicles allowed?">
555       <choice value="yes" text="Allowed" description="General right of way."/>
556       <choice value="no" text="Prohibited" description="No access to the public."/>
557       <choice value="permissive" text="Permissive" description="Access permitted through private land."/>
558       <choice value="private" text="Private" description="No access to the public, except individual exceptions."/>
559       <choice value="designated" text="Designated" description="Permitted, according to signs or specific local laws."/>
560     </input>
561
562   </inputSet>
563
564   <inputSet id="places">
565     <input type="choice" name="Type of Place" presence="always" key="place">
566       <choice value="locality" text="Locality"/>
567       <choice value="hamlet" text="Hamlet"/>
568       <choice value="village" text="Village"/>
569       <choice value="suburb" text="Suburb"/>
570       <choice value="town" text="Town"/>
571       <choice value="city" text="City"/>
572       <choice value="county" text="County"/>
573       <choice value="region" text="Region"/>
574       <choice value="state" text="State"/>
575       <choice value="country" text="Country"/>
576       <choice value="continent" text="Continent"/>
577       <choice value="island" text="Island"/>
578       <choice value="islet" text="Islet"/>
579     </input>
580   </inputSet>
581
582   <inputSet id="isBuilding">
583     <input type="checkbox" presence="onTagMatch" category="Misc" description="Does this thing also represent one, solid building?" name="Building" key="building"/>
584   </inputSet>
585
586   <inputSet id="powerCables">
587     <input type="choice" name="Cables" key="cables" presence="always" category="Power">
588       <choice value="2" text="2"/>
589       <choice value="3" text="3"/>
590       <choice value="4" text="4"/>
591       <choice value="6" text="6"/>
592       <choice value="8" text="8"/>
593       <choice value="10" text="10"/>
594       <choice value="12" text="12"/>
595     </input>
596     <input type="choice" name="Voltage" key="voltage" presence="always" category="Power">
597       <!-- choices based on http://osmdoc.com/en/tag/voltage/#values-->
598       <choice value="400" text="400 V"/>
599       <choice value="600" text="600 V"/>
600       <choice value="750" text="750 V"/>
601       <choice value="1500" text="1500 V"/>
602       <choice value="3000" text="3000 V"/>
603       <choice value="15000" text="15 kV"/>
604       <choice value="20000" text="20 kV"/>
605       <choice value="35000" text="35 kV"/>
606       <choice value="110000" text="110 kV"/>
607       <choice value="132000" text="132 kV"/>
608       <choice value="138000" text="238 kV"/>
609       <choice value="220000" text="220 kV"/>
610       <choice value="380000" text="380 kV"/>
611     </input>
612   </inputSet>
613
614   <inputSet id="pitchSport">
615     <input name="Sport" presence="always" category="Sport" key="sport" type="choice" description="The sport that is predominantly played here.">
616       <choice value="9pin" text="9 pin bowling"/>
617       <choice value="10pin" text="10 pin bowling"/>
618       <choice value="american_football" text="American football"/>
619       <choice value="archery" text="Archery"/>
620       <choice value="athletics" text="Athletics"/>
621       <choice value="australian_football" text="Australian Rules Football"/>
622       <choice value="baseball" text="Baseball"/>
623       <choice value="basketball" text="Basketball"/>
624       <choice value="beachvolleyball" text="Beach volleyball"/>
625       <choice value="boules" text="Boules/petanque/bocci"/>
626       <choice value="bowls" text="Lawn bowls"/>
627       <choice value="canadian_football" text="Canadian football"/>
628       <choice value="chess" text="Chess"/>
629       <choice value="cricket" text="Cricket"/>
630       <choice value="cricket_nets" text="Cricket nets"/>
631       <choice value="croquet" text="Croquet"/>
632       <choice value="equestrian" text="Equestrian"/>
633       <choice value="gaelic_football" text="Gaelic football"/>
634       <choice value="gymnastics" text="Gymnastics"/>
635       <choice value="team_handball" text="(Team) handball"/>
636       <choice value="hockey" text="(Field) hockey"/>
637       <choice value="korfball" text="Korfball"/>
638       <choice value="pelota" text="Pelota"/>
639       <choice value="rugby_league" text="Rugby league"/>
640       <choice value="rugby_union" text="Rugby union"/>
641       <choice value="shooting" text="Shooting"/>
642       <choice value="skating" text="Ice skating"/>
643       <choice value="skateboard" text="Skateboarding"/>
644       <choice value="soccer" text="Soccer/football"/>
645       <choice value="swimming" text="Swimming"/>
646       <choice value="table_tennis" text="Table tennis"/>
647       <choice value="tennis" text="Tennis"/>
648       <choice value="volleyball" text="Volleyball"/>
649     </input>
650   </inputSet>
651
652
653 <!-- Features -->
654
655   <include file="map_features/roads.xml" />     <!-- includes traffic calming, roundabouts, race track -->
656   <include file="map_features/paths.xml" />     <!-- includes steps, highway=pedestrian, bike/hike routes -->
657   <include file="map_features/water.xml" />     <!-- includes coastline -->
658   <include file="map_features/transport.xml" /> <!-- includes rail, trams, bus, airports, car rental, bike parking... -->
659   <include file="map_features/power.xml" />     <!-- includes power lines, pylons, stations -->
660   <include file="map_features/places.xml" />    <!-- includes boundaries (inc. NP) -->
661   <include file="map_features/tourism.xml" />   <!-- includes accommodation -->
662   <include file="map_features/barriers.xml" /> 
663   <include file="map_features/shopping.xml" />  <!-- no clear distinction between this, amenities and buildings -->
664   <include file="map_features/amenities.xml" /> <!-- includes cafe, bar... --> 
665   <include file="map_features/landuse.xml" />   <!-- includes outdoor leisure/sporting stuff, agriculture, natural. --> 
666   <include file="map_features/buildings.xml" /> <!-- a bit of a dumping ground, includes sports centre, shopping centre, hospital... --> 
667   <include file="map_features/man_made.xml" />  
668
669
670   
671   <!-- Relations -->
672   <feature name="Multipolygon">
673     <category>advanced</category>
674     <relation/>
675     <tag k="type" v="multipolygon"/>
676     <inputSet ref="common"/>
677   </feature>
678  
679 </mapFeatures>