OLD | NEW |
1 | 1 |
2 This directory contains an SQLite extension that implements a virtual | 2 This directory contains an SQLite extension that implements a virtual |
3 table type that allows users to create, query and manipulate r-tree[1] | 3 table type that allows users to create, query and manipulate r-tree[1] |
4 data structures inside of SQLite databases. Users create, populate | 4 data structures inside of SQLite databases. Users create, populate |
5 and query r-tree structures using ordinary SQL statements. | 5 and query r-tree structures using ordinary SQL statements. |
6 | 6 |
7 1. SQL Interface | 7 1. SQL Interface |
8 | 8 |
9 1.1 Table Creation | 9 1.1 Table Creation |
10 1.2 Data Manipulation | 10 1.2 Data Manipulation |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 | 111 |
112 | 112 |
113 3. REFERENCES | 113 3. REFERENCES |
114 | 114 |
115 [1] Atonin Guttman, "R-trees - A Dynamic Index Structure For Spatial | 115 [1] Atonin Guttman, "R-trees - A Dynamic Index Structure For Spatial |
116 Searching", University of California Berkeley, 1984. | 116 Searching", University of California Berkeley, 1984. |
117 | 117 |
118 [2] Norbert Beckmann, Hans-Peter Kriegel, Ralf Schneider, Bernhard Seeger, | 118 [2] Norbert Beckmann, Hans-Peter Kriegel, Ralf Schneider, Bernhard Seeger, |
119 "The R*-tree: An Efficient and Robust Access Method for Points and | 119 "The R*-tree: An Efficient and Robust Access Method for Points and |
120 Rectangles", Universitaet Bremen, 1990. | 120 Rectangles", Universitaet Bremen, 1990. |
OLD | NEW |