| | 1 | == NaPTAN Preset == |
| | 2 | A tagging preset which allows the user to add NaPTAN information to a public transport access node (ie. Bus Stops). Only for use in the United Kingdom. |
| | 3 | This preset is in beta and only bus stops are supported. If issues are found, contact www.osm.org/user/Mastrick_Mapper or create an issue in the github.com/FreetimeFM/josm-naptan-preset repository. |
| | 4 | |
| | 5 | {{{ |
| | 6 | #!preset |
| | 7 | <?xml version="1.0" encoding="UTF-8"?> |
| | 8 | <presets |
| | 9 | xmlns="http://josm.openstreetmap.de/tagging-preset-1.0" |
| | 10 | author="FreetimeFM" version="2.[[revision]]_[[date]]" |
| | 11 | shortdescription="Adds NaPTAN Information. Currently in Beta." |
| | 12 | description="[Beta] Add NaPTAN Information to public access points. If you found an error in this preset, please contact www.osm.org/user/Mastrick_Mapper." |
| | 13 | link="https://github.com/FreetimeFM/josm-naptan-preset" |
| | 14 | > |
| | 15 | <group name="NaPTAN Tags"> |
| | 16 | <item name="Bus Stop" type="node" preset-name-label="true"> |
| | 17 | <!-- Links to wiki page --> |
| | 18 | <link href="https://wiki.openstreetmap.org/wiki/NaPTAN" /> |
| | 19 | |
| | 20 | <!-- Section for adding NaPTAN information --> |
| | 21 | <label text="Adds NaPTAN information to a bus stop. All the keys below have a dedicated page in the OSM Wiki." /> |
| | 22 | <space /> |
| | 23 | |
| | 24 | <text key="naptan:AtcoCode" text="ATCO Code" match="key" /> |
| | 25 | <text key="naptan:NaptanCode" text="Naptan Code" match="key" /> |
| | 26 | <space /> |
| | 27 | |
| | 28 | <text key="name" text="Name" /> |
| | 29 | <text key="naptan:CommonName" text="Common Name" match="key" /> |
| | 30 | <label text="The Common Name is pretty much the same as Name." /> |
| | 31 | <space /> |
| | 32 | |
| | 33 | <combo key="naptan:Indicator" text="Indicator" values="at,opp,near,adj" editable="true" match="key" /> |
| | 34 | <label text="Custom values are allowed such as 'Stop 1'." /> |
| | 35 | <space /> |
| | 36 | |
| | 37 | <check key="naptan:verified" text="Has this stop been verified/surveyed?" default="off" match="key" /> |
| | 38 | <item_separator /> |
| | 39 | |
| | 40 | <!-- Section for setting type of stop --> |
| | 41 | <label text="Set node as?" /> |
| | 42 | <checkgroup columns="2"> |
| | 43 | <check key="public_transport" text="public_transport = platform" value_on="platform" disable_off="true" default="on" /> |
| | 44 | <check key="highway" text="highway = bus_stop" value_on="bus_stop" disable_off="true" default="on" /> |
| | 45 | </checkgroup> |
| | 46 | <label text="Both tags are recommended, however, please see the Wiki for 'Tag:public_transport=platform' and 'Tag:highway=bus_stop' to see which tag applies to this stop." /> |
| | 47 | <item_separator /> |
| | 48 | |
| | 49 | <!-- Section for adding additional tags to the stop --> |
| | 50 | <!-- Adapted from tagging presets for Platform and Bus Stop from default_presets.xml --> |
| | 51 | <optional text="Set optional tags for this bus stop."> |
| | 52 | <checkgroup columns="2"> |
| | 53 | <check key="bench" text="Bench" /> |
| | 54 | <check key="shelter" text="Shelter" /> |
| | 55 | </checkgroup> |
| | 56 | <check key="bin" text="Waste Basket/Trash Can" /> |
| | 57 | <check key="passenger_information_display" text="Passenger information display" /> |
| | 58 | <space /> |
| | 59 | |
| | 60 | <text key="route_ref" text="Route references" /> |
| | 61 | <space /> |
| | 62 | |
| | 63 | <combo key="wheelchair" text="Wheelchairs" values="yes,designated,limited,no" values_sort="false" /> |
| | 64 | <combo key="tactile_paving" text="Tactile Paving" values="yes,no,incorrect" /> |
| | 65 | </optional> |
| | 66 | </item> |
| | 67 | </group> |
| | 68 | </presets> |
| | 69 | }}} |