-
Notifications
You must be signed in to change notification settings - Fork 1
License
felixr/java-spatialindex
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Spatial Index Library version 0.44.2b (beta) Copyright (C) 2002 Navel Ltd. 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; either version 2.1 of the License, or (at your option) any later version. 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. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Contact information: Mailing address: Marios Hadjieleftheriou University of California, Riverside Department of Computer Science Surge Building, Room 310 Riverside, CA 92521 Email: marioh@cs.ucr.edu 1. INTRODUCTION You have downloaded the Spatial Index Library. This is free software under LGPL. The library is in beta testing stage. Use at your own risk. The purpose of this library is to provide: 1.an extensible framework that will support robust spatial indexing methods. 2.support for sophisticated spatial queries. Range, point location, nearest neighbor and k-nearest neighbor as well as parametric queries (defined by spatial constraints) should be easy to deploy and run. 3.easy to use interfaces for inserting, deleting and updating information. 4.wide variety of customization capabilities. Basic index and storage characteristics like the page size, node capacity, minimum fan-out, splitting algorithm, etc. should be easy to customize. 5.index persistence. Internal memory and external memory structures should be supported. Clustered and non-clustered indices should be easy to be persisted. 2. INSTALLING To build the library go to the root of the package and type "make clean; make". All classes will be created in lib/ You must have GNU make and j2sdk 1.3.0 or higher. 3. USING THE LIBRARY Add the library path in your CLASSPATH. Do not forget to import spatialindex.spatialindex.* and spatialindex.storagemanager.*. You can find a usage example inside the regressiontest directory. 4. LIBRARY OVERVIEW The library currently consists of four packages: 1.The core spatialindex utilities. 2.The storagemanager files. 3.spatialindex interfaces. 3.The rtree index. I will briefly present the basic features supported by each package. For more details you will have to refer to the code, for now. 4.1 SPATIALINDEX UTILITIES To provide common constructors and uniform initialization for all objects provided by the library a PropertySet class is provided. A PropertySet associates strings with Objects. Each property corresponds to one string. PropertySet supports two functions: 1.getProperty returns the Object associated with the given string. 2.setProperty associates the given Object with the given string (a reference to the Object kept. No cloning takes place). A general IShape interface is defined. All shape classes should extend IShape. Basic Region and Point classes are already provided. Please check Region.java and Point.java for further details. 4.2 STORAGE MANAGER The library provides a common interface for storage management of all indices. It consists of the IStorageManager interface, which provides functions for storing and retrieving entities. An entity is viewed as a simple byte array; hence it can be an index entry, a data entry or anything else that the user wants to store. The storage manager interface is generic and does not apply only to spatial indices. Classes that implement the IStorageManager interface decide on how to store entities. A simple main memory implementation is provided, for example, that stores the entities using a vector, associating every entity with a unique ID (the entry's index in the vector). A disk based storage manager could choose to store the entities in a simple random access file, or a database storage manager could store them in a relational table, etc. as long as unique IDs are associated with every entity. Also, storage managers should implement their own paging, compaction and deletion policies transparently from the callers (be it an index or a user). The storeByteArray method gets a byte array and an entity ID. If the caller specifies NewPage as the input ID, the storage manager allocates a new ID, stores the entity and returns the ID associated with the entity. If, instead, the user specifies an already existing ID the storage manager overwrites the old data. An exception is thrown if the caller requests an invalid ID to be overwritten. The loadByteArray method gets an entity ID and returns the associated byte array. If an invalid ID is requested, an exception is thrown. The deleteByteArray method removes the requested entity from storage. The storage managers should have no information about the types of entities that are stored. There are three main reasons for this decision: 1.Any number of spatial indices can be stored in a single storage manager (i.e. the same relational table, or binary file, or hash table, etc., can be used to store many indices) using an arbitrary number of pages and a unique index ID per index (this will be discussed shortly). 2.Both clustered and non-clustered indices can be supported. A clustered index stores the data associated with the entries that it contains along with the spatial information that it indexes. A non-clustered index stores only the spatial information of its entries. Any associated data are stored separately and are associated with the index entries by a unique ID. To support both types of indices, the storage manager interface should be quite generic, allowing the index to decide how to store its data. Otherwise clustered and non-clustered indices would have to be implemented separately. 3.Decision flexibility. For example, the users can choose a clustered index that will take care of storing everything. They can choose a main memory non-clustered index and store the actual data in MySQL. They can choose a disk based non-clustered index and store the data manually in a separate binary file or even in the same storage manager but doing a low level customized data processing. Two storage managers are provided in the current implementation: 1.MemoryStorageManager 2.DiskStorageManager 4.2.1 MemoryStorageManager As it is implied be the name, this is a main memory implementation. Everything is stored in main memory using a simple vector. No properties are needed to initialize a MemoryStorageManager object. When a MemoryStorageManager instance goes out of scope, all data that it contains are lost. 4.2.2 DiskStorageManager The disk storage manager uses two random access files for storing information. One with extension .idx and the other with extension .dat. A list of all the supported properties that can be provided during initialization, follows: Property Type Description -------------------------------------- 1. FileName String The base name of the file to open (no extension) 2. Overwrite Boolean If Overwrite is true and a storage manager with the specified filename already exists, it will be truncated and overwritten. All data will be lost. 3. PageSize Integer The page size to use. If the specified filename already exists and Overwrite is false, PageSize is ignored. For entities that are larger than the page size, multiple pages are used. Although, the empty space on the last page is lost. Also, there is no effort whatsoever to use as many sequential pages as possible. A future version might support sequential I/O. Thus, real clustered indices cannot be supported yet. The purpose of the .idx file is to store vital information like the page size, the next available page, a list of empty pages and the sequence of pages associated with every entity ID. This class also provides a flush method that practically overwrites the .idx file and syncs both file pointers. The .idx file is loaded into main memory during initialization and is written to disk only after flushing the storage manager or during object finalization. In case of an unexpected failure changes to the storage manager will be lost due to a stale .idx file. Avoiding such disasters is future work. IMPORTANT: Remember to call ISpatialIndex.flush() before disposing an index since some times finalization does not occur when the JVM is exiting. 4.3 SPATIALINDEX INTERFACES A spatial index is any index structure that accesses spatial information efficiently. It could range from a simple grid file to a complicated tree structure. A spatial index indexes entries of type IEntry, which can be index nodes, leaf nodes, data etc. depending on the structure characteristics. The appropriate interfaces with useful accessor methods should be provided for all types of entries. A spatial index should implement the ISpatialIndex interface. The containmentQuery method requires a query shape and a reference to a valid IVisitor instance (described shortly). The intersectionQuery method is the same. Both accept an IShape as the query. If the query shape is a simple Region, than a classic range query is performed. The user though has the ability to create her own shapes, thus defining her own intersection and containment methods making possible to run any kind of range query without having to modify the index. An example of a trapezoidal query is given in the regressiontest directory. Have in mind that it is the users responsibility to implement the correct intersection and containment methods between their shape and the type of shapes that are stored by the specific index that they are planning to use. For example, if an rtree index will be used, a trapezoid should define intersection and containment between itself and Regions, since all rtree nodes are of type Region. Hence, the user should have some knowledge about the index internal representation, to run more sophisticated queries. A point location query is performed using the pointLocationQuery method. It takes the query point and a visitor as arguments. Nearest neighbor queries can be performed with the nearestNeighborQuery method. Its first argument is the number k of nearest neighbors requested. This method also requires the query shape and a visitor object. The default implementation uses the getMinimumDistance function of IShape for calculating the distance of the query from the rectangular node and data entries stored in the tree. A more sofisticated distance measure can be used by implementing the INearestNeighborComparator interface and passing it as the last argument of nearestNeighborQuery. For example, a comparator is necessary when the query needs to be checked against the actual data stored in the tree, instead of the rectangular data entry approximations stored in the leaves. For customizing queries the IVisitor interface (based on the Visitor pattern [gamma94]) provides call-back functions for visiting index and leaf nodes, as well as data entries. Node and data information can be obtained using the INode and IData interfaces (both extend IEntry). Examples of using this interface include visualizing a query, counting the number of leaf or index nodes visited for a specific query, throwing alerts when a specific spatial region is accessed, etc. The queryStrategy method provides the ability to design more sophisticated queries. It uses the IQueryStrategy interface as a call-back that is called continuously until no more entries are requested. It can be used to implement custom query algorithms (based on the strategy pattern [gamma94]). A data entry can be inserted using the insertData method. The insertion function will convert any shape into an internal representation depending on the index. Every inserted object should be assigned an ID (called object identifier) that will allow updating, deleting and reporting the object. It is the responsibility of the caller to provide the index with IDs (unique or not). Also, a byte array can be associated with an entry. The byte arrays are stored along with the spatial information inside the leaf nodes. Clustered indices can be supported in that way. The byte array can also by null, and no extra space should be used per node. A data entry can be deleted using the deleteData method. The object shape and ID should be provided. Spatial indices cluster objects according to spatial characteristics and not IDs. Hence, the shape is essential for locating and deleting an entry. Useful statistics are provided through the IStatistics interface and the getStatistics method. Method getIndexProperties returns a PropertySet with all usefull index properties like dimensionality etc. A NodeCommand interface is provided for customizing Node operations. Using the addWriteNodeCommand, addReadNodeCommand and addDeleteNodeCommand methods, custom command objects are added in listener lists and get executed after the corresponding operations. The isIndexValid method performs internal checks for testing the integrity of a structure. It is used for debugging purposes. When a new index is created a unique index ID should be assigned to it, that will be used when reloading the index from persistent storage. This index ID should be returned as an IndexIdentifier property in the instance of the PropsertySet that was used for constructing the index instance. Using index IDs, multiple indices can be stored in the same storage manager. It is the users responsibility to manager the index IDs. Associating the wrong index ID with the wrong storage manager or index type has undefined results. 4.4 THE RTREE PACKAGE The RTree index [guttman84] is a balanced tree structure that consists of index nodes, leaf nodes and data. Every node (leaf and index) has a fixed capacity of entries, (the node capacity) chosen at index creation An RTree abstracts the data with their Minimum Bounding Region (MBR) and clusters these MBRs according to various heuristics in the leaf nodes. Queries are evaluated from the root of the tree down the leaves. Since the index is balanced nodes can be under full. They cannot be empty though. A fill factor specifies the minimum number of entries allowed in any node. The fill factor is usually close to 70%. RTree creation involves: 1.Deciding if the index will be internal or external memory and selecting the appropriate storage manager. 2.Choosing the index and leaf capacity (also known as fan-out). 3.Choosing the fill factor (from 1% to 99% of the node capacity). 4.Choosing the dimensionality of the data. 5.Choosing the insert/update policy (the RTree variant). If an already stored RTree is being reloaded for reuse, only the index ID needs to be supplied during construction. In that case, some options cannot be modified. These include: the index and leaf capacity, the fill factor and the dimensionality. Note here, that the RTree variant can actually be modified. The variant affects only when and how splitting occurs, and thus can be changed at any time. An initialization PropertySet is used for setting the above options, complying with the following property strings: Property Type Description ---------------------------------------------- 1. IndexIndentifier Integer If specified an existing index will be opened from the supplied storage manager with the given index id. Behavior is unspecified if the index id or the storage manager are incorrect. 2. Dimension Integer Dimensionality of the data that will be inserted. 3. IndexCapacity Integer The index node capacity. Default is 100. 4. LeafCapactiy Integer The leaf node capacity. Default is 100. 5. FillFactor Double The fill factor. Default is 70% 6. TreeVariant Integer Can be one of Linear, Quadratic or Rstar. Default is Rstar 7. NearMinimumOverlapFactor Integer Default is 32. 8. SplitDistributionFactor Double Default is 0.4 9. ReinsertFactor Double Default is 0.3 5. CONTACT INFORMATION You can contact me at marioh@cs.ucr.edu for further assistance. Please read the above information carefully and also do not be afraid to browse through the code and especially the test files inside regressiontest directory. 6. REFERENCES [guttman84] "R-Trees: A Dynamic Index Structure for Spatial Searching" Antonin Guttman, Proc. 1984 ACM-SIGMOD Conference on Management of Data (1985), 47-57. [gamma94] "Design Patterns: Elements of Reusable Object-Oriented Software" Erich Gamma, Richard Helm, Ralph Johnson and John Vlissides, Addison Wesley. October 1994.
About
No description, website, or topics provided.
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published