Changeset 9555 in josm
- Timestamp:
- 2016-01-21T00:48:00+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/proj/CassiniSoldner.java
r9549 r9555 18 18 * rapidly with increasing distance from the central meridian. 19 19 * <p> 20 * 20 * 21 21 * This class has been derived from the implementation of the Geotools project; 22 22 * git 8cbf52d, org.geotools.referencing.operation.projection.CassiniSoldner … … 35 35 * case of the Cassini-Soldner. 36 36 */ 37 private static final double C1= 0.16666666666666666666,38 C2= 0.008333333333333333333,39 C3= 0.041666666666666666666,40 C4= 0.33333333333333333333,41 C5= 0.066666666666666666666;37 private static final double C1 = 0.16666666666666666666; 38 private static final double C2 = 0.008333333333333333333; 39 private static final double C3 = 0.041666666666666666666; 40 private static final double C4 = 0.33333333333333333333; 41 private static final double C5 = 0.066666666666666666666; 42 42 43 43 @Override
Note:
See TracChangeset
for help on using the changeset viewer.