1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 06:43:22 +02:00

Added R-tree implementation info/license

This commit is contained in:
Martin Tůma 2020-11-13 22:45:29 +01:00
parent b4d240d8fe
commit 1b1f706c5c

View File

@ -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
#define RTREE_H