6103183796
Pyqtree is a pure Python spatial index for GIS or rendering usage. It storesand quickly retrieves items from a 2x2 rectangular grid area, and grows in depth and detail as more items are added. The actual quad tree implementation is adapted from Matt Rasmussen's compbio library and extended for geospatial use. WWW: https://github.com/karimbahgat/Pyqtree PR: 221730 Submitted by: lbartoletti@tuxfamily.org
21 lines
465 B
Makefile
21 lines
465 B
Makefile
# Created by: Loïc BARTOLETTI <lbartoletti@tuxfamily.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pyqtree
|
|
PORTVERSION= 0.24
|
|
CATEGORIES= devel python geography
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Pyqtree-${PORTVERSION}
|
|
|
|
MAINTAINER= lbartoletti@tuxfamily.org
|
|
COMMENT= Pure Python quad tree spatial index for GIS or rendering usage
|
|
|
|
LICENSE= MIT
|
|
|
|
NO_ARCH= yes
|
|
|
|
USES= python zip
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
.include <bsd.port.mk>
|