Package chunmap.model.crs

Examples of chunmap.model.crs.Spheroid


        this.name = "Mercator";
    }
   
  @Override
  public Transform getReverseTransform() {
    Spheroid s=getSpheroid();
    return new MercatorRTransform(s.getA(), s.getB(), s.getE(), s.getE2(), 0, 0);
  }
View Full Code Here


    return new MercatorRTransform(s.getA(), s.getB(), s.getE(), s.getE2(), 0, 0);
  }

  @Override
  public Transform getTransform() {
    Spheroid s=getSpheroid();
    return new MercatorTransform(s.getA(), s.getB(), s.getE(), s.getE2(), 0, 0);
  }
View Full Code Here

  private Spheroid getSpheroid(){
    if (getCs() != null && getCs().getSpheroid() != null) {
      return getCs().getSpheroid();
     
    } else {
      return new Spheroid("circle", r, r);
    }
  }
View Full Code Here

TOP

Related Classes of chunmap.model.crs.Spheroid

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.