source: osm/applications/editors/josm/plugins/roadsigns/README@ 30962

Last change on this file since 30962 was 30942, checked in by bastik, 9 years ago

moved doc from README to wiki

see http://wiki.openstreetmap.org/wiki/JOSM/Plugins/RoadSigns

File size: 1.1 KB
Line 
1Road Signs Plugin
2=================
3
4Shows a GUI dialog to tag objects by clicking on road sign symbols.
5It tries to generate the corresponding tags for the object.
6
7Author:
8 Paul Hartmann <phaaurlt@googlemail.com>
9
10License:
11 GPL v2 or later.
12
13Acknowledgements:
14 Inspired by the Verkehrszeichen Tool [1] by Sebastian Hohmann.
15 Basically, this plugin is a port to Java and the JOSM (plugin) framework.
16 [1] http://osmtools.de/traffic_signs/
17
18 Pics for the German preset have been derived from
19 http://de.wikipedia.org/wiki/Bildtafel_der_Verkehrszeichen_in_Deutschland (german street sign SVGs)
20
21
22JavaCC usage:
23-------------
24
25There is a simple format to insert parameters into strings. E.g. keys,
26values and refs in the preset file can contain '$foo' or '${foo}' which
27will be replaced by the value of the parameter named foo.
28(Textual "$" or "\" is escaped as "\$" or "\\".)
29
30javacc is used for easier tokenization. All *.java files in the folder
31plugins/roadsigns/javacc are auto generated. To create them, execute
32
33 javacc ParamString.jj
34
35(Provided javacc is installed. Not necessary if that file is not changed.)
Note: See TracBrowser for help on using the repository browser.