«mergeshapes» 태그된 질문

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 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.