Ignore:
Timestamp:
2016-01-12T17:39:45+01:00 (8 years ago)
Author:
bastiK
Message:

add Albers Equal Area Projection and Polar Stereographic Projection (see #12186)
(imports pieces of code from the Geotools project)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/coor/LatLon.java

    r9384 r9419  
    5656    public static final LatLon ZERO = new LatLon(0, 0);
    5757
     58    /**
     59     * North and south pole.
     60     */
     61    public static final LatLon NORTH_POLE = new LatLon(90, 0);
     62    public static final LatLon SOUTH_POLE = new LatLon(-90, 0);
     63
    5864    private static DecimalFormat cDmsMinuteFormatter = new DecimalFormat("00");
    5965    private static DecimalFormat cDmsSecondFormatter = new DecimalFormat("00.0");
Note: See TracChangeset for help on using the changeset viewer.