Changeset 3484 in josm for trunk/test/unit/org/openstreetmap
- Timestamp:
- 2010-08-29T16:00:03+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionTest.java
r3483 r3484 83 83 84 84 text += String.format("*** %s %s\n", p.toString(), p.toCode()); 85 for (int num=0; num < 1 ; ++num) {85 for (int num=0; num < 1000; ++num) { 86 86 87 87 double lat = rand.nextDouble() * (b.getMax().lat() - b.getMin().lat()) + b.getMin().lat(); … … 90 90 LatLon ll = new LatLon(lat, lon); 91 91 92 for (int i=0; i<1 ; ++i) {92 for (int i=0; i<10; ++i) { 93 93 EastNorth en = p.latlon2eastNorth(ll); 94 94 ll = p.eastNorth2latlon(en);
Note:
See TracChangeset
for help on using the changeset viewer.