Examples of invertGridGeometry()


Examples of org.geotools.filter.function.RenderingTransformation.invertGridGeometry()

                // get the desired grid geometry
                GridGeometry2D readGG = gridGeometry;
                if(transformation instanceof RenderingTransformation) {
                    RenderingTransformation tx = (RenderingTransformation) transformation;
                    readGG = (GridGeometry2D) tx.invertGridGeometry(renderingQuery, gridGeometry);
                    // TODO: override the read params and force this grid geometry, or something
                    // similar to this (like passing it as a param to readCoverage
                }
               
                FeatureCollection<?,?> sample = featureSource.getFeatures();
View Full Code Here

Examples of org.geotools.process.RenderingProcess.invertGridGeometry()

        RenderingProcess process = (RenderingProcess) this.process;
        // evaluate input expressions
        // at this point do not have an object to evaluate them against
        Map<String, Object> inputs = evaluateInputs(null);
        try {
            return process.invertGridGeometry(inputs, targetQuery, targetGridGeometry);
        } catch (ProcessException e) {
            throw new RuntimeException("Failed to invert the grid geometry, error is: "
                    + e.getMessage(), e);
        }
    }
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.