File: control

package info (click to toggle)
pykdtree 0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 536 kB
  • ctags: 803
  • sloc: ansic: 782; python: 270; makefile: 12; sh: 8
file content (34 lines) | stat: -rw-r--r-- 1,329 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Source: pykdtree
Section: python
Priority: optional
Maintainer: Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org>
Uploaders: Antonio Valentino <antonio.valentino@tiscali.it>
Build-Depends: debhelper (>= 9.0.0),
               python-setuptools,
               python-all-dev,
               python-numpy,
               python-nose
Standards-Version: 3.9.5
Homepage: https://pypi.python.org/pypi/pykdtree
Vcs-Git: http://anonscm.debian.org/git/pkg-grass/pykdtree.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-grass/pykdtree.git;a=summary
XS-Testsuite: autopkgtest

Package: python-pykdtree
Architecture: any
Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends}
Description: Fast kd-tree implementation with OpenMP-enabled queries
 pykdtree is a kd-tree implementation for fast nearest neighbour search
 in Python. The aim is to be the fastest implementation around for
 common use cases (low dimensions and low number of neighbours) for
 both tree construction and queries.
 .
 The implementation is based on scipy.spatial.cKDTree and libANN by
 combining the best features from both and focus on implementation
 efficiency.
 .
 The interface is similar to that of scipy.spatial.cKDTree except only
 Euclidean distance measure is supported.
 .
 Queries are optionally multithreaded using OpenMP.