- Timestamp:
- 2015-12-15T13:02:51+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/projection
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/Ellipsoid.java
r9104 r9132 34 34 */ 35 35 public static final Ellipsoid Bessel1841 = Ellipsoid.create_a_rf(6377397.155, 299.1528128); 36 36 37 37 /** 38 38 * Bessel 1841 (Namibia) … … 56 56 57 57 /** 58 * Everest (Sabah & Sarawak)58 * Everest (Sabah & Sarawak) 59 59 */ 60 60 public static final Ellipsoid EverestSabahSarawak = Ellipsoid.create_a_rf(6377298.556, 300.8017); 61 61 62 62 /** 63 63 * GRS67 ellipsoid -
trunk/src/org/openstreetmap/josm/data/projection/proj/AbstractProj.java
r9117 r9132 77 77 /** 78 78 * Calculates the meridian distance. This is the distance along the central 79 * meridian from the equator to {@code phi}. Accurate to <1e-5 meters79 * meridian from the equator to {@code phi}. Accurate to < 1e-5 meters 80 80 * when used in conjuction with typical major axis values. 81 81 * -
trunk/src/org/openstreetmap/josm/data/projection/proj/Proj.java
r9124 r9132 68 68 /** 69 69 * Return the bounds where this projection is applicable. 70 * 70 * 71 71 * This is a fallback for when the projection bounds are not specified 72 72 * explicitly. 73 * 74 * In this area, the round trip lat/lon - > east/north ->lat/lon should73 * 74 * In this area, the round trip lat/lon -> east/north -> lat/lon should 75 75 * return the starting value with small error. In addition, regions with 76 76 * extreme distortions should be excluded, if possible. 77 * 77 * 78 78 * It need not be the absolute maximum, but rather an area that is safe to 79 79 * display in JOSM and contain everything that one would expect to use. 80 * 80 * 81 81 * @return the bounds where this projection is applicable, null if unknown 82 82 */ -
trunk/src/org/openstreetmap/josm/data/projection/proj/TransverseMercator.java
r9124 r9132 86 86 /** 87 87 * A derived quantity of excentricity, computed by <code>e'² = (a²-b²)/b² = es/(1-es)</code> 88 * where <var>a</var> is the semi-major axis length and <var>b</ bar> is the semi-minor axis88 * where <var>a</var> is the semi-major axis length and <var>b</var> is the semi-minor axis 89 89 * length. 90 90 */
Note:
See TracChangeset
for help on using the changeset viewer.