Changeset 9998 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2016-03-15T09:08:59+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/projection/proj
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/proj/AlbersEqualArea.java
r9970 r9998 71 71 private double ec; 72 72 73 /**74 * Standards parallel 1 in radians.75 */76 private double phi1;77 78 /**79 * Standards parallel 2 in radians.80 */81 private double phi2;82 83 73 @Override 84 74 public String getName() { … … 100 90 101 91 double lat0 = Math.toRadians(params.lat0); 102 phi1 = Math.toRadians(params.lat1); 103 phi2 = params.lat2 == null ? phi1 : Math.toRadians(params.lat2); 92 // Standards parallels in radians. 93 double phi1 = Math.toRadians(params.lat1); 94 double phi2 = params.lat2 == null ? phi1 : Math.toRadians(params.lat2); 104 95 105 96 // Compute Constants -
trunk/src/org/openstreetmap/josm/data/projection/proj/LambertAzimuthalEqualArea.java
r9974 r9998 54 54 55 55 /** Constant parameters. */ 56 private double sinb1, cosb1, xmf, ymf, mmf,qp, dd, rq;56 private double sinb1, cosb1, xmf, ymf, qp, dd, rq; 57 57 58 58 /** Coefficients for authalic latitude. */ … … 102 102 qp = qsfn(1); 103 103 rq = Math.sqrt(0.5 * qp); 104 mmf = 0.5 / (1 - e2);105 104 sinphi = Math.sin(latitudeOfOrigin); 106 105 sinb1 = qsfn(sinphi) / qp; -
trunk/src/org/openstreetmap/josm/data/projection/proj/ObliqueMercator.java
r9974 r9998 162 162 163 163 /** 164 * Convenience values equal to {@link #a} / {@link #b}, 165 * {@link #a}×{@link #b}, and {@link #b} / {@link #a}. 166 */ 167 private double arb, ab, bra; 164 * Convenience value equal to {@link #a} / {@link #b}. 165 */ 166 private double arb; 167 168 /** 169 * Convenience value equal to {@link #a}×{@link #b}. 170 */ 171 private double ab; 172 173 /** 174 * Convenience value equal to {@link #b} / {@link #a}. 175 */ 176 private double bra; 168 177 169 178 /** -
trunk/src/org/openstreetmap/josm/data/projection/proj/PolarStereographic.java
r9970 r9998 79 79 80 80 /** 81 * Latitude of true scale, in radians82 */83 private double latitudeTrueScale;84 85 /**86 81 * {@code true} if this projection is for the south pole, or {@code false} 87 82 * if it is for the north pole. … … 107 102 throw new ProjectionConfigurationException( 108 103 tr("Polar Stereographic: Parameter ''{0}'' must be 90 or -90.", "lat_0")); 104 // Latitude of true scale, in radians; 105 double latitudeTrueScale; 109 106 if (params.lat_ts == null) { 110 107 latitudeTrueScale = (params.lat0 < 0) ? -Math.PI/2 : Math.PI/2;
Note:
See TracChangeset
for help on using the changeset viewer.