GeoDjango: is there an out-of-the-box way to generate clusters of points?
- by vaughnkoch
Hi, I'm trying to compute clusters on a set of points in Python, using GeoDjango.
The problem:
Given a set of points, output a set of clusters of those points.
(i'm fine specifying # of clusters/cluster size/distance in advance to simplify)
There are a few solutions on the web to do clustering, so it's a well known problem.
I thought that…