System and method of optimizing database queries in two or...

Data processing: measuring – calibrating – or testing – Calibration or correction system – Weight

Reexamination Certificate

Rate now

  [ 0.00 ] – not rated yet Voters 0   Comments 0

Details

C707S793000, C345S419000

Reexamination Certificate

active

06470287

ABSTRACT:

BACKGROUND OF THE INVENTION
1. Field of the Invention
This invention relates to computer databases. Specifically, this invention relates to methods of indexing database records which contain information describing the position, size and shape of objects in two and three-dimensional space.
2. Description of the Related Technology
The purpose of a data structure is to organize large volumes of information, allowing the computer to selectively process the data structure's content. The motivation for this is simple: you always have more data than your time requirements, processor speed, main memory and disk access time allow you to process all at once. Depending on the nature of the data and application, data organizing strategies may include partitioning the content into subsets with similar properties or sequencing the data to support indexing and hashing for fast random access. Databases and database management systems extend these concepts to provide persistent storage and transaction controlled editing of the structured data.
Spatial data such as that describing a two-dimensional map is no different in its need for efficient organization. Map data is particularly demanding in this regard. A comprehensive street map for a moderate sized community may consist of tens to hundreds of thousands of individual street segments. Wide area maps of LA or New York may contain millions of segments. The content of each map data object can also be some what bulky. For example, a record for an individual street segment may include the coordinates of its end points, a usage classification, the street name, street address ranges, left and right side incorporated city name and postal codes.
However, spatial data at its core poses a particularly vexing organizational problem because it tries to organize objects within two-dimensional space. Spatial coordinates consist of two (or more) values which are independent, but equally important for most spatial queries. Established data structures and database methods are designed to efficiently handle a single value, and not representations of multi-dimensional space.
This difficulty can be illustrated by considering the problem of creating an application which presents a small window of map data (for instance, the square mile surrounding a house) from a database of a few hundred thousand spatial objects (a map of the city surrounding the house). The motivation for doing this is really two fold: first, the typical resolution of a computer monitor is limited, allowing only a certain amount information to be expressed. Secondly, even if all the data fit within the monitor, the data processing time to calculate this much information (fetching, transforming, clipping, drawing) would be far too long for the average personal computer.
To solve this problem, it is advantageous to find all of the street segments which appear in the “window” that will be generated on the monitor, and avoid as many as possible which do not. Thus, all objects which are within a particular range of x-coordinate (or longitude) values and y-coordinate (or latitude) values will be gathered. This problem is generally known as rectangular window retrieval, and is one of the more fundamental types of spatial queries. This method will be used in the following sections as a method for gauging the effectiveness of each of the following organizational methods.
The most heavily researched and commonly used spatial data structures (data structures used to organize geographic and geometric data) rely on the concept of tile-based hierarchical trees. A tile in this context is a rectangular (or other regularly or irregularly shaped) partitioning of coordinate space, wherein each partition has a distinct line separating one tile from another so that no single point in the coordinate system lies within more than one tile. A hierarchical tree is one structure for dividing coordinate space by recursively decomposing the space into smaller and smaller tiles, starting at a root that represents the entire coordinate space. In this system, a “hard edge” between tiles means that every point in the space resides exactly one tile at each level of the hierarchy. No point can coexist in more than one tile.
One example of a well-known hierarchical tree is the quad-tree data structure. In one example, the quad-tree could represent the surface of the Earth. At the root of the quad-tree is a node representing the entire surface of the Earth. The root, in turn, will have four children representing each quadrant of Latitude and Longitude space: east of Greenwich and north of the Equator, east of Greenwich and south of the Equator, west of Greenwich and north of the Equator and finally, west of Greenwich and south of the equator. Points on Greenwich and the Equator are arbitrarily defined to be in one quadrant or the other. Each of these children are further subdivided into more quadrants, and the children of those children, and so on, down to the degree of partitioning which is required to support the volume and density of data which is to be stored in the quad-tree.
The principle problem with quad-tree structures is that they are unbalanced. Because each node in the tree has a limited data storage capacity, when that limit is exceeded, the node must be split into four children, and the data content pushed into lower recesses of the tree. As a result, the depth of a quad-tree is shallow where the data density is low, and deep where the data density is high. For example, a quad-tree used to find population centers on the surface of the Earth will be very shallow (e.g., have few nodes) in mid-ocean and polar regions, and very deep (e.g., have many nodes) in regions such as the east and south of the United States.
Since quad-trees are inherently unbalanced, the rectangular window retrieval behavior of a quad-tree is difficult to predict It is difficult for software to predict how many nodes deep it may have to go to find the necessary data. In a large spatial database, each step down the quad-tree hierarchy into another node normally requires a time-consuming disk seek. In addition, more than one branch of the tree will likely have to be followed to find all the necessary data. Second, when the content of the data structure is dynamic, efficient space management is problematic since each node has both a fixed amount of space and a fixed regional coverage. In real world data schemes, these two rarely correspond. There are several variations on the quad-tree which attempt to minimize these problems. However, inefficiencies still persist.
So far, data structures containing points have only been discussed where each spatial object comprises a single set of coordinates. Lines, curves, circles, and polygons present a further complexity because they have dimensions. Therefore, these objects no longer fit neatly into tile based data structures, unless the tiling scheme is extremely contrived. There will always be some fraction of the objects which cross the hard edged tile boundaries from one coordinate region to another. Note that this fact is true regardless of the simplicity of an object's description. For example, a line segment described by its two end points, or a circle described by its center point and radius.
A simple, and commonly used way around this problem is to divide objects which cross the tile boundaries into multiple objects. Thus, a line segment which has its end points in two adjacent tiles will be split into two line segments; a line segment which starts in one tile, and passes through fifty tiles on its way to its other end will be broken into fifty-two line segments: one for each tile it touches.
This approach can be an effective strategy for certain applications which are read-only. However, it is a poor strategy for data structures with dynamic content. Adding new data objects is relatively simple, but deleting and modifying data are more difficult. Problems arise because the original objects are not guaranteed to be intact. If a line segment needs to be moved or removed, it must somehow be

LandOfFree

Say what you really think

Search LandOfFree.com for the USA inventors and patents. Rate them and share your experience with other people.

Rating

System and method of optimizing database queries in two or... does not yet have a rating. At this time, there are no reviews or comments for this patent.

If you have personal experience with System and method of optimizing database queries in two or..., we encourage you to share that experience with our LandOfFree.com community. Your opinion is very important and System and method of optimizing database queries in two or... will most certainly appreciate the feedback.

Rate now

     

Profile ID: LFUS-PAI-O-2932206

  Search
All data on this website is collected from public sources. Our data reflects the most accurate information available at the time of publication.