Separating points equally

575
1
09-07-2016 08:07 AM
TravisPreston2
New Contributor II

I have a point feature I would like to separate into equally parts. I am trying to establish zones for data collection. How can I separate the points based solely on their geographic location and a desired count per zone?

Tags (2)
0 Kudos
1 Reply
DanPatterson_Retired
MVP Emeritus

produce a file with the coordinates sorted lexicographically... first by X then by Y.  split the list into your desired number.  Whether the split is optimal depends on your point pattern and its distribution, which doesn't appear to be a criteria in your requirements.  Another option, albeit a bit more difficult, is to produce a minimum spanning tree for the points, then prune the points on the branches into groups until your groups have been satisified.  This produces a eucliean shortest path solution for each group

0 Kudos