Python 데이터 템 플 릿 에 따라 shapefile 을 만 드 는 실현
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @File : copyShapefile.py
# @Author: huifer
# @Date : 2018-4-28
from os.path import exists
import gdal
from osgeo import ogr
from os import remove
gdal.SetConfigOption("GDAL_FILENAME_IS_UTF8", "YES") #
gdal.SetConfigOption("SHAPE_ENCODING", "GBK") #
in_shapefile = "dataSample/wang_point.shp"#
out_shapefile = "shapefileAa.shp" #
in_ds = ogr.Open(in_shapefile) #
in_lyr = in_ds.GetLayerByIndex(0)
if exists(out_shapefile):
remove(out_shapefile)
drv = ogr.GetDriverByName("ESRI Shapefile") #
out_ds = drv.CreateDataSource(out_shapefile) #
proj = in_lyr.GetSpatialRef() #
out_lyr = out_ds.CreateLayer(out_shapefile.split(".")[0], proj, ogr.wkbPoint)
# copy the schema of the original shapefile to the destination shapefile
lyr_def = in_lyr.GetLayerDefn()
for i in range(lyr_def.GetFieldCount()): #
out_lyr.CreateField(lyr_def.GetFieldDefn(i)) #
feature = ogr.Feature(lyr_def)
wkt = "POINT(88615.730000 75345.486000)"
point = ogr.CreateGeometryFromWkt(wkt)
feature.SetGeometry(point)
#
out_lyr.CreateFeature(feature)
#
feature = None
#
data_source = None
이상 의 Python 은 데이터 템 플 릿 에 따라 shapefile 을 만 드 는 것 이 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.참고 가 되 고 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python의 None과 NULL의 차이점 상세 정보그래서 대상 = 속성 + 방법 (사실 방법도 하나의 속성, 데이터 속성과 구별되는 호출 가능한 속성 같은 속성과 방법을 가진 대상을 클래스, 즉 Classl로 분류할 수 있다.클래스는 하나의 청사진과 같아서 하나의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.