Ignore:
Timestamp:
2012-03-11T19:29:20+01:00 (12 years ago)
Author:
bastiK
Message:

basic support for custom projections (see #7495)

File:
1 edited

Legend:

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

    r4285 r5072  
    1414        super(name, proj4Id, ellps);
    1515    }
    16    
     16
    1717    @Override
    1818    public LatLon toWGS84(LatLon ll) {
     
    2424        return this.ellps.cart2LatLon(Ellipsoid.WGS84.latLon2Cart(ll));
    2525    }
    26    
     26
     27    @Override
     28    public String toString() {
     29        return "CentricDatum{ellipsoid="+ellps+"}";
     30    }
    2731}
Note: See TracChangeset for help on using the changeset viewer.