Changes between Initial Version and Version 1 of Presets/GuidepostDirectionsAndDestinations


Ignore:
Timestamp:
2025-08-07T14:39:58+02:00 (8 months ago)
Author:
achadwick
Comment:

Initial revision, no icons yet

Legend:

Unmodified
Added
Removed
Modified
  • Presets/GuidepostDirectionsAndDestinations

    v1 v1  
     1== Guidepost Direction & Destination Markers ==
     2
     3This downloadable preset bundle extends the built-in presets for [osmwiki:Tag:information=guidepost] by adding a convenient way to capture detailed destinations and routes, as shown on a guidepost's directional signs. It uses the schema documented at [osmwiki:Key:direction_north] for simplicity.
     4
     5=== Installation ===
     6
     7In JOSM: install it from the //Presets → Preset Preferences...// menu. It shows up as "Guidepost Direction & Destination Markers (by achadwick)" in the left-hand list. Click the arrow to transfer it to your list of installed presets, on the right.
     8
     9=== Usage ===
     10
     11Once installed, the presets are available next to the //Guidepost// builtin in JOSM, under //Presets → Facilities → Tourism//. You can press `F3` and search for them as well.
     12
     13The preset dialogs come in two forms:
     14
     15* The basic dialog, named //**Guidepost Directions & Destinations**//, which lets you enter the texts of signs pointing in each compass bearing (N, E, S, W, NE, SE, SW, NW) separately.
     16
     17* A full version of the same dialog, named //**Guidepost Directions & Destinations (full)**//. This allows feature symbols, route references, and route names to be captured also.
     18
     19=== Preset XML ===
     20
     21{{{
     22#!preset
     23<?xml version="1.0" encoding="UTF-8"?>
     24<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0"
     25  author="achadwick"
     26  description="Guidepost Direction &amp; Destination Markers"
     27  shortdescription="Guidepost Directions &amp; Destinations"
     28  icon="Guidepost-16a.svg"
     29  version="1.[[revision]]_[[date]]"
     30>
     31  <group name="Facilities/Tourism">
     32
     33    <item name="Guidepost Directions &amp; Destinations"
     34      preset_name_label="true"
     35      icon="Guidepost-16a.svg"
     36      type="node"
     37    >
     38      <link wiki="Key:direction_north"/>
     39      <space />
     40
     41      <label text="Destination or route texts shown on directional guidepost markers." />
     42      <space />
     43
     44      <key key="tourism" value="information"/>
     45      <key key="information" value="guidepost"/>
     46      <combo
     47        key="guide_type"
     48        text="Guidepost type"
     49        values="destination,intermediary,numbered"
     50        default="destination"
     51        display_values="Directions to named destinations,Intermediary trail mark or arrow on a route,Directions to other numbered guideposts"
     52        editable="false"
     53      />
     54      <space />
     55
     56      <text
     57        text="N-bound text"
     58        key="direction_north"
     59      />
     60      <text
     61        text="E-bound text"
     62        key="direction_east"
     63      />
     64      <text
     65        text="S-bound text"
     66        key="direction_south"
     67      />
     68      <text
     69        text="W-bound text"
     70        key="direction_west"
     71      />
     72      <space />
     73
     74      <text
     75        text="NE-bound text"
     76        key="direction_northeast"
     77      />
     78      <text
     79        text="NW-bound text"
     80        key="direction_northwest"
     81      />
     82      <text
     83        text="SE-bound text"
     84        key="direction_southeast"
     85      />
     86      <text
     87        text="SW-bound text"
     88        key="direction_southwest"
     89      />
     90      <space />
     91
     92      <label text="Use semicolons to separate multiple values." />
     93      <space />
     94
     95      <preset_link preset_name="Guidepost"/>
     96      <preset_link preset_name="Guidepost Directions &amp; Destinations (full)"/>
     97    </item>
     98
     99    <item name="Guidepost Directions &amp; Destinations (full)"
     100      preset_name_label="true"
     101      icon="Guidepost-16b.svg"
     102      type="node"
     103    >
     104      <link wiki="Key:direction_north"/>
     105      <space />
     106
     107      <label text="Destination or route texts/refs/symbols shown on directional guidepost markers." />
     108      <space />
     109
     110      <key key="tourism" value="information"/>
     111      <key key="information" value="guidepost"/>
     112      <combo
     113        key="guide_type"
     114        text="Guidepost type"
     115        values="destination,intermediary,numbered"
     116        default="destination"
     117        display_values="Directions to named destinations,Intermediary trail mark or arrow on a route,Directions to other numbered guideposts"
     118        editable="false"
     119      />
     120      <space />
     121
     122      <text
     123        text="N-bound text"
     124        key="direction_north"
     125      />
     126      <text
     127        text="N-bound route ref"
     128        key="direction_north:ref"
     129      />
     130      <text
     131        text="N-bound route name"
     132        key="direction_north:route"
     133      />
     134      <text
     135        text="N-bound symbols"
     136        key="direction_north:symbol"
     137      />
     138      <space/>
     139
     140      <text
     141        text="E-bound text"
     142        key="direction_east"
     143      />
     144      <text
     145        text="E-bound route ref"
     146        key="direction_east:ref"
     147      />
     148      <text
     149        text="E-bound route name"
     150        key="direction_east:route"
     151      />
     152      <text
     153        text="E-bound symbols"
     154        key="direction_east:symbol"
     155      />
     156      <space/>
     157
     158      <text
     159        text="S-bound text"
     160        key="direction_south"
     161      />
     162      <text
     163        text="S-bound route ref"
     164        key="direction_south:ref"
     165      />
     166      <text
     167        text="S-bound route name"
     168        key="direction_south:route"
     169      />
     170      <text
     171        text="S-bound symbols"
     172        key="direction_south:symbol"
     173      />
     174      <space/>
     175
     176      <text
     177        text="W-bound text"
     178        key="direction_west"
     179      />
     180      <text
     181        text="W-bound route ref"
     182        key="direction_west:ref"
     183      />
     184      <text
     185        text="W-bound route name"
     186        key="direction_west:route"
     187      />
     188      <text
     189        text="W-bound symbols"
     190        key="direction_west:symbol"
     191      />
     192      <space/>
     193
     194      <text
     195        text="NE-bound text"
     196        key="direction_northeast"
     197      />
     198      <text
     199        text="NE-bound route ref"
     200        key="direction_northeast:ref"
     201      />
     202      <text
     203        text="NE-bound route name"
     204        key="direction_northeast:route"
     205      />
     206      <text
     207        text="NE-bound symbols"
     208        key="direction_northeast:symbol"
     209      />
     210      <space/>
     211
     212      <text
     213        text="NW-bound text"
     214        key="direction_northwest"
     215      />
     216      <text
     217        text="NW-bound route ref"
     218        key="direction_northwest:ref"
     219      />
     220      <text
     221        text="NW-bound route name"
     222        key="direction_northwest:route"
     223      />
     224      <text
     225        text="NW-bound symbols"
     226        key="direction_northwest:symbol"
     227      />
     228      <space/>
     229
     230      <text
     231        text="SE-bound text"
     232        key="direction_southeast"
     233      />
     234      <text
     235        text="SE-bound route ref"
     236        key="direction_southeast:ref"
     237      />
     238      <text
     239        text="SE-bound route name"
     240        key="direction_southeast:route"
     241      />
     242      <text
     243        text="SE-bound symbols"
     244        key="direction_southeast:symbol"
     245      />
     246      <space/>
     247
     248      <text
     249        text="SW-bound text"
     250        key="direction_southwest"
     251      />
     252      <text
     253        text="SW-bound route ref"
     254        key="direction_southwest:ref"
     255      />
     256      <text
     257        text="SW-bound route name"
     258        key="direction_southwest:route"
     259      />
     260      <text
     261        text="SW-bound symbols"
     262        key="direction_southwest:symbol"
     263      />
     264      <space />
     265
     266      <label text="Use semicolons to separate multiple values." />
     267      <space />
     268
     269      <preset_link preset_name="Guidepost"/>
     270      <preset_link preset_name="Guidepost Directions &amp; Destinations"/>
     271    </item>
     272
     273  </group>
     274</presets>
     275}}}