Examples of AxisType


Examples of ucar.nc2.constants.AxisType

    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();

                /*
                 * Gets the axis direction, taking in account the possible reversal or
                 * vertical axis. Note that geographic and projected
View Full Code Here

Examples of ucar.nc2.constants.AxisType

        for( CoordinateVariable<?> cv : reader.coordinatesVariables.values() ) {
            if(!cv.isNumeric()){
                continue;
            }
            final AxisType axisType = cv.getAxisType();
            switch (axisType) {
            case Lon: case GeoX:
                // raster space
                low[0] = 0;
                high[0] = (int) cv.getSize();
View Full Code Here

Examples of ucar.nc2.constants.AxisType

                if (dimVariable == null) {
                    return false;
                }
                if (dimVariable instanceof CoordinateAxis1D) {
                    CoordinateAxis1D axis = (CoordinateAxis1D) dimVariable;
                    AxisType axisType = axis.getAxisType();
                    if (axisType == null) {
                        return false;
                    }
                    switch (axisType) {
                    case GeoX:
View Full Code Here

Examples of ucar.nc2.constants.AxisType

    @Override
    public CoordinateReferenceSystem getCoordinateReferenceSystem() {
        if (this.crs == null) {
            synchronized (this) {
                final AxisType axisType = coordinateAxis.getAxisType();
                switch (axisType) {
                case GeoZ:
                case Height:
                case Pressure:
                    String axisName = getName();
View Full Code Here

Examples of ucar.nc2.constants.AxisType

    private final static Logger LOGGER = Logging.getLogger(CoordinateVariable.class);

    public static Class<?> suggestBinding(CoordinateAxis1D coordinateAxis) {
        Utilities.ensureNonNull("coordinateAxis", coordinateAxis);
        final AxisType axisType = coordinateAxis.getAxisType();

        switch (axisType) {
        case GeoX:
        case GeoY:
        case GeoZ:
View Full Code Here

Examples of ucar.nc2.constants.AxisType

        }

        // INITIALIZATION

        // AxisType?
        final AxisType axisType = coordinateAxis.getAxisType();
        switch (axisType) {
        case GeoX:
        case GeoY:
        case GeoZ:
        case Height:
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.