Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- psql
- qgis
- 테이블리턴
- tablewidget
- postgis
- 테이블 중복조회
- postgrest
- SQL
- 와콤뱀부슬레이트
- rc.local
- 테이블목록
- table
- idw
- posgtresql
- Python
- 네이버클라우드
- pygqis
- Openlayers
- posgresql
- PostgreSQL
- shp내려받기
- 하위디렉토리
- HP스펙터x360
- ST_InvDistWeight4ma
- 데이터비교
- table비교
- 순댓국밥
- 공주페이
- HP스펙터
- shape내려받기
Archives
- Today
- Total
오픈소스의 일상
[PYQGIS] 원하는 Shape 파일을 내려받기 본문
file_path = "내려받는shape 파일명.shp"
encoding = "windows-949"
crs = QgsCoordinateReferenceSystem('EPSG:5179')
format = "ESRI Shapefile"
for layer in QgsProject.instance().mapLayers().values():
if layer.type() == QgsMapLayer.VectorLayer:
if layer.name() == "원하는레이어명":
writer = QgsVectorFileWriter.writeAsVectorFormat(layer,file_path,encoding,layer.crs(),format)
조금만 응용하면 원하는 코드가 되지 않을까 합니다.
728x90
'오픈소스 > PYQGIS' 카테고리의 다른 글
Python QT-TableWidget 초기화 (0) | 2024.09.22 |
---|---|
Python 하위디렉토리 특정파일 추출 (0) | 2024.09.21 |
[PYQGIS] Feature 검색방법 (0) | 2023.09.12 |
[Python] Array 중복제거 (0) | 2023.09.08 |