Changeset 3531 in josm for trunk/test
- Timestamp:
- 2010-09-16T10:27:46+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/projection/EllipsoidTest.java
r3480 r3531 12 12 13 13 final double EPSILON = 1e-8; 14 14 15 15 /** 16 16 * convert latlon to cartesian coordinates back and forth … … 30 30 double[] cart = ellips.latLon2Cart(ll); 31 31 ll = ellips.cart2LatLon(cart); 32 32 33 33 if (!(Math.abs(lat - ll.lat())<EPSILON && Math.abs(lon - ll.lon())<EPSILON)) { 34 34 String error = String.format("point: %s iterations: %s current: %s errorLat: %s errorLon %s",
Note:
See TracChangeset
for help on using the changeset viewer.