Reputation: 625
I have groups of 10 to 700 longitude and latitude points around a city or region. I would like to create a polygon or "blob" to cover area defined by these points.
I Could pre-process points on our server to save time.
has anyone done anything like this or seen any useful tools?
Upvotes: 0
Views: 1300
Reputation: 44346
In order to find the polygon you talk about you need the compute the convex hull of your points. There are plenty of algorithms available. Here you can find one in PHP.
Upvotes: 1