Changeset 9549 in josm for trunk/src/org


Ignore:
Timestamp:
2016-01-20T20:28:47+01:00 (8 years ago)
Author:
bastiK
Message:

see #12186 - add Cassini-Soldner Projection
(imports pieces of code from the Geotools project)

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

Legend:

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

    r9532 r9549  
    3030import org.openstreetmap.josm.data.projection.datum.WGS84Datum;
    3131import org.openstreetmap.josm.data.projection.proj.AlbersEqualArea;
     32import org.openstreetmap.josm.data.projection.proj.CassiniSoldner;
    3233import org.openstreetmap.josm.data.projection.proj.ClassProjFactory;
    3334import org.openstreetmap.josm.data.projection.proj.DoubleStereographic;
     
    8687    static {
    8788        registerBaseProjection("aea", AlbersEqualArea.class, "core");
     89        registerBaseProjection("cass", CassiniSoldner.class, "core");
    8890        registerBaseProjection("josm:smerc", Mercator.class, "core");
    8991        registerBaseProjection("lcc", LambertConformalConic.class, "core");
  • trunk/src/org/openstreetmap/josm/data/projection/proj/AlbersEqualArea.java

    r9428 r9549  
    2020 * package of the USGS survey. USGS work is acknowledged here.
    2121 * <p>
    22   * This class has been derived from the implementation of the Geotools project;
     22 * This class has been derived from the implementation of the Geotools project;
    2323 * git 8cbf52d, org.geotools.referencing.operation.projection.AlbersEqualArea
    2424 * at the time of migration.
    2525 * <p>
    26 * <b>References:</b>
     26 * <b>References:</b>
    2727 * <ul>
    2828 *   <li> Proj-4.4.7 available at <A HREF="http://www.remotesensing.org/proj">www.remotesensing.org/proj</A><br>
Note: See TracChangeset for help on using the changeset viewer.