QGIS에서 다각형으로 중심선을 만드는 방법이 있는지 궁금합니다. 다각형 레이어가 있지만 중심선이 별도의 파일로 필요합니다.
QGIS에서 다각형으로 중심선을 만드는 방법이 있는지 궁금합니다. 다각형 레이어가 있지만 중심선이 별도의 파일로 필요합니다.
답변:
Road Polygons / Casings에서 중심선 작성에 대한 @RajGovind의 답변에 묘사 된 모델을 구현하려고 노력하고 있습니까? 이것은 @geogeek이이 스레드에서 그의 답변에서 설명한 것과 매우 가깝습니다.
Github https://raw.githubusercontent.com/anitagraser/QGIS-Processing-tools/master/2.12/models/polygon_to_centerline.model 에서 모델을 다운로드 할 수 있습니다.
이 알고리즘을 사용해보십시오 :
get vertices from the polygons(poly_vertex).
-make voronoi using (poly_vertex) as input the result could be called(poly_voronoi).
-get lines from (poly_voronoi) => (poly_voronoi_lines).
-get the originale polygon contour (polygon_lines).
-remove (poly_voronoi_lines) touching (polygon_lines) the result is supposed to be the center lines , but you may need further clean up.
Qgi에서 어떻게 구현 될 수 있는지 모르겠습니다.
나는 그것이 도움이되기를 바랍니다.