Package org.geotools.imageio

Examples of org.geotools.imageio.Identification


                AxisType axisType = zAxis.getAxisType();

                String v_crsName = "Unknown";
                String v_datumName = "Unknown";
                String v_datumType = null;
                v_datumName = new Identification("Mean Sea Level", null, null, "EPSG:5100").getName();

                if (axisType == AxisType.RadialAzimuth || axisType == AxisType.GeoZ || axisType == AxisType.RadialElevation)
                    v_datumType = "geoidal";
                else if (axisType == AxisType.Height) {
                    if (!zAxis.getShortName().equalsIgnoreCase("height")) {
                        v_datumType = "depth";
                        v_crsName = new Identification("mean sea level depth", null, null, "EPSG:5715").getName();
                    } else {
                        v_datumType = "geoidal";
                        v_crsName = new Identification("mean sea level height", null, null, "EPSG:5714").getName();
                    }
                } else if (axisType == AxisType.Pressure)
                    v_datumType = "barometric";
                else
                    v_datumType = "other_surface";
View Full Code Here


        }
        return verticalCRS;
    }

    public static TemporalCRS buildTemporalCrs( CoordinateAxis timeAxis ) {
        String t_datumName = new Identification("ISO8601", null, null, null).getName();
        TemporalCRS temporalCRS = null;
        try {
            if (timeAxis != null) {
                AxisType type = timeAxis.getAxisType();
                String units = timeAxis.getUnitsString();
View Full Code Here

TOP

Related Classes of org.geotools.imageio.Identification

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.