Package org.geotools.referencing.operation.builder.algorithm

Examples of org.geotools.referencing.operation.builder.algorithm.IDWInterpolation


        super(vectors, dx, dy, envelope, realToGrid);
    }

    protected float[] computeWarpGrid(GridParameters gridParams)
        throws TransformException {
        IDWInterpolation dxInterpolation = new IDWInterpolation(buildPositionsMap(0));       
        IDWInterpolation dyInterpolation = new IDWInterpolation(buildPositionsMap(1));

        return interpolateWarpGrid(gridParams, dxInterpolation, dyInterpolation);
    }
View Full Code Here

TOP

Related Classes of org.geotools.referencing.operation.builder.algorithm.IDWInterpolation

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.