Changeset 9132 in josm for trunk/src


Ignore:
Timestamp:
2015-12-15T13:02:51+01:00 (8 years ago)
Author:
Don-vip
Message:

fix javadoc errors

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  
    3434     */
    3535    public static final Ellipsoid Bessel1841 = Ellipsoid.create_a_rf(6377397.155, 299.1528128);
    36    
     36
    3737    /**
    3838     * Bessel 1841 (Namibia)
     
    5656
    5757    /**
    58      * Everest (Sabah & Sarawak)
     58     * Everest (Sabah & Sarawak)
    5959     */
    6060    public static final Ellipsoid EverestSabahSarawak = Ellipsoid.create_a_rf(6377298.556, 300.8017);
    61    
     61
    6262    /**
    6363     * GRS67 ellipsoid
  • trunk/src/org/openstreetmap/josm/data/projection/proj/AbstractProj.java

    r9117 r9132  
    7777    /**
    7878     * Calculates the meridian distance. This is the distance along the central
    79      * meridian from the equator to {@code phi}. Accurate to < 1e-5 meters
     79     * meridian from the equator to {@code phi}. Accurate to &lt; 1e-5 meters
    8080     * when used in conjuction with typical major axis values.
    8181     *
  • trunk/src/org/openstreetmap/josm/data/projection/proj/Proj.java

    r9124 r9132  
    6868    /**
    6969     * Return the bounds where this projection is applicable.
    70      * 
     70     *
    7171     * This is a fallback for when the projection bounds are not specified
    7272     * explicitly.
    73      * 
    74      * In this area, the round trip lat/lon -> east/north -> lat/lon should
     73     *
     74     * In this area, the round trip lat/lon -&gt; east/north -&gt; lat/lon should
    7575     * return the starting value with small error. In addition, regions with
    7676     * extreme distortions should be excluded, if possible.
    77      * 
     77     *
    7878     * It need not be the absolute maximum, but rather an area that is safe to
    7979     * display in JOSM and contain everything that one would expect to use.
    80      * 
     80     *
    8181     * @return the bounds where this projection is applicable, null if unknown
    8282     */
  • trunk/src/org/openstreetmap/josm/data/projection/proj/TransverseMercator.java

    r9124 r9132  
    8686    /**
    8787     * 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 axis
     88     * where <var>a</var> is the semi-major axis length and <var>b</var> is the semi-minor axis
    8989     * length.
    9090     */
Note: See TracChangeset for help on using the changeset viewer.