Changes between Version 1 and Version 2 of Presets/EnglandWalesRightsOfWay


Ignore:
Timestamp:
Jan 27, 2012 8:09:01 PM (16 months ago)
Author:
achadwick
Comment:

Shebang and duplicate. Perhaps this is necesary?

Legend:

Unmodified
Added
Removed
Modified
  • Presets/EnglandWalesRightsOfWay

    v1 v2  
    11Public rights of way in England and Wales, using the good bits out of the global tagging style while retaining our ancient folkways and customs. This is a JOSM presets file implementing a hybrid version of the [http://wiki.openstreetmap.org/wiki/United_Kingdom_Tagging_Guidelines United Kingdom Tagging Guidelines], at least the part about public footpaths, bridleways, byways and permissive paths. 
     2 
     3{{{ 
     4#!preset 
     5<?xml version="1.0" encoding="utf-8"?> 
     6<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0" 
     7  author="achadwick" 
     8  description="Public rights of way in England and Wales, using the good bits out of the global tagging style while retaining our ancient folkways and customs." 
     9  shortdescription="Rights of way in England and Wales" 
     10  version="0.1_2012-01-27"> 
     11 
     12<!-- 
     13Implements http://wiki.openstreetmap.org/wiki/United_Kingdom_Tagging_Guidelines 
     14 
     15*General goals* 
     16 
     17These presets should be sufficient for clearly marked footpaths in rural 
     18contexts which may or may not follow farm tracks, and for pedestrian 
     19cut-throughs in towns. 
     20 
     21This doesn't try to impose highway=path everywhere, but is still close in 
     22spirit to the "global tagging scheme" shown on the wiki. I use dedecated 
     23types where they would make sense, but also mix in highway=track and 
     24highway=unclassified where those are more appropriate for the physical 
     25aspects of the route. Continuity of RoW tagging along a way is represented 
     26by continuity of the designation=* and *=designated tags. 
     27 
     28Given the nature of E+W rights of way and historical OSM usage, public 
     29paths in England and Wales with markers can almost always can be expressed 
     30as highway=bridleway or highway=footway, and unless they have the character 
     31of a rough farm track or actually follow a minor road they probably should 
     32be. Almost no marked RoW needs highway=path, the exception being marked 
     33permissive paths narrower than a rough farm track where the landowner 
     34allows bikes. 
     35 
     36--> 
     37 
     38  <group name="Rights of way" icon="sign_footpath.png"> 
     39 
     40    <item name="Public footpath" type="way" icon="arrow_public_footpath.png"> 
     41      <label text="Public footpath, often waymarked with yellow arrows." /> 
     42      <label text="Only use if there's unambiguous 'Public footpath' signage"/> 
     43      <label text="or if the source can be used to verify the legal status."/> 
     44      <space/> 
     45 
     46      <!-- what makes it a RoW, mandatory --> 
     47      <key key="designation" value="public_footpath" /> 
     48      <key key="foot" value="designated" /> 
     49      <key key="horse" value="no" /> 
     50      <key key="vehicle" value="no" /> 
     51 
     52      <!-- physical type or degree of importance, list only isolated types --> 
     53      <combo text="Physical aspect" 
     54        key="highway"  
     55        values="footway,steps,track" 
     56        display_values="Simple marked footpath,Steps forming part of footpath,Follows rough vehicle track" 
     57        default="footway" 
     58        required="true" /> 
     59      <label text="The values above are useful for isolated paths, but are"/> 
     60      <label text="not the only possibilities. Feel free to combine with"/> 
     61      <label text="other presets if the RoW is along a public road, say."/> 
     62      <space/> 
     63      <!-- Optional extras --> 
     64      <optional> 
     65        <combo key="surface" text="Surface type" 
     66          values="paved,unpaved,asphalt,gravel,ground,grass," 
     67          delete_if_empty="true" /> 
     68        <combo text="Lit" key="lit" 
     69          values=",yes,no" 
     70          display_values="Unknown,Yes,No" 
     71          delete_if_empty="true" /> 
     72        <combo text="Build quality"  
     73          key="tracktype" default="" delete_if_empty="true" 
     74          values=",grade1,grade2,grade3,grade4,grade5" 
     75          display_values="Unknown, 
     76Paved or heavily compacted, 
     77Gravel or densely packed, 
     78Even mix of hard &amp; soft, 
     79Mostly bare; partly solid, 
     80Bare ground" 
     81          /> 
     82        <text text="Width (metres)" key="width" /> 
     83      </optional> 
     84      <link href="http://wiki.openstreetmap.org/wiki/United_Kingdom_Tagging_Guidelines" /> 
     85    </item> 
     86 
     87    <item name="Public bridleway" type="way" icon="arrow_bridleway.png"> 
     88      <label text="Public bridleway, often waymarked in blue."/> 
     89      <label text="These are trails or paths for use by horse riders and"/> 
     90      <label text="on foot. Cyclists may use them, but they are not required"/> 
     91      <label text="to be kept usable by bicycles."/> 
     92      <space /> 
     93      <label text="Only use if there's unambiguous 'bridleway' signage or"/> 
     94      <label text="if the source can be used to verify the legal status."/> 
     95      <space/> 
     96 
     97      <!-- what makes it a RoW, mandatory --> 
     98      <key key="designation" value="public_bridleway" /> 
     99      <key key="horse" value="designated" /> 
     100      <key key="foot" value="designated" /> 
     101      <key key="vehicle" value="no" /> 
     102      <key key="bicycle" value="yes" /> 
     103      <!-- 
     104        Rationale: hierarchy of preference in routing, hierarchy of provision. 
     105        Bridleways are primarily for horse riders, and can be unpleasant to 
     106        use by cyclists. They're generally OK for walkers. The Countryside 
     107        Act 1968 states that authorities are not required to facilitate their 
     108        use by cyclists. 
     109       --> 
     110 
     111      <!-- physical type or degree of importance, list only isolated types --> 
     112      <combo key="highway" text="Physical aspect" 
     113        values="bridleway,track" 
     114        display_values="Simple marked bridleway,Follows rough vehicle track" 
     115        default="bridleway" delete_if_empty="false" /> 
     116      <label text="The values above are useful for isolated bridleways, but"/> 
     117      <label text="aren't the only possibilities. Feel free to combine with"/> 
     118      <label text="other presets if the RoW is along a public road, say."/> 
     119      <space/> 
     120 
     121      <!-- Optional extras --> 
     122      <optional> 
     123        <combo key="surface" text="Surface type" 
     124          values="paved,unpaved,asphalt,gravel,ground,grass," 
     125          default="" delete_if_empty="true" /> 
     126        <combo key="lit" text="Lit" 
     127          values=",yes,no" display_values="Unknown,Yes,No" 
     128          default="" delete_if_empty="true" /> 
     129        <combo key="tracktype" default="" delete_if_empty="true" 
     130          values=",grade1,grade2,grade3,grade4,grade5" 
     131          display_values="Unknown, 
     132Paved or heavily compacted, 
     133Gravel or densely packed, 
     134Even mix of hard &amp; soft, 
     135Mostly bare; partly solid, 
     136Bare ground" 
     137          text="Build quality" /> 
     138        <text text="Width (metres)" key="width" /> 
     139      </optional> 
     140      <link href="http://wiki.openstreetmap.org/wiki/United_Kingdom_Tagging_Guidelines" /> 
     141    </item> 
     142 
     143 
     144    <item name="Byway" type="way" icon="arrow_byway.png"> 
     145      <label text="Byway Open To All Traffic, often marked with red arrows"/> 
     146      <label text="These are minor roads which the public have a right to"/> 
     147      <label text="travel on, but which are mainly used like footpaths and"/> 
     148      <label text="bridleways. They have may have varying states of repair."/> 
     149      <space /> 
     150      <label text="Only use if there's unambiguous 'byway' signage or"/> 
     151      <label text="if the source can be used to verify the legal status."/> 
     152      <space /> 
     153 
     154      <!-- what makes it a RoW, mandatory --> 
     155      <key key="designation" value="byway_open_to_all_traffic" /> 
     156      <key key="foot" value="designated" /> 
     157      <key key="horse" value="designated" /> 
     158      <key key="vehicle" value="yes" /> 
     159      <key key="bicycle" value="designated" /> 
     160      <!-- 
     161        Rationale: there is a hierarchy of preference here when it comes to 
     162        routing. Vehicles other than pedal cycles may use them, but should be 
     163        routed along designated alternatives ceteris paribus. Conversely 
     164        walkers and bicycle and horse riders can be routed preferentially 
     165        along them. 
     166      --> 
     167 
     168      <!-- physical type or degree of importance, list only isolated types --> 
     169      <combo key="highway" text="Physical aspect" 
     170        values="track,unclassified" 
     171        display_values="Rough track,Well-surfaced minor road" 
     172        default="track" delete_if_empty="false" /> 
     173      <label text="If you choose the 'minor road' option, please also specify"/> 
     174      <label text="the number of lanes."/> 
     175      <space /> 
     176      <optional> 
     177        <combo text="Number of lanes" 
     178          key="lanes" 
     179          values="1,2" /> 
     180        <combo key="surface" text="Surface type" 
     181          values="paved,unpaved,asphalt,gravel,ground,grass," 
     182          default="" delete_if_empty="true" /> 
     183        <combo key="lit" text="Lit" 
     184          values=",yes,no" display_values="Unknown,Yes,No" 
     185          default="" delete_if_empty="true" /> 
     186        <combo key="tracktype" default="" delete_if_empty="true" 
     187          values=",grade1,grade2,grade3,grade4,grade5" 
     188          display_values="Unknown, 
     189Paved or heavily compacted, 
     190Gravel or densely packed, 
     191Even mix of hard &amp; soft, 
     192Mostly bare; partly solid, 
     193Bare ground" 
     194          text="Build quality" /> 
     195        <text text="Width (metres)" key="width" /> 
     196      </optional> 
     197      <link href="http://wiki.openstreetmap.org/wiki/United_Kingdom_Tagging_Guidelines" /> 
     198    </item> 
     199 
     200 
     201    <item name="Restricted Byway" type="way" icon="arrow_restricted_byway.png"> 
     202      <label text="Restricted Byway, often marked with purple arrows."/> 
     203      <label text="These are minor roads open to non-motorized traffic"/> 
     204      <label text="with often highly varying states of repair."/> 
     205      <space/> 
     206      <label text="Only use if there's unambiguous 'restricted byway' signage"/> 
     207      <label text="or if the source can be used to verify the legal status."/> 
     208      <space /> 
     209 
     210      <!-- what makes it a RoW, mandatory --> 
     211      <key key="designation" value="restricted_byway"/> 
     212      <key key="foot" value="designated"/> 
     213      <key key="horse" value="designated"/> 
     214      <key key="vehicle" value="yes"/> 
     215      <key key="bicycle" value="designated"/> 
     216      <key key="motor_vehicle" value="no"/> 
     217      <!-- 
     218        Rationale: same as for ordinary Byways, but motor vehicles are 
     219        prohibited. 
     220      --> 
     221 
     222      <!-- physical type or degree of importance, list only isolated types --> 
     223      <combo key="highway" text="Physical aspect" 
     224        values="track,unclassified" 
     225        display_values="Rough track,Well-surfaced minor road" 
     226        default="track" delete_if_empty="false" /> 
     227      <label text="If you choose the 'minor road' option, please also specify"/> 
     228      <label text="the number of lanes."/> 
     229      <space /> 
     230 
     231      <optional> 
     232        <combo text="Number of lanes" 
     233          key="lanes" 
     234          values="1,2" /> 
     235        <combo key="surface" text="Surface type" 
     236          values="paved,unpaved,asphalt,gravel,ground,grass," 
     237          default="" delete_if_empty="true" /> 
     238        <combo key="lit" text="Lit" 
     239          values=",yes,no" display_values="Unknown,Yes,No" 
     240          default="" delete_if_empty="true" /> 
     241        <combo key="tracktype" default="" delete_if_empty="true" 
     242          values=",grade1,grade2,grade3,grade4,grade5" 
     243          display_values="Unknown, 
     244Paved or heavily compacted, 
     245Gravel or densely packed, 
     246Even mix of hard &amp; soft, 
     247Mostly bare; partly solid, 
     248Bare ground" 
     249          text="Build quality" /> 
     250      </optional> 
     251      <link href="http://wiki.openstreetmap.org/wiki/United_Kingdom_Tagging_Guidelines" /> 
     252    </item> 
     253 
     254 
     255    <item name="Permissive path" type="way" icon="arrow_permissive_path.png"> 
     256      <label text="Permissive path. Sometimes waymarked with a white arrow."/> 
     257      <label text="These are paths the landowner has granted permission to"/> 
     258      <label text="use which can be revoked. Syn: permitted/concessionary."/> 
     259      <space/> 
     260      <label text="Only use if there's unambiguous 'permissive' signage"/> 
     261      <label text="or if the source can be used to verify the legal status."/> 
     262      <space/> 
     263 
     264      <!-- what makes it a RoW, mandatory --> 
     265      <key key="designation" value="permissive_path"/> 
     266      <!-- this is invented, taken from the Wikipedia name for it --> 
     267 
     268      <!-- physical type or degree of importance, list only isolated types --> 
     269      <combo key="highway" text="Signs/Physical aspects" 
     270        values="footway,path,track,cycleway,unclassified" 
     271        display_values="Simple footpath,Multi-use path,Follows rough vehicle track,Marked cycleway,Well-surfaced minor road" 
     272        default="footway" delete_if_empty="false" /> 
     273      <label text="If you choose the 'minor road' option, please also specify"/> 
     274      <label text="the number of lanes."/> 
     275      <space/> 
     276 
     277      <!-- Access --> 
     278      <combo text="Foot" key="foot" values="permissive" default="permissive"/> 
     279      <combo text="Bicycle" key="bicycle" values="permissive" /> 
     280      <combo text="Horse" key="horse" values="permissive" /> 
     281      <label text="At least of the above must be 'permissive' by definition."/> 
     282      <label text="Other values are allowed, of course."/> 
     283      <space/> 
     284 
     285      <!-- Optional extras --> 
     286      <optional> 
     287        <combo text="Number of lanes" 
     288          key="lanes" 
     289          values="1,2" /> 
     290        <combo key="surface" text="Surface type" 
     291          values="paved,unpaved,asphalt,gravel,ground,grass," 
     292          default="" delete_if_empty="true" /> 
     293        <combo key="lit" text="Lit" 
     294          values=",yes,no" display_values="Unknown,Yes,No" 
     295          default="" delete_if_empty="true" /> 
     296        <combo key="tracktype" default="" delete_if_empty="true" 
     297          values=",grade1,grade2,grade3,grade4,grade5" 
     298          display_values="Unknown, 
     299Paved or heavily compacted, 
     300Gravel or densely packed, 
     301Even mix of hard &amp; soft, 
     302Mostly bare; partly solid, 
     303Bare ground" 
     304          text="Build quality" /> 
     305      </optional> 
     306      <link href="http://wiki.openstreetmap.org/wiki/United_Kingdom_Tagging_Guidelines" /> 
     307    </item> 
     308 
     309  </group> 
     310 
     311</presets> 
     312}}}