Metadata-Version: 2.1
Name: librtree
Version: 0.6.1
Summary: The R-tree spatial index of Guttman-Green
Home-page: https://gitlab.com/jjg/librtree-python
Author: J.J. Green
Author-email: j.j.green@gmx.co.uk
License: MIT
Keywords: R-tree,spatial-index
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: C
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: POSIX
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Description-Content-Type: text/x-rst
Provides-Extra: dev
Provides-Extra: test
License-File: COPYING

The librtree-python package
===========================

*Note: This code is in development: While the build and query
code is implemented, it is only lightly tested*

A Python native extension implementing the R-tree spatial
index of Guttman-Green.  The code is an embedded version of
`librtree <http://soliton.vm.bytemark.co.uk/pub/jjg/en/code/librtree/>`_.


Dependencies
------------

Just `Jansson <http://www.digip.org/jansson/>`_: this common library
may be in your operating-system's repositories. On Debian, Ubuntu and
derivatives:

.. code-block:: sh

   apt-get install libjansson-dev

On RedHat, CentOS:

.. code-block:: sh

    yum install jansson-devel

On OSX:

.. code-block:: sh

    brew install jansson

One does not need to install `librtree` itself, the library-code is
embedded within the package.
