Changeset 3966 in josm for trunk/src/org/openstreetmap/josm
- Timestamp:
- 2011-03-09T11:48:50+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/OffsetBookmark.java
r3962 r3966 69 69 } 70 70 // Mercator scale factor migration 71 if (proj instanceof Mercator && this.dx < 1E-3 && this.dy< 1E-3) {71 if (proj instanceof Mercator && Math.abs(this.dx) < 1E-3 && Math.abs(this.dy) < 1E-3) { 72 72 this.dx *= 6378137; 73 73 this.dy *= 6378137;
Note:
See TracChangeset
for help on using the changeset viewer.