Package org.apache.sis.referencing.datum

Examples of org.apache.sis.referencing.datum.DefaultPrimeMeridian


     */
    static PrimeMeridian primeMeridian() {
        final Map<String,Object> properties = new HashMap<String,Object>(4);
        properties.put(NAME_KEY, new NamedIdentifier(Citations.EPSG, "Greenwich")); // Name is fixed by ISO 19111.
        properties.put(IDENTIFIERS_KEY, new NamedIdentifier(Citations.EPSG, GREENWICH));
        return new DefaultPrimeMeridian(properties, 0, NonSI.DEGREE_ANGLE);
    }
View Full Code Here

TOP

Related Classes of org.apache.sis.referencing.datum.DefaultPrimeMeridian

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.