vote up 6 vote down star
2

I'm looking into clustering points on a map (lat/longs). Are there any recommendations as to a suitable algorithm that is fast and scalable?

flag

7 Answers

vote up 3 vote down check

For a virtual earth application I've used the clustering described here. It's lightning fast and easily extensible.

link|flag
vote up 0 vote down

Are you clustering based on the physical locations given by the latitude and longitude?

link|flag
vote up 0 vote down

Could you perhaps post some code showing what you want to accomplish? I am confused as to what exactly you mean by "clustering". Are you plotting them on a map of the world?

link|flag
vote up 2 vote down

Google Maps Hacks has a hack, "Hack 69. Cluster Markers at High Zoom Levels", on that.

Also, see Wikipedia on clustering algorithms.

link|flag
vote up 0 vote down

@Gilligan: Yes - I have a series of lat / lngs, and a map viewport. I'm trying to cluster the points that are close together in order to remove clutter.

I already have a solution to the problem (see here), only I am wondering if there is any formal algorithm that solves the problem efficiently.

link|flag
vote up 0 vote down

there is a webservice called geocubes.com. it makes server side clustering. i think it depends on how many points you have to cluster, if you should use a server side solution

link|flag
vote up 0 vote down

You could look at indexing all your points using a QuadTile scheme, and then based upon the scale the further down the quad-splits you go. All similarly located points will then be near each other in your index, allowing the clustering to happen efficiently.

QuadTiles are an example of Morton Codes, and there is a python example linked from that wikipedia article that may help.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.