/* * Geotoolkit.org - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2009-2012, Geomatys * * 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.geotoolkit.index.tree.basic; import java.io.IOException; import org.geotoolkit.index.tree.StoreIndexException; import org.apache.sis.referencing.CommonCRS; /** * Create a BasicRTree Test suite in computer memory in a Geographic 2D space. * * @author Remi Marechal (Geomatys). * @see DefaultGeographicCRS#WGS84 */ public final class MemoryBasicGeo2DTest extends MemoryBasicRTreeTest { /** * Create a memory BasicRTree Test suite in a Geographic 2D space. * * @throws StoreIndexException should never thrown. * @throws IOException should never thrown. */ public MemoryBasicGeo2DTest() throws StoreIndexException, IOException { super(CommonCRS.WGS84.normalizedGeographic()); } }