Ignore:
Timestamp:
2016-01-01T19:51:11+01:00 (8 years ago)
Author:
Don-vip
Message:

javadoc update

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

Legend:

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

    r9132 r9243  
    266266     * Returns isometric latitude of phi on given first eccentricity (e)
    267267     * @param phi The local latitude (radians).
     268     * @param e first eccentricity
    268269     * @return isometric latitude of phi on first eccentricity (e)
    269270     */
     
    286287
    287288    /**
    288      * Returns geographic latitude of isometric latitude of first eccentricity (e)
    289      * and epsilon precision
    290      * @return geographic latitude of isometric latitude of first eccentricity (e)
    291      * and epsilon precision
     289     * Returns geographic latitude of isometric latitude of first eccentricity (e) and epsilon precision
     290     * @param latIso isometric latitude
     291     * @param e first eccentricity
     292     * @param epsilon epsilon precision
     293     * @return geographic latitude of isometric latitude of first eccentricity (e) and epsilon precision
    292294     */
    293295    public double latitude(double latIso, double e, double epsilon) {
  • trunk/src/org/openstreetmap/josm/data/projection/datum/Datum.java

    r7402 r9243  
    3030
    3131    /**
    32      * Convert lat/lon from this datum to WGS84 datum.
     32     * Convert lat/lon from this datum to {@link Ellipsoid#WGS84} datum.
     33     * @param ll original lat/lon in this datum
     34     * @return lat/lon converted to WGS84
    3335     */
    3436    LatLon toWGS84(LatLon ll);
    3537
    3638    /**
    37      * Convert lat/lon from WGS84 to this datum.
     39     * Convert lat/lon from {@link Ellipsoid#WGS84} to this datum.
     40     * @param ll original lat/lon in WGS84
     41     * @return converted lat/lon in this datum
    3842     */
    3943    LatLon fromWGS84(LatLon ll);
    40 
    4144}
  • trunk/src/org/openstreetmap/josm/data/projection/proj/LambertConformalConic.java

    r9124 r9243  
    130130    /**
    131131     * auxiliary function t
     132     * @param lat_rad latitude in radians
     133     * @return result
    132134     */
    133135    protected double t(double lat_rad) {
     
    138140    /**
    139141     * auxiliary function m
     142     * @param lat_rad latitude in radians
     143     * @return result
    140144     */
    141145    protected double m(double lat_rad) {
Note: See TracChangeset for help on using the changeset viewer.