mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 05:34:47 +01:00
Added R-tree implementation info/license
This commit is contained in:
parent
b4d240d8fe
commit
1b1f706c5c
@ -1,3 +1,26 @@
|
|||||||
|
// TITLE
|
||||||
|
//
|
||||||
|
// R-TREES: A DYNAMIC INDEX STRUCTURE FOR SPATIAL SEARCHING
|
||||||
|
//
|
||||||
|
// DESCRIPTION
|
||||||
|
//
|
||||||
|
// A C++ templated version of the RTree algorithm.
|
||||||
|
// For more information please read the comments in RTree.h
|
||||||
|
//
|
||||||
|
// AUTHORS
|
||||||
|
//
|
||||||
|
// * 1983 Original algorithm and test code by Antonin Guttman
|
||||||
|
// and Michael Stonebraker, UC Berkely
|
||||||
|
// * 1994 ANSI C ported from original test code by Melinda Green
|
||||||
|
// (melinda@superliminal.com)
|
||||||
|
// * 1995 Sphere volume fix for degeneracy problem submitted by Paul Brook
|
||||||
|
// * 2004 Templated C++ port by Greg Douglas
|
||||||
|
// * 2018 Iterator fix and Qt macros by Martin Tuma
|
||||||
|
//
|
||||||
|
// LICENSE:
|
||||||
|
//
|
||||||
|
// Entirely free for all uses. Enjoy!
|
||||||
|
|
||||||
#ifndef RTREE_H
|
#ifndef RTREE_H
|
||||||
#define RTREE_H
|
#define RTREE_H
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user