Package org.geotools.feature.visitor

Examples of org.geotools.feature.visitor.BoundsVisitor$BoundsResult


     * @throws IOException
     */
    static CalcResult calculateBounds(
            FeatureCollection<? extends FeatureType, ? extends Feature> collection)
            throws IllegalFilterException, IOException {
        BoundsVisitor boundsVisitor = new BoundsVisitor();
        collection.accepts(boundsVisitor, null);

        return boundsVisitor.getResult();
    }
View Full Code Here

TOP

Related Classes of org.geotools.feature.visitor.BoundsVisitor$BoundsResult

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.