Package com.bbn.openmap.proj.coords

Examples of com.bbn.openmap.proj.coords.DatumShiftGCT


           
            Proj proj = new LLXY(llp, scale, width, height);
           
            Ellipsoid ellps = (Ellipsoid) props.get(ProjectionFactory.DATUM);
            if ((ellps != null) && (ellps != Ellipsoid.WGS_84)) {
        proj = new DatumShiftProjection(proj, new DatumShiftGCT(ellps));
      }
           
            return proj;

        } catch (Exception e) {
View Full Code Here


            boolean isnorthern = (zone_letter == 'N');
            Ellipsoid ellps = (Ellipsoid) props.get(ProjectionFactory.DATUM);
            Proj proj = new UTMProjection(center, scale, width, height, type, zone_number, isnorthern,
                    ellps);
            if ((ellps != null) && (ellps != Ellipsoid.WGS_84)) {
        proj = new DatumShiftProjection(proj, new DatumShiftGCT(ellps));
      }
            return proj;
        } catch (Exception e) {
            if (Debug.debugging("proj")) {
                Debug.output("UTMProjectionLoader: problem creating UTM projection "
View Full Code Here

TOP

Related Classes of com.bbn.openmap.proj.coords.DatumShiftGCT

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.