Changeset 1415 in josm for trunk/src/org/openstreetmap/josm/data/projection
- Timestamp:
- 2009-02-16T15:14:34+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/Lambert.java
r1309 r1415 206 206 * reference ellipsoid used by Lambert is Clark 207 207 * 208 * @param coordprojected coordinates pair in meters209 * @param Xs false east (coordinate system origin) in meters 210 * @param Ys false north (coordinate system origin) in meters 211 * @param c projection constant 212 * @param n projection exponent 208 * @param eastNorth projected coordinates pair in meters 209 * @param Xs false east (coordinate system origin) in meters 210 * @param Ys false north (coordinate system origin) in meters 211 * @param c projection constant 212 * @param n projection exponent 213 213 * @return LatLon in radian 214 214 */ … … 236 236 * Translate latitude/longitude in WGS84, (ellipsoid GRS80) to Lambert 237 237 * geographic, (ellipsoid Clark) 238 *239 * @param wgs240 * @return241 238 */ 242 239 private LatLon GRS802Clark(LatLon wgs) { … … 256 253 } 257 254 258 /**259 * @param lambert260 * @return261 */262 255 private LatLon Clark2GRS80(LatLon lambert) { 263 256 double lat = lambert.lat(); // in radian
Note:
See TracChangeset
for help on using the changeset viewer.