91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python 根據數據模板創建shapefile的實現

發布時間:2020-10-20 13:48:34 來源:腳本之家 閱讀:283 作者:staHuri 欄目:開發技術

廢話不多說,我就直接上代碼讓大家看看吧!

#!/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問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

上杭县| 城口县| 防城港市| 交口县| 普兰县| 烟台市| 历史| 顺昌县| 康乐县| 侯马市| 上林县| 澄江县| 九台市| 海城市| 神农架林区| 英超| 金坛市| 马边| 西乌| 咸阳市| 南丹县| 普兰店市| 大安市| 上思县| 遂川县| 南木林县| 廊坊市| 西乡县| 贵港市| 瑞安市| 北票市| 大方县| 沁源县| 乐东| 万载县| 康保县| 社旗县| 西安市| 茌平县| 东兰县| 乌什县|