GIS: partition area based on equal population

后端 未结 2 667
一整个雨季
一整个雨季 2021-02-11 05:42

I want to partition a US state into 20 parts of approximately equal population. I can do this using, say, tracts, ZIP codes or another smaller geography. I\'m looking for an alg

相关标签:
2条回答
  • 2021-02-11 06:10

    You should consider the Shortest splitline algorithm, recommended for creating optimally compact voting districts. Here is a description of its results in solving gerrymandering.

    0 讨论(0)
  • 2021-02-11 06:19

    You can try centroidal weighted voronoi diagrams. i.e. Loyds algorithm. Pick the voronoi diagram and the center of gravity of each voronoi cell and rinse and repeat:http://www-cs-students.stanford.edu/~amitp/game-programming/polygon-map-generation/ enter image description here

    0 讨论(0)
提交回复
热议问题