Changeset 11853 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2017-04-08T01:21:11+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/Projections.java
r11746 r11853 84 84 * should be compatible to PROJ.4 85 85 */ 86 static final Map<String, ProjFactory> projs = new HashMap<>(); 87 static final Map<String, Ellipsoid> ellipsoids = new HashMap<>(); 88 static final Map<String, Datum> datums = new HashMap<>(); 89 static final Map<String, NTV2GridShiftFileWrapper> nadgrids = new HashMap<>(); 90 static final Map<String, ProjectionDefinition> inits; 86 private static final Map<String, ProjFactory> projs = new HashMap<>(); 87 private static final Map<String, Ellipsoid> ellipsoids = new HashMap<>(); 88 private static final Map<String, Datum> datums = new HashMap<>(); 89 private static final Map<String, NTV2GridShiftFileWrapper> nadgrids = new HashMap<>(); 90 private static final Map<String, ProjectionDefinition> inits; 91 91 92 92 static {
Note:
See TracChangeset
for help on using the changeset viewer.