optics static method
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);
}