Package org.geotools.process.vector

Examples of org.geotools.process.vector.ClipProcess.execute()


        if (clip && roi != null) {
            if (LOGGER.isLoggable(Level.FINE)) {
                LOGGER.log(Level.FINE, "Clipping features");
            }
            final ClipProcess clipProcess = new ClipProcess();// TODO avoid unnecessary creation
            clippedFeatures = clipProcess.execute(reprojectedFeatures,
                    roiManager.getSafeRoiInTargetCRS(), true);

            // checks
            DownloadUtilities.checkIsEmptyFeatureCollection(clippedFeatures);
        } else {
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.