Changeset 13533 in josm


Ignore:
Timestamp:
2018-03-15T17:54:38+01:00 (6 years ago)
Author:
stoecker
Message:

enable new checks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/SyncEditorLayerIndex.groovy

    r13532 r13533  
    127127        oldproj.put("EPSG:3785", "EPSG:3857")
    128128        oldproj.put("EPSG:31297", "EPGS:31287")
     129        oldproj.put("EPSG:31464", "EPSG:31468")
    129130        oldproj.put("EPSG:54004", "EPSG:3857")
    130131        oldproj.put("EPSG:102100", "EPSG:3857")
     
    711712                        if("CRS:84".equals(p)) {
    712713                            if(!(url =~ /(?i)version=1\.3/)) {
    713                                 myprintln "! CRS:84 without WMS 1.3: ${getDescription(j)}"
     714                                myprintln "* CRS:84 without WMS 1.3: ${getDescription(j)}"
    714715                            }
    715716                        } else if(oldproj.containsKey(p)) {
     
    721722                    if (unsupported) {
    722723                        def s = String.join(", ", unsupported)
    723                         myprintln "! Projections ${s} not supported by JOSM: ${getDescription(j)}"
     724                        myprintln "* Projections ${s} not supported by JOSM: ${getDescription(j)}"
    724725                    }
    725726                    for (def o : old) {
    726                         myprintln "! Projection ${o} is an old unsupported code and has been replaced by ${oldproj.get(o)}: ${getDescription(j)}"
     727                        myprintln "* Projection ${o} is an old unsupported code and has been replaced by ${oldproj.get(o)}: ${getDescription(j)}"
    727728                    }
    728729                }
Note: See TracChangeset for help on using the changeset viewer.