Changeset 9600 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2016-01-24T00:24:39+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/proj/LambertConformalConic.java
r9558 r9600 28 28 29 29 protected Ellipsoid ellps; 30 protected double e;31 30 32 31 public abstract static class Parameters { … … 78 77 @Override 79 78 public void initialize(ProjParameters params) throws ProjectionConfigurationException { 79 super.initialize(params); 80 80 ellps = params.ellps; 81 e = ellps.e;82 81 if (params.lat0 == null) 83 82 throw new ProjectionConfigurationException(tr("Parameter ''{0}'' required.", Param.lat_0.key));
Note:
See TracChangeset
for help on using the changeset viewer.