Changeset 9532 in josm for trunk/scripts
- Timestamp:
- 2016-01-18T22:48:40+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/BuildProjectionDefinitions.java
r9413 r9532 42 42 private static int noJosm = 0; 43 43 private static int noProj4 = 0; 44 private static int noOmercNoBounds = 0; 44 45 45 46 /** … … 93 94 System.out.println(" in particular: " + baseProjectionMap); 94 95 System.out.println(String.format(" * requires data file for datum conversion: %d entries", noDatumgrid)); 96 if (noOmercNoBounds > 0) { 97 System.out.println(String.format(" * projection is Oblique Mercator (requires bounds), but no bounds specified: %d entries", noOmercNoBounds)); 98 } 95 99 System.out.println(); 96 100 System.out.println(String.format("written %d entries from %s", noJosm, JOSM_EPSG_FILE)); … … 164 168 noDatumgrid++; 165 169 } 170 171 if (result && "omerc".equals(proj) && !parameters.containsKey(CustomProjection.Param.bounds.key)) { 172 result = false; 173 noOmercNoBounds++; 174 } 166 175 167 176 return result;
Note:
See TracChangeset
for help on using the changeset viewer.