Changeset 7936 in josm for trunk/taginfoextract.groovy


Ignore:
Timestamp:
2015-01-08T14:31:14+01:00 (10 years ago)
Author:
bastiK
Message:

add support for projection EPSG:25828 to EPSG:25838 (ETRS89 / UTM) - in order to support Geoportal Berlin WMS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/taginfoextract.groovy

    r7625 r7936  
    8787            f = new File("${base_dir}/images/${path}")
    8888            if (f.exists()) {
    89                 return "https://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}"
    9090            }
    9191            assert false, "Cannot find image url for ${path}"
     
    199199        def cli = new CliBuilder(usage:'taginfoextract.groovy [options] [inputfile]',
    200200            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)")
    204204        cli._(longOpt:'imgdir', args:1, argName:"directory", "directory to put the generated images in (default: ./taginfo-img)")
    205205        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.