Examples of RasterManager


Examples of org.geotools.coverageio.jp2k.RasterManager

        }
       
        final JP2KReader reader = new JP2KReader(file);
        checkReader(reader);
        final GeneralEnvelope envelope = reader.getOriginalEnvelope();
        final RasterManager manager = new RasterManager(reader);
        final ParameterValue<GridGeometry2D> gg = JP2KFormat.READ_GRIDGEOMETRY2D.createValue();
        final ParameterValue<Boolean> useJAI = JP2KFormat.USE_JAI_IMAGEREAD.createValue();
        useJAI.setValue(false);
        gg.setValue(new GridGeometry2D(reader.getOriginalGridRange(), envelope));
        final GeneralParameterValue[] params = new GeneralParameterValue[] { gg, useJAI};
View Full Code Here

Examples of org.geotools.gce.RasterManager

       
        //
        // create the raster manager for this geotiff
        //
        rasterManager = new RasterManager(this);
    }
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.