Changeset 7936 in josm for trunk/taginfoextract.groovy
- Timestamp:
- 2015-01-08T14:31:14+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/taginfoextract.groovy
r7625 r7936 87 87 f = new File("${base_dir}/images/${path}") 88 88 if (f.exists()) { 89 return "http s://josm.openstreetmap.de/export/${josm_svn_revision}/josm/trunk/images/${path}"89 return "http://josm.openstreetmap.de/export/${josm_svn_revision}/josm/trunk/images/${path}" 90 90 } 91 91 assert false, "Cannot find image url for ${path}" … … 199 199 def cli = new CliBuilder(usage:'taginfoextract.groovy [options] [inputfile]', 200 200 header:"Options:", 201 footer:"[inputfile] the file to process (optional, default is 'resource://styles/standard/elemstyles.mapcss')")202 cli.o(args:1, argName: "file", "output file , - prints to stdout (default: -)")203 cli._(longOpt:'svnrev', args:1, argName:"revision", "corresponding revision of the repository http://svn.openstreetmap.org/ (optional, current revision is fetched from the web if not given)")201 footer:"[inputfile] the file to process (optional, default is 'resource://styles/standard/elemstyles.mapcss')") 202 cli.o(args:1, argName: "file", "output file (json), - prints to stdout (default: -)") 203 cli._(longOpt:'svnrev', args:1, argName:"revision", "corresponding revision of the repository http://svn.openstreetmap.org/ (optional, current revision is read from the local checkout or from the web if not given, see --svnweb)") 204 204 cli._(longOpt:'imgdir', args:1, argName:"directory", "directory to put the generated images in (default: ./taginfo-img)") 205 205 cli._(longOpt:'svnweb', 'fetch revision of the repository http://svn.openstreetmap.org/ from web and not from the local repository')
Note:
See TracChangeset
for help on using the changeset viewer.