A fast geospatial point clustering module.
Project description
A fast Python 3 module for geospatial point clustering.
This is a port of https://github.com/mapbox/supercluster to C++, conveniently wrapped in a Python module. Initial benchmarks show it to be an order of magnitude (10x) faster than the original JavaScript implementation.
Installing pysupercluster
The easiest way to install pysupercluster is to use pip:
pip install pysupercluster
Using pysupercluster
>>> import numpy
>>> import pysupercluster
>>> points = numpy.array([
... (2.3522, 48.8566), # paris
... (-0.1278, 51.5074), # london
... (-0.0077, 51.4826), # greenwhich
... ])
>>> index = pysupercluster.SuperCluster(
... points,
... min_zoom=0,
... max_zoom=16,
... radius=40,
... extent=512)
>>> clusters = index.getClusters(
... top_left=(-180, 90),
... bottom_right=(180, -90),
... zoom=4)
[
{'id': 0, 'count': 1, 'expansion_zoom': None, 'latitude': 48.8566, 'longitude': 2.3522},
{'id': 3, 'count': 2, 'expansion_zoom': 8, 'latitude': 51.49500168658321, 'longitude': -0.06774999999998421}
]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pysupercluster-0.7.5.tar.gz
(7.4 kB
view details)
File details
Details for the file pysupercluster-0.7.5.tar.gz
.
File metadata
- Download URL: pysupercluster-0.7.5.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b068c7a3a22203a81078f2f62a6131e32eaa1912be6b60e9c10c953c3728b30 |
|
MD5 | 84af8e3f869ef7824dcee5ea23e814d0 |
|
BLAKE2b-256 | 40d34f19c6c3b9cf01f0b081d36af0e930ceaef13472197af4ddc53ef94ae578 |