Ticket #3060: projection.patch

File projection.patch, 516 bytes (added by anonymous, 16 years ago)
Line 
1Index: src/org/openstreetmap/josm/data/projection/Projection.java
2===================================================================
3 /**
4 * Classes implementing this are able to convert lat/lon values to
5@@ -30,6 +30,10 @@
6 new UTM()
7 };
8
9+ public static final ProjectionBounds EAST_NORTH_WORLD_BOUNDS =
10+ new ProjectionBounds(new EastNorth(-85.05112877980659, -180.0),
11+ new EastNorth(85.05112877980659, 180.0));
12+
13 /**
14 * Convert from lat/lon to northing/easting.
15 *