go-point-clustering icon indicating copy to clipboard operation
go-point-clustering copied to clipboard

Question: Task suitability

Open quancore opened this issue 5 years ago • 1 comments

I have a list of points collected from cs:go maps. In general, maps are limited and flat areas with a few hundred meters. I want to cluster these points. Is the implementation suitable for the use of the purpose described above (I used X = Longitude, Y = Latitude)?

quancore avatar Jun 01 '19 23:06 quancore

If points have longitude and latitude, then yep.

If they are more of flat areas with X, Y, you would probably need to redefine how distance is calculated: sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2))

smira avatar Jun 03 '19 13:06 smira