Changeset 13533 in josm
- Timestamp:
- 2018-03-15T17:54:38+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/SyncEditorLayerIndex.groovy
r13532 r13533 127 127 oldproj.put("EPSG:3785", "EPSG:3857") 128 128 oldproj.put("EPSG:31297", "EPGS:31287") 129 oldproj.put("EPSG:31464", "EPSG:31468") 129 130 oldproj.put("EPSG:54004", "EPSG:3857") 130 131 oldproj.put("EPSG:102100", "EPSG:3857") … … 711 712 if("CRS:84".equals(p)) { 712 713 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)}" 714 715 } 715 716 } else if(oldproj.containsKey(p)) { … … 721 722 if (unsupported) { 722 723 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)}" 724 725 } 725 726 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)}" 727 728 } 728 729 }
Note:
See TracChangeset
for help on using the changeset viewer.