/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2007-2008, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotools.index.quadtree; import java.io.File; import java.io.IOException; import java.util.Iterator; import org.geotools.data.Query; import org.geotools.data.shapefile.TestCaseSupport; import org.geotools.data.shapefile.indexed.IndexedShapefileDataStore; import org.geotools.geometry.jts.ReferencedEnvelope; import org.opengis.referencing.crs.CoordinateReferenceSystem; /** * @author Jesse * * * @source $URL$ */ public class PointLazySearchCollectionTest extends TestCaseSupport { private File file; private IndexedShapefileDataStore ds; private QuadTree tree; private Iterator iterator; private CoordinateReferenceSystem crs; public PointLazySearchCollectionTest() throws IOException { super("LazySearchIteratorTest"); } protected void setUp() throws Exception { super.setUp(); file = copyShapefiles("shapes/archsites.shp"); ds = new IndexedShapefileDataStore(file.toURI().toURL()); ds.buildQuadTree(); tree = LineLazySearchCollectionTest.openQuadTree(file); crs = ds.getSchema().getCoordinateReferenceSystem(); } protected void tearDown() throws Exception { if (iterator != null) tree.close(iterator); tree.close(); ds.dispose(); super.tearDown(); file.getParentFile().delete(); } public void testGetAllFeatures() throws Exception { ReferencedEnvelope env = new ReferencedEnvelope(585000, 610000, 4910000, 4930000, crs); System.out.println(ds.getCount(Query.ALL)); System.out.println(ds.getFeatureSource().getBounds()); assertEquals(25, countIterator(new LazySearchIterator(tree, env))); } public void testGetOneFeatures() throws Exception { ReferencedEnvelope env = new ReferencedEnvelope(597867, 598068, 4918863, 4919031, crs); assertEquals(4, countIterator(new LazySearchIterator(tree, env))); } public void testGetNoFeatures() throws Exception { ReferencedEnvelope env = new ReferencedEnvelope(592211, 597000, 4910947, 4913500, crs); assertEquals(0, countIterator(new LazySearchIterator(tree, env))); } }