Package org.geotools.coverage.io.range

Examples of org.geotools.coverage.io.range.Axis


        assertEquals(Unit.ONE, HEIGHT.getUnitOfMeasure());
        BandIndexMeasure key = HEIGHT.getKey(0);
        assertEquals("0", key.getValue());

        // Make sure we can discover everything we need via the Axis API
        Axis axis = HEIGHT;
        assertEquals(Unit.ONE, axis.getUnitOfMeasure());
        Measure measure = axis.getKey(0);
        assertEquals(Unit.ONE, measure.getUnit());
        assertEquals("0", key.getValue());
    }
View Full Code Here

TOP

Related Classes of org.geotools.coverage.io.range.Axis

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.