2
ogr2ogr은 여러 shapefile을 병합합니다 : -nln 태그의 목적은 무엇입니까?
하위 폴더에서 재귀 적으로 반복하고 모든 모양 파일을 단일 파일로 병합하기위한 기본 스크립트는 다음과 같습니다. #!/bin/bash consolidated_file="./consolidated.shp" for i in $(find . -name '*.shp'); do if [ ! -f "$consolidated_file" ]; then # first file - create the consolidated output file ogr2ogr -f "ESRI Shapefile" $consolidated_file $i else # update …