Changeset 9535 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2016-01-19T00:43:46+01:00 (8 years ago)
Author:
bastiK
Message:

see #12186 - update tests

Location:
trunk/src/org/openstreetmap/josm/data/projection/proj
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/proj/AbstractProj.java

    r9534 r9535  
    157157    }
    158158
    159     /**
    160      * Iteratively solve equation (7-9) from Snyder.
    161      */
     159    // Iteratively solve equation (7-9) from Snyder.
    162160    final double cphi2(final double ts) {
    163161        final double eccnth = 0.5 * e;
  • trunk/src/org/openstreetmap/josm/data/projection/proj/ObliqueMercator.java

    r9534 r9535  
    2626 * <p>
    2727 * There are two forms of the oblique mercator, differing in the origin of their grid coordinates.
    28  * The {@linkplain HotineObliqueMercator Hotine Oblique Mercator} (EPSG code 9812) has grid
    29  * coordinates start at the intersection of the central line and the equator of the aposphere.
    30  * The {@linkplain ObliqueMercator Oblique Mercator} (EPSG code 9815) is the same, except the
    31  * grid coordinates begin at the central point (where the latitude of center and central line
    32  * intersect). ESRI separates these two case by appending {@code "Natural_Origin"} (for the
    33  * {@code "Hotine_Oblique_Mercator"}) and {@code "Center"} (for the {@code "Oblique_Mercator"})
    34  * to the projection names.
     28 * The Hotine Oblique Mercator (EPSG code 9812) has grid coordinates start at the intersection of
     29 * the central line and the equator of the aposphere.
     30 * The Oblique Mercator (EPSG code 9815) is the same, except the grid coordinates begin at the
     31 * central point (where the latitude of center and central line intersect). ESRI separates these
     32 * two case by appending {@code "Natural_Origin"} (for the {@code "Hotine_Oblique_Mercator"}) and
     33 * {@code "Center"} (for the {@code "Oblique_Mercator"}) to the projection names.
    3534 * <p>
    3635 * Two different methods are used to specify the central line for the oblique mercator:
Note: See TracChangeset for help on using the changeset viewer.