Package chunmap.model.crs.proj

Source Code of chunmap.model.crs.proj.Global2D

/**
* Copyright (c) 2009-2011, chunquedong(YangJiandong)
*
* This file is part of ChunMap project
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE(Version >=3)
*
* History:
*     2010-05-05  Jed Young  Creation
*/
package chunmap.model.crs.proj;

import chunmap.model.coord.Transform;
import chunmap.model.crs.Projection;
import chunmap.model.crs.transf.PlanTransform;

public class Global2D  extends Projection{

  PlanTransform trans;
 
  public Global2D(double f,double l) {
    super();
    this.trans = new PlanTransform(f,l);
  }

  @Override
  public Transform getReverseTransform() {
    throw new UnsupportedOperationException();
  }

  @Override
  public Transform getTransform() {
    return trans;
  }

}
TOP

Related Classes of chunmap.model.crs.proj.Global2D

TOP
Copyright © 2018 www.massapi.com. 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.