Changeset 6362 in josm for trunk/src/org/openstreetmap/josm/data/projection/proj
- Timestamp:
- 2013-11-03T01:06:23+01:00 (12 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/projection/proj
- Files:
-
- 3 edited
-
LambertConformalConic.java (modified) (1 diff)
-
Mercator.java (modified) (1 diff)
-
TransverseMercator.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/proj/LambertConformalConic.java
r6142 r6362 2 2 package org.openstreetmap.josm.data.projection.proj; 3 3 4 import static java.lang.Math.*; 5 4 import static java.lang.Math.PI; 5 import static java.lang.Math.abs; 6 import static java.lang.Math.atan; 7 import static java.lang.Math.cos; 8 import static java.lang.Math.exp; 9 import static java.lang.Math.log; 10 import static java.lang.Math.pow; 11 import static java.lang.Math.sin; 12 import static java.lang.Math.sqrt; 13 import static java.lang.Math.tan; 14 import static java.lang.Math.toRadians; 6 15 import static org.openstreetmap.josm.tools.I18n.tr; 7 16 -
trunk/src/org/openstreetmap/josm/data/projection/proj/Mercator.java
r5237 r6362 2 2 package org.openstreetmap.josm.data.projection.proj; 3 3 4 import static java.lang.Math.*; 5 4 import static java.lang.Math.PI; 5 import static java.lang.Math.atan; 6 import static java.lang.Math.log; 7 import static java.lang.Math.sinh; 8 import static java.lang.Math.tan; 6 9 import static org.openstreetmap.josm.tools.I18n.tr; 7 10 -
trunk/src/org/openstreetmap/josm/data/projection/proj/TransverseMercator.java
r5926 r6362 2 2 package org.openstreetmap.josm.data.projection.proj; 3 3 4 import static java.lang.Math.*; 5 4 import static java.lang.Math.cos; 5 import static java.lang.Math.pow; 6 import static java.lang.Math.sin; 7 import static java.lang.Math.sqrt; 8 import static java.lang.Math.tan; 6 9 import static org.openstreetmap.josm.tools.I18n.tr; 7 10
Note:
See TracChangeset
for help on using the changeset viewer.
