How to intelligently degrade or smooth GIS data (simplifying polygons)?

后端 未结 7 633
遇见更好的自我
遇见更好的自我 2020-12-07 10:42

I have detailed US county maps, from the TIGER LINE data sets. How might I sample, smooth, or degrade the data so that I get straighter, more boxy, less \"noisy\" shapes to

7条回答
  •  自闭症患者
    2020-12-07 11:16

    Here's a simple iterative smoothing algorithm:

    for each three sequential points on any path, if the middle point has no intersections and is within some small threshold angle of the direct path between the two outer points, remove it.

    Repeat until satisfied.

提交回复
热议问题