Changeset 405

Show
Ignore:
Timestamp:
10/17/06 22:24:02 (2 years ago)
Author:
sgillies
Message:

tune up readme, rename committers file to AUTHORS.txt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Quadtree/trunk/DEPENDENCIES.txt

    r400 r405  
     1- setuptools 
  • Quadtree/trunk/README.txt

    r404 r405  
    11 
    2 Quadtree 
    3 ======== 
     2Quadtree: spatial index for Python GIS 
     3====================================== 
    44 
    5 Whether for PCL in-memory feature stores, Plone content, or whatever -- we need 
    6 a simple spatial index to speed up retrieval of objects that intersect with a 
    7 given bounding box. 
     5Whether for Python in-memory feature stores, Plone content, or whatever -- we 
     6need a simple spatial index to speed up the search for objects that intersect 
     7with a given spatial bounding box. 
    88 
    99The simplest, most tried-and-true, open source spatial index is shapelib's 
     
    1818In a nutshell: 
    1919 
    20   >>> index.add(id=id, bounds=[minx, miny, maxx, maxy]
    21   >>> [n for n in index.likely_intersection(bounds=[minx, miny, maxx, maxy])] 
     20  >>> index.add(id=id, bounds=(left, bottom, right, top)
     21  >>> [n for n in index.likely_intersection((left, bottom, right, top))] 
    2222  [id] 
    2323 
     
    2727bounding box. This method can produce false positives. It is up to the 
    2828application to handle such false positive index hits and to map ids to objects. 
     29 
     30 
     31Installation 
     32------------ 
     33 
     34$ python setup.py install 
    2935 
    3036 
     
    4349 
    4450 
    45 Installation 
    46 ------------ 
     51Support 
     52------- 
    4753 
    48 $ python setup.py install 
     54For current information about this project, see 
     55 
     56http://icon.stoa.org/trac/pleiades/wiki/QuadTree 
     57 
     58If you have questions, please consider joining our software support list: 
     59 
     60http://icon.stoa.org/trac/pleiades/wiki/PleiadesSoftwareList 
    4961 
    5062 
  • Quadtree/trunk/setup.py

    r396 r405  
    1010 
    1111setup(name          = 'Quadtree', 
    12       version       = '0.0', 
    13       description   = 'Quadtree spatial index for Python', 
    14       license       = 'GPL', 
     12      version       = '0.1', 
     13      description   = 'Quadtree spatial index for Python GIS', 
     14      license       = 'BSD', 
    1515      keywords      = 'spatial index', 
    1616      author        = 'Sean Gillies', 
    1717      author_email  = 'sgillies@frii.com', 
    18       url \ 
    19         = 'http://icon.stoa.org/trac/pleiades/wiki/SpatialIndexUserStory', 
     18      url           = 'http://icon.stoa.org/trac/pleiades/wiki/QuadTree', 
    2019      packages      = ['quadtree'], 
    2120      ext_modules   = [_tree]