Package org.openstreetmap.josm.data.projection.proj

Examples of org.openstreetmap.josm.data.projection.proj.ProjFactory


    public static void registerBaseProjection(String id, Class<? extends Proj> projClass, String origin) {
        registerBaseProjection(id, new ClassProjFactory(projClass), origin);
    }

    public static Proj getBaseProjection(String id) {
        ProjFactory fac = projs.get(id);
        if (fac == null) return null;
        return fac.createInstance();
    }
View Full Code Here

TOP

Related Classes of org.openstreetmap.josm.data.projection.proj.ProjFactory

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.