Changeset 10001 in josm for trunk/src/org/openstreetmap/josm/data/projection/proj/PolarStereographic.java
- Timestamp:
- 2016-03-17T01:50:12+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/proj/PolarStereographic.java
r9998 r10001 171 171 @Override 172 172 public Bounds getAlgorithmBounds() { 173 final double CUT= 60;173 final double cut = 60; 174 174 if (southPole) { 175 return new Bounds(-90, -180, CUT, 180, false);175 return new Bounds(-90, -180, cut, 180, false); 176 176 } else { 177 return new Bounds(- CUT, -180, 90, 180, false);177 return new Bounds(-cut, -180, 90, 180, false); 178 178 } 179 179 }
Note:
See TracChangeset
for help on using the changeset viewer.
