README.grass 976 B

12345678910111213141516171819202122232425
  1. This library was originally taken from:
  2. http://www.superliminal.com/sources/RTree.zip
  3. described on:
  4. http://www.superliminal.com/sources/sources.htm
  5. Copy of this file is in sources.htm
  6. The current R*-tree implementation is based on
  7. http://dbs.mathematik.uni-marburg.de/publications/myPapers/1990/BKSS90.pdf
  8. Changes done in GRASS:
  9. - files converted to unix line ends
  10. - added this file 'README.grass'
  11. - added Makefile and Makefile.alone
  12. - added mail from Daniel Green is in 'MAILS'
  13. - few modifications to get rid of compiler warnings, but warnings like:
  14. index.c:277: warning: `tmp_nptr' might be used uninitialized in this function
  15. were left because need deeper revision if may cause problems, insetad of blindly init to 0/NULL
  16. - '//' comments -> '/* */'
  17. - printf() - > fprintf(stdout,)
  18. - NUMDIMS set to 3
  19. - test.c 2D -> 3D
  20. - type RectReal: float -> double
  21. - log_pi set to constant
  22. - added GRASS headers to all *.[hc] files
  23. - changed to R*-tree, near complete rewrite