optics static method

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

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

Implementation

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