I am currently looking into this library for its geospatial clustering capabilities.
I tried out the DBScan but noticed, that the clusters.Cluster properties PointList and Center are not filled.
It seems to me that the calls to cluster.Append(Point) and cluster.Recenter() are missing from the implementation of DBScan.
While I can do this manually after the clustering, I had expected this to be done inside the clustering function.
If this is unintentional, I suppose the changes would be easy enough to make so I could provide a MR - I look forward to your answer.
I am currently looking into this library for its geospatial clustering capabilities. I tried out the DBScan but noticed, that the
clusters.Cluster
propertiesPointList
andCenter
are not filled. It seems to me that the calls tocluster.Append(Point)
andcluster.Recenter()
are missing from the implementation of DBScan. While I can do this manually after the clustering, I had expected this to be done inside the clustering function.If this is unintentional, I suppose the changes would be easy enough to make so I could provide a MR - I look forward to your answer.