Changeset 9549 in josm for trunk/src/org
- Timestamp:
- 2016-01-20T20:28:47+01:00 (9 years ago)
- 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 30 30 import org.openstreetmap.josm.data.projection.datum.WGS84Datum; 31 31 import org.openstreetmap.josm.data.projection.proj.AlbersEqualArea; 32 import org.openstreetmap.josm.data.projection.proj.CassiniSoldner; 32 33 import org.openstreetmap.josm.data.projection.proj.ClassProjFactory; 33 34 import org.openstreetmap.josm.data.projection.proj.DoubleStereographic; … … 86 87 static { 87 88 registerBaseProjection("aea", AlbersEqualArea.class, "core"); 89 registerBaseProjection("cass", CassiniSoldner.class, "core"); 88 90 registerBaseProjection("josm:smerc", Mercator.class, "core"); 89 91 registerBaseProjection("lcc", LambertConformalConic.class, "core"); -
trunk/src/org/openstreetmap/josm/data/projection/proj/AlbersEqualArea.java
r9428 r9549 20 20 * package of the USGS survey. USGS work is acknowledged here. 21 21 * <p> 22 22 * This class has been derived from the implementation of the Geotools project; 23 23 * git 8cbf52d, org.geotools.referencing.operation.projection.AlbersEqualArea 24 24 * at the time of migration. 25 25 * <p> 26 * <b>References:</b>26 * <b>References:</b> 27 27 * <ul> 28 28 * <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.