Package org.geotools.coverage.processing.operation

Examples of org.geotools.coverage.processing.operation.SelectSampleDimension


              Transparency.OPAQUE, oldSM.getDataType());
          layout.setColorModel(cm);
          layout.setSampleModel(cm.createCompatibleSampleModel(oldSM
              .getWidth(), oldSM.getHeight()));
          hints.add(new RenderingHints(JAI.KEY_IMAGE_LAYOUT, layout));
          output = (GridCoverage2D) new SelectSampleDimension()
              .doOperation(parameters, hints);
        }

        // postcondition
        assert output.getNumSampleDimensions() == 1;
View Full Code Here

TOP

Related Classes of org.geotools.coverage.processing.operation.SelectSampleDimension

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.