Package org.geotools.data.collection

Examples of org.geotools.data.collection.TreeSetFeatureCollection


            SpatialIndexFeatureSource source = new SpatialIndexFeatureSource(indexed);

            return source;
        }
        if (collection instanceof TreeSetFeatureCollection) {
            TreeSetFeatureCollection tree = (TreeSetFeatureCollection) collection;
            CollectionFeatureSource source = new CollectionFeatureSource(tree);

            return source;
        }
        // if( collection instanceof SimpleFeatureCollection ){
View Full Code Here


    protected void setUp() throws Exception {
        super.setUp();
        empty = FeatureCollections.newCollection();
        fc = DataUtilities.collection(roadFeatures);
        invfc = new TreeSetFeatureCollection(fc).sort(SortBy.REVERSE_ORDER);
        fc2 = DataUtilities.collection(riverFeatures);
        ft = roadType;
        ft2 = riverType;

        //create our own fc3
View Full Code Here

TOP

Related Classes of org.geotools.data.collection.TreeSetFeatureCollection

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.