hdbscan static method

List<List<LatLng>> hdbscan(
  1. List<LatLng> points,
  2. double eps,
  3. int minPoints
)

HDBSCAN clustering algorithm. (Currently a stub implementation that calls DBSCAN.)

Implementation

static List<List<LatLng>> hdbscan(List<LatLng> points, double eps, int minPoints) {
  // TODO: Replace with a true HDBSCAN implementation.
  return dbscan(points, eps, minPoints);
}