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 | 31 |
Tags
- ST_InvDistWeight4ma
- shape내려받기
- Openlayers
- pygqis
- 하위디렉토리
- qgis
- Python
- postgis
- rc.local
- posgresql
- shp내려받기
- tablewidget
- HP스펙터
- 순댓국밥
- PostgreSQL
- idw
- table비교
- HP스펙터x360
- table
- posgtresql
- postgrest
- 와콤뱀부슬레이트
- psql
- 테이블 중복조회
- 네이버클라우드
- 테이블리턴
- SQL
- 공주페이
- 데이터비교
- 테이블목록
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 |