GRASS 8 Programmer's Manual 8.6.0dev(2026)-f6f2c534ea
Loading...
Searching...
No Matches
split.h
Go to the documentation of this file.
1/****************************************************************************
2 * MODULE: R-Tree library
3 *
4 * AUTHOR(S): Antonin Guttman - original code
5 * Daniel Green (green@superliminal.com) - major clean-up
6 * and implementation of bounding spheres
7 * Markus Metz - file-based and memory-based R*-tree
8 *
9 * PURPOSE: Multidimensional index
10 *
11 * COPYRIGHT: (C) 2010 by the GRASS Development Team
12 *
13 * This program is free software under the GNU General Public
14 * License (>=v2). Read the file COPYING that comes with GRASS
15 * for details.
16 *****************************************************************************/
17
18/*-----------------------------------------------------------------------------
19| Definitions and global variables.
20-----------------------------------------------------------------------------*/
21
22/* METHOD 0: R-Tree, quadratic split */
23/* METHOD 1: R*-Tree split */
24#define METHOD 1
25
26void RTreeInitPVars(struct RTree_PartitionVars *, int, int, struct RTree *);
void RTreeInitPVars(struct RTree_PartitionVars *, int, int, struct RTree *)
Definition split.c:155
Definition rtree.h:123