Package gistoolkit.projection

Examples of gistoolkit.projection.Ellipsoid


    }
   
    /** Test this transform */
    public static void main(String[] inargs){
        // Retrieve the ellipsoid
        Ellipsoid tempFromEllipsoid = EllipsoidFactory.getEllipsoid("WGS 72");
        Ellipsoid tempToEllipsoid = EllipsoidFactory.getEllipsoid("WGS 84");
       
        // convert arc seconds to radians
        double rz = 0.554/(60*60);
        PositionVectorTransform myTransform = new PositionVectorTransform(tempFromEllipsoid, tempToEllipsoid, 0, 0, 4.5, 0, 0, rz, 0.219);
        Point tempPoint = new Point(4, 55);
View Full Code Here

TOP

Related Classes of gistoolkit.projection.Ellipsoid

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.